2019-06-26 11:05:51 +05:30
|
|
|
from __future__ import unicode_literals
|
2021-09-02 16:44:59 +05:30
|
|
|
|
2019-06-26 11:05:51 +05:30
|
|
|
import frappe
|
|
|
|
|
2021-09-02 16:44:59 +05:30
|
|
|
|
2019-06-26 11:05:51 +05:30
|
|
|
def execute():
|
|
|
|
|
|
|
|
frappe.db.sql(""" UPDATE `tabQuotation` set status = 'Open'
|
2021-08-19 13:41:10 +05:30
|
|
|
where docstatus = 1 and status = 'Submitted' """)
|