summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/purchase_order.py
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2022-08-19 11:38:51 +0700
committerIT Fixcomart <it@fixcomart.co.id>2022-08-19 11:38:51 +0700
commita836a99c12e1ebf4b764810036ecb64183890ad2 (patch)
tree447a83cceb28322ff2143d25017a233b3722e940 /indoteknik_custom/models/purchase_order.py
parentb75b17182b374acc9a70d9cf45a501691428fbfe (diff)
Inherit function menggunakan super
Diffstat (limited to 'indoteknik_custom/models/purchase_order.py')
-rwxr-xr-xindoteknik_custom/models/purchase_order.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/indoteknik_custom/models/purchase_order.py b/indoteknik_custom/models/purchase_order.py
index 2c589d36..cb048182 100755
--- a/indoteknik_custom/models/purchase_order.py
+++ b/indoteknik_custom/models/purchase_order.py
@@ -8,7 +8,6 @@ class PurchaseOrder(models.Model):
procurement_status = fields.Char(string='Procurement Status', compute='get_procurement_status',readonly=True)
def get_procurement_status(self):
-
for purchase_order in self:
product_uom_qty = sum_qty_received = 0