[IMP] Exclude proforma2 state for draft invoice check on account_invoice_constraint_chronology

[IMP] DEFAULT_SERVER_DATE_FORMAT

[IMP] display formatted date with context timezone in exception popup for account_invoice_constraint_chronology addons

[ADD] Add context in  tests for account_invoice_constraint_chronology addons

[IMP] Use exceptions.warning for account_invoice_constraint_chronology addons

[IMP] Remove exclamation mark

[ADD] Add .pot file for account_invoice_constraint_chronology

[IMP] Use .env for account_invoice_constraint_chronology tests

[IMP] Use onchange decorator, add white space at end of file, correct ypo mistake for account_invoice_constraint_chronology

[IMP] Improve performance
This commit is contained in:
Adrien Peiffer
2014-08-18 11:06:23 +02:00
committed by Zina Rasoamanana
parent 305ed382d8
commit 9a51a1c1cb
5 changed files with 113 additions and 64 deletions

View File

@@ -29,34 +29,26 @@
import openerp.tests.common as common
from openerp import workflow
from openerp.osv import orm
from openerp import exceptions
from datetime import datetime, timedelta
from openerp.tools import DEFAULT_SERVER_DATE_FORMAT
DB = common.DB
ADMIN_USER_ID = common.ADMIN_USER_ID
def get_simple_product_id(self):
return self.registry('product.product').create(self.cr,
self.uid,
{'name': 'product_test_01',
'lst_price': 2000.00,
}, context={})
return self.env['product.product'].create({'name': 'product_test_01',
'lst_price': 2000.00,
})
def get_journal_check(self, value):
sale_journal_id = self.ref('account.sales_journal')
journal_id = self.registry('account.journal').copy(self.cr,
self.uid,
sale_journal_id,
{},
context={})
self.registry('account.journal').write(self.cr,
self.uid,
[journal_id],
{'check_chronology': value},
context={})
return journal_id
sale_journal = self.env['account.journal'].browse([sale_journal_id])
journal = sale_journal.copy()
journal.check_chronology = value
return journal
def get_simple_account_invoice_line_values(self, product_id):
@@ -70,7 +62,7 @@ def get_simple_account_invoice_line_values(self, product_id):
def create_simple_invoice(self, journal_id, date):
partner_id = self.ref('base.res_partner_2')
product_id = get_simple_product_id(self)
product = get_simple_product_id(self)
return self.env['account.invoice']\
.create({'partner_id': partner_id,
'account_id':
@@ -83,7 +75,7 @@ def create_simple_invoice(self, journal_id, date):
self.ref('account.a_sale'),
'price_unit': 2000.00,
'quantity': 1,
'product_id': product_id,
'product_id': product.id,
}
)
],
@@ -94,40 +86,42 @@ class TestAccountConstraintChronology(common.TransactionCase):
def setUp(self):
super(TestAccountConstraintChronology, self).setUp()
self.context = self.registry("res.users").context_get(self.cr,
self.uid)
def test_invoice_draft(self):
journal_id = get_journal_check(self, True)
journal = get_journal_check(self, True)
today = datetime.now()
yesterday = today - timedelta(days=1)
date = yesterday.strftime('%Y-%m-%d')
create_simple_invoice(self, journal_id, date)
date = today.strftime('%Y-%m-%d')
invoice_2 = create_simple_invoice(self, journal_id, date)
self.assertRaises(orm.except_orm, workflow.trg_validate, self.uid,
date = yesterday.strftime(DEFAULT_SERVER_DATE_FORMAT)
create_simple_invoice(self, journal.id, date)
date = today.strftime(DEFAULT_SERVER_DATE_FORMAT)
invoice_2 = create_simple_invoice(self, journal.id, date)
self.assertRaises(exceptions.Warning, workflow.trg_validate, self.uid,
'account.invoice', invoice_2.id, 'invoice_open',
self.cr)
def test_invoice_validate(self):
journal_id = get_journal_check(self, True)
journal = get_journal_check(self, True)
today = datetime.now()
tomorrow = today + timedelta(days=1)
date = tomorrow.strftime('%Y-%m-%d')
invoice = create_simple_invoice(self, journal_id, date)
date = tomorrow.strftime(DEFAULT_SERVER_DATE_FORMAT)
invoice = create_simple_invoice(self, journal.id, date)
workflow.trg_validate(self.uid, 'account.invoice', invoice.id,
'invoice_open', self.cr)
date = today.strftime('%Y-%m-%d')
invoice_2 = create_simple_invoice(self, journal_id, date)
self.assertRaises(orm.except_orm, workflow.trg_validate, self.uid,
date = today.strftime(DEFAULT_SERVER_DATE_FORMAT)
invoice_2 = create_simple_invoice(self, journal.id, date)
self.assertRaises(exceptions.Warning, workflow.trg_validate, self.uid,
'account.invoice', invoice_2.id, 'invoice_open',
self.cr)
def test_invoice_without_date(self):
journal_id = get_journal_check(self, True)
journal = get_journal_check(self, True)
today = datetime.now()
yesterday = today - timedelta(days=1)
date = yesterday.strftime('%Y-%m-%d')
create_simple_invoice(self, journal_id, date)
invoice_2 = create_simple_invoice(self, journal_id, False)
self.assertRaises(orm.except_orm, workflow.trg_validate, self.uid,
date = yesterday.strftime(DEFAULT_SERVER_DATE_FORMAT)
create_simple_invoice(self, journal.id, date)
invoice_2 = create_simple_invoice(self, journal.id, False)
self.assertRaises(exceptions.Warning, workflow.trg_validate, self.uid,
'account.invoice', invoice_2.id, 'invoice_open',
self.cr)