# -*- 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 fields, models class AccountBudgetAnalytic(models.TransientModel): _name = 'account.budget.analytic' _description = 'Account Budget report for analytic account' 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': 'account.analytic.account', 'form': data } datas['form']['ids'] = datas['ids'] return self.env['report'].get_action([], 'account_budget_report.report_analytic_account_budget', data=datas)