diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-05 16:48:43 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-05 16:48:43 +0700 |
| commit | c6c1e26d35327b61a88b247ef94cfff9257b492a (patch) | |
| tree | 32539576f3a986042920ac6ff8807b87a494ed9e | |
| parent | 5614f5f0fa0322089f17feeeeeb56af93bf76670 (diff) | |
Add computed_price field on product pricelist
| -rw-r--r-- | indoteknik_custom/models/product_pricelist.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indoteknik_custom/models/product_pricelist.py b/indoteknik_custom/models/product_pricelist.py index 026977f8..144b8689 100644 --- a/indoteknik_custom/models/product_pricelist.py +++ b/indoteknik_custom/models/product_pricelist.py @@ -40,5 +40,4 @@ class ProductPricelistItem(models.Model): _inherit = 'product.pricelist.item' manufacture_id = fields.Many2one('x_manufactures', string='Manufacture') - -
\ No newline at end of file + computed_price = fields.Float(string='Computed Price')
\ No newline at end of file |
