1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_pe_edi/models/uom_uom.py
2024-12-10 09:04:09 +07:00

14 lines
448 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ProductUoM(models.Model):
_inherit = 'uom.uom'
l10n_pe_edi_measure_unit_code = fields.Char(
'Measure unit code',
help="Unit code that relates to a product in order to identify what measure unit it uses, the possible values"
" that you can use here can be found in this URL")