2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-02-27 07:18:35 +00:00
|
|
|
def execute():
|
|
|
|
import webnotes
|
|
|
|
from webnotes.model import delete_doc
|
2012-03-12 09:04:55 +00:00
|
|
|
from webnotes.modules import reload_doc
|
2012-02-27 07:18:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
webnotes.conn.sql("""delete from `tabDocField`
|
|
|
|
where label in ('Note1', 'OT Notes', 'Note', 'Note HTML', 'Rates HTML')
|
2012-03-30 06:59:06 +00:00
|
|
|
and parent in ('Quotation', 'Sales Order', 'Delivery Note', 'Sales Invoice', 'Purchase Order')""")
|
2012-02-27 13:16:51 +00:00
|
|
|
|
2012-02-27 07:18:35 +00:00
|
|
|
|
|
|
|
del_flds = {
|
2012-03-30 06:59:06 +00:00
|
|
|
'Sales Order Item': "'delivery_date', 'confirmation_date'",
|
2012-02-28 08:44:20 +00:00
|
|
|
'Delivery Note': "'supplier', 'supplier_address', 'purchase_receipt_no', 'purchase_order_no', 'transaction_date'",
|
2012-03-30 06:59:06 +00:00
|
|
|
'Sales Invoice': "'voucher_date'",
|
|
|
|
'Purchase Invoice': "'voucher_date'",
|
2012-02-27 13:16:51 +00:00
|
|
|
'Purchase Receipt': "'transaction_date'"
|
2012-02-27 07:18:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
del_labels = {
|
2012-02-27 13:16:51 +00:00
|
|
|
'Delivery Note': "'Supplier Details'",
|
|
|
|
'Purchase Receipt': "'Get Currrent Stock'"
|
2012-02-27 07:18:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for d in del_flds:
|
2012-03-01 10:21:33 +00:00
|
|
|
webnotes.conn.sql("delete from `tabDocField` where fieldname in (%s) and parent = '%s'"% (del_flds[d], d))
|
2012-02-27 07:18:35 +00:00
|
|
|
|
|
|
|
for d in del_labels:
|
2012-03-01 10:21:33 +00:00
|
|
|
webnotes.conn.sql("delete from `tabDocField` where label in (%s) and parent = '%s'"% (del_labels[d], d))
|
2012-02-27 07:18:35 +00:00
|
|
|
|
|
|
|
delete_doc('DocType', 'Update Delivery Date Detail')
|
2012-02-28 08:44:20 +00:00
|
|
|
|
2012-03-01 08:28:13 +00:00
|
|
|
# Reload print formats
|
|
|
|
reload_doc('accounts', 'Print Format', 'Sales Invoice Classic')
|
|
|
|
reload_doc('accounts', 'Print Format', 'Sales Invoice Modern')
|
|
|
|
reload_doc('accounts', 'Print Format', 'Sales Invoice Spartan')
|
|
|
|
|