Merge branch 'develop'

This commit is contained in:
Anand Doshi 2015-11-07 15:40:22 +05:30
commit fcfced624a
4 changed files with 4 additions and 3 deletions

View File

@ -1,2 +1,2 @@
from __future__ import unicode_literals
__version__ = '6.7.5'
__version__ = '6.7.6'

View File

@ -29,7 +29,7 @@ blogs.
"""
app_icon = "icon-th"
app_color = "#e74c3c"
app_version = "6.7.5"
app_version = "6.7.6"
source_link = "https://github.com/frappe/erpnext"
error_report_email = "support@erpnext.com"

View File

@ -2,6 +2,7 @@ from __future__ import unicode_literals
import frappe
def execute():
frappe.reload_doctype("Leave Allocation")
if frappe.db.has_column("Leave Allocation", "fiscal_year"):
for leave_allocation in frappe.db.sql("select name, fiscal_year from `tabLeave Allocation`", as_dict=True):
dates = frappe.db.get_value("Fiscal Year", leave_allocation["fiscal_year"],

View File

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