|
@@ -69,6 +69,7 @@
|
|
|
<el-table-column prop="categoryName" label="类别" width="120" />
|
|
<el-table-column prop="categoryName" label="类别" width="120" />
|
|
|
<el-table-column prop="productUnit" label="单位" width="80" />
|
|
<el-table-column prop="productUnit" label="单位" width="80" />
|
|
|
<el-table-column prop="orderQuantity" label="商品总数" width="100" />
|
|
<el-table-column prop="orderQuantity" label="商品总数" width="100" />
|
|
|
|
|
+ <el-table-column prop="orderPrice" label="商品单价" width="100" />
|
|
|
<el-table-column prop="quantitySent" label="已发货数量" width="100" />
|
|
<el-table-column prop="quantitySent" label="已发货数量" width="100" />
|
|
|
<el-table-column prop="unsentQuantity" label="未发货数量" width="100" />
|
|
<el-table-column prop="unsentQuantity" label="未发货数量" width="100" />
|
|
|
<el-table-column label="发货数量">
|
|
<el-table-column label="发货数量">
|
|
@@ -262,6 +263,7 @@ const loadProductList = async () => {
|
|
|
deliverNum: 0,
|
|
deliverNum: 0,
|
|
|
productNo: item.productNo,
|
|
productNo: item.productNo,
|
|
|
productId: item.productId,
|
|
productId: item.productId,
|
|
|
|
|
+ orderPrice: item.orderPrice,
|
|
|
productUnit: item.productUnit,
|
|
productUnit: item.productUnit,
|
|
|
productUnitId: item.productUnitId
|
|
productUnitId: item.productUnitId
|
|
|
}));
|
|
}));
|
|
@@ -359,7 +361,8 @@ const handleSubmit = async () => {
|
|
|
productName: item.productName,
|
|
productName: item.productName,
|
|
|
productUnitId: item.productUnitId,
|
|
productUnitId: item.productUnitId,
|
|
|
productUnit: item.productUnit,
|
|
productUnit: item.productUnit,
|
|
|
- deliverNum: item.deliverNum
|
|
|
|
|
|
|
+ deliverNum: item.deliverNum,
|
|
|
|
|
+ orderPrice: item.orderPrice
|
|
|
}))
|
|
}))
|
|
|
};
|
|
};
|
|
|
|
|
|