|
@@ -3383,6 +3383,19 @@ export default {
|
|
|
this.KHblnoOptions = [];
|
|
|
this.fMblnoOptions = [];
|
|
|
this.kqhouseOptions = [];
|
|
|
+ this.addOrUpdateVisible = false
|
|
|
+ this.addOrUpdateVisib = false
|
|
|
+ this.formBrowseStatus = false
|
|
|
+ this.detailsHidden = false
|
|
|
+ this.warehousingagreements = false
|
|
|
+ this.whgenlegVisible = false
|
|
|
+ this.approvalStatus = false
|
|
|
+ this.editDialogVisible_s = false
|
|
|
+ this.editDialogVisible_ss = false
|
|
|
+ this.openPrintJobSheet = false
|
|
|
+ this.editDialogClosed_ss = false
|
|
|
+ this.storageAgreements = false
|
|
|
+ this.browseStatus = false
|
|
|
this.resetForm("form");
|
|
|
},
|
|
|
/** 搜索按钮操作 */
|
|
@@ -3586,18 +3599,15 @@ export default {
|
|
|
const value = Number(curr);
|
|
|
if (!isNaN(value)) {
|
|
|
if (column.property === "fGrossweight") {
|
|
|
- this.form.fGrossweight = prev + curr;
|
|
|
this.fGrossweight = prev + curr;
|
|
|
}
|
|
|
if (column.property === "fNetweight") {
|
|
|
- this.form.fNetweight = prev + curr;
|
|
|
this.fNetweight = prev + curr;
|
|
|
}
|
|
|
if (column.property === "fVolumn") {
|
|
|
this.fVolumn = prev + curr;
|
|
|
}
|
|
|
if (column.property === "fQty") {
|
|
|
- this.form.fQty = prev + curr;
|
|
|
this.fQty = prev + curr;
|
|
|
}
|
|
|
if (column.property === "fCntqty") {
|
|
@@ -3608,6 +3618,7 @@ export default {
|
|
|
return prev;
|
|
|
}
|
|
|
}, 0); // sums[index]
|
|
|
+ sums[index] = sums[index].toFixed(2);
|
|
|
}
|
|
|
});
|
|
|
this.sums = sums;
|
|
@@ -3637,6 +3648,7 @@ export default {
|
|
|
return prev;
|
|
|
}
|
|
|
}, 0); // sums[index]
|
|
|
+ sums[index] = sums[index].toFixed(2);
|
|
|
}
|
|
|
});
|
|
|
return sums;
|