diff options
| author | HafidBuroiroh <hafidburoiroh09@gmail.com> | 2026-03-13 16:03:28 +0700 |
|---|---|---|
| committer | HafidBuroiroh <hafidburoiroh09@gmail.com> | 2026-03-13 16:03:28 +0700 |
| commit | 30587541325488291531f00e8a0696e5ca70bbaa (patch) | |
| tree | 44c0cd65ef4915a90a9e5328584a3827eeff5ee3 | |
| parent | 8c5101926d38bf7d24a1a418910a017531ee7c49 (diff) | |
<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, }) |
