diff options
| author | Stephan Christianus <stephanchrst@gmail.com> | 2022-09-08 08:19:08 +0000 |
|---|---|---|
| committer | Stephan Christianus <stephanchrst@gmail.com> | 2022-09-08 08:19:08 +0000 |
| commit | 6c624a595d961138cf4e65724bd401e374ee6642 (patch) | |
| tree | 5ee8045a629403d0ece452562e6176f7976f562b | |
| parent | e682e0518fcaa62588287bb974d8697ceed8300f (diff) | |
| parent | 8fcc5cb618d189c3fd85d5cdf8860b893f89de88 (diff) | |
Merged in development (pull request #7)
Development
| -rw-r--r-- | indoteknik_custom/models/stock_picking.py | 7 |
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): |
