11 lines
358 B
Python
11 lines
358 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
def execute():
|
|
import webnotes, os
|
|
|
|
webnotes.delete_doc('Page', 'stock-ledger')
|
|
webnotes.delete_doc('Page', 'stock-ageing')
|
|
|
|
os.system("rm -rf app/stock/page/stock_ledger")
|
|
os.system("rm -rf app/stock/page/stock_ageing") |