| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662 |
- <template>
- <ContentWrap>
- <!-- 搜索工作栏 -->
- <el-form
- class="-mb-15px"
- :model="queryParams"
- ref="queryFormRef"
- :inline="true"
- label-width="68px"
- >
- <el-form-item
- :label="t('workOrderMaterial.factory')"
- prop="factoryId"
- v-if="!shouldHideComponents"
- >
- <el-select
- v-model="queryParams.factoryId"
- clearable
- filterable
- :placeholder="t('faultForm.choose')"
- class="!w-240px"
- @change="selectedFactoryChange"
- >
- <el-option
- v-for="item in factoryList"
- :key="item.id"
- :label="item.factoryName"
- :value="item.id!"
- />
- </el-select>
- </el-form-item>
- <el-form-item
- :label="t('workOrderMaterial.costCenter')"
- prop="costCenterId"
- v-if="!shouldHideComponents"
- >
- <el-select
- v-model="queryParams.costCenterId"
- clearable
- filterable
- :placeholder="t('faultForm.choose')"
- class="!w-240px"
- >
- <el-option
- v-for="item in filteredCostCenterList"
- :key="item.id"
- :label="item.costCenterName"
- :value="item.id!"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="t('chooseMaintain.materialCode')" prop="materialCode">
- <el-input
- v-model="queryParams.materialCode"
- :placeholder="t('chooseMaintain.materialCode')"
- clearable
- @keyup.enter="handleQuery"
- class="!w-240px"
- />
- </el-form-item>
- <el-form-item :label="t('chooseMaintain.materialName')" prop="materialName">
- <el-input
- v-model="queryParams.materialName"
- :placeholder="t('chooseMaintain.materialName')"
- clearable
- @keyup.enter="handleQuery"
- class="!w-240px"
- />
- </el-form-item>
- <el-form-item :label="t('chooseMaintain.createTime')" prop="storageTime">
- <el-date-picker
- v-model="queryParams.storageTime"
- value-format="YYYY-MM-DD HH:mm:ss"
- type="daterange"
- :start-placeholder="t('info.start')"
- :end-placeholder="t('info.end')"
- :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
- class="!w-220px"
- />
- </el-form-item>
- <el-form-item>
- <el-button @click="handleQuery"
- ><Icon icon="ep:search" class="mr-5px" /> {{ t('operationFill.search') }}</el-button
- >
- <el-button @click="resetQuery"
- ><Icon icon="ep:refresh" class="mr-5px" /> {{ t('operationFill.reset') }}</el-button
- >
- <el-button
- type="primary"
- plain
- @click="openForm('create')"
- v-hasPermi="['pms:iot-lock-stock:create']"
- >
- <Icon icon="ep:plus" class="mr-5px" />{{ t('operationFill.add') }}
- </el-button>
- <!-- v-hasPermi="['pms:iot-lock-stock:export']" -->
- <el-button type="success" plain @click="handleExport" :loading="exportLoading">
- <Icon icon="ep:download" class="mr-5px" /> 导出
- </el-button>
- </el-form-item>
- </el-form>
- </ContentWrap>
- <!-- ========== 统计信息卡片 ========== -->
- <ContentWrap style="margin-bottom: 16px">
- <el-card shadow="never" class="stat-card">
- <div class="stat-container">
- <div class="stat-item">
- <span class="stat-label">{{ t('stock.totalQuantity') }}:</span>
- <span class="stat-value">{{ totalQuantity.toLocaleString() }}</span>
- </div>
- <div class="stat-item">
- <span class="stat-label">{{ t('stock.totalAmount') }}:</span>
- <span class="stat-value"
- >¥
- {{
- totalAmount.toLocaleString(undefined, {
- minimumFractionDigits: 2,
- maximumFractionDigits: 2
- })
- }}</span
- >
- </div>
- </div>
- </el-card>
- </ContentWrap>
- <!-- 列表 -->
- <ContentWrap ref="tableContainerRef" class="table-container">
- <el-table
- ref="tableRef"
- v-loading="loading"
- :data="list"
- :stripe="true"
- :show-overflow-tooltip="false"
- style="width: 100%"
- >
- <el-table-column
- :label="t('workOrderMaterial.factory')"
- align="center"
- prop="factory"
- :width="columnWidths.factory"
- />
- <el-table-column
- :label="t('workOrderMaterial.costCenter')"
- align="center"
- prop="costCenter"
- :width="columnWidths.costCenter"
- />
- <el-table-column
- :label="t('chooseMaintain.materialCode')"
- align="center"
- prop="materialCode"
- :width="columnWidths.materialCode"
- />
- <el-table-column
- :label="t('chooseMaintain.materialName')"
- align="left"
- prop="materialName"
- :width="columnWidths.materialName"
- />
- <el-table-column
- :label="t('route.quantity')"
- align="center"
- prop="quantity"
- :formatter="erpPriceTableColumnFormatter"
- :width="columnWidths.quantity"
- />
- <el-table-column
- :label="t('workOrderMaterial.unitPrice')"
- align="center"
- prop="unitPrice"
- :formatter="erpPriceTableColumnFormatter"
- :width="columnWidths.unitPrice"
- />
- <el-table-column
- :label="t('workOrderMaterial.unit')"
- align="center"
- prop="unit"
- :width="columnWidths.unit"
- />
- <el-table-column
- :label="t('stock.storageTime')"
- align="center"
- prop="storageTime"
- :formatter="dateFormatter"
- :width="columnWidths.storageTime"
- />
- </el-table>
- <!-- 分页 -->
- <Pagination
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getList"
- />
- </ContentWrap>
- <!-- 表单弹窗:添加/修改 -->
- <IotLockStockForm ref="formRef" @success="getList" />
- </template>
- <script setup lang="ts">
- import { dateFormatter } from '@/utils/formatTime'
- import download from '@/utils/download'
- import { IotLockStockApi, IotLockStockVO } from '@/api/pms/iotlockstock'
- import IotLockStockForm from './IotLockStockForm.vue'
- import { erpPriceTableColumnFormatter } from '@/utils'
- import { useUserStore } from '@/store/modules/user'
- import { SapOrgApi, SapOrgVO } from '@/api/system/saporg'
- import { checkRole } from '@/utils/permission'
- import { computed, nextTick, onMounted, onUnmounted, ref, watch } from 'vue'
- /** PMS 本地 库存 列表 */
- defineOptions({ name: 'IotLockStock' })
- const message = useMessage() // 消息弹窗
- const { t } = useI18n() // 国际化
- const { push } = useRouter() // 路由跳转
- // 过滤后的成本中心列表(用于动态显示)
- const filteredCostCenterList = ref<SapOrgVO[]>([])
- const loading = ref(true) // 列表的加载中
- const list = ref<IotLockStockVO[]>([]) // 列表的数据
- const total = ref(0) // 列表的总页数
- const queryParams = reactive({
- pageNo: 1,
- pageSize: 10,
- deptId: undefined,
- factory: undefined,
- factoryId: undefined,
- projectDepartment: undefined,
- storageLocationId: undefined,
- costCenter: undefined,
- costCenterId: undefined,
- pickingListNumber: undefined,
- materialCode: undefined,
- materialName: undefined,
- materialGroupName: undefined,
- materialGroupId: undefined,
- quantity: undefined,
- unitPrice: undefined,
- unit: undefined,
- storageTime: [],
- sort: undefined,
- status: undefined,
- processInstanceId: undefined,
- auditStatus: undefined,
- remark: undefined,
- createTime: []
- })
- const queryFormRef = ref() // 搜索的表单
- const exportLoading = ref(false) // 导出的加载中
- const factoryList = ref([] as SapOrgVO[]) // 工厂列表
- const storageLocationList = ref([] as SapOrgVO[]) // 库存地点列表
- const costCenterList = ref([] as SapOrgVO[]) // SAP成本中心列表
- // 统计变量
- const totalQuantity = ref(0) // 总数量
- const totalAmount = ref(0) // 总金额
- // 表格容器和表格的引用
- const tableContainerRef = ref()
- const tableRef = ref()
- const shouldHideComponents = computed(() => {
- // 检查用户是否拥有 'A' 或 'B' 角色
- return checkRole(['小队队长', '操作员'])
- })
- const selectedFactoryReqVO = ref({
- type: 0, // 类型(1工厂 2成本中心 3库位)
- factoryCodes: [] // 已经选择的SAP工厂code 列表
- })
- // 列宽度配置
- const columnWidths = ref({
- factory: '120px',
- costCenter: '120px',
- materialCode: '120px',
- materialName: '200px', // 初始宽度,会被计算覆盖
- quantity: '100px',
- unitPrice: '100px',
- unit: '100px',
- storageTime: '180px'
- })
- /** 获取滚动条宽度 */
- const getScrollbarWidth = () => {
- const outer = document.createElement('div')
- outer.style.visibility = 'hidden'
- outer.style.overflow = 'scroll'
- document.body.appendChild(outer)
- const inner = document.createElement('div')
- outer.appendChild(inner)
- const scrollbarWidth = outer.offsetWidth - inner.offsetWidth
- outer.parentNode?.removeChild(outer)
- return scrollbarWidth
- }
- /** 计算文本宽度 */
- const getTextWidth = (text: string, fontSize = 14) => {
- const span = document.createElement('span')
- span.style.visibility = 'hidden'
- span.style.position = 'absolute'
- span.style.whiteSpace = 'nowrap'
- span.style.fontSize = `${fontSize}px`
- span.style.fontFamily = 'inherit'
- span.innerText = text
- document.body.appendChild(span)
- const width = span.offsetWidth
- document.body.removeChild(span)
- return width
- }
- /** 计算列宽度 */
- const calculateColumnWidths = () => {
- const MIN_WIDTH = 80 // 最小列宽
- const PADDING = 25 // 列内边距
- const FLEXIBLE_COLUMN = 'materialName' // 可伸缩列
- const scrollbarWidth = getScrollbarWidth() // 动态获取滚动条宽度
- if (!tableContainerRef.value?.$el || list.value.length === 0) return
- const containerWidth = tableContainerRef.value.$el.clientWidth
- // 需要自适应的列配置
- const autoColumns = [
- { key: 'factory', label: t('workOrderMaterial.factory'), getValue: (row) => row.factory },
- {
- key: 'costCenter',
- label: t('workOrderMaterial.costCenter'),
- getValue: (row) => row.costCenter
- },
- {
- key: 'materialCode',
- label: t('chooseMaintain.materialCode'),
- getValue: (row) => row.materialCode
- },
- {
- key: 'materialName',
- label: t('chooseMaintain.materialName'),
- getValue: (row) => row.materialName
- },
- {
- key: 'quantity',
- label: t('route.quantity'),
- getValue: (row) => erpPriceTableColumnFormatter(null, null, row.quantity, null)
- },
- {
- key: 'unitPrice',
- label: t('workOrderMaterial.unitPrice'),
- getValue: (row) => erpPriceTableColumnFormatter(null, null, row.unitPrice, null)
- },
- { key: 'unit', label: t('workOrderMaterial.unit'), getValue: (row) => row.unit },
- {
- key: 'storageTime',
- label: t('stock.storageTime'),
- getValue: (row) => dateFormatter(null, null, row.storageTime)
- }
- ]
- const newWidths: Record<string, string> = {}
- let totalFixedWidth = 0 // 所有固定列的总宽度
- // 计算除可伸缩列外的所有列宽度
- autoColumns.forEach((col) => {
- if (col.key === FLEXIBLE_COLUMN) return
- const headerText = col.label
- const headerWidth = getTextWidth(headerText) * 1.3 // 表头宽度(加粗效果增加20%)
- // 计算内容最大宽度
- let contentMaxWidth = 0
- list.value.forEach((row) => {
- const text = col.getValue ? String(col.getValue(row)) : String(row[col.key] || '')
- const textWidth = getTextWidth(text)
- if (textWidth > contentMaxWidth) contentMaxWidth = textWidth
- })
- // 取表头宽度、内容最大宽度和最小宽度的最大值
- const finalWidth = Math.max(headerWidth, contentMaxWidth, MIN_WIDTH) + PADDING
- newWidths[col.key] = `${finalWidth}px`
- totalFixedWidth += finalWidth
- })
- // 处理可伸缩列(materialName)
- const flexibleCol = autoColumns.find((col) => col.key === FLEXIBLE_COLUMN)
- if (flexibleCol) {
- const headerText = flexibleCol.label
- const headerWidth = getTextWidth(headerText) * 1.3
- let contentMaxWidth = 0
- list.value.forEach((row) => {
- const text = flexibleCol.getValue
- ? String(flexibleCol.getValue(row))
- : String(row[flexibleCol.key] || '')
- const textWidth = getTextWidth(text)
- if (textWidth > contentMaxWidth) contentMaxWidth = textWidth
- })
- const baseWidth = Math.max(headerWidth, contentMaxWidth, MIN_WIDTH) + PADDING
- // 剩余空间 = 容器宽度 - 其他列总宽度 - 垂直滚动条宽度(17px)
- const remainingWidth = containerWidth - totalFixedWidth - scrollbarWidth
- // 可伸缩列的宽度取剩余空间和基础宽度的最大值
- const flexibleWidth = Math.max(remainingWidth, baseWidth)
- newWidths[FLEXIBLE_COLUMN] = `${flexibleWidth}px`
- }
- // 更新列宽度
- columnWidths.value = newWidths
- // 重新布局表格
- nextTick(() => {
- tableRef.value?.doLayout()
- })
- }
- /** 查询列表 */
- const getList = async () => {
- loading.value = true
- try {
- const data = await IotLockStockApi.getIotLockStockPage(queryParams)
- list.value = data.list
- total.value = data.total
- // 从第一条记录中提取统计值
- if (data.list && data.list.length > 0) {
- // 确保取到有效的数值(第一条记录中的统计值代表整个查询结果)
- totalQuantity.value = Number(data.list[0].totalQuantity) || 0
- totalAmount.value = Number(data.list[0].totalAmount) || 0
- } else {
- // 没有数据时重置为0
- totalQuantity.value = 0
- totalAmount.value = 0
- }
- // 数据加载完成后计算列宽
- nextTick(() => {
- calculateColumnWidths()
- })
- } finally {
- loading.value = false
- }
- // 获取当前登录人的部门id 查询部门及子部门关联的所有SAP组织
- // 获取组织数据(移出统计值处理逻辑)
- await loadOrgData()
- }
- // 单独封装组织数据加载方法
- const loadOrgData = async () => {
- const deptId = useUserStore().getUser.deptId
- if (typeof deptId === 'number' && !isNaN(deptId) && deptId > 0) {
- try {
- const [factories, costCenters] = await Promise.all([
- SapOrgApi.filteredSimpleSapOrgList(1, deptId),
- SapOrgApi.filteredSimpleSapOrgList(2, deptId)
- ])
- factoryList.value = factories
- costCenterList.value = costCenters
- // 初始化时显示全部成本中心
- filteredCostCenterList.value = costCenters
- } catch (error) {
- console.error('获取组织数据失败:', error)
- }
- } else {
- console.warn('无效的部门ID:', deptId)
- }
- }
- /** 搜索按钮操作 */
- const handleQuery = () => {
- queryParams.pageNo = 1
- getList()
- }
- /** 重置按钮操作 */
- const resetQuery = () => {
- queryFormRef.value.resetFields()
- // 重置后恢复成本中心为完整列表
- filteredCostCenterList.value = costCenterList.value
- handleQuery()
- }
- /** 添加/修改操作 */
- const formRef = ref()
- const openForm = (type: string, id?: number) => {
- if (typeof id === 'number') {
- formRef.value.open(type, id)
- return
- }
- push({ name: 'LockStockAdd', params: {} })
- }
- /** 删除按钮操作 */
- const handleDelete = async (id: number) => {
- try {
- // 删除的二次确认
- await message.delConfirm()
- // 发起删除
- await IotLockStockApi.deleteIotLockStock(id)
- message.success(t('common.delSuccess'))
- // 刷新列表
- await getList()
- } catch {}
- }
- /** 已经选择了 SAP工厂 */
- /* const selectedFactoryChange = async (selectedId: number | undefined) => {
- // 获取选中的factoryCode数组
- const selectedFactory = factoryList.value.find(item => item.id === selectedId)
- const selectedFactoryCodes = selectedFactory ? [selectedFactory.factoryCode] : []
- // 获得已经选择的 SAP 工厂 数组
- // 根据选择的 SAP工厂 调用后台接口查询 SAP工厂下属的 成本中心
- selectedFactoryReqVO.value.type = 2
- selectedFactoryReqVO.value.factoryCodes = selectedFactoryCodes
- costCenterList.value = await SapOrgApi.getSelectedList(selectedFactoryReqVO.value)
- // 根据选择的 SAP工厂 调用后台接口查询 SAP工厂下属的 库存地点列表
- selectedFactoryReqVO.value.type = 3
- selectedFactoryReqVO.value.factoryCodes = selectedFactoryCodes
- storageLocationList.value = await SapOrgApi.getSelectedList(selectedFactoryReqVO.value)
- } */
- /** 已经选择了 SAP工厂 */
- const selectedFactoryChange = async (selectedId: number | undefined) => {
- // 清空已选择的成本中心
- queryParams.costCenterId = undefined
- if (!selectedId) {
- // 未选择工厂时显示全部成本中心
- filteredCostCenterList.value = costCenterList.value
- return
- }
- // 获取选中的工厂对象
- const selectedFactory = factoryList.value.find((item) => item.id === selectedId)
- if (!selectedFactory) return
- // 根据工厂代码过滤成本中心
- filteredCostCenterList.value = costCenterList.value.filter(
- (item) => item.factoryCode === selectedFactory.factoryCode
- )
- }
- /** 导出按钮操作 */
- const handleExport = async () => {
- try {
- exportLoading.value = true
- const data = await IotLockStockApi.exportIotLockStock(queryParams)
- download.excel(data, 'PMS 本地库存.xls')
- } catch {
- } finally {
- exportLoading.value = false
- }
- }
- /** 初始化 **/
- onMounted(() => {
- getList()
- // 添加窗口大小变化监听
- window.addEventListener('resize', calculateColumnWidths)
- })
- onUnmounted(() => {
- // 移除窗口大小变化监听
- window.removeEventListener('resize', calculateColumnWidths)
- })
- // 监听列表数据变化,重新计算列宽
- watch(
- list,
- () => {
- nextTick(calculateColumnWidths)
- },
- { deep: true }
- )
- </script>
- <style scoped>
- /* 统计卡片样式 */
- .stat-card {
- border-radius: 4px;
- border: 1px solid #ebeef5;
- }
- .stat-container {
- display: flex;
- padding: 1px;
- }
- .stat-item {
- display: flex;
- align-items: center;
- margin-right: 40px; /* 控制项间距 */
- }
- .stat-label {
- font-weight: bold;
- color: #606266;
- margin-right: 8px;
- }
- .stat-value {
- font-size: 18px;
- font-weight: bold;
- color: #409eff;
- }
- /* 表格容器样式 - 确保可以水平滚动 */
- .table-container {
- overflow-x: auto;
- }
- /* 防止表格内容换行 */
- :deep(.el-table) .cell {
- white-space: nowrap !important;
- overflow: visible !important;
- text-overflow: unset !important;
- }
- /* 确保表格行不换行 */
- :deep(.el-table__row) {
- white-space: nowrap;
- }
- /* 防止表格内容换行 */
- :deep(.el-table .cell) {
- white-space: nowrap !important;
- }
- /* 表头特别处理 */
- :deep(.el-table__header) {
- .cell {
- display: inline-block;
- white-space: nowrap;
- width: auto !important;
- }
- }
- /* 表格整体布局优化 */
- :deep(.el-table__inner-wrapper) {
- min-width: 100% !important;
- width: auto !important;
- }
- /* 单元格内容完全显示 */
- :deep(.el-table__body-wrapper) .el-table__cell .cell {
- display: block;
- overflow: visible;
- text-overflow: unset;
- }
- </style>
|