2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2012-10-01 06:05:49 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-09-28 10:33:11 +00:00
|
|
|
import webnotes
|
|
|
|
from webnotes.model import delete_doc
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
# remove doctypes
|
|
|
|
for dt in ["Period", "Account Balance", "Multi Ledger Report",
|
|
|
|
"Multi Ledger Report Detail", "Period Control", "Reposting Tool",
|
|
|
|
"Lease Agreement", "Lease Installment"]:
|
2013-06-11 10:53:18 +00:00
|
|
|
delete_doc("DocType", dt)
|