mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2026-01-05 15:43:02 +02:00
add new module
This commit is contained in:
22
uae_wps_report/controllers/__init__.py
Normal file
22
uae_wps_report/controllers/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#############################################################################
|
||||
#
|
||||
# Cybrosys Technologies Pvt. Ltd.
|
||||
#
|
||||
# Copyright (C) 2019-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
||||
# Author: Nishad (odoo@cybrosys.com)
|
||||
#
|
||||
# You can modify it under the terms of the GNU AFFERO
|
||||
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
# (AGPL v3) along with this program.
|
||||
# If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#############################################################################
|
||||
from . import main
|
||||
36
uae_wps_report/controllers/main.py
Normal file
36
uae_wps_report/controllers/main.py
Normal file
@@ -0,0 +1,36 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import json
|
||||
from odoo import http
|
||||
from odoo.http import content_disposition, request
|
||||
from odoo.addons.web.controllers.main import _serialize_exception
|
||||
from odoo.tools import html_escape
|
||||
|
||||
|
||||
class XLSXReportController(http.Controller):
|
||||
|
||||
@http.route('/xlsx_reports', type='http', auth='user', methods=['POST'], csrf=False)
|
||||
def get_report_xlsx(self, model, options, output_format, token, report_name, **kw):
|
||||
uid = request.session.uid
|
||||
report_obj = request.env[model].sudo(uid)
|
||||
options = json.loads(options)
|
||||
try:
|
||||
if output_format == 'xlsx':
|
||||
response = request.make_response(
|
||||
None,
|
||||
headers=[
|
||||
('Content-Type', 'application/vnd.ms-excel'),
|
||||
('Content-Disposition', content_disposition(report_name + '.xlsx'))
|
||||
]
|
||||
)
|
||||
report_obj.get_xlsx_report(options, response)
|
||||
response.set_cookie('fileToken', token)
|
||||
return response
|
||||
except Exception as e:
|
||||
se = _serialize_exception(e)
|
||||
error = {
|
||||
'code': 200,
|
||||
'message': 'Odoo Server Error',
|
||||
'data': se
|
||||
}
|
||||
return request.make_response(html_escape(json.dumps(error)))
|
||||
Reference in New Issue
Block a user