diff options
Diffstat (limited to 'indoteknik_custom/models')
| -rw-r--r-- | indoteknik_custom/models/stock_picking.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py index 179faadd..7fb22023 100644 --- a/indoteknik_custom/models/stock_picking.py +++ b/indoteknik_custom/models/stock_picking.py @@ -1,14 +1,13 @@ from odoo import fields, models, api -from datetime import datetime 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) |
