summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2024-11-13 14:20:07 +0700
committerstephanchrst <stephanchrst@gmail.com>2024-11-13 14:20:07 +0700
commit770c6506de7ba5b1a3430695298f1001f6e9d48e (patch)
treef7af35a1f8b250768f51277230468e9e2d21f989 /indoteknik_custom/models
parent7dd310eed8f726982e3df3934d85e844b14526c3 (diff)
add purchaser in fulfillment v2
Diffstat (limited to 'indoteknik_custom/models')
-rw-r--r--indoteknik_custom/models/sales_order_fullfillment.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/sales_order_fullfillment.py b/indoteknik_custom/models/sales_order_fullfillment.py
index 42544c15..05a0641c 100644
--- a/indoteknik_custom/models/sales_order_fullfillment.py
+++ b/indoteknik_custom/models/sales_order_fullfillment.py
@@ -21,6 +21,7 @@ class SalesOrderFullfillmentV2(models.Model):
po_ids = fields.Many2many('purchase.order', string='Purchase Order', help='PO yang dibuat, bisa lebih dari satu')
po_qty = fields.Float(string='PO Qty', help='Totalan dari semua PO Outstanding')
received_qty = fields.Float(string='Received Qty', help='Totalan dari barang yang diterima dari PO tsb')
+ purchaser = fields.Char(string='Purchaser')
class SalesOrderFullfillment(models.Model):