from odoo import fields, models class ResPartner(models.Model): _inherit = 'res.partner' property_ups_carrier_account = fields.Char( string="UPS Account Number", company_dependent=True, help="The customer's own UPS account number. Stored on the customer and " "recalled automatically when you ship to them with a UPS carrier that " "has \"Bill recipient's UPS account\" enabled -- UPS then bills this " "account for the shipping (UPS 'Bill Receiver') instead of yours.", )