mirror of
https://github.com/frappe/books.git
synced 2024-12-22 10:58:59 +00:00
fix: recursive free item in pricing rule, ensuring free item quantity increases when condition is met
This commit is contained in:
parent
0d967c1015
commit
b5f49147db
@ -1091,8 +1091,15 @@ export default defineComponent({
|
||||
(val) => val.isFreeItem
|
||||
).length;
|
||||
|
||||
const recursivePricingRules = hasPricingRules?.filter(
|
||||
(val) => val.pricingRule.isRecursive
|
||||
);
|
||||
|
||||
setTimeout(async () => {
|
||||
if (appliedPricingRuleCount !== hasPricingRules?.length) {
|
||||
if (
|
||||
appliedPricingRuleCount !== hasPricingRules?.length ||
|
||||
recursivePricingRules
|
||||
) {
|
||||
await this.sinvDoc.appendPricingRuleDetail(hasPricingRules);
|
||||
await this.sinvDoc.applyProductDiscount();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user