diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-02-15 13:15:51 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-02-15 13:15:51 +0700 |
| commit | 258717cb3c0a326ff85200dd9a724818dd9fca18 (patch) | |
| tree | c348f60f40ccff72e8fc7358c870b9b0c42ebb06 /indoteknik_custom/models | |
| parent | 8cca552e51decb429ebb69703c82fc7b9d157df2 (diff) | |
add date surat jalan
Diffstat (limited to 'indoteknik_custom/models')
| -rw-r--r-- | indoteknik_custom/models/stock_picking.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py index 2c75ccbc..a3b5c6ef 100644 --- a/indoteknik_custom/models/stock_picking.py +++ b/indoteknik_custom/models/stock_picking.py @@ -56,6 +56,7 @@ class StockPicking(models.Model): ('pengajuan1', 'Approval Accounting'), ('approved', 'Approved'), ], string='Approval Return Status', readonly=True, copy=False, index=True, tracking=3, help="Approval Status untuk Return") + date_doc_kirim = fields.Datetime(string='Tanggal Kirim di SJ', help="Tanggal Kirim di cetakan SJ, tidak berpengaruh ke Accounting") def action_assign(self): res = super(StockPicking, self).action_assign() |
