mirror of
https://github.com/frappe/books.git
synced 2025-01-03 07:12:21 +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
|
||||
).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