diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2026-03-13 09:04:03 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2026-03-13 09:04:03 +0000 |
| commit | 8395e794fdf4f6a0e5bcd1e2c0725155c49ce319 (patch) | |
| tree | 44c0cd65ef4915a90a9e5328584a3827eeff5ee3 | |
| parent | 972de4c397ebe4e1dc77fab7455e2105c391eef2 (diff) | |
| parent | 30587541325488291531f00e8a0696e5ca70bbaa (diff) | |
Merged in CR/Sourcing-Job (pull request #505)
<hafid> fix vendor purchase pricelist
| -rw-r--r-- | indoteknik_custom/models/sourcing_job_order.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/sourcing_job_order.py b/indoteknik_custom/models/sourcing_job_order.py index b35f33a7..ece5ef2b 100644 --- a/indoteknik_custom/models/sourcing_job_order.py +++ b/indoteknik_custom/models/sourcing_job_order.py @@ -857,7 +857,7 @@ class SourcingJobOrderLine(models.Model): "order_id": so.id, "product_id": product.id, "product_uom_qty": rec.quantity or 1, - "price_unit": rec.price or 0, + "purchase_price": rec.price or 0, "name": rec.product_name_md, "vendor_id": rec.vendor_id.id, }) |
