mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 14:39:19 +00:00
1. Patches ":" missing bug
2. Purchase Receipt ".get_bin_details(arg)f" is changed to ".get_bin_details(arg)"
This commit is contained in:
@@ -1405,5 +1405,5 @@ def execute(patch_no):
|
|||||||
# update name of questions page
|
# update name of questions page
|
||||||
sql("update tabPage set name='questions' where name='Questions'")
|
sql("update tabPage set name='questions' where name='Questions'")
|
||||||
sql("update tabPage set name='question-view' where name='Question View'")
|
sql("update tabPage set name='question-view' where name='Question View'")
|
||||||
elif patch_no == 339
|
elif patch_no == 339:
|
||||||
reload_doc('production','doctype','bill_of_materials')
|
reload_doc('production','doctype','bill_of_materials')
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ class DocType(TransactionBase):
|
|||||||
|
|
||||||
# get available qty at warehouse
|
# get available qty at warehouse
|
||||||
def get_bin_details(self, arg = ''):
|
def get_bin_details(self, arg = ''):
|
||||||
return get_obj(dt='Purchase Common').get_bin_details(arg)f
|
return get_obj(dt='Purchase Common').get_bin_details(arg)
|
||||||
|
|
||||||
# Pull Purchase Order
|
# Pull Purchase Order
|
||||||
def get_po_details(self):
|
def get_po_details(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user