mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
49 lines
1.7 KiB
Python
49 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
# © 2011-2016 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
|
from openerp import _, fields, models
|
|
from openerp.addons.account_move_base_import.models.account_move \
|
|
import ErrorTooManyPartner
|
|
|
|
|
|
class AccountMoveCompletionRule(models.Model):
|
|
|
|
_name = "account.move.completion.rule"
|
|
_inherit = "account.move.completion.rule"
|
|
|
|
function_to_call = fields.Selection(
|
|
selection_add=[
|
|
('get_from_name_and_so', 'From line name (based on SO number)')
|
|
])
|
|
|
|
# Should be private but data are initialised with no update XML
|
|
def get_from_name_and_so(self, line):
|
|
"""
|
|
Match the partner based on the SO number and the reference of the
|
|
statement line. Then, call the generic get_values_for_line method to
|
|
complete other values. If more than one partner matched, raise the
|
|
ErrorTooManyPartner error.
|
|
|
|
:param int/long st_line: read of the concerned
|
|
account.bank.statement.line
|
|
|
|
:return:
|
|
A dict of value that can be passed directly to the write method of
|
|
the statement line or {}
|
|
{'partner_id': value,
|
|
'account_id': value,
|
|
|
|
...}
|
|
"""
|
|
res = {}
|
|
so_obj = self.env['sale.order']
|
|
orders = so_obj.search([('name', '=', line.name)])
|
|
if len(orders) > 1:
|
|
raise ErrorTooManyPartner(
|
|
_('Line named "%s" was matched by more '
|
|
'than one partner while looking on SO by ref.') %
|
|
line.name)
|
|
if len(orders) == 1:
|
|
res['partner_id'] = orders[0].partner_id.id
|
|
return res
|