ShipmentDetailList.vue
13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<template>
<a-card :bordered="false" :class="'cust-erp-sub-tab'">
<!-- 操作按钮区域 -->
<div class="table-operator" v-if="mainId">
<a-button @click="handleAdd" v-has="'shipmentDetail:add'" type="primary" icon="plus">新增</a-button>
<a-button @click="handleAddBom()" v-has="'shipmentDetail:addBom'" type="primary" icon="plus">新增BOM</a-button>
<a-button v-has="'shipmentDetail:print'" @click="batchPrint()" type="primary">打印</a-button>
<a-button v-has="'shipmentDetail:export'" type="primary" icon="download" @click="handleExportXls('出库单详情')">导出</a-button>
<a-upload
v-has="'shipmentDetail:import'"
name="file"
:showUploadList="false"
:multiple="false"
:headers="tokenHeader"
:action="importExcelUrl"
@change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay" v-has="'shipmentDetail:deleteBatch'">
<a-menu-item key="1" @click="batchDel">
<a-icon type="delete"/> 删除
</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作
<a-icon type="down"/>
</a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
style="font-weight: 600">{{ selectedRowKeys.length }}</a> 项
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
bordered
rowKey="id"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">
<span slot="status_dictText" slot-scope="status_dictText">
<a-tag :key="status_dictText" :color="getStatusColor(status_dictText)">
{{ status_dictText }}
</a-tag>
</span>
<span slot="inventoryStatus_dictText" slot-scope="inventoryStatus_dictText">
<a-tag :key="inventoryStatus_dictText" :color="getStatusColor(inventoryStatus_dictText)">
{{ inventoryStatus_dictText }}
</a-tag>
</span>
<span slot="flagSlot" slot-scope="text">
{{ text === 0 ? '是' : '否' }}
</span>
<span slot="action" slot-scope="text, record">
<a v-has="'shipmentDetail:combine'" v-if=" (flowStatus == '15' && flowStatus != '20' && record.status < 800) || (flowOff == '0' && record.status < 800)" @click="combine(record)">配盘</a>
<a v-has="'shipmentDetail:edit'" v-if="record.status == 0 && record.referCode == null" @click="handleEdit(record)"><a-divider type="vertical"/>编辑</a>
<!-- <a v-if="record.status == 0 && record.referCode == null" style="margin: 0 8px;">|</a>-->
<!-- <a v-if="record.status == 0 "-->
<!-- @click="calcAuxQty(record)">辅数计算</a>-->
<!-- <a v-if="record.status == 0 && record.referCode == null" style="margin: 0 8px;">|</a>-->
<a-popconfirm v-has="'shipmentDetail:delete'" v-if="record.status == 0 && record.referCode == null" title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a-divider type="vertical"/><a>删除</a>
</a-popconfirm>
</span>
</a-table>
</div>
<shipmentDetail-modal ref="modalForm" @ok="modalFormOk" @dataSearch="dataSearch" :mainId="mainId"></shipmentDetail-modal>
<shipment-detail-bom-modal ref="modalBomForm" @ok="modalFormOk" :mainId="mainId"></shipment-detail-bom-modal>
<shipment-detail-edit-modal ref="modalEditForm" @ok="modalFormOk" @close="searchQuery" :mainId="mainId"></shipment-detail-edit-modal>
<shipment-detail-combine-modal ref="modalCombineForm" @ok="modalFormOk" @close="searchQuery" :mainId="mainId"></shipment-detail-combine-modal>
</a-card>
</template>
<script>
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import ShipmentDetailModal from './modules/ShipmentDetailModal'
import ShipmentDetailEditModal from './modules/ShipmentDetailEditModal'
import ShipmentDetailCombineModal from './modules/ShipmentDetailCombineModal'
import ShipmentDetailBomModal from "@views/system/shipment/modules/ShipmentDetailBomModal.vue";
import store from '@/store'
export default {
name: "ShipmentDetailList",
mixins: [JeecgListMixin],
components: {ShipmentDetailBomModal, ShipmentDetailCombineModal, ShipmentDetailEditModal, ShipmentDetailModal},
props: {
mainId: {
type: String,
default: '',
required: false
},
flowStatus: {
type: String,
default: '',
required: false
},
flowOff: {
type: String,
default: '',
required: false
}
},
watch: {
mainId: {
immediate: true,
handler(val) {
if (!this.mainId) {
this.clearList()
} else {
this.queryParam['shipmentId'] = val
this.loadData(1);
}
}
}
},
data() {
return {
description: '出库单管理页面',
disableMixinCreated: true,
// 表头
columns: [
{
title: '单据详情ID',
align: "center",
sorter: true,
dataIndex: 'id'
},
{
title: '辅数量计算',
align: 'center',
scopedSlots: { customRender: 'flagSlot' },
dataIndex: 'exchangeFlag'
},
{
title: '行ID',
align: 'center',
dataIndex: 'lineId'
},
{
title: '行号',
align: 'center',
dataIndex: 'lineNo'
},
{
title: '料号',
align: 'center',
dataIndex: 'materialCode'
},
{
title: '品名',
align: 'center',
dataIndex: 'materialName'
},
{
title: '主数量',
align: 'center',
dataIndex: 'qty'
},
{
title: '辅数量',
align: 'center',
dataIndex: 'auxQty'
},
{
title: '主单位',
align: 'center',
dataIndex: 'materialUnit'
},
{
title: '辅单位',
align: 'center',
dataIndex: 'auxUnit'
},
{
title: '规格',
align: 'center',
dataIndex: 'materialSpec'
},
{
title: '规格型号',
align: 'center',
dataIndex: 'specificationModel'
},
{
title: '材质牌号',
align: 'center',
dataIndex: 'materialBrand'
},
{
title: '存储地点',
align: 'center',
dataIndex: 'storageLocation'
},
{
title: '库位号',
align: 'center',
dataIndex: 'locationCode'
},
{
title: '宽',
align: 'center',
dataIndex: 'width'
},
{
title: '长',
align: 'center',
dataIndex: 'length'
},
{
title: '存储类型',
align: 'center',
dataIndex: 'storageType'
},
{
title: '批号',
align: 'center',
dataIndex: 'batch'
},
{
title: '批号说明',
align: 'center',
dataIndex: 'batchRemark'
},
{
title: '配盘数量',
align: "center",
dataIndex: 'taskQty'
},
{
title: '已出数量',
align: "center",
dataIndex: 'shipmentQty'
},
{
title: '可出数量',
align: "center",
dataIndex: 'availableQty'
},
{
title: '库存数量',
align: "center",
dataIndex: 'inventoryQty'
},
// {
// title: '库存状态',
// align: "center",
// dataIndex: 'inventoryStatus_dictText',
// scopedSlots: {customRender: 'inventoryStatus_dictText'}
// },
{
title: '单据状态',
align: "center",
dataIndex: 'status_dictText',
scopedSlots: {customRender: 'status_dictText'}
},
{
title: '创建人',
align: "center",
dataIndex: 'createBy'
},
{
title: '创建日期',
align: "center",
dataIndex: 'createTime'
},
{
title: '更新人',
align: "center",
dataIndex: 'updateBy'
},
{
title: '更新日期',
align: "center",
dataIndex: 'updateTime'
},
{
title: '操作',
dataIndex: 'action',
align: "center",
fixed: "right",
width: 147,
scopedSlots: {customRender: 'action'},
}
],
url: {
list: "/shipment/shipmentHeader/listShipmentDetailByMainId",
delete: "/shipment/shipmentHeader/deleteShipmentDetail",
deleteBatch: "/shipment/shipmentHeader/deleteBatchShipmentDetail",
exportXlsUrl: "/shipment/shipmentHeader/exportShipmentDetail",
importUrl: "/shipment/shipmentHeader/importShipmentDetail",
},
dictOptions: {
firstStatus: [],
lastStatus: [],
}
}
},
created() {
},
computed: {
importExcelUrl() {
return `${window._CONFIG['domianURL']}/${this.url.importUrl}/${this.mainId}`;
}
},
methods: {
calcAuxQty(record) {
// 1. 校验当前详情ID是否有效(对应后端@RequestParam("id"))
const detailId = record.id;
console.log("辅数计算按钮被点击,当前记录ID:", record.id);
if (!detailId || isNaN(Number(detailId))) {
this.$message.warning("入库单详情ID无效,无法执行主辅数量交换!");
return;
}
// 2. 构造请求参数(仅需传递详情ID,后端接口要求为Integer类型)
const requestParams = new URLSearchParams();
requestParams.append('id', Number(detailId)); // 转为数字,匹配后端Integer类型
// 3. 调用后端/exchangeDetail接口(POST请求,表单格式传递参数)
const requestUrl = `${window._CONFIG['domianURL']}/shipment/shipmentHeader/exchangeDetail`;
fetch(requestUrl, {
method: 'POST',
headers: {
// 携带认证Token(与系统现有接口保持一致)
'X-Access-Token': window._CONFIG['token'] || store.getters.token,
// 表单格式标识(后端@RequestParam需此格式)
'Content-Type': 'application/x-www-form-urlencoded'
},
body: requestParams // 传递ID参数
})
.then(response => {
// 校验接口响应状态(200-299为成功)
if (!response.ok) {
throw new Error(`接口请求失败,状态码:${response.status}`);
}
return response.json(); // 解析后端返回的JSON结果
})
.then(res => {
// 处理后端业务结果
if (res.success || res.code === 200) { // 适配常见成功标识(根据后端实际返回调整)
this.$message.success("主辅数量及单位交换成功!");
this.loadData(); // 交换后刷新列表,展示最新的主辅数量/单位
} else {
// 业务失败(如未找到详情),显示后端返回的错误信息
this.$message.error(`交换失败:${res.message || '未知业务错误'}`);
}
})
.catch(err => {
// 捕获网络错误或接口异常
this.$message.error("主辅数量交换接口调用失败,请检查网络!");
console.error("交换接口异常详情:", err); // 调试用,便于定位问题
});
},
getStatusColor(status) {
const colors = {
'新建': 'green',
'出库组盘': 'Skyblue',
'等待下架': 'blue',
'下架': 'darkorange',
'过账': 'purple',
'回传': 'grey',
'回传失败': 'red',
'良品': 'green',
'报废品': 'purple',
'待确认 ': 'grey',
'次品': 'red',
default: 'blue'
};
return colors[status] || colors.default;
},
clearList() {
this.dataSource = []
this.selectedRowKeys = []
this.ipagination.current = 1
},
combine(record) {
this.$refs.modalCombineForm.edit(record);
this.$refs.modalCombineForm.title = "配盘";
this.$refs.modalCombineForm.disableSubmit = false;
},
batchPrint() {
if (this.selectedRowKeys.length <= 0) {
this.$message.warning('请选择一条记录!');
return;
} else {
var ids = ''
for (var a = 0; a < this.selectedRowKeys.length; a++) {
ids += this.selectedRowKeys[a] + ','
}
window.open(window._CONFIG['domianURL'] + "/jmreport/view/963962951128367104/?id=" + ids, "newWindow", "toolbar=no,scrollbars=no,menubar=no,screenX=100,screenY=100");
}
},
handleAddBom() {
this.$refs.modalBomForm.add();
this.$refs.modalBomForm.title = "新增BOM";
this.$refs.modalBomForm.disableSubmit = false;
},
edit(record) {
this.$refs.modalEditForm.edit(record);
this.$refs.modalEditForm.title = "编辑";
this.$refs.modalEditForm.disableSubmit = false;
},
dataSearch() {
this.$emit('dataSearch');
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less'
</style>