odoo.define('account.reconciliation_field_tests', function (require) { "use strict"; var FormView = require('web.FormView'); var testUtils = require('web.test_utils'); var createView = testUtils.createView; QUnit.module('account', { beforeEach: function () { this.data = { 'account.move': { fields: { payments_widget: {string: "payments_widget data", type: "char"}, outstanding_credits_debits_widget: {string: "outstanding_credits_debits_widget data", type: "char"}, }, records: [{ id: 1, payments_widget: {"content": [{"digits": [69, 2], "currency": "$", "amount": 555.0, "name": "Customer Payment: INV/2017/0004", "date": "2017-04-25", "position": "before", "ref": "BNK1/2017/0003 (INV/2017/0004)", "payment_id": 22, "move_id": 10, "partial_id": 38, "journal_name": "Bank"}], "outstanding": false, "title": "Less Payment"}, outstanding_credits_debits_widget: {"content": [{"digits": [69, 2], "currency": "$", "amount": 100.0, "journal_name": "INV/2017/0004", "position": "before", "id": 20}], "move_id": 4, "outstanding": true, "title": "Outstanding credits"}, }] }, }; } }, function () { QUnit.module('Reconciliation'); QUnit.test('Reconciliation form field [REQUIRES FOCUS]', async function (assert) { assert.expect(5); var form = await createView({ View: FormView, model: 'account.move', data: this.data, arch: '
', res_id: 1, mockRPC: function (route, args) { if (args.method === 'js_remove_outstanding_partial') { assert.deepEqual(args.args, [10, 38], "should call js_remove_outstanding_partial {warning: required focus}"); return Promise.resolve(); } if (args.method === 'js_assign_outstanding_line') { assert.deepEqual(args.args, [4, 20], "should call js_assign_outstanding_line {warning: required focus}"); return Promise.resolve(); } if (args.method === 'action_open_business_doc') { assert.deepEqual(args.args, [10], "should call action_open_business_doc {warning: required focus}"); return Promise.resolve(); } return this._super.apply(this, arguments); }, }); assert.strictEqual(form.$('.o_field_widget[name="payments_widget"]').text().replace(/[\s\n\r]+/g, ' '), " Paid on 04/25/2017 $ 555.00 ", "should display payment information"); await testUtils.dom.click(form.$('.o_field_widget[name="outstanding_credits_debits_widget"] .outstanding_credit_assign')); assert.strictEqual(form.$('.o_field_widget[name="outstanding_credits_debits_widget"]').text().replace(/[\s\n\r]+/g, ' '), " Outstanding credits Add INV/2017/0004 $ 100.00 ", "should display outstanding information"); form.$('.o_field_widget[name="payments_widget"] .js_payment_info').focus(); await testUtils.nextTick(); await testUtils.dom.click(form.$('.popover .js_open_payment')); form.$('.o_field_widget[name="payments_widget"] .js_payment_info').focus(); await testUtils.nextTick(); await testUtils.dom.click(form.$('.popover .js_unreconcile_payment')); form.destroy(); }); }); });