mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 06:29:20 +00:00
Merge pull request #171 from anandpdoshi/master
Patch to update idx which starts with 0
This commit is contained in:
9
erpnext/patches/update_0_idx.py
Normal file
9
erpnext/patches/update_0_idx.py
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import webnotes
|
||||||
|
def execute():
|
||||||
|
doc_type_list = webnotes.conn.sql("""SELECT DISTINCT parent FROM `tabDocField` where idx=0""")
|
||||||
|
for doc_type in doc_type_list:
|
||||||
|
if doc_type and doc_type[0]:
|
||||||
|
webnotes.conn.sql("""\
|
||||||
|
UPDATE `tabDocField` SET idx=idx+1
|
||||||
|
WHERE parent=%s
|
||||||
|
""", doc_type[0])
|
||||||
Reference in New Issue
Block a user