Improvements as per feedback

This commit is contained in:
Andrea
2018-12-20 16:39:00 +01:00
committed by Andrea Stirpe
parent 773b8f48e7
commit 3fbfa32f73
6 changed files with 57 additions and 2 deletions

View File

@@ -188,6 +188,12 @@ class AccountSpread(models.Model):
else:
if self.invoice_type in ['out_invoice', 'out_refund']:
self.invoice_type = 'in_invoice'
if self.template_id.period_number:
self.period_number = self.template_id.period_number
if self.template_id.period_type:
self.period_type = self.template_id.period_type
if self.template_id.start_date:
self.spread_date = self.template_id.start_date
@api.onchange('invoice_type', 'company_id')
def onchange_invoice_type(self):
@@ -326,7 +332,11 @@ class AccountSpread(models.Model):
spread_date = self._next_line_date(month_day, spread_date)
self.write({'line_ids': commands})
self.message_post(body=_("Spread table created."))
invoice_type_selection = dict(self.fields_get(
allfields=['invoice_type']
)['invoice_type']['selection'])[self.invoice_type]
msg_body = _("Spread table '%s' created.") % invoice_type_selection
self.message_post(body=msg_body)
@api.multi
def _get_number_of_periods(self, month_day):
@@ -398,8 +408,29 @@ class AccountSpread(models.Model):
for spread in self:
spread_mls = spread.line_ids.mapped('move_id.line_ids')
spread_mls.remove_move_reconcile()
inv_link = '<a href=# data-oe-model=account.invoice ' \
'data-oe-id=%d>%s</a>' % (
spread.invoice_id.id, _("Invoice"))
msg_body = _("Unlinked invoice line '%s' (view %s).") % (
spread.invoice_line_id.name, inv_link)
spread.message_post(body=msg_body)
spread.write({'invoice_line_ids': [(5, 0, 0)]})
@api.multi
def unlink(self):
for spread in self:
if spread.invoice_line_id:
raise UserError(
_('Cannot delete spread(s) that are linked '
'to an invoice line.'))
posted_line_ids = self.line_ids.filtered(
lambda x: x.move_id.state == 'posted')
if posted_line_ids:
raise ValidationError(
_('Cannot delete spread(s): there are some '
'posted Journal Entries.'))
return super().unlink()
@api.multi
def reconcile_spread_moves(self):
for spread in self: