Skip to content

Commit

Permalink
[FIX]sale_commission_product_criteria_domain: consider multiple agents
Browse files Browse the repository at this point in the history
  • Loading branch information
toita86 committed Jun 25, 2024
1 parent 8eceee4 commit 4a80823
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,14 @@ def test_commission_domain_demo_cases(self):
invoice.recompute_lines_agents()
so.order_line.agent_ids._compute_amount()
invoice.line_ids.agent_ids._compute_amount()
self.assertEqual(so.order_line.agent_ids.percent_amount, 5)
self.assertEqual(invoice.line_ids.agent_ids.amount, 50)

fixed_amounts = so.order_line.agent_ids.mapped("fixed_amount")
self.assertEqual(len(fixed_amounts), 1)
self.assertEqual(fixed_amounts[0], 20)

amounts = invoice.line_ids.agent_ids.mapped("amount")
self.assertEqual(len(amounts), 1)
self.assertEqual(amounts[0], 20)

# Azure Spain Variant: Customizable Desk (CONFIG) (Steel, White) - Variant
so = self._create_sale_order(self.product_4, self.azure)
Expand Down

0 comments on commit 4a80823

Please sign in to comment.