2026-01-09 19:06:21 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container" v-loading="loading">
|
|
|
|
|
|
<el-row>
|
2026-01-09 20:12:22 +08:00
|
|
|
|
<el-form label-width="80px" inline>
|
|
|
|
|
|
<el-form-item label="开始时间" prop="startTime">
|
2026-01-10 16:42:56 +08:00
|
|
|
|
<el-date-picker style="width: 200px;" v-model="queryParams.byCreateTimeStart" type="datetime"
|
2026-01-09 20:12:22 +08:00
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss" placeholder="选择开始时间"></el-date-picker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="结束时间" prop="endTime">
|
2026-01-10 16:42:56 +08:00
|
|
|
|
<el-date-picker style="width: 200px;" v-model="queryParams.byCreateTimeEnd" type="datetime"
|
2026-01-09 20:12:22 +08:00
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss" placeholder="选择结束时间"></el-date-picker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="入场钢卷号" prop="endTime">
|
|
|
|
|
|
<el-input style="width: 200px; display: inline-block;" v-model="queryParams.enterCoilNo"
|
|
|
|
|
|
placeholder="请输入入场钢卷号" clearable @keyup.enter.native="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="当前钢卷号" prop="endTime">
|
|
|
|
|
|
<el-input style="width: 200px;" v-model="queryParams.currentCoilNo" placeholder="请输入当前钢卷号" clearable
|
|
|
|
|
|
@keyup.enter.native="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="逻辑库位" prop="endTime">
|
2026-01-19 09:21:54 +08:00
|
|
|
|
<!-- <warehouse-select v-model="queryParams.warehouseId" placeholder="请选择仓库/库区/库位"
|
|
|
|
|
|
style="width: 100%; display: inline-block; width: 200px;" clearable /> -->
|
|
|
|
|
|
<el-select v-model="warehouseIds" collapse-tags multiple placeholder="请选择逻辑库位" style="width: 200px;">
|
|
|
|
|
|
<el-option v-for="item in warehouseOptions" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
|
|
|
</el-select>
|
2026-01-09 20:12:22 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="产品名称" prop="endTime">
|
|
|
|
|
|
<el-input style="width: 200px;" v-model="queryParams.itemName" placeholder="请输入产品名称" clearable
|
|
|
|
|
|
@keyup.enter.native="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="规格" prop="endTime">
|
|
|
|
|
|
<memo-input style="width: 200px;" v-model="queryParams.itemSpecification" storageKey="coilSpec"
|
|
|
|
|
|
placeholder="请选择规格" clearable @keyup.enter.native="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="材质" prop="endTime">
|
|
|
|
|
|
<muti-select style="width: 200px;" v-model="queryParams.itemMaterial" :options="dict.type.coil_material"
|
|
|
|
|
|
placeholder="请选择材质" clearable @keyup.enter.native="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="厂家" prop="endTime">
|
|
|
|
|
|
<muti-select style="width: 200px;" v-model="queryParams.itemManufacturer"
|
|
|
|
|
|
:options="dict.type.coil_manufacturer" placeholder="请选择厂家" clearable @keyup.enter.native="handleQuery" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item prop="endTime">
|
|
|
|
|
|
<el-button type="primary" @click="getList">查询</el-button>
|
|
|
|
|
|
<el-button type="primary" @click="exportData">导出</el-button>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
2026-01-09 19:06:21 +08:00
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions title="统计信息" :column="3" border>
|
|
|
|
|
|
<el-descriptions-item label="总钢卷数量">{{ summary.totalCount }}</el-descriptions-item>
|
2026-01-09 19:37:18 +08:00
|
|
|
|
<el-descriptions-item label="总重">{{ summary.totalWeight }}t</el-descriptions-item>
|
2026-01-09 19:06:21 +08:00
|
|
|
|
<el-descriptions-item label="均重">{{ summary.avgWeight }}t</el-descriptions-item>
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions title="明细信息" :column="3" border>
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
<el-table :data="list" border height="calc(100vh - 320px)">
|
|
|
|
|
|
<el-table-column label="入场钢卷号" align="center" prop="enterCoilNo">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<coil-no :coil-no="scope.row.enterCoilNo"></coil-no>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="当前钢卷号" align="center" prop="currentCoilNo">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<coil-no :coil-no="scope.row.currentCoilNo"></coil-no>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-10 16:55:54 +08:00
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" />
|
2026-01-09 19:06:21 +08:00
|
|
|
|
<el-table-column label="逻辑库位" align="center" prop="warehouseName" />
|
|
|
|
|
|
<el-table-column label="实际库区" align="center" prop="actualWarehouseName" />
|
|
|
|
|
|
<el-table-column label="产品类型" align="center" width="250">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<ProductInfo v-if="scope.row.itemType == 'product'" :product="scope.row.product" />
|
|
|
|
|
|
<RawMaterialInfo v-else-if="scope.row.itemType === 'raw_material'" :material="scope.row.rawMaterial" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-10 11:38:55 +08:00
|
|
|
|
<el-table-column label="重量 (吨)" align="center" prop="netWeight" />
|
2026-01-09 19:06:21 +08:00
|
|
|
|
<el-table-column label="长度 (米)" align="center" prop="length" />
|
2026-01-10 09:57:44 +08:00
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" show-overflow-tooltip />
|
2026-01-10 09:31:24 +08:00
|
|
|
|
<el-table-column label="出库状态" align="center" prop="status">
|
|
|
|
|
|
<!-- 0在库,1已出库 -->
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
{{ scope.row.status === 0 ? '在库' : '已出库' }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-09 19:06:21 +08:00
|
|
|
|
<el-table-column label="更新人" align="center" prop="updateByName" />
|
2026-01-10 11:38:55 +08:00
|
|
|
|
<el-table-column label="更新时间" align="center" prop="updateTime" />
|
2026-01-09 19:06:21 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-01-11 09:05:30 +08:00
|
|
|
|
import { listCoilWithIds } from "@/api/wms/coil";
|
2026-01-09 19:06:21 +08:00
|
|
|
|
import ProductInfo from "@/components/KLPService/Renderer/ProductInfo";
|
|
|
|
|
|
import RawMaterialInfo from "@/components/KLPService/Renderer/RawMaterialInfo";
|
|
|
|
|
|
import CoilNo from "@/components/KLPService/Renderer/CoilNo.vue";
|
2026-01-09 20:12:22 +08:00
|
|
|
|
import MemoInput from "@/components/MemoInput";
|
|
|
|
|
|
import MutiSelect from "@/components/MutiSelect";
|
|
|
|
|
|
import WarehouseSelect from "@/components/KLPService/WarehouseSelect";
|
|
|
|
|
|
|
2026-01-09 19:06:21 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
components: {
|
|
|
|
|
|
ProductInfo,
|
|
|
|
|
|
RawMaterialInfo,
|
|
|
|
|
|
CoilNo,
|
2026-01-09 20:12:22 +08:00
|
|
|
|
MemoInput,
|
|
|
|
|
|
MutiSelect,
|
|
|
|
|
|
WarehouseSelect,
|
2026-01-09 19:06:21 +08:00
|
|
|
|
},
|
2026-01-09 20:12:22 +08:00
|
|
|
|
dicts: ['product_coil_status', 'coil_material', 'coil_itemname', 'coil_manufacturer'],
|
2026-01-09 19:06:21 +08:00
|
|
|
|
data() {
|
2026-01-19 09:21:54 +08:00
|
|
|
|
// 工具函数:个位数补零,保证格式统一(比如 9 → 09,5 → 05)
|
2026-01-10 08:25:00 +08:00
|
|
|
|
const addZero = (num) => num.toString().padStart(2, '0')
|
|
|
|
|
|
|
2026-01-13 09:46:11 +08:00
|
|
|
|
const now = new Date() // 当前本地北京时间
|
|
|
|
|
|
// 核心:获取【昨天】的日期对象(自动处理跨月/跨年,无边界问题)
|
|
|
|
|
|
const yesterday = new Date(now)
|
|
|
|
|
|
yesterday.setDate(yesterday.getDate() - 1)
|
2026-01-10 08:25:00 +08:00
|
|
|
|
|
2026-01-13 09:46:11 +08:00
|
|
|
|
// 昨天的年、月、日(补零格式化)
|
|
|
|
|
|
const yesYear = yesterday.getFullYear()
|
|
|
|
|
|
const yesMonth = addZero(yesterday.getMonth() + 1)
|
|
|
|
|
|
const yesDay = addZero(yesterday.getDate())
|
|
|
|
|
|
|
|
|
|
|
|
// 今天的年、月、日(补零格式化)
|
|
|
|
|
|
const nowYear = now.getFullYear()
|
|
|
|
|
|
const nowMonth = addZero(now.getMonth() + 1)
|
|
|
|
|
|
const nowDay = addZero(now.getDate())
|
|
|
|
|
|
|
|
|
|
|
|
// ✅ 目标时间区间:昨天早上6点 至 今天早上6点
|
2026-01-17 09:40:02 +08:00
|
|
|
|
const startTime = `${yesYear}-${yesMonth}-${yesDay} 07:00:00`
|
|
|
|
|
|
const endTime = `${nowYear}-${nowMonth}-${nowDay} 07:00:00`
|
2026-01-09 19:06:21 +08:00
|
|
|
|
return {
|
|
|
|
|
|
list: [],
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 9999,
|
2026-01-10 08:25:00 +08:00
|
|
|
|
// status: 1,
|
2026-01-10 16:32:06 +08:00
|
|
|
|
byCreateTimeStart: startTime,
|
|
|
|
|
|
byCreateTimeEnd: endTime,
|
2026-01-09 20:12:22 +08:00
|
|
|
|
selectType: 'product',
|
|
|
|
|
|
enterCoilNo: '',
|
|
|
|
|
|
currentCoilNo: '',
|
|
|
|
|
|
warehouseId: '',
|
|
|
|
|
|
productName: '',
|
|
|
|
|
|
itemSpecification: '',
|
|
|
|
|
|
itemMaterial: '',
|
|
|
|
|
|
itemManufacturer: '',
|
2026-01-09 19:06:21 +08:00
|
|
|
|
},
|
|
|
|
|
|
loading: false,
|
2026-01-19 09:21:54 +08:00
|
|
|
|
warehouseIds: [
|
|
|
|
|
|
'1988150099140866050',
|
|
|
|
|
|
'1988150263284953089',
|
|
|
|
|
|
'1988150545175736322',
|
|
|
|
|
|
'1988150150521090049',
|
2026-02-12 09:58:15 +08:00
|
|
|
|
'2019583656787259393',
|
|
|
|
|
|
'2019583325311414274',
|
|
|
|
|
|
'2019583429955104769',
|
|
|
|
|
|
'2019583137616310273',
|
2026-01-19 09:21:54 +08:00
|
|
|
|
],
|
|
|
|
|
|
warehouseOptions: [
|
|
|
|
|
|
{ label: '酸连轧成品库', value: '1988150099140866050' },
|
|
|
|
|
|
{ label: '镀锌原料库', value: '1988150263284953089' },
|
|
|
|
|
|
{ label: '脱脂原料库', value: '1988150545175736322' },
|
|
|
|
|
|
{ label: '酸连轧纵剪分条原料库', value: '1988150150521090049' },
|
2026-02-12 09:58:15 +08:00
|
|
|
|
{ label: '技术部', value: '2019583656787259393' },
|
|
|
|
|
|
{ label: '小钢卷库', value: '2019583325311414274' },
|
|
|
|
|
|
{ label: '废品库', value: '2019583429955104769' },
|
|
|
|
|
|
{ label: '退货库', value: '2019583137616310273' },
|
2026-01-19 09:21:54 +08:00
|
|
|
|
],
|
|
|
|
|
|
warehouseQueryMap: {
|
|
|
|
|
|
'1988150099140866050': {
|
|
|
|
|
|
selectType: 'product',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '1988150099140866050'
|
|
|
|
|
|
},
|
|
|
|
|
|
'1988150263284953089': {
|
|
|
|
|
|
selectType: 'raw_material',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '1988150263284953089'
|
|
|
|
|
|
},
|
|
|
|
|
|
'1988150545175736322': {
|
|
|
|
|
|
selectType: 'raw_material',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '1988150545175736322'
|
|
|
|
|
|
},
|
|
|
|
|
|
'1988150150521090049': {
|
|
|
|
|
|
selectType: 'raw_material',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '1988150150521090049'
|
|
|
|
|
|
},
|
2026-02-12 09:58:15 +08:00
|
|
|
|
'2019583656787259393': {
|
|
|
|
|
|
selectType: 'product',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '2019583656787259393'
|
|
|
|
|
|
},
|
|
|
|
|
|
'20195833325311414274': {
|
|
|
|
|
|
selectType: 'product',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '20195833325311414274'
|
|
|
|
|
|
},
|
|
|
|
|
|
'2019583429955104769': {
|
|
|
|
|
|
selectType: 'product',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '2019583429955104769'
|
|
|
|
|
|
},
|
|
|
|
|
|
'2019583137616310273': {
|
|
|
|
|
|
selectType: 'product',
|
|
|
|
|
|
createBy: 'suanzhakuguan',
|
|
|
|
|
|
warehouseId: '2019583137616310273'
|
|
|
|
|
|
},
|
2026-01-19 09:21:54 +08:00
|
|
|
|
}
|
2026-01-09 19:06:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
summary() {
|
|
|
|
|
|
// 总钢卷数量、总重、均重
|
|
|
|
|
|
const totalCount = this.list.length
|
|
|
|
|
|
const totalWeight = this.list.reduce((acc, cur) => acc + parseFloat(cur.netWeight), 0)
|
|
|
|
|
|
const avgWeight = totalCount > 0 ? (totalWeight / totalCount).toFixed(2) : 0
|
|
|
|
|
|
return {
|
|
|
|
|
|
totalCount,
|
2026-01-09 19:37:18 +08:00
|
|
|
|
totalWeight: totalWeight.toFixed(2),
|
2026-01-09 19:06:21 +08:00
|
|
|
|
avgWeight,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
this.loading = true
|
2026-01-19 09:21:54 +08:00
|
|
|
|
Promise.all(
|
|
|
|
|
|
this.warehouseIds.map(warehouseId => {
|
|
|
|
|
|
const params = this.warehouseQueryMap[warehouseId]
|
|
|
|
|
|
return listCoilWithIds({
|
|
|
|
|
|
...this.queryParams,
|
|
|
|
|
|
pageSize: 9999,
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
...params
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
).then((resList) => {
|
|
|
|
|
|
console.log(resList)
|
|
|
|
|
|
const list = resList.flatMap(res => res.rows)
|
2026-01-10 18:19:55 +08:00
|
|
|
|
// 按照createTime 降序排序
|
|
|
|
|
|
this.list = list.sort(
|
|
|
|
|
|
(a, b) => new Date(b.createTime) - new Date(a.createTime)
|
|
|
|
|
|
)
|
2026-01-09 19:37:18 +08:00
|
|
|
|
this.loading = false
|
2026-01-09 19:06:21 +08:00
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
// 导出
|
|
|
|
|
|
exportData() {
|
|
|
|
|
|
this.download('wms/materialCoil/export', {
|
|
|
|
|
|
coilIds: this.list.map(item => item.coilId).join(',')
|
|
|
|
|
|
}, `materialCoil_${new Date().getTime()}.xlsx`)
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|