summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/account_account.py
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2023-08-31 11:51:50 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2023-08-31 11:51:50 +0700
commitb7dba2d8eed3c2af22dca53a916f12e9b842c2aa (patch)
tree3ca984df1c729378f463cedef6f6e7c95ec591da /indoteknik_custom/models/account_account.py
parent403b86d1a3cc168680069b0d8fc499048583da8f (diff)
coa cost centre
Diffstat (limited to 'indoteknik_custom/models/account_account.py')
-rw-r--r--indoteknik_custom/models/account_account.py6
1 files changed, 6 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..584c38f8
--- /dev/null
+++ b/indoteknik_custom/models/account_account.py
@@ -0,0 +1,6 @@
+from odoo import fields, models, api, _
+
+class AccountAccount(models.Model):
+ _inherit = 'account.account'
+
+ cost_centre_id = fields.Many2one('cost.centre', string='Cost Centre') \ No newline at end of file