Merge branch 'develop'

This commit is contained in:
Nabin Hait
2015-07-30 16:47:49 +05:30
4 changed files with 4 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '5.4.1' __version__ = '5.4.2'

View File

@@ -27,7 +27,7 @@ blogs.
""" """
app_icon = "icon-th" app_icon = "icon-th"
app_color = "#e74c3c" app_color = "#e74c3c"
app_version = "5.4.1" app_version = "5.4.2"
github_link = "https://github.com/frappe/erpnext" github_link = "https://github.com/frappe/erpnext"
error_report_email = "support@erpnext.com" error_report_email = "support@erpnext.com"

View File

@@ -250,7 +250,7 @@ cur_frm.fields_dict['production_item'].get_query = function(doc) {
return { return {
filters:[ filters:[
['Item', 'is_pro_applicable', '=', 1], ['Item', 'is_pro_applicable', '=', 1],
['Item', 'has_variants', '=', 0] ['Item', 'has_variants', '=', 0],
['Item', 'end_of_life', '>=', frappe.datetime.nowdate()] ['Item', 'end_of_life', '>=', frappe.datetime.nowdate()]
] ]
} }

View File

@@ -1,6 +1,6 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = "5.4.1" version = "5.4.2"
with open("requirements.txt", "r") as f: with open("requirements.txt", "r") as f:
install_requires = f.readlines() install_requires = f.readlines()