[FIX] Fixed test definition according to new convention.
[odoo/odoo.git] / addons / account / test / price_accuracy00.yml
1 -   |
2     Tax Scenario:
3     In order to check that the accounting entries and tax engine works
4     efficiently with all kind of price accuracies we run this test scenario.
5 -  
6     Given the price accuracy for the account module is configured with two
7     digits
8 -  
9     !record {model: decimal.precision, id: product.decimal_account}:
10       digits: 2
11 -  
12     And we have a tax defined
13 -  
14     !record {model: account.tax, id: tax196}:
15       name: Tax 19.6%
16       amount: &tax 0.196
17       account_collected_id: account.a_recv
18       account_paid_id: account.a_recv
19 -  
20     And we define an invoice with one invoice line with a tax of *tax
21 -  
22     !record {model: account.invoice, id: invoice1}: &invoice
23         name: Precision Test
24         type: out_invoice
25         partner_id: base.res_partner_2
26         address_invoice_id: base.res_partner_address_1
27         account_id: account.a_recv
28         date_invoice: !eval time.strftime('%Y-%m-%d')
29         invoice_line:
30             - product_id: product.product_product_pc1
31               quantity: &qty 11.11
32               account_id: account.a_sale
33               uos_id: product.product_uom_unit
34               price_unit: &price 12.34
35               name: test
36               invoice_line_tax_id:
37                   - tax196
38 -  
39     When I press on the CREATE button on the invoice to open it.
40 -  
41     !python {model: account.invoice}: |
42         self.action_move_create(cr, uid, [ref("invoice1")])  
43 -  
44     Then I should see an account entry linked to this invoice.
45 -  
46     !assert {model: account.invoice, id: invoice1}:
47         - bool(move_id)
48 -  
49     # This is not working, find a way to do that in YAML, *qty is not
50     # interpreted because it's not a node.
51     And this account entry must have a credit equals to 163.97€ which is
52     equal to *qty x *price x (1 + *tax)
53 -  
54     !assert {model: account.invoice, id: invoice1}:
55         - abs(sum(x.credit for x in move_id.line_id) - 163.97) < 0.000001
56 -  
57     And this account entry must have a credit equals to the debit
58 -  
59     !assert {model: account.invoice, id: invoice1}:
60         - abs(sum(x.credit - x.debit for x in move_id.line_id)) < 0.000001
61 -  
62     Then, I change the precision of numbers to 3 digits.
63 -  
64     !record {model: decimal.precision, id: product.decimal_account}:
65       digits: 3
66 -  
67     And I create another invoice with the same content.
68 -  
69     !record {model: account.invoice, id: invoice2}:
70         *invoice
71 -  
72     When I press on the CREATE button on the invoice to open it.
73 -  
74     !python {model: account.invoice}: |
75         self.action_move_create(cr, uid, [ref("invoice2")])  
76 -    
77     Then this account entry must have a credit equals to the debit
78 -  
79     !assert {model: account.invoice, id: invoice2}:
80         - abs(sum(x.credit - x.debit for x in move_id.line_id)) < 0.000001
81 -
82     And this account entry must have a credit equals to 163.968€ which is
83     equal to *qty x *price x (1 + *tax)
84 -  
85     !python {model: account.invoice}: |
86         xid = "invoice2"
87         invoice = self.browse(cr, uid, ref(xid))
88         sum_of_credits = sum(x.credit for x in invoice.move_id.line_id)
89         log("The sum of credits for %s is %f", xid, sum_of_credits)
90         expected_value = 163.968
91         assert (sum_of_credits - expected_value) < 0.000001, "Wrong sum of credits: %f <> %f" % (sum_of_credits, expected_value)
92