79571535

Date: 2025-04-13 12:34:20
Score: 1
Natty:
Report link

You can try to use "_rec_name = 'location'" in your partner_bank_id model like below

 class SalesPartnerBankInherit(models.Model):
    _inherit = 'res.partner.bank'
    _rec_name = 'location'

    display_on_sales = fields.Boolean(string='Display On Sales Quotation '
                                             'Report', readonly=False)
    location = fields.Char()
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jason