brotherton-erpnext/erpnext/patches/jan_mar_2012/reload_table.py

12 lines
441 B
Python
Raw Normal View History

2012-03-05 05:29:02 +00:00
def execute():
import webnotes
2012-03-12 09:04:55 +00:00
from webnotes.modules import reload_doc
2012-03-05 05:29:02 +00:00
reload_doc('selling', 'doctype', 'quotation_detail')
2012-03-05 09:52:55 +00:00
reload_doc('selling', 'doctype', 'sales_order_detail')
2012-03-05 05:29:02 +00:00
reload_doc('stock', 'doctype', 'delivery_note_detail')
reload_doc('stock', 'doctype', 'purchase_receipt_detail')
reload_doc('buying', 'doctype', 'po_detail')
reload_doc('accounts', 'doctype', 'rv_detail')
reload_doc('accounts', 'doctype', 'pv_detail')
2012-03-05 09:52:55 +00:00