diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 5392e72719..87b87ed969 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -5,7 +5,7 @@ import frappe from erpnext.hooks import regional_overrides from frappe.utils import getdate -__version__ = '10.1.9' +__version__ = '10.1.10' def get_default_company(user=None): '''Get default company for user''' diff --git a/erpnext/patches/v10_0/update_reserved_qty_for_purchase_order.py b/erpnext/patches/v10_0/update_reserved_qty_for_purchase_order.py index 681296de88..b0df91890b 100644 --- a/erpnext/patches/v10_0/update_reserved_qty_for_purchase_order.py +++ b/erpnext/patches/v10_0/update_reserved_qty_for_purchase_order.py @@ -37,8 +37,11 @@ def execute(): and po.is_subcontracted = "Yes" and po.docstatus = 1"""), as_dict=1) for d in item_wh_bin: - stock_bin = get_bin(d["rm_item_code"], d["reserve_warehouse"]) - stock_bin.update_reserved_qty_for_sub_contracting() + try: + stock_bin = get_bin(d["rm_item_code"], d["reserve_warehouse"]) + stock_bin.update_reserved_qty_for_sub_contracting() + except: + pass def get_warehouse(item_code, company, company_warehouse, item_wh): reserve_warehouse = item_wh.get(item_code) @@ -46,4 +49,4 @@ def get_warehouse(item_code, company, company_warehouse, item_wh): reserve_warehouse = None if not reserve_warehouse: reserve_warehouse = company_warehouse.get(company) - return reserve_warehouse \ No newline at end of file + return reserve_warehouse