From d039249dd2e25eb0fe55dc170ae3c3d8a02ed21a Mon Sep 17 00:00:00 2001 From: celm1990 Date: Thu, 30 Oct 2014 20:54:34 -0500 Subject: [PATCH] [FIX] fix wrong filter in search view (account/sale) the field section_id is created in addon sale, but used in the account reporting views. This commit moves the search view definition in the correct file. --- .../report/account_invoice_report_view.xml | 1 - addons/sale/__openerp__.py | 1 + addons/sale/report/invoice_report_view.xml | 17 +++++++++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 addons/sale/report/invoice_report_view.xml diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml index bf95ba39d65..874f2ddda24 100644 --- a/addons/account/report/account_invoice_report_view.xml +++ b/addons/account/report/account_invoice_report_view.xml @@ -73,7 +73,6 @@ - diff --git a/addons/sale/__openerp__.py b/addons/sale/__openerp__.py index 62e7b0466a7..d004d762991 100644 --- a/addons/sale/__openerp__.py +++ b/addons/sale/__openerp__.py @@ -74,6 +74,7 @@ The Dashboard for the Sales Manager will include 'sales_team_view.xml', 'res_partner_view.xml', 'report/sale_report_view.xml', + 'report/invoice_report_view.xml', 'edi/sale_order_action_data.xml', 'res_config_view.xml', 'views/report_saleorder.xml', diff --git a/addons/sale/report/invoice_report_view.xml b/addons/sale/report/invoice_report_view.xml new file mode 100644 index 00000000000..73d50ea98da --- /dev/null +++ b/addons/sale/report/invoice_report_view.xml @@ -0,0 +1,17 @@ + + + + + account.invoice.report.search + account.invoice.report + + + + + + + + + + \ No newline at end of file