[FIX] Account: YAML for pay invoice wizard removed so update the yaml
[odoo/odoo.git] / addons / account / test / account_customer_invoice.yml
1 -
2   In order to test account invoice I create a new customer invoice
3 -
4   !record {model: account.invoice, id: account_invoice_customer0}:
5     account_id: account.a_recv
6     address_contact_id: base.res_partner_address_zen
7     address_invoice_id: base.res_partner_address_zen
8     company_id: base.main_company
9     currency_id: base.EUR
10     date_invoice: '2010-05-26'
11     invoice_line:
12       - account_id: account.a_sale
13         name: '[PC3] Medium PC'
14         price_unit: 900.0
15         quantity: 10.0
16         product_id: product.product_product_pc3
17         uos_id: product.product_uom_unit
18     journal_id: account.sales_journal
19     partner_id: base.res_partner_3
20     reference_type: none
21 -
22   I check that Initially customer invoice is in the "Draft" state
23 -
24   !assert {model: account.invoice, id: account_invoice_customer0}:
25     - state == 'draft'
26 -
27   I change the state of invoice to "Proforma2" by clicking PRO-FORMA button
28 -
29   !workflow {model: account.invoice, action: invoice_proforma2, ref: account_invoice_customer0}
30 -
31   I check that the invoice state is now "Proforma2"
32 -
33   !assert {model: account.invoice, id: account_invoice_customer0}:
34     - state == 'proforma2'
35 -
36   I check that there is no move attached to the invoice
37 -
38   !python {model: account.invoice}: |
39     acc_id=self.browse(cr, uid, ref("account_invoice_customer0"))
40     assert acc_id.move_id, "Move not created"
41 -
42   I create invoice by clicking on Create button
43 -
44   !workflow {model: account.invoice, action: invoice_open, ref: account_invoice_customer0}
45 -
46   I check that the invoice state is "Open"
47 -
48   !assert {model: account.invoice, id: account_invoice_customer0}:
49     - state == 'open'
50
51 -
52   I check that now there is a move attached to the invoice
53 -
54   !python {model: account.invoice}: |
55     acc_id=self.browse(cr, uid, ref("account_invoice_customer0"))
56     assert acc_id.move_id, "Move created"