summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2023-08-25 15:12:41 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2023-08-25 15:12:41 +0700
commitfbd4898c95de1cd78483509fe95726a61532cdfa (patch)
treef9164a652571be22a363b9452d13aceecb1da9ae
parent1ddf6f15436ddf32cd2ffa36cf3187917fa8b110 (diff)
fix stock picking selection
-rw-r--r--indoteknik_custom/models/stock_picking.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py
index c23e44e1..d35cd9b8 100644
--- a/indoteknik_custom/models/stock_picking.py
+++ b/indoteknik_custom/models/stock_picking.py
@@ -66,7 +66,7 @@ class StockPicking(models.Model):
date_doc_kirim = fields.Datetime(string='Tanggal Kirim di SJ', help="Tanggal Kirim di cetakan SJ, tidak berpengaruh ke Accounting")
note_logistic = fields.Selection([
('hold', 'Hold by Sales'),
- ('not_paid', 'Customer belum bayar')
+ ('not_paid', 'Customer belum bayar'),
('partial', 'Kirim Parsial')
], string='Note', 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')