2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-03-04 12:18:31 +00:00
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
for cform in webnotes.conn.sql("""select name from `tabC-Form` where docstatus=2"""):
|
|
|
|
webnotes.conn.sql("""update `tabSales Invoice` set c_form_no=null
|
|
|
|
where c_form_no=%s""", cform[0])
|