mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-26 13:21:59 +02:00
11 lines
340 B
Python
11 lines
340 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class UoM(models.Model):
|
|
_inherit = "uom.uom"
|
|
|
|
# As per GST Rules you need to Specify UQC given by GST.
|
|
l10n_in_code = fields.Char("Indian GST UQC", help="Unique Quantity Code (UQC) under GST")
|