Block when you try to validate an invoice with a date in the future PEP8

This commit is contained in:
Alexis de Lattre
2016-01-29 17:36:10 +01:00
parent 21ab3fb466
commit 324580ec79

View File

@@ -20,8 +20,9 @@
# #
############################################################################## ##############################################################################
from openerp import models, fields, api from openerp import models, fields, api, _
from openerp.tools import float_compare from openerp.tools import float_compare
from openerp.exceptions import Warning as UserError
class AccountInvoice(models.Model): class AccountInvoice(models.Model):
@@ -41,6 +42,18 @@ class AccountInvoice(models.Model):
partner_bank_id = fields.Many2one(track_visibility='onchange') partner_bank_id = fields.Many2one(track_visibility='onchange')
fiscal_position = fields.Many2one(track_visibility='onchange') fiscal_position = fields.Many2one(track_visibility='onchange')
@api.multi
def action_move_create(self):
today = fields.Date.context_today(self)
for invoice in self:
if invoice.date_invoice and invoice.date_invoice > today:
raise UserError(_(
"You cannot validate the invoice of '%s' "
" with an invoice date (%s) in the future !") % (
invoice.partner_id.name_get()[0][1],
invoice.date_invoice))
return super(AccountInvoice, self).action_move_create()
class AccountJournal(models.Model): class AccountJournal(models.Model):
_inherit = 'account.journal' _inherit = 'account.journal'
@@ -78,7 +91,9 @@ class AccountAnalyticAccount(models.Model):
if self._context.get('analytic_account_show_code_only'): if self._context.get('analytic_account_show_code_only'):
res = [] res = []
for record in self: for record in self:
res.append((record.id, record.code or record._get_one_full_name(record))) res.append((
record.id,
record.code or record._get_one_full_name(record)))
return res return res
else: else:
return super(AccountAnalyticAccount, self).name_get() return super(AccountAnalyticAccount, self).name_get()