|
|
@@ -946,7 +946,7 @@
|
|
|
builders: this.saleProductList.map((item) => {
|
|
|
return {
|
|
|
categoryId: item.productId,
|
|
|
- num: item.totalCount
|
|
|
+ num: item.totalCount,
|
|
|
};
|
|
|
})
|
|
|
};
|
|
|
@@ -976,7 +976,12 @@
|
|
|
builders: this.form.productList.map((item) => {
|
|
|
return {
|
|
|
categoryId: item.productId,
|
|
|
- num: item.totalCount
|
|
|
+ num: item.totalCount,
|
|
|
+ price:item.totalPrice,
|
|
|
+ unitPrice:item.singlePrice,
|
|
|
+ weight:(item.singleWeight*item.totalCount)||0,
|
|
|
+ batchNo:item.batchNo||'',
|
|
|
+ taskId: item.taskId||'',
|
|
|
};
|
|
|
})
|
|
|
};
|