|
|
|
@ -148,8 +148,11 @@ |
|
|
|
</el-pagination> |
|
|
|
|
|
|
|
<el-tabs style="margin-top: 0px; width: 100%; height: 100%;" v-model="activeName" class="customer-tab" type="border-card"> |
|
|
|
<el-tab-pane label="汇总" name="first"> |
|
|
|
<el-tab-pane label="送货汇总" name="first"> |
|
|
|
<el-table |
|
|
|
:key="collectDataList.length" |
|
|
|
:summary-method="getSummaries" |
|
|
|
show-summary |
|
|
|
:height="height - 325" |
|
|
|
:data="collectDataList" |
|
|
|
border |
|
|
|
@ -716,14 +719,14 @@ export default { |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 109003, |
|
|
|
serialNumber: '109003Table1PartNo', |
|
|
|
serialNumber: '109003Table1NotifyQty', |
|
|
|
tableId: "109003Table1", |
|
|
|
tableName: "送货计划信息汇总表", |
|
|
|
columnWidth: 202, |
|
|
|
columnProp: 'partNo', |
|
|
|
columnWidth: 120, |
|
|
|
columnProp: 'notifyQty', |
|
|
|
headerAlign: 'center', |
|
|
|
align: "left", |
|
|
|
columnLabel: '物料编码', |
|
|
|
align: "right", |
|
|
|
columnLabel: '要求送货数量', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
columnSortable: false, |
|
|
|
@ -734,14 +737,14 @@ export default { |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 109003, |
|
|
|
serialNumber: '109003Table1PartDescription', |
|
|
|
serialNumber: '109003Table1PartNo', |
|
|
|
tableId: "109003Table1", |
|
|
|
tableName: "送货计划信息汇总表", |
|
|
|
columnWidth: 282, |
|
|
|
columnProp: 'partDescription', |
|
|
|
columnWidth: 202, |
|
|
|
columnProp: 'partNo', |
|
|
|
headerAlign: 'center', |
|
|
|
align: "left", |
|
|
|
columnLabel: '物料名称', |
|
|
|
columnLabel: '物料编码', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
columnSortable: false, |
|
|
|
@ -752,13 +755,14 @@ export default { |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 109003, |
|
|
|
serialNumber: '109003Table1Spec', |
|
|
|
serialNumber: '109003Table1PartDescription', |
|
|
|
tableId: "109003Table1", |
|
|
|
tableName: "送货计划信息汇总表", |
|
|
|
columnProp: 'spec', |
|
|
|
columnWidth: 282, |
|
|
|
columnProp: 'partDescription', |
|
|
|
headerAlign: 'center', |
|
|
|
align: "left", |
|
|
|
columnLabel: '规格型号', |
|
|
|
columnLabel: '物料名称', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
columnSortable: false, |
|
|
|
@ -769,14 +773,13 @@ export default { |
|
|
|
{ |
|
|
|
userId: this.$store.state.user.name, |
|
|
|
functionId: 109003, |
|
|
|
serialNumber: '109003Table1NotifyQty', |
|
|
|
serialNumber: '109003Table1Spec', |
|
|
|
tableId: "109003Table1", |
|
|
|
tableName: "送货计划信息汇总表", |
|
|
|
columnWidth: 120, |
|
|
|
columnProp: 'notifyQty', |
|
|
|
columnProp: 'spec', |
|
|
|
headerAlign: 'center', |
|
|
|
align: "right", |
|
|
|
columnLabel: '要求送货数量', |
|
|
|
align: "left", |
|
|
|
columnLabel: '规格型号', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
columnSortable: false, |
|
|
|
@ -1047,8 +1050,6 @@ export default { |
|
|
|
return sum + value; |
|
|
|
}, 0); |
|
|
|
sums[index] = total; // 设置总计值 |
|
|
|
} else if (column.property === 'orderRef1') { |
|
|
|
sums[index] = this.dataList.length; |
|
|
|
} else { |
|
|
|
sums[index] = ''; // 其他列空白 |
|
|
|
} |
|
|
|
|