feat: fix 购销单导入定价产品确定到规格

This commit is contained in:
hello@lv 2024-03-08 11:16:14 +08:00
parent 1527b0ab7c
commit 44e550a0eb

View File

@ -269,8 +269,9 @@ export class RecordService {
spec: size, spec: size,
}, },
}); });
const product_category = product.category_id + 99999; const product_id = product.id;
priceRuleArr.push({ id: product_category, unit_price: porduct_item.price }); const exist = priceRuleArr.findIndex((rule) => rule.id === product_id) > -1;
!exist && priceRuleArr.push({ id: product_id, unit_price: porduct_item.price });
const fee = values.data.complements.filter( const fee = values.data.complements.filter(
(item) => item.associate.name === porduct_item.name && item.associate.size === porduct_item.size, (item) => item.associate.name === porduct_item.name && item.associate.size === porduct_item.size,
); );