14 lines
514 B
Python
14 lines
514 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models, api, _
|
|
|
|
|
|
class AccountPayment(models.Model):
|
|
_inherit = 'account.payment'
|
|
|
|
@api.depends('country_code', 'partner_type')
|
|
def _compute_payment_receipt_title(self):
|
|
# OVERRIDE
|
|
super()._compute_payment_receipt_title()
|
|
for payment in self.filtered(lambda p: p.country_code == 'AU' and p.partner_type == 'supplier'):
|
|
payment.payment_receipt_title = _('Remittance Advice')
|