Merge branch 'master' of github.com:webnotes/erpnext into handlerupdate

This commit is contained in:
Rushabh Mehta 2012-03-06 06:49:50 +01:00
commit c53c48ea2e
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,3 @@
def execute():
import webnotes
webnotes.conn.sql("update `tabDocField` set `default`='' where parent = 'Receivable Voucher' and fieldname = 'naming_series' and `default` = 'INV'")

View File

@ -177,5 +177,10 @@ patch_list = [
'patch_file': 'reload_table',
'description': 'Relaod all item table: fld order changes'
},
{
'patch_module': 'patches.jan_mar_2012',
'patch_file': 'remove_series_defval',
'description': 'Remove rv series default value'
},
]