From c51d5ba5df789eb6e7b1a90622064be060fe561d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 11 Aug 2015 18:28:24 +0530 Subject: [PATCH] [patch] Update item description in Production Order based on item master --- erpnext/patches.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/patches.txt b/erpnext/patches.txt index d12154b32b0..aa89f9a3482 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -190,3 +190,4 @@ erpnext.patches.v5_4.fix_invoice_outstanding execute:frappe.db.sql("update `tabStock Ledger Entry` set stock_queue = '[]' where voucher_type = 'Stock Reconciliation' and ifnull(qty_after_transaction, 0) = 0") erpnext.patches.v5_4.fix_missing_item_images erpnext.patches.v5_4.stock_entry_additional_costs +execute:frappe.db.sql("update `tabProduction Order` pro set description = (select description from tabItem where name=pro.production_item) where ifnull(description, '') = ''") \ No newline at end of file