|
|
@@ -2201,6 +2201,7 @@
|
|
|
item['customerMark'] = item.customerMark || this.customerMark;
|
|
|
item['arrivalWay'] = item.arrivalWay || 1;
|
|
|
item.discountRatio = Number(item.discountRatio) || 100;
|
|
|
+ item.quoteWay = item.quoteWay || 1;
|
|
|
});
|
|
|
this.form.datasource = productList;
|
|
|
|
|
|
@@ -2358,9 +2359,11 @@
|
|
|
this.$set(parasm, 'discountSinglePrice', item.singlePrice);
|
|
|
this.$set(parasm, 'totalCount', '');
|
|
|
this.$set(parasm, 'discountRatio', item.discountRatio);
|
|
|
+ this.$set(parasm, 'quoteWay', item.quoteWay || 1);
|
|
|
} else {
|
|
|
this.$set(parasm, 'singlePrice', parasm.singlePrice || 0);
|
|
|
this.$set(parasm, 'discountRatio', parasm.discountRatio || 100);
|
|
|
+ this.$set(parasm, 'quoteWay', parasm.quoteWay || 1);
|
|
|
}
|
|
|
|
|
|
// 初始化生产加工特有字段及未税小记
|