From 57a1916a20efa8cce60c126235fabcb4921771fa Mon Sep 17 00:00:00 2001 From: Bhavesh Odedra Date: Mon, 13 Apr 2020 11:18:24 +0530 Subject: [PATCH] [13.0][MIG] report_batch --- report_batch/__manifest__.py | 6 +++--- report_batch/models/ir_action_report.py | 1 - report_batch/views/ir_action_report_view.xml | 1 - 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/report_batch/__manifest__.py b/report_batch/__manifest__.py index 419ff1cc1..87f77b724 100644 --- a/report_batch/__manifest__.py +++ b/report_batch/__manifest__.py @@ -5,13 +5,13 @@ { "name": "Batch Report Printing", "summary": "Ability to print multiple QWeb reports in a single batch.", - "version": "11.0.1.0.0", + "version": "13.0.1.0.0", "license": "AGPL-3", "author": "Open Source Integrators, Odoo Community Association (OCA)", "category": "Reporting", "website": "http://www.opensourceintegrators.com", - "depends": ["stock",], - "data": ["security/ir.model.access.csv", "views/ir_action_report_view.xml",], + "depends": ["stock"], + "data": ["security/ir.model.access.csv", "views/ir_action_report_view.xml"], "installable": True, "maintainers": ["bodedra"], } diff --git a/report_batch/models/ir_action_report.py b/report_batch/models/ir_action_report.py index a3511251e..7945e988a 100644 --- a/report_batch/models/ir_action_report.py +++ b/report_batch/models/ir_action_report.py @@ -106,7 +106,6 @@ class IrActionsReport(models.Model): report._generate_batch_qweb_report() return res - @api.multi def write(self, vals): res = super(IrActionsReport, self).write(vals) if "subreport_ids" in vals or "model" in vals: diff --git a/report_batch/views/ir_action_report_view.xml b/report_batch/views/ir_action_report_view.xml index fa1828077..aedc27a02 100644 --- a/report_batch/views/ir_action_report_view.xml +++ b/report_batch/views/ir_action_report_view.xml @@ -39,7 +39,6 @@ Batch Reports ir.actions.act_window ir.actions.report.subreport - form Allows to add multi QWeb reports in a single batch