summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2024-01-23 10:54:24 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2024-01-23 10:54:24 +0700
commitcd915ccc6ade5eb6c837597ae5a18298a6902aaf (patch)
treeea440b3421d3344fc9596c044366fa1282026a8b
parent90147ac8a57a110ce19c447095cc956e7861dcf5 (diff)
change name field
-rwxr-xr-xindoteknik_custom/models/purchase_pricelist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/purchase_pricelist.py b/indoteknik_custom/models/purchase_pricelist.py
index 10326c83..98f51d03 100755
--- a/indoteknik_custom/models/purchase_pricelist.py
+++ b/indoteknik_custom/models/purchase_pricelist.py
@@ -18,7 +18,7 @@ class PurchasePricelist(models.Model):
count_trx_po_vendor = fields.Integer(string='Count Trx Vendor')
taxes_product_id = fields.Many2one('account.tax', string='Taxes Human')
taxes_system_id = fields.Many2one('account.tax', string='Taxes System', readonly=True)
- include_price = fields.Float(string='Include Price', readonly=True)
+ include_price = fields.Float(string='Final Price', readonly=True)
@api.depends('product_id', 'vendor_id')
def _compute_name(self):
self.name = self.vendor_id.name + ', ' + self.product_id.name