diff options
Diffstat (limited to 'indoteknik_custom/models/product_template.py')
| -rwxr-xr-x | indoteknik_custom/models/product_template.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indoteknik_custom/models/product_template.py b/indoteknik_custom/models/product_template.py index d490eb05..c94b523a 100755 --- a/indoteknik_custom/models/product_template.py +++ b/indoteknik_custom/models/product_template.py @@ -59,6 +59,7 @@ class ProductTemplate(models.Model): ], string='Kind of', copy=False) sni = fields.Boolean(string='SNI') tkdn = fields.Boolean(string='TKDN') + short_spesification = fields.Char(string='Short Spesification') def _get_qty_sold(self): for rec in self: @@ -351,6 +352,7 @@ class ProductProduct(models.Model): sla_version = fields.Integer(string="SLA Version", default=0) is_edited = fields.Boolean(string='Is Edited') qty_sold = fields.Float(string='Sold Quantity', compute='_get_qty_sold') + short_spesification = fields.Char(string='Short Spesification') def update_internal_reference_variants(self, limit=100): variants = self.env['product.product'].search([ |
