mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-16 19:12:04 +00:00
14a109dc87
[ADD] l10n_ch_zip [ADD] l10n_ch_bank_statement_import_postfinance
195 lines
7.1 KiB
Python
195 lines
7.1 KiB
Python
# Copyright 2012-2017 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from flectra import _, api, exceptions, fields, models
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
|
|
_inherit = "account.move.line"
|
|
|
|
payment_slip_ids = fields.One2many(comodel_name='l10n_ch.payment_slip',
|
|
inverse_name='move_line_id',
|
|
string='Payment Slips',
|
|
readonly=True)
|
|
|
|
# Adding an index on invoice_id for the account.move.line.
|
|
# The goal is to optimize the related field on payment_slip,
|
|
# as updating the stored value will trigger a:
|
|
# self.env['account.move.line'].search([('invoice_id', '=', [xxx])])
|
|
# for each invoice validation.
|
|
invoice_id = fields.Many2one(
|
|
'account.move', oldname="invoice", index=True
|
|
)
|
|
|
|
|
|
class AccountInvoice(models.Model):
|
|
"""Add ISR (Swiss payment vector)."""
|
|
|
|
_inherit = "account.move"
|
|
|
|
reference = fields.Char(copy=False)
|
|
|
|
partner_bank_id = fields.Many2one(
|
|
'res.partner.bank',
|
|
'Bank Account',
|
|
help='The partner bank account to pay\n'
|
|
'Keep empty to use the default'
|
|
)
|
|
|
|
isr_reference = fields.Text(
|
|
string='ISR ref',
|
|
compute='_compute_full_isr_name',
|
|
oldname='bvr_reference',
|
|
store=True,
|
|
)
|
|
|
|
slip_ids = fields.One2many(
|
|
string='Related slip',
|
|
comodel_name='l10n_ch.payment_slip',
|
|
inverse_name='invoice_id'
|
|
)
|
|
|
|
@api.depends('slip_ids', 'state')
|
|
def _compute_full_isr_name(self):
|
|
"""Concatenate related slip references
|
|
|
|
:return: reference comma separated
|
|
:rtype: str
|
|
"""
|
|
for rec in self:
|
|
if (rec.state not in ('open', 'paid') or
|
|
not rec.slip_ids):
|
|
continue
|
|
rec.isr_reference = ', '.join(x.reference
|
|
for x in rec.slip_ids
|
|
if x.reference)
|
|
|
|
def get_payment_move_line(self):
|
|
"""Return the move line related to current invoice slips
|
|
|
|
:return: recordset of `account.move.line`
|
|
:rtype: :py:class:`flectra.model.Models`
|
|
"""
|
|
move_line_model = self.env['account.move.line']
|
|
return move_line_model.search(
|
|
[('move_id', '=', self.move_id.id),
|
|
('account_id.user_type_id.type', 'in',
|
|
['receivable', 'payable'])]
|
|
)
|
|
|
|
@api.model
|
|
def _update_ref_on_account_analytic_line(self, ref, move_id):
|
|
"""Propagate reference on analytic line"""
|
|
self.env.cr.execute(
|
|
'UPDATE account_analytic_line SET ref=%s'
|
|
' FROM account_move_line '
|
|
' WHERE account_move_line.move_id = %s '
|
|
' AND account_analytic_line.move_id = account_move_line.id',
|
|
(ref, move_id)
|
|
)
|
|
return True
|
|
|
|
@api.model
|
|
def _action_isr_number_move_line(self, move_line, ref):
|
|
"""Propagate reference on move lines and analytic lines"""
|
|
if not ref:
|
|
return
|
|
ref = ref.replace(' ', '') # remove formatting
|
|
self.env.cr.execute('UPDATE account_move_line SET transaction_ref=%s'
|
|
' WHERE id=%s', (ref, move_line.id))
|
|
self._update_ref_on_account_analytic_line(ref, move_line.move_id.id)
|
|
self.env.cache.invalidate()
|
|
|
|
#@api.multi
|
|
def invoice_validate(self):
|
|
""" Copy the ISR reference in the transaction_ref of move lines.
|
|
|
|
For customers invoices: the ISR reference is computed using
|
|
``get_isr_ref()`` on the invoice or move lines.
|
|
|
|
For suppliers invoices: the ISR reference is stored in the reference
|
|
field of the invoice.
|
|
|
|
"""
|
|
pay_slip = self.env['l10n_ch.payment_slip']
|
|
for inv in self:
|
|
if inv.type in ('in_invoice', 'in_refund'):
|
|
if inv.reference_type == 'isr' and inv._check_isr():
|
|
ref = inv.reference
|
|
else:
|
|
ref = False
|
|
move_lines = inv.get_payment_move_line()
|
|
for move_line_id in move_lines:
|
|
self._action_isr_number_move_line(move_line_id,
|
|
ref)
|
|
else:
|
|
for pay_slip in pay_slip._compute_pay_slips_from_invoices(inv):
|
|
ref = pay_slip.reference
|
|
self._action_isr_number_move_line(pay_slip.move_line_id,
|
|
ref)
|
|
return super(AccountInvoice, self).invoice_validate()
|
|
|
|
#@api.multi
|
|
def print_isr(self):
|
|
self._check_isr_generatable()
|
|
self.write({
|
|
'sent': True
|
|
})
|
|
report_name = 'l10n_ch_payment_slip.one_slip_per_page_from_invoice'
|
|
docids = self.ids
|
|
act_report = self.env['ir.actions.report']._get_report_from_name(
|
|
report_name)
|
|
return act_report.report_action(docids)
|
|
|
|
#@api.multi
|
|
def _check_isr_generatable(self):
|
|
errors = []
|
|
for inv in self:
|
|
msg = []
|
|
if inv.state in ('draft', 'cancel'):
|
|
msg.append(_('- The invoice must be confirmed.'))
|
|
bank_acc = inv.partner_bank_id
|
|
if not bank_acc:
|
|
msg.append(_('- The invoice needs a partner bank account.'))
|
|
else:
|
|
if not bank_acc.isr_adherent_num:
|
|
msg.append(
|
|
_('- The bank account {} used in invoice has no'
|
|
' ISR adherent number.'
|
|
).format(bank_acc.acc_number))
|
|
if not (bank_acc.acc_type == 'postal' or bank_acc.ccp):
|
|
msg.append(
|
|
_('- The bank account {} used in invoice needs to'
|
|
' be a postal account or have a bank CCP.'
|
|
).format(bank_acc.acc_number))
|
|
if msg:
|
|
if inv.name:
|
|
invoice = 'Invoice %s :\n' % inv.name
|
|
else:
|
|
invoice = 'Invoice (%s) :\n' % inv.partner_id.name
|
|
|
|
errors.append(invoice + '\n'.join(msg))
|
|
if errors:
|
|
raise exceptions.UserError('\n'.join(errors))
|
|
|
|
#@api.multi
|
|
def action_invoice_draft(self):
|
|
res = super().action_invoice_draft()
|
|
# Delete former printed payment slip
|
|
ActionReport = self.env['ir.actions.report']
|
|
try:
|
|
report_payment_slip = ActionReport._get_report_from_name(
|
|
'l10n_ch_payment_slip.one_slip_per_page_from_invoice')
|
|
except IndexError:
|
|
report_payment_slip = False
|
|
if report_payment_slip and report_payment_slip.attachment:
|
|
for invoice in self:
|
|
with invoice.env.do_in_draft():
|
|
invoice.name, invoice.state = invoice.move_name, 'open'
|
|
attachment = self.env.ref(
|
|
'l10n_ch_payment_slip.one_slip_per_page_from_invoice'
|
|
).retrieve_attachment(invoice)
|
|
if attachment:
|
|
attachment.unlink()
|
|
return res
|