5 lines
233 B
Python
5 lines
233 B
Python
import webnotes
|
|
|
|
def execute():
|
|
webnotes.conn.sql("""update `tabSerial No` set status = 'Not Available' where status='Not In Store'""")
|
|
webnotes.conn.sql("""update `tabSerial No` set status = 'Available' where status='In Store'""") |