Merge branch 'develop'

This commit is contained in:
Anand Doshi 2016-01-21 22:32:08 +05:30
commit f7e9a9d786
4 changed files with 6 additions and 6 deletions

View File

@ -1,2 +1,2 @@
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '6.18.3' __version__ = '6.18.4'

View File

@ -7,7 +7,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd."
app_description = """ERP made simple""" app_description = """ERP made simple"""
app_icon = "icon-th" app_icon = "icon-th"
app_color = "#e74c3c" app_color = "#e74c3c"
app_version = "6.18.3" app_version = "6.18.4"
app_email = "info@erpnext.com" app_email = "info@erpnext.com"
app_license = "GNU General Public License (v3)" app_license = "GNU General Public License (v3)"
source_link = "https://github.com/frappe/erpnext" source_link = "https://github.com/frappe/erpnext"

View File

@ -200,7 +200,7 @@ def get_default_cost_center(args, item):
or args.get("cost_center")) or args.get("cost_center"))
def get_price_list_rate(args, item_doc, out): def get_price_list_rate(args, item_doc, out):
meta = frappe.get_meta(args.parenttype) meta = frappe.get_meta(args.doctype)
if meta.get_field("currency"): if meta.get_field("currency"):
validate_price_list(args) validate_price_list(args)

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.18.3" version = "6.18.4"
requirements = parse_requirements("requirements.txt", session="") requirements = parse_requirements("requirements.txt", session="")
setup( setup(