mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-07 23:31:20 +00:00
delete blank row in dn print format
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
# REMEMBER to update this
|
# REMEMBER to update this
|
||||||
# ========================
|
# ========================
|
||||||
|
|
||||||
last_patch = 342
|
last_patch = 343
|
||||||
|
|
||||||
#-------------------------------------------
|
#-------------------------------------------
|
||||||
|
|
||||||
@@ -1423,3 +1423,5 @@ def execute(patch_no):
|
|||||||
ch.save(1)
|
ch.save(1)
|
||||||
elif patch_no == 342:
|
elif patch_no == 342:
|
||||||
sql("update `tabDocField` set permlevel = 0 where parent = 'Stock Entry Detail' and fieldname in ('s_warehouse', 't_warehouse', 'fg_item')")
|
sql("update `tabDocField` set permlevel = 0 where parent = 'Stock Entry Detail' and fieldname in ('s_warehouse', 't_warehouse', 'fg_item')")
|
||||||
|
elif patch_no == 343:
|
||||||
|
sql("delete from `tabDocFormat` where ifnull(format, '') = '' and parent = 'Delivery Note'")
|
||||||
|
|||||||
Reference in New Issue
Block a user