Merge pull request #23050 from anupamvs/stock-entry-type

fix: deleting unused Stock Entry Type
This commit is contained in:
rohitwaghchaure
2020-09-02 11:43:29 +05:30
committed by GitHub

View File

@@ -25,3 +25,7 @@ def execute():
doc = frappe.new_doc('Warehouse Type') doc = frappe.new_doc('Warehouse Type')
doc.name = 'Transit' doc.name = 'Transit'
doc.insert() doc.insert()
frappe.reload_doc("stock", "doctype", "stock_entry_type")
frappe.delete_doc_if_exists("Stock Entry Type", "Send to Warehouse")
frappe.delete_doc_if_exists("Stock Entry Type", "Receive at Warehouse")