Merge branch 'hotfix'

This commit is contained in:
Nabin Hait 2016-06-03 11:50:19 +05:30
commit b09c87bd0f
5 changed files with 16 additions and 11 deletions

View File

@ -1,2 +1,2 @@
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '6.27.21' __version__ = '6.27.22'

View File

@ -193,9 +193,6 @@ class Account(Document):
def validate_trash(self): def validate_trash(self):
"""checks gl entries and if child exists""" """checks gl entries and if child exists"""
if not self.parent_account:
throw(_("Root account can not be deleted"))
if self.check_gle_exists(): if self.check_gle_exists():
throw(_("Account with existing transaction can not be deleted")) throw(_("Account with existing transaction can not be deleted"))
if self.check_if_child_exists(): if self.check_if_child_exists():

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.27.21" app_version = "6.27.22"
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

@ -15,13 +15,21 @@ form_grid_templates = {
class BOM(Document): class BOM(Document):
def autoname(self): def autoname(self):
last_name = frappe.db.sql("""select max(name) from `tabBOM` names = frappe.db.sql_list("""select name from `tabBOM` where item=%s""", self.item)
where name like "BOM/{0}/%%" and item=%s
""".format(frappe.db.escape(self.item, percent=False)), self.item) if names:
if last_name: # name can be BOM/ITEM/001, BOM/ITEM/001-1, BOM-ITEM-001, BOM-ITEM-001-1
idx = cint(cstr(last_name[0][0]).split('/')[-1].split('-')[0]) + 1
# split by item
names = [name.split(self.item)[-1][1:] for name in names]
# split by (-) if cancelled
names = [cint(name.split('-')[-1]) for name in names]
idx = max(names) + 1
else: else:
idx = 1 idx = 1
self.name = 'BOM/' + self.item + ('/%.3i' % idx) self.name = 'BOM/' + self.item + ('/%.3i' % idx)
def validate(self): def validate(self):

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