summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/account_financial_report.py
diff options
context:
space:
mode:
Diffstat (limited to 'indoteknik_custom/models/account_financial_report.py')
-rw-r--r--indoteknik_custom/models/account_financial_report.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/indoteknik_custom/models/account_financial_report.py b/indoteknik_custom/models/account_financial_report.py
new file mode 100644
index 00000000..1bf6816a
--- /dev/null
+++ b/indoteknik_custom/models/account_financial_report.py
@@ -0,0 +1,17 @@
+from datetime import datetime
+import json
+import datetime
+import io
+from odoo import api, fields, models, _
+from odoo.tools import date_utils
+try:
+ from odoo.tools.misc import xlsxwriter
+except ImportError:
+ import xlsxwriter
+
+
+class AccountingReport(models.TransientModel):
+ _inherit = "accounting.report.xlsx"
+
+
+ \ No newline at end of file