summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2024-01-29 14:26:20 +0700
committerstephanchrst <stephanchrst@gmail.com>2024-01-29 14:26:20 +0700
commit4a35b0d5432ed38395fa8f8cb6ebcfb5e0887f28 (patch)
treee6b3650cc63fd80a6480088716078f9697949bdc
parent8a63e82659a9a718b0dfeba0423a037130e57acd (diff)
add status note logistc
-rw-r--r--indoteknik_custom/models/stock_picking.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py
index 6754ebab..8ff782ba 100644
--- a/indoteknik_custom/models/stock_picking.py
+++ b/indoteknik_custom/models/stock_picking.py
@@ -69,7 +69,9 @@ class StockPicking(models.Model):
note_logistic = fields.Selection([
('hold', 'Hold by Sales'),
('not_paid', 'Customer belum bayar'),
- ('partial', 'Kirim Parsial')
+ ('partial', 'Kirim Parsial'),
+ ('not_complete', 'Belum Lengkap'),
+ ('indent', 'Indent')
], string='Note Logistic', help='jika field ini diisi maka tidak akan dihitung ke lead time')
waybill_id = fields.One2many(comodel_name='airway.bill', inverse_name='do_id', string='Airway Bill')
purchase_representative_id = fields.Many2one('res.users', related='move_lines.purchase_line_id.order_id.user_id', string="Purchase Representative", readonly=True)