summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/account_account.py
diff options
context:
space:
mode:
Diffstat (limited to 'indoteknik_custom/models/account_account.py')
-rw-r--r--indoteknik_custom/models/account_account.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/indoteknik_custom/models/account_account.py b/indoteknik_custom/models/account_account.py
new file mode 100644
index 00000000..d8ac3204
--- /dev/null
+++ b/indoteknik_custom/models/account_account.py
@@ -0,0 +1,8 @@
+from odoo import fields, models, api, _
+
+class AccountAccount(models.Model):
+ _inherit = 'account.account'
+
+ cost_centre_id = fields.Many2one('cost.centre', string='Cost Centre')
+ analytic_tag_ids = fields.Many2many("account.analytic.tag",
+ string="Analytic Tags") \ No newline at end of file