diff --git a/erpnext/patches.txt b/erpnext/patches.txt index c1092507fb9..7518c2a07df 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -34,3 +34,4 @@ erpnext.patches.4_0.import_country_codes erpnext.patches.4_0.countrywise_coa execute:frappe.delete_doc("DocType", "MIS Control") execute:frappe.delete_doc("Page", "Financial Statements") +execute:frappe.delete_doc("DocType", "Stock Ledger") diff --git a/erpnext/stock/doctype/stock_ledger/stock_ledger.py b/erpnext/stock/doctype/stock_ledger/stock_ledger.py deleted file mode 100644 index b5a6bc87ef3..00000000000 --- a/erpnext/stock/doctype/stock_ledger/stock_ledger.py +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors -# License: GNU General Public License v3. See license.txt - -from __future__ import unicode_literals -import frappe -from frappe.model.document import Document - -class StockLedger(Document): - pass