oca-technical/odoo-bringout-oca-pos-pos_partner_firstname/pos_partner_firstname/models/res_partner.py
2025-08-29 15:43:03 +02:00

13 lines
344 B
Python

# Copyright 2019 Roberto Fichera
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import api, models
class ResPartner(models.Model):
_inherit = "res.partner"
@api.model
def get_names_order(self):
"""Allow POS frontend to retrieve 'partner_names_order'"""
return self._get_names_order()