diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2026-03-14 04:50:01 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2026-03-14 04:50:01 +0000 |
| commit | 4e1790f582827541ae2cdbe5c2655901beb50d6f (patch) | |
| tree | 34b9cc2af19a347c4f361fcc811ac13a2532119b /indoteknik_custom | |
| parent | aac0889a2d5acfe24e99794c554a13b76ecb9bd8 (diff) | |
| parent | 9a039103f64661ebf27d89889e1e3c3a67c017a5 (diff) | |
Merged in CR/Sourcing-Job (pull request #511)
<hafid> fix error purchase price
Diffstat (limited to 'indoteknik_custom')
| -rw-r--r-- | indoteknik_custom/models/sourcing_job_order.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indoteknik_custom/models/sourcing_job_order.py b/indoteknik_custom/models/sourcing_job_order.py index 03e7d2e4..9729fc45 100644 --- a/indoteknik_custom/models/sourcing_job_order.py +++ b/indoteknik_custom/models/sourcing_job_order.py @@ -1075,8 +1075,8 @@ class SourcingJobOrderLine(models.Model): price = 0 taxes = 24 vendor_id = False - human_last_update = purchase_price.human_last_update or datetime.min - system_last_update = purchase_price.system_last_update or datetime.min + human_last_update = purchase_price.human_last_update or False + system_last_update = purchase_price.system_last_update or False # if purchase_price.taxes_product_id.type_tax_use == 'purchase': price = purchase_price.product_price |
