mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[9.0][FIX] contract_payment_mode: Payment mode unknow. Improve tests
This commit is contained in:
@@ -264,6 +264,7 @@ class AccountAnalyticAccount(models.Model):
|
|||||||
|
|
||||||
@api.multi
|
@api.multi
|
||||||
def recurring_create_invoice(self):
|
def recurring_create_invoice(self):
|
||||||
|
invoices = self.env['account.invoice']
|
||||||
for contract in self:
|
for contract in self:
|
||||||
old_date = fields.Date.from_string(
|
old_date = fields.Date.from_string(
|
||||||
contract.recurring_next_date or fields.Date.today())
|
contract.recurring_next_date or fields.Date.today())
|
||||||
@@ -277,11 +278,11 @@ class AccountAnalyticAccount(models.Model):
|
|||||||
'force_company': contract.company_id.id,
|
'force_company': contract.company_id.id,
|
||||||
})
|
})
|
||||||
# Re-read contract with correct company
|
# Re-read contract with correct company
|
||||||
contract.with_context(ctx)._create_invoice()
|
invoices |= contract.with_context(ctx)._create_invoice()
|
||||||
contract.write({
|
contract.write({
|
||||||
'recurring_next_date': new_date.strftime('%Y-%m-%d')
|
'recurring_next_date': new_date.strftime('%Y-%m-%d')
|
||||||
})
|
})
|
||||||
return True
|
return invoices
|
||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def cron_recurring_create_invoice(self):
|
def cron_recurring_create_invoice(self):
|
||||||
|
|||||||
@@ -3,30 +3,31 @@
|
|||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
from openerp.exceptions import ValidationError
|
from openerp.exceptions import ValidationError
|
||||||
from openerp.tests.common import TransactionCase
|
from openerp.tests.common import SavepointCase
|
||||||
|
|
||||||
|
|
||||||
class TestContract(TransactionCase):
|
class TestContract(SavepointCase):
|
||||||
# Use case : Prepare some data for current test case
|
# Use case : Prepare some data for current test case
|
||||||
def setUp(self):
|
@classmethod
|
||||||
super(TestContract, self).setUp()
|
def setUpClass(cls):
|
||||||
self.partner = self.env.ref('base.res_partner_2')
|
super(TestContract, cls).setUpClass()
|
||||||
self.product = self.env.ref('product.product_product_2')
|
cls.partner = cls.env.ref('base.res_partner_2')
|
||||||
self.product.description_sale = 'Test description sale'
|
cls.product = cls.env.ref('product.product_product_2')
|
||||||
self.contract = self.env['account.analytic.account'].create({
|
cls.product.description_sale = 'Test description sale'
|
||||||
|
cls.contract = cls.env['account.analytic.account'].create({
|
||||||
'name': 'Test Contract',
|
'name': 'Test Contract',
|
||||||
'partner_id': self.partner.id,
|
'partner_id': cls.partner.id,
|
||||||
'pricelist_id': self.partner.property_product_pricelist.id,
|
'pricelist_id': cls.partner.property_product_pricelist.id,
|
||||||
'recurring_invoices': True,
|
'recurring_invoices': True,
|
||||||
'date_start': '2016-02-15',
|
'date_start': '2016-02-15',
|
||||||
'recurring_next_date': '2016-02-29',
|
'recurring_next_date': '2016-02-29',
|
||||||
})
|
})
|
||||||
self.contract_line = self.env['account.analytic.invoice.line'].create({
|
cls.contract_line = cls.env['account.analytic.invoice.line'].create({
|
||||||
'analytic_account_id': self.contract.id,
|
'analytic_account_id': cls.contract.id,
|
||||||
'product_id': self.product.id,
|
'product_id': cls.product.id,
|
||||||
'name': 'Services from #START# to #END#',
|
'name': 'Services from #START# to #END#',
|
||||||
'quantity': 1,
|
'quantity': 1,
|
||||||
'uom_id': self.product.uom_id.id,
|
'uom_id': cls.product.uom_id.id,
|
||||||
'price_unit': 100,
|
'price_unit': 100,
|
||||||
'discount': 50,
|
'discount': 50,
|
||||||
})
|
})
|
||||||
@@ -46,16 +47,13 @@ class TestContract(TransactionCase):
|
|||||||
self.contract.recurring_create_invoice()
|
self.contract.recurring_create_invoice()
|
||||||
self.contract.partner_id = self.partner.id
|
self.contract.partner_id = self.partner.id
|
||||||
|
|
||||||
self.contract.recurring_create_invoice()
|
new_invoice = self.contract.recurring_create_invoice()
|
||||||
self.invoice_monthly = self.env['account.invoice'].search(
|
self.assertTrue(new_invoice)
|
||||||
[('contract_id', '=', self.contract.id)])
|
|
||||||
self.assertTrue(self.invoice_monthly)
|
|
||||||
self.assertEqual(self.contract.recurring_next_date, '2016-03-29')
|
self.assertEqual(self.contract.recurring_next_date, '2016-03-29')
|
||||||
|
|
||||||
self.inv_line = self.invoice_monthly.invoice_line_ids[0]
|
self.inv_line = new_invoice.invoice_line_ids[0]
|
||||||
self.assertAlmostEqual(self.inv_line.price_subtotal, 50.0)
|
self.assertAlmostEqual(self.inv_line.price_subtotal, 50.0)
|
||||||
self.assertEqual(self.contract.partner_id.user_id,
|
self.assertEqual(self.contract.partner_id.user_id, new_invoice.user_id)
|
||||||
self.invoice_monthly.user_id)
|
|
||||||
|
|
||||||
def test_contract_daily(self):
|
def test_contract_daily(self):
|
||||||
self.contract.recurring_next_date = '2016-02-29'
|
self.contract.recurring_next_date = '2016-02-29'
|
||||||
@@ -71,20 +69,16 @@ class TestContract(TransactionCase):
|
|||||||
self.contract.recurring_next_date = '2016-02-29'
|
self.contract.recurring_next_date = '2016-02-29'
|
||||||
self.contract.recurring_rule_type = 'weekly'
|
self.contract.recurring_rule_type = 'weekly'
|
||||||
self.contract.recurring_invoicing_type = 'post-paid'
|
self.contract.recurring_invoicing_type = 'post-paid'
|
||||||
self.contract.recurring_create_invoice()
|
new_invoice = self.contract.recurring_create_invoice()
|
||||||
invoices_weekly = self.env['account.invoice'].search(
|
self.assertTrue(new_invoice)
|
||||||
[('contract_id', '=', self.contract.id)])
|
|
||||||
self.assertTrue(invoices_weekly)
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
self.contract.recurring_next_date, '2016-03-07')
|
self.contract.recurring_next_date, '2016-03-07')
|
||||||
|
|
||||||
def test_contract_yearly(self):
|
def test_contract_yearly(self):
|
||||||
self.contract.recurring_next_date = '2016-02-29'
|
self.contract.recurring_next_date = '2016-02-29'
|
||||||
self.contract.recurring_rule_type = 'yearly'
|
self.contract.recurring_rule_type = 'yearly'
|
||||||
self.contract.recurring_create_invoice()
|
new_invoice = self.contract.recurring_create_invoice()
|
||||||
invoices_weekly = self.env['account.invoice'].search(
|
self.assertTrue(new_invoice)
|
||||||
[('contract_id', '=', self.contract.id)])
|
|
||||||
self.assertTrue(invoices_weekly)
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
self.contract.recurring_next_date, '2017-02-28')
|
self.contract.recurring_next_date, '2017-02-28')
|
||||||
|
|
||||||
@@ -92,12 +86,19 @@ class TestContract(TransactionCase):
|
|||||||
self.contract.recurring_next_date = '2016-02-29'
|
self.contract.recurring_next_date = '2016-02-29'
|
||||||
self.contract.recurring_invoicing_type = 'post-paid'
|
self.contract.recurring_invoicing_type = 'post-paid'
|
||||||
self.contract.recurring_rule_type = 'monthlylastday'
|
self.contract.recurring_rule_type = 'monthlylastday'
|
||||||
self.contract.recurring_create_invoice()
|
new_invoice = self.contract.recurring_create_invoice()
|
||||||
invoices_monthly_lastday = self.env['account.invoice'].search(
|
self.assertTrue(new_invoice)
|
||||||
[('contract_id', '=', self.contract.id)])
|
|
||||||
self.assertTrue(invoices_monthly_lastday)
|
|
||||||
self.assertEqual(self.contract.recurring_next_date, '2016-03-31')
|
self.assertEqual(self.contract.recurring_next_date, '2016-03-31')
|
||||||
|
|
||||||
|
def test_contract_monthly_lastday_prepaid(self):
|
||||||
|
self.contract.recurring_next_date = '2016-02-25'
|
||||||
|
self.contract.recurring_invoicing_type = 'pre-paid'
|
||||||
|
self.contract.recurring_rule_type = 'monthlylastday'
|
||||||
|
self.contract.recurring_create_invoice()
|
||||||
|
new_invoice = self.contract.recurring_create_invoice()
|
||||||
|
self.assertTrue(new_invoice)
|
||||||
|
self.assertEqual(new_invoice.date_invoice, '2016-03-31')
|
||||||
|
|
||||||
def test_onchange_partner_id(self):
|
def test_onchange_partner_id(self):
|
||||||
self.contract._onchange_partner_id()
|
self.contract._onchange_partner_id()
|
||||||
self.assertEqual(self.contract.pricelist_id,
|
self.assertEqual(self.contract.pricelist_id,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# Copyright 2017 Vicent Cubells <vicent.cubells@tecnativa.com>
|
# Copyright 2017 Vicent Cubells <vicent.cubells@tecnativa.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
from openerp import api, fields, models
|
from openerp import api, models
|
||||||
|
|
||||||
|
|
||||||
class AccountAnalyticAccount(models.Model):
|
class AccountAnalyticAccount(models.Model):
|
||||||
@@ -12,23 +12,16 @@ class AccountAnalyticAccount(models.Model):
|
|||||||
|
|
||||||
@api.multi
|
@api.multi
|
||||||
def recurring_create_invoice(self):
|
def recurring_create_invoice(self):
|
||||||
contracts = self.search(
|
invoices = super(
|
||||||
[('recurring_next_date', '<=', fields.Date.today()),
|
AccountAnalyticAccount, self).recurring_create_invoice()
|
||||||
('account_type', '=', 'normal'),
|
invoices_info = {}
|
||||||
('recurring_invoices', '=', True)]
|
invoices2unlink = AccountInvoice = self.env['account.invoice']
|
||||||
)
|
|
||||||
res = super(AccountAnalyticAccount, self).recurring_create_invoice()
|
|
||||||
if not contracts:
|
|
||||||
return res
|
|
||||||
invoices = self.env['account.invoice'].search([
|
|
||||||
('contract_id', 'in', contracts.ids)
|
|
||||||
])
|
|
||||||
invoices2unlink = self.env['account.invoice']
|
|
||||||
for partner in invoices.mapped('partner_id'):
|
for partner in invoices.mapped('partner_id'):
|
||||||
invoices2merge = invoices.filtered(
|
invoices2merge = invoices.filtered(
|
||||||
lambda x: x.partner_id == partner)
|
lambda x: x.partner_id == partner)
|
||||||
if partner.contract_invoice_merge and len(invoices2merge) > 1:
|
if partner.contract_invoice_merge and len(invoices2merge) > 1:
|
||||||
invoices2merge.do_merge()
|
invoices_info.update(invoices2merge.do_merge())
|
||||||
invoices2unlink += invoices2merge
|
invoices2unlink += invoices2merge
|
||||||
|
invoices -= invoices2unlink
|
||||||
invoices2unlink.unlink()
|
invoices2unlink.unlink()
|
||||||
return True
|
return invoices | AccountInvoice.browse(invoices_info.keys())
|
||||||
|
|||||||
@@ -32,8 +32,6 @@ class TestContractInvoiceMergeByPartner(common.SavepointCase):
|
|||||||
})
|
})
|
||||||
|
|
||||||
def test_invoices_merged(self):
|
def test_invoices_merged(self):
|
||||||
res = self.env['account.analytic.account'].recurring_create_invoice()
|
|
||||||
self.assertEqual(res, True)
|
|
||||||
self.contract1.write({
|
self.contract1.write({
|
||||||
'recurring_invoices': True,
|
'recurring_invoices': True,
|
||||||
'recurring_rule_type': 'monthly',
|
'recurring_rule_type': 'monthly',
|
||||||
@@ -51,9 +49,7 @@ class TestContractInvoiceMergeByPartner(common.SavepointCase):
|
|||||||
contracts = self.env['account.analytic.account'].search([
|
contracts = self.env['account.analytic.account'].search([
|
||||||
('partner_id', '=', self.partner.id)
|
('partner_id', '=', self.partner.id)
|
||||||
])
|
])
|
||||||
contracts.recurring_create_invoice()
|
invoices = contracts.recurring_create_invoice()
|
||||||
invoices = self.env['account.invoice'].search(
|
|
||||||
[('partner_id', '=', self.partner.id)])
|
|
||||||
inv_draft = invoices.filtered(lambda x: x.state == 'draft')
|
inv_draft = invoices.filtered(lambda x: x.state == 'draft')
|
||||||
self.assertEqual(len(inv_draft), 1)
|
self.assertEqual(len(inv_draft), 1)
|
||||||
inv_cancel = invoices.filtered(lambda x: x.state == 'cancel')
|
inv_cancel = invoices.filtered(lambda x: x.state == 'cancel')
|
||||||
|
|||||||
@@ -16,12 +16,10 @@ class AccountAnalyticAccount(models.Model):
|
|||||||
if self.partner_id.customer_payment_mode_id:
|
if self.partner_id.customer_payment_mode_id:
|
||||||
self.payment_mode_id = self.partner_id.customer_payment_mode_id.id
|
self.payment_mode_id = self.partner_id.customer_payment_mode_id.id
|
||||||
|
|
||||||
@api.model
|
@api.multi
|
||||||
def _prepare_invoice_data(self, contract):
|
def _prepare_invoice(self):
|
||||||
invoice_vals = super(AccountAnalyticAccount, self)._prepare_invoice()
|
invoice_vals = super(AccountAnalyticAccount, self)._prepare_invoice()
|
||||||
if contract.payment_mode_id:
|
if self.payment_mode_id:
|
||||||
invoice_vals['payment_mode_id'] = contract.payment_mode_id.id
|
invoice_vals['payment_mode_id'] = self.payment_mode_id.id
|
||||||
invoice_vals['partner_bank_id'] = (
|
invoice_vals['partner_bank_id'] = self.partner_id.bank_ids[:1].id
|
||||||
contract.partner_id.bank_ids[:1].id
|
|
||||||
)
|
|
||||||
return invoice_vals
|
return invoice_vals
|
||||||
|
|||||||
@@ -69,14 +69,13 @@ class TestContractPaymentInit(common.SavepointCase):
|
|||||||
'uom_id': self.product.uom_id.id,
|
'uom_id': self.product.uom_id.id,
|
||||||
})]
|
})]
|
||||||
})
|
})
|
||||||
res = self.contract._prepare_invoice_data(self.contract)
|
|
||||||
self.assertEqual(res.get('partner_id'), self.contract.partner_id.id)
|
|
||||||
self.assertEqual(res.get('payment_mode_id'),
|
|
||||||
self.contract.payment_mode_id.id)
|
|
||||||
self.contract.recurring_create_invoice()
|
self.contract.recurring_create_invoice()
|
||||||
new_invoice = self.env['account.invoice'].search([
|
new_invoice = self.env['account.invoice'].search([
|
||||||
('contract_id', '=', self.contract.id)
|
('contract_id', '=', self.contract.id)
|
||||||
])
|
])
|
||||||
|
self.assertEqual(new_invoice.partner_id, self.contract.partner_id)
|
||||||
|
self.assertEqual(new_invoice.payment_mode_id,
|
||||||
|
self.contract.payment_mode_id)
|
||||||
self.assertEqual(len(new_invoice.ids), 1)
|
self.assertEqual(len(new_invoice.ids), 1)
|
||||||
self.contract.recurring_create_invoice()
|
self.contract.recurring_create_invoice()
|
||||||
self.assertEqual(self.contract.payment_mode_id,
|
self.assertEqual(self.contract.payment_mode_id,
|
||||||
|
|||||||
Reference in New Issue
Block a user