You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
3.3 KiB
68 lines
3.3 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import http
|
|
from odoo.http import request
|
|
|
|
|
|
class ExportData(http.Controller):
|
|
""" Controller class for exporting data from Odoo models."""
|
|
@http.route('/get_data', auth="user", type='json')
|
|
def get_export_data(self, **kw):
|
|
"""Controller method to fetch required details and export data.
|
|
:param kw: Dictionary containing the following keys:
|
|
- fields: List of fields to export
|
|
- model: Name of the Odoo model
|
|
- res_ids: List of record IDs to export (optional)
|
|
- domain: Domain for record filtering (optional)
|
|
:return: Dictionary containing exported data and column headers"""
|
|
model = request.env[kw['model']]
|
|
field_names = [field['name'] for field in kw['fields']]
|
|
columns_headers = [val['label'].strip() for val in kw['fields']]
|
|
domain = [('id', 'in', kw['res_ids'])] \
|
|
if kw['res_ids'] else kw['domain']
|
|
records = model.browse(kw['res_ids']) \
|
|
if kw['res_ids'] \
|
|
else model.search(domain, offset=0, limit=False, order=False)
|
|
export_data = records.export_data(field_names).get('datas', [])
|
|
return {'data': export_data, 'header': columns_headers}
|
|
|
|
@http.route('/get_data/copy', auth="user", type='json')
|
|
def get_export_data_copy(self, **kw):
|
|
"""Controller method to fetch required details, export data, and add
|
|
column headers.
|
|
:param kw: Dictionary containing the following keys:
|
|
- fields: List of fields to export
|
|
- model: Name of the Odoo model
|
|
- res_ids: List of record IDs to export (optional)
|
|
- domain: Domain for record filtering (optional)
|
|
:return: List of lists containing exported data with column headers"""
|
|
model = request.env[kw['model']]
|
|
field_names = [field['name'] for field in kw['fields']]
|
|
columns_headers = [val['label'].strip() for val in kw['fields']]
|
|
domain = [('id', 'in', kw['res_ids'])] \
|
|
if kw['res_ids'] else kw['domain']
|
|
records = model.browse(kw['res_ids']) \
|
|
if kw['res_ids'] \
|
|
else model.search(domain, offset=0, limit=False, order=False)
|
|
export_data = records.export_data(field_names).get('datas', [])
|
|
export_data.insert(0, columns_headers)
|
|
return export_data
|
|
|