diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-03-09 14:44:13 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-03-09 14:44:13 +0700 |
| commit | a72a4c2d96eefdfc265373916588d2e89dcb9e53 (patch) | |
| tree | e0395d75db2fa1d896bc254e50f193e3e6db7ec3 | |
| parent | 051704a89b5a5ab4d28ae4ccb7747c3de3714850 (diff) | |
change from approval accounting to finance
| -rw-r--r-- | indoteknik_custom/models/stock_picking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py index 1dba31a3..5bf774f4 100644 --- a/indoteknik_custom/models/stock_picking.py +++ b/indoteknik_custom/models/stock_picking.py @@ -53,7 +53,7 @@ class StockPicking(models.Model): ], string='Approval Status', readonly=True, copy=False, index=True, tracking=3, help="Approval Status untuk Internal Use") approval_return_status = fields.Selection([ - ('pengajuan1', 'Approval Accounting'), + ('pengajuan1', 'Approval Finance'), ('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") |
