mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-05 14:38:26 +00:00
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'""") |