From b557dfe5249e471a1b7277d5c189313ce303347b Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Fri, 26 Aug 2022 11:13:23 +0700 Subject: temporary solution for internal use tax --- indoteknik_custom/models/stock_picking.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 indoteknik_custom/models/stock_picking.py (limited to 'indoteknik_custom/models/stock_picking.py') diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py new file mode 100644 index 00000000..1dfef114 --- /dev/null +++ b/indoteknik_custom/models/stock_picking.py @@ -0,0 +1,7 @@ +from odoo import fields, models, api + + +class StockPicking(models.Model): + _inherit = 'stock.picking.type' + + is_internal_use = fields.Boolean(string="Internal Use") -- cgit v1.2.3