commit | 520de0529fccc8c30f9dd78b1daca304bf54c350 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Wed Dec 21 12:51:38 2011 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Wed Dec 21 12:51:38 2011 +0530 |
tree | 1646dc8e8ebf36b3c5020d5268a0e722315facd3 | |
parent | 53ef4009ba4e262eeaae272f894ad3c2ec367793 [diff] | |
parent | 146f47faab24a0d7855921c637e44ed746cbe5bb [diff] |
Merge branch 'master' of github.com:webnotes/erpnext
diff --git a/erpnext/patches/remove_extra_button_from_email_digest.py b/erpnext/patches/remove_extra_button_from_email_digest.py new file mode 100644 index 0000000..7005db9 --- /dev/null +++ b/erpnext/patches/remove_extra_button_from_email_digest.py
@@ -0,0 +1,8 @@ +def execute(): + import webnotes + webnotes.conn.sql(""" + DELETE FROM tabDocField + WHERE parent = 'Email Digest' + AND label = 'Add Recipients' + AND fieldtype = 'Button'""") +