diff --git a/erpnext/__version__.py b/erpnext/__version__.py index 3a243f5bb7..b994a33aa2 100644 --- a/erpnext/__version__.py +++ b/erpnext/__version__.py @@ -1,2 +1,2 @@ from __future__ import unicode_literals -__version__ = '5.3.0' +__version__ = '5.3.1' diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.js b/erpnext/buying/doctype/purchase_order/purchase_order.js index 6049810213..09a0e919a9 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order.js +++ b/erpnext/buying/doctype/purchase_order/purchase_order.js @@ -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) { diff --git a/erpnext/change_log/v5/v5_3_0.md b/erpnext/change_log/v5/v5_3_0.md index e36909080d..f477ce980f 100644 --- a/erpnext/change_log/v5/v5_3_0.md +++ b/erpnext/change_log/v5/v5_3_0.md @@ -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 diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 811e4c01e2..3a1a51ebdc 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -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" diff --git a/setup.py b/setup.py index 020dfa3c43..8e50ecdb12 100644 --- a/setup.py +++ b/setup.py @@ -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()