From 82298a2f26b59f9bc15e13b548ccedc4a4a85da7 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 30 Dec 2013 19:30:43 +0530 Subject: [PATCH 1/2] [hotfix] Reportview Filters --- webnotes/widgets/reportview.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webnotes/widgets/reportview.py b/webnotes/widgets/reportview.py index 5a47ebe0bb..c6c7ffe97b 100644 --- a/webnotes/widgets/reportview.py +++ b/webnotes/widgets/reportview.py @@ -172,6 +172,9 @@ def build_filter_conditions(filters, conditions): tname = ('`tab' + f[0] + '`') if not tname in webnotes.local.reportview_tables: webnotes.local.reportview_tables.append(tname) + + if not hasattr(webnotes.local, "reportview_doctypes"): + load_doctypes() # prepare in condition if f[2] in ['in', 'not in']: From 26f47936c3a8a6231022d35b5e8d07cb036d6eb3 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Mon, 30 Dec 2013 20:04:33 +0600 Subject: [PATCH 2/2] bumped to version 3.4.2 --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 4369ca8a9c..030af312c3 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "base_template": "lib/website/templates/base.html", - "framework_version": "3.4.1", + "framework_version": "3.4.2", "modules": { "Calendar": { "color": "#2980b9",