summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/cost_centre.py
diff options
context:
space:
mode:
Diffstat (limited to 'indoteknik_custom/models/cost_centre.py')
-rw-r--r--indoteknik_custom/models/cost_centre.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/indoteknik_custom/models/cost_centre.py b/indoteknik_custom/models/cost_centre.py
new file mode 100644
index 00000000..eaf518d5
--- /dev/null
+++ b/indoteknik_custom/models/cost_centre.py
@@ -0,0 +1,11 @@
+from odoo import fields, models, api
+from datetime import datetime, timedelta
+import logging
+
+_logger = logging.getLogger(__name__)
+
+
+class CostCentre(models.Model):
+ _name = 'cost.centre'
+ name = fields.Char(string="Name")
+ description = fields.Text(string="Description")