2013-08-05 14:59:54 +05:30
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2012-10-01 11:35:49 +05:30
|
|
|
from __future__ import unicode_literals
|
2012-09-28 16:03:11 +05:30
|
|
|
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 16:23:18 +05:30
|
|
|
delete_doc("DocType", dt)
|