# -*- coding: utf-8 -*- ############################################################################## # # Cybrosys Technologies Pvt. Ltd. # Copyright (C) 2017-TODAY Cybrosys Technologies(). # Author: Jesni Banu() # 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 # GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # If not, see . # ############################################################################## import time from odoo import models, fields class AccountBudgetCrossOverSummaryReport(models.TransientModel): _name = 'account.budget.cross.over.summary.report' _description = 'Account Budget cross over summary report' date_from = fields.Date('Start of period', required=True, default=lambda *a: time.strftime('%Y-01-01')) date_to = fields.Date('End of period', required=True, default=lambda *a: time.strftime('%Y-%m-%d')) def check_report(self): data = self.read()[0] active_ids = self.env.context.get('active_ids', []) datas = { 'ids': active_ids, 'model': 'crossovered.budget', 'form': data } datas['form']['ids'] = datas['ids'] datas['form']['report'] = 'analytic-one' return self.env['report'].get_action([], 'account_budget_report.report_cross_over_budget', data=datas)