8 lines
166 B
Python
8 lines
166 B
Python
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")
|