- I test sales payment with user who is accountant. - !context uid: 'res_users_account_voucher_user' - Create an invoice for the partner Seagate with amount 450.0 - !record {model: account.invoice, id: account_invoice_0}: account_id: account.a_recv company_id: base.main_company currency_id: base.EUR invoice_line: - account_id: account.a_sale name: '[PCSC234] PC Assemble SC234' price_unit: 450.0 quantity: 1.0 product_id: product.product_product_3 uos_id: product.product_uom_unit journal_id: account.sales_journal partner_id: base.res_partner_19 - I check that the customer invoice is in draft state - !assert {model: account.invoice, id: account_invoice_0}: - state == 'draft' - I make the invoice in Open state - !workflow {model: account.invoice, action: invoice_open, ref: account_invoice_0} - I check that a payment entry gets created in the account.move.line - !python {model: account.invoice}: | acc_id=self.browse(cr, uid, ref("account_invoice_0")) assert(acc_id.move_id) - I will create and post an account voucher of amount 450.0 for the partner Seagate. - !python {model: account.voucher}: | vals = {} journal_id = self.default_get(cr, uid, ['journal_id']).get('journal_id',None) voucher = self.recompute_voucher_lines(cr, uid, [], ref("base.res_partner_19"), journal_id, 450.0, ref('base.EUR'), 'receipt', False) assert (voucher['value'].get('writeoff_amount') == 0.0), "Writeoff amount calculated by recompute_voucher_lines() is not 0.0" res = self.onchange_partner_id(cr, uid, [], ref("base.res_partner_19"), journal_id, 0.0, 1, ttype='receipt', date=False) vals = { 'account_id': ref('account.cash'), 'amount': 450.0, 'company_id': ref('base.main_company'), 'journal_id': ref('account.bank_journal'), 'partner_id': ref('base.res_partner_19'), 'period_id': ref('account.period_8'), 'type': 'receipt', } if not res['value']['line_cr_ids']: res['value']['line_cr_ids'] = [{'type': 'cr', 'account_id': ref('account.a_recv'),}] #clients aren't sending value of readonly fields in the view, and there is a good reason for that, so here the #create should only use values of fields that are not readonly. That's why i'm removing some of these values del(res['value']['line_cr_ids'][0]['date_original']) del(res['value']['line_cr_ids'][0]['date_due']) res['value']['line_cr_ids'][0]['amount'] = 450.0 vals['line_cr_ids'] = [(0,0,i) for i in res['value']['line_cr_ids']] id = self.create(cr, uid, vals) voucher_id = self.browse(cr, uid, id) assert (voucher_id.writeoff_amount == 0.0), "Writeoff amount is not 0.0" assert (voucher_id.state=='draft'), "Voucher is not in draft state" self.signal_proforma_voucher(cr, uid, [voucher_id.id]) - Finally i will Confirm the state of the invoice is paid - !assert {model: account.invoice, id: account_invoice_0}: - state == 'paid'