summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/sourcing_job_order.py
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2026-03-13 09:04:03 +0000
committerIT Fixcomart <it@fixcomart.co.id>2026-03-13 09:04:03 +0000
commit8395e794fdf4f6a0e5bcd1e2c0725155c49ce319 (patch)
tree44c0cd65ef4915a90a9e5328584a3827eeff5ee3 /indoteknik_custom/models/sourcing_job_order.py
parent972de4c397ebe4e1dc77fab7455e2105c391eef2 (diff)
parent30587541325488291531f00e8a0696e5ca70bbaa (diff)
Merged in CR/Sourcing-Job (pull request #505)
<hafid> fix vendor purchase pricelist
Diffstat (limited to 'indoteknik_custom/models/sourcing_job_order.py')
-rw-r--r--indoteknik_custom/models/sourcing_job_order.py2
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,
})