Merge branch 'develop'

This commit is contained in:
Nabin Hait 2015-07-27 17:11:16 +05:30
commit 0c7fd6cd94
5 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
from __future__ import unicode_literals
__version__ = '5.3.0'
__version__ = '5.3.1'

View File

@ -34,7 +34,7 @@ erpnext.buying.PurchaseOrderController = erpnext.buying.BuyingController.extend(
},
make_stock_entry: function() {
var items = $.map(cur_frm.doc.items, function(d) { return d.bom ? d.item_code : false; }),
var items = $.map(cur_frm.doc.items, function(d) { return d.bom ? d.item_code : false; });
var me = this;
if(items.length===1) {

View File

@ -1,4 +1,4 @@
- **Sales Return**: Create Delivery Note or Sales Invoice ('Updated Stock' option checked) with negative quantity.
- **Sales Return**: Create Delivery Note or Sales Invoice ('Update Stock' option checked) with negative quantity.
- **Purchase Return**: Create Purchase Receipt with negative quantity
- **Credit / Debit Note**: Create Sales / Purchase Invoice with negative qtuantity against original invoice.
- Outgoing rate in Purchase Return based on reference / original Purchase Receipt rate

View File

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

View File

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