mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
26 lines
965 B
Python
26 lines
965 B
Python
# © 2013-2016 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import models, fields, api
|
|
|
|
|
|
class BankPaymentLine(models.Model):
|
|
_inherit = 'bank.payment.line'
|
|
|
|
priority = fields.Selection(
|
|
related='payment_line_ids.priority', string='Priority')
|
|
local_instrument = fields.Selection(
|
|
related='payment_line_ids.local_instrument',
|
|
string='Local Instrument')
|
|
category_purpose = fields.Selection(
|
|
related='payment_line_ids.category_purpose', string='Category Purpose')
|
|
purpose = fields.Selection(
|
|
related='payment_line_ids.purpose')
|
|
|
|
@api.model
|
|
def same_fields_payment_line_and_bank_payment_line(self):
|
|
res = super(BankPaymentLine, self).\
|
|
same_fields_payment_line_and_bank_payment_line()
|
|
res += ['priority', 'local_instrument', 'category_purpose', 'purpose']
|
|
return res
|