summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/stock_picking.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-08-26 11:13:23 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-08-26 11:13:23 +0700
commitb557dfe5249e471a1b7277d5c189313ce303347b (patch)
tree70e29854ae31c16910f49afc7b15b25a1bd7d9b7 /indoteknik_custom/models/stock_picking.py
parenta28e01d3df18301057c33930b11655cc9d623b64 (diff)
temporary solution for internal use tax
Diffstat (limited to 'indoteknik_custom/models/stock_picking.py')
-rw-r--r--indoteknik_custom/models/stock_picking.py7
1 files changed, 7 insertions, 0 deletions
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")