|
|
@@ -908,6 +908,7 @@ export default {
|
|
|
packingUnit: packingUnit, // 单位
|
|
|
measureQuantity: measureQuantity, // 计量数量
|
|
|
measureUnit: item.measuringUnit, // 计量单位
|
|
|
+ measureType: item.measureType, // 计量方式
|
|
|
netWeight: item.netWeight > -1 ? item.netWeight : 0, // 净重
|
|
|
singleWeight: singleWeight, // 单重重量
|
|
|
weight: weight, // 总重量
|
|
|
@@ -1102,6 +1103,7 @@ export default {
|
|
|
? this.getMeasureQuantity(item.code)
|
|
|
: this.form.totalCount, // 计量数量
|
|
|
measureUnit: item.measuringUnit, // 计量单位
|
|
|
+ measureType: item.measureType, // 计量方式
|
|
|
netWeight: item.netWeight > -1 ? item.netWeight : 0, // 净重
|
|
|
weight: weight, // 重量
|
|
|
singleWeight: singleWeight,
|
|
|
@@ -1553,6 +1555,7 @@ export default {
|
|
|
|
|
|
// 处理产品数据
|
|
|
this.productList = this.productList.map((productItem) => {
|
|
|
+ productItem.qualityControl = this.form.isQmsCheck; //是否质检
|
|
|
return {
|
|
|
...productItem,
|
|
|
outInDetailRecordRequestList: _packingList.filter(
|
|
|
@@ -1569,7 +1572,6 @@ export default {
|
|
|
obj.extInfo.deptName = this.formData.extInfo.deptName;
|
|
|
obj.extInfo.supplierName = this.form.supplierName;
|
|
|
obj.extInfo.deliveryPhone = this.formData.extInfo.deliveryPhone;
|
|
|
- obj.qualityControl = this.form.isQmsCheck;//是否质检
|
|
|
|
|
|
// 处理仓库id
|
|
|
let warehouseId = [];
|