|
|
@@ -529,6 +529,18 @@
|
|
|
{ label: '物料代号', prop: 'materielDesignation', align: 'center' },
|
|
|
{ label: '客户代号', prop: 'clientCode', align: 'center' },
|
|
|
{ label: '刻码', prop: 'engrave', align: 'center' },
|
|
|
+ {
|
|
|
+ label: '机型',
|
|
|
+ prop: 'modelKey',
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '颜色',
|
|
|
+ prop: 'colorKey',
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
// { prop: 'specification', label: '规格', align: 'center', width: 100, showOverflowTooltip: true },
|
|
|
// { prop: 'brandNum', label: '牌号', align: 'center', width: 100, showOverflowTooltip: true },
|
|
|
// { prop: 'modelType', label: '型号', align: 'center', width: 100, showOverflowTooltip: true },
|
|
|
@@ -733,7 +745,23 @@
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
{ label: '刻码', prop: 'engrave', align: 'center' },
|
|
|
- { label: '重量', prop: 'weight', align: 'center' },
|
|
|
+ {
|
|
|
+ label: '机型',
|
|
|
+ prop: 'modelKey',
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '颜色',
|
|
|
+ prop: 'colorKey',
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '重量',
|
|
|
+ prop: 'weight',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
{ label: '重量单位', prop: 'weightUnit', align: 'center' },
|
|
|
{
|
|
|
label: '仓库',
|
|
|
@@ -884,6 +912,14 @@
|
|
|
const res = await outInRecordsPage(params);
|
|
|
this.sourceList = res.list || [];
|
|
|
console.log(res, 'list333');
|
|
|
+
|
|
|
+ // 在获取数据后执行后续操作:处理来源清单并设置样品清单
|
|
|
+ if (this.sourceList && this.sourceList.length > 0) {
|
|
|
+ // 处理来源清单数据
|
|
|
+ const processedData = this.proceSources([...this.sourceList]);
|
|
|
+ // 更新样品清单
|
|
|
+ await this.updatePackingList(processedData);
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
//成品类型检验类型,计划来源库存台账, 生成来源清单
|