diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2022-09-12 16:13:28 +0700 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2022-09-12 16:13:28 +0700 |
| commit | a367175504164b47dffa0263a65c03ea6cdc9912 (patch) | |
| tree | 4f63298b5641b403b22d5bca9c37ff74c8ba0efa | |
| parent | 4f6ce90c0dc42ae95bb95479098c0e686b042f70 (diff) | |
fix error stock_picking view
| -rw-r--r-- | indoteknik_custom/models/stock_picking.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py index 7fb22023..390ae8b2 100644 --- a/indoteknik_custom/models/stock_picking.py +++ b/indoteknik_custom/models/stock_picking.py @@ -5,9 +5,9 @@ class StockPicking(models.Model): _inherit = 'stock.picking' is_internal_use = fields.Boolean('Internal Use', help='flag which is internal use or not') account_id = fields.Many2one('account.account', string='Account') - # efaktur_id = fields.Many2one('vit.efaktur', string='Faktur Pajak') - # is_efaktur_exported = fields.Boolean(string='Is eFaktur Exported') - # date_efaktur_exported = fields.Datetime(string='eFaktur Exported Date') + efaktur_id = fields.Many2one('vit.efaktur', string='Faktur Pajak') + is_efaktur_exported = fields.Boolean(string='Is eFaktur Exported') + date_efaktur_exported = fields.Datetime(string='eFaktur Exported Date') # Delivery Order driver_departure_date = fields.Datetime(string='Driver Departure Date', readonly=True) |
