added on_trash for support ticket
This commit is contained in:
parent
1d49c61283
commit
f0a19a2763
@ -146,4 +146,8 @@ class DocType(TransactionBase):
|
|||||||
|
|
||||||
def reopen_ticket(self):
|
def reopen_ticket(self):
|
||||||
webnotes.conn.set(self.doc,'status','Open')
|
webnotes.conn.set(self.doc,'status','Open')
|
||||||
update_feed(self.doc)
|
update_feed(self.doc)
|
||||||
|
|
||||||
|
def on_trash(self):
|
||||||
|
webnotes.conn.sql("""update `tabCommunication set support_ticket=""
|
||||||
|
where support_ticket=%s`""", self.doc.name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user