Odoo18-Base/addons/l10n_in_pos/models/product_product.py
2025-01-06 10:57:38 +07:00

15 lines
416 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models
class ProductProduct(models.Model):
_inherit = "product.product"
@api.model
def _load_pos_data_fields(self, config_id):
fields = super()._load_pos_data_fields(config_id)
if self.env.company.country_id.code == 'IN':
fields += ['l10n_in_hsn_code']
return fields