summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/sales_order_fullfillment.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2024-11-13 09:04:27 +0700
committerstephanchrst <stephanchrst@gmail.com>2024-11-13 09:04:27 +0700
commitb44f26591a67b1a33132bcbcb9190920eb52e6f3 (patch)
treeed0714446391fa55a2687e992c3991cb15ee105b /indoteknik_custom/models/sales_order_fullfillment.py
parenta3c057d4ddf660ce1214b55c791fd436cc7a6100 (diff)
view of fulfillment version 2
Diffstat (limited to 'indoteknik_custom/models/sales_order_fullfillment.py')
-rw-r--r--indoteknik_custom/models/sales_order_fullfillment.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/indoteknik_custom/models/sales_order_fullfillment.py b/indoteknik_custom/models/sales_order_fullfillment.py
index 9e9457f1..42544c15 100644
--- a/indoteknik_custom/models/sales_order_fullfillment.py
+++ b/indoteknik_custom/models/sales_order_fullfillment.py
@@ -16,8 +16,9 @@ class SalesOrderFullfillmentV2(models.Model):
move_line_id = fields.Many2one('stock.move.line', string='Move Line')
product_id = fields.Many2one('product.product', string='Product')
so_qty = fields.Float(string='SO Qty')
- reserved_stock_qty = fields.Float(string='Reserved Stock Qty')
- po_ids = fields.Many2many('purchase.order', string='Purchase Order')
+ reserved_stock_qty = fields.Float(string='Reserved Stock Qty', help='Sudah ter-reserved oleh sistem')
+ delivered_qty = fields.Float(string='Delivered Qty', help='Yang sudah terkirim ke Customer')
+ 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')