forked from Mapan/odoo17e
10 lines
243 B
Python
10 lines
243 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class UoM(models.Model):
|
|
_inherit = 'uom.uom'
|
|
|
|
fedex_code = fields.Char(string='Fedex Code', help="UoM Code sent to FedEx")
|