forked from Mapan/odoo17e
76 lines
2.7 KiB
Python
76 lines
2.7 KiB
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models, _
|
|
from odoo.exceptions import UserError
|
|
from odoo.tools import html2plaintext
|
|
|
|
|
|
class AccountBankStatementLineTransient(models.TransientModel):
|
|
_name = "account.bank.statement.line.transient"
|
|
_description = "Transient model for bank statement line"
|
|
_order = 'date asc'
|
|
|
|
sequence = fields.Integer(default=1)
|
|
date = fields.Date()
|
|
amount = fields.Monetary(readonly=True)
|
|
online_transaction_identifier = fields.Char(readonly=True)
|
|
payment_ref = fields.Char(readonly=True)
|
|
account_number = fields.Char(readonly=True)
|
|
partner_name = fields.Char(readonly=True)
|
|
transaction_details = fields.Html(readonly=True)
|
|
state = fields.Selection(
|
|
[
|
|
('pending', 'Pending'),
|
|
('posted', 'Posted'),
|
|
],
|
|
default='posted',
|
|
readonly=True,
|
|
)
|
|
|
|
journal_id = fields.Many2one(
|
|
comodel_name='account.journal',
|
|
readonly=True,
|
|
)
|
|
online_account_id = fields.Many2one(
|
|
related='journal_id.account_online_account_id',
|
|
store=True,
|
|
readonly=True,
|
|
)
|
|
currency_id = fields.Many2one(
|
|
related='journal_id.company_id.currency_id',
|
|
readonly=True,
|
|
)
|
|
|
|
def action_import_transactions(self):
|
|
# This action could be call on multiple lines.
|
|
if not self:
|
|
raise UserError(_("Please select first the transactions you wish to import."))
|
|
|
|
if self.filtered(lambda line: line.state == 'pending'):
|
|
raise UserError(_("You cannot import pending transactions."))
|
|
|
|
fields_to_read = [
|
|
'date',
|
|
'amount',
|
|
'online_transaction_identifier',
|
|
'payment_ref',
|
|
'account_number',
|
|
'partner_name',
|
|
'transaction_details',
|
|
'journal_id',
|
|
'online_account_id',
|
|
]
|
|
transactions_to_import = self.read(fields=fields_to_read, load=None)
|
|
self.env['account.bank.statement.line']._online_sync_bank_statement(transactions_to_import, self.online_account_id)
|
|
return self.env["ir.actions.act_window"]._for_xml_id('account.open_account_journal_dashboard_kanban')
|
|
|
|
def read(self, fields=None, load='_classic_read'):
|
|
transactions = super().read(fields=fields, load=load)
|
|
|
|
# Clean eventual <p>...</p> encapsulation for the 'transaction_details' field to be decoded as a JSON later.
|
|
for transaction in transactions:
|
|
if 'transaction_details' in transaction:
|
|
transaction['transaction_details'] = html2plaintext(transaction['transaction_details'])
|
|
|
|
return transactions
|