Skip to content

Commit

Permalink
Merge pull request #45730 from frappe/mergify/bp/version-14-hotfix/pr…
Browse files Browse the repository at this point in the history
…-45447

fix(pos): add item in the existing item row when discount is applied (backport #45447)
  • Loading branch information
ruthra-kumar authored Feb 5, 2025
2 parents f01765d + 3c6ed0a commit 202693d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/selling/page/point_of_sale/pos_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ erpnext.PointOfSale.Controller = class {
i.item_code === item_code &&
(!has_batch_no || (has_batch_no && i.batch_no === batch_no)) &&
i.uom === uom &&
i.rate == rate
i.price_list_rate === flt(rate)
);
}

Expand Down

0 comments on commit 202693d

Please sign in to comment.