diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2023-08-03 15:12:47 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2023-08-03 15:12:47 +0700 |
| commit | ea655e339f1096fdc3c1aa23ba36d0109e9df760 (patch) | |
| tree | ce76fdf2585d222b2a8eb32c16b57e41fc4fc24c /indoteknik_custom/models/account_financial_report.py | |
| parent | 091d3159526442a41cc1026a7d54fbf5c2f951f8 (diff) | |
ledger
Diffstat (limited to 'indoteknik_custom/models/account_financial_report.py')
| -rw-r--r-- | indoteknik_custom/models/account_financial_report.py | 39 |
1 files changed, 39 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..114449ce --- /dev/null +++ b/indoteknik_custom/models/account_financial_report.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +###################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). +# Author: Cybrosys Technologies(odoo@cybrosys.com) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +######################################################################################## + +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 |
