|
@@ -198,6 +198,7 @@
|
|
|
...ele,
|
|
|
label: `${ele.name} ${ele.price}元`,
|
|
|
value: ele.laborCostId,
|
|
|
+ priceListId: ele.priceListId,
|
|
|
});
|
|
|
fileFlow.priceListsPrice[ele.laborCostId] = ele.price;
|
|
|
});
|
|
@@ -531,6 +532,7 @@
|
|
|
return;
|
|
|
}
|
|
|
priceListsparams.push({
|
|
|
+ ...ele,
|
|
|
priceListId: ele.priceListId,
|
|
|
type: ele.type,
|
|
|
laborId: ele.laborId,
|
|
@@ -543,6 +545,7 @@
|
|
|
fileFlow.manMadeList.map((ele) => {
|
|
|
if (manMade.includes(ele.laborCostId)) {
|
|
|
priceListsparams.push({
|
|
|
+ ...ele,
|
|
|
count: 1,
|
|
|
priceListId: ele.priceListId,
|
|
|
laborId: ele.laborCostId,
|
|
@@ -551,6 +554,7 @@
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
+ console.log('manMade', manMade, fileFlow.manMadeList,priceListsparams);
|
|
|
for (let index = 1; index < n.value; index++) {
|
|
|
if (params[`device_${index}`]) {
|
|
|
priceListsparams.push({
|