summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indoteknik_custom/models/stock_picking.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py
index 9b5f0036..2dea13b5 100644
--- a/indoteknik_custom/models/stock_picking.py
+++ b/indoteknik_custom/models/stock_picking.py
@@ -3,8 +3,11 @@ from odoo import fields, models, api
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")
+ 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')
@api.onchange('picking_type_id')
def _onchange_operation_type(self):