diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-08-13 10:30:48 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-08-13 10:30:48 +0700 |
| commit | 3ea9850077463648743e0ae87966687dd63c378e (patch) | |
| tree | ece820f8858e122c3914e846345bc8805af6ea02 /indoteknik_custom/models/purchase_order.py | |
| parent | 39495df4a7abaf16e0b4b5453d11fffb43d2a499 (diff) | |
| parent | dabf2a523d801ac222af046fea3bb08f9db6bf9f (diff) | |
Merge branch 'master' of bitbucket.org:altafixco/indoteknik-addons
Diffstat (limited to 'indoteknik_custom/models/purchase_order.py')
| -rw-r--r-- | indoteknik_custom/models/purchase_order.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/purchase_order.py b/indoteknik_custom/models/purchase_order.py index f4d7a67a..2c589d36 100644 --- a/indoteknik_custom/models/purchase_order.py +++ b/indoteknik_custom/models/purchase_order.py @@ -18,7 +18,7 @@ class PurchaseOrder(models.Model): if product_uom_qty == sum_qty_received: status = 'Terproses' - elif product_uom_qty > sum_qty_received and sum_qty_received > 0: + elif product_uom_qty > sum_qty_received > 0: status = 'Sebagian Diproses' else: status = 'Menunggu Diproses' |
