mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-18 12:39:18 +00:00
Merge branch 'develop'
This commit is contained in:
@@ -1,2 +1,2 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
__version__ = '5.4.1'
|
__version__ = '5.4.2'
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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()]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user