Browse Source

Merge branch 'develop'

version-14
Anand Doshi 9 years ago
parent
commit
c511c1c935
4 changed files with 8 additions and 4 deletions
  1. +1
    -1
      frappe/__version__.py
  2. +5
    -1
      frappe/desk/reportview.py
  3. +1
    -1
      frappe/hooks.py
  4. +1
    -1
      setup.py

+ 1
- 1
frappe/__version__.py View File

@@ -1,2 +1,2 @@
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = "6.15.0"
__version__ = "6.15.1"

+ 5
- 1
frappe/desk/reportview.py View File

@@ -180,4 +180,8 @@ def get_match_cond(doctype):
return ((' and ' + cond) if cond else "").replace("%", "%%") return ((' and ' + cond) if cond else "").replace("%", "%%")


def build_match_conditions(doctype, as_condition=True): def build_match_conditions(doctype, as_condition=True):
return (DatabaseQuery(doctype).build_match_conditions(as_condition=as_condition)).replace("%", "%%")
match_conditions = DatabaseQuery(doctype).build_match_conditions(as_condition=as_condition)
if as_condition:
return match_conditions.replace("%", "%%")
else:
return match_conditions

+ 1
- 1
frappe/hooks.py View File

@@ -5,7 +5,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd."
app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node" app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node"


app_icon = "octicon octicon-circuit-board" app_icon = "octicon octicon-circuit-board"
app_version = "6.15.0"
app_version = "6.15.1"
app_color = "orange" app_color = "orange"
source_link = "https://github.com/frappe/frappe" source_link = "https://github.com/frappe/frappe"
app_license = "MIT" app_license = "MIT"


+ 1
- 1
setup.py View File

@@ -1,7 +1,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
from pip.req import parse_requirements from pip.req import parse_requirements


version = "6.15.0"
version = "6.15.1"
requirements = parse_requirements("requirements.txt", session="") requirements = parse_requirements("requirements.txt", session="")


setup( setup(


Loading…
Cancel
Save