15 lines
416 B
Python
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
|