mirror of
https://github.com/frappe/books.git
synced 2025-01-05 08:02:15 +00:00
Merge pull request #994 from AbleKSaju/fix-recursive-prule
fix: recursive free item in pricing rule
This commit is contained in:
commit
0778752048
@ -1091,8 +1091,15 @@ export default defineComponent({
|
|||||||
(val) => val.isFreeItem
|
(val) => val.isFreeItem
|
||||||
).length;
|
).length;
|
||||||
|
|
||||||
|
const recursivePricingRules = hasPricingRules?.filter(
|
||||||
|
(val) => val.pricingRule.isRecursive
|
||||||
|
);
|
||||||
|
|
||||||
setTimeout(async () => {
|
setTimeout(async () => {
|
||||||
if (appliedPricingRuleCount !== hasPricingRules?.length) {
|
if (
|
||||||
|
appliedPricingRuleCount !== hasPricingRules?.length ||
|
||||||
|
recursivePricingRules
|
||||||
|
) {
|
||||||
await this.sinvDoc.appendPricingRuleDetail(hasPricingRules);
|
await this.sinvDoc.appendPricingRuleDetail(hasPricingRules);
|
||||||
await this.sinvDoc.applyProductDiscount();
|
await this.sinvDoc.applyProductDiscount();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user