Merge branch 'master' of github.com:webnotes/erpnext into handlerupdate
This commit is contained in:
commit
9d0ea6a5f1
@ -162,7 +162,7 @@ cur_frm.cscript.conversion_rate = function(doc,cdt,cdn) {
|
|||||||
//==================== Item Code Get Query =======================================================
|
//==================== Item Code Get Query =======================================================
|
||||||
// Only Is Purchase Item = 'Yes' and Items not moved to trash are allowed.
|
// Only Is Purchase Item = 'Yes' and Items not moved to trash are allowed.
|
||||||
cur_frm.fields_dict[fname].grid.get_field("item_code").get_query = function(doc, cdt, cdn) {
|
cur_frm.fields_dict[fname].grid.get_field("item_code").get_query = function(doc, cdt, cdn) {
|
||||||
return 'SELECT tabItem.name, tabItem.description FROM tabItem WHERE (ifnull(tabItem.is_purchase_item, "No")="Yes" or ifnull(tabItem.is_sub_contracted_item, "No")="Yes") AND (IFNULL(`tabItem`.`end_of_life`,"") = "" OR `tabItem`.`end_of_life` ="0000-00-00" OR `tabItem`.`end_of_life` > NOW()) AND tabItem.%(key)s LIKE "%s" LIMIT 50'
|
return 'SELECT tabItem.name, tabItem.description FROM tabItem WHERE (ifnull(tabItem.is_purchase_item, "No")="Yes" or ifnull(tabItem.is_sub_contracted_item, "No")="Yes") AND (IFNULL(`tabItem`.`end_of_life`,"") = "" OR `tabItem`.`end_of_life` ="0000-00-00" OR `tabItem`.`end_of_life` > NOW()) AND tabItem.docstatus != 2 AND tabItem.%(key)s LIKE "%s" LIMIT 50'
|
||||||
}
|
}
|
||||||
|
|
||||||
//==================== Get Item Code Details =====================================================
|
//==================== Get Item Code Details =====================================================
|
||||||
|
|||||||
@ -515,7 +515,7 @@ class DocType(TransactionBase):
|
|||||||
dt = webnotes.conn.sql("select posting_date from `tab%s` where name = '%s'" % (d.prevdoc_doctype, d.prevdoc_docname))
|
dt = webnotes.conn.sql("select posting_date from `tab%s` where name = '%s'" % (d.prevdoc_doctype, d.prevdoc_docname))
|
||||||
else:
|
else:
|
||||||
dt = webnotes.conn.sql("select transaction_date from `tab%s` where name = '%s'" % (d.prevdoc_doctype, d.prevdoc_docname))
|
dt = webnotes.conn.sql("select transaction_date from `tab%s` where name = '%s'" % (d.prevdoc_doctype, d.prevdoc_docname))
|
||||||
d.prevdoc_date = dt and dt[0][0].strftime('%Y-%m-%d') or ''
|
d.prevdoc_date = (dt and dt[0][0]) and dt[0][0].strftime('%Y-%m-%d') or ''
|
||||||
|
|
||||||
def update_prevdoc_detail(self, is_submit, obj):
|
def update_prevdoc_detail(self, is_submit, obj):
|
||||||
StatusUpdater(obj, is_submit).update()
|
StatusUpdater(obj, is_submit).update()
|
||||||
|
|||||||
@ -59,8 +59,7 @@ class DocType:
|
|||||||
self.validate_item(s[0], count)
|
self.validate_item(s[0], count)
|
||||||
self.validate_warehouse(s[1], count)
|
self.validate_warehouse(s[1], count)
|
||||||
|
|
||||||
# encode as ascii
|
self.data.append(s)
|
||||||
self.data.append([d.encode("ascii") for d in s])
|
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
if not self.validated:
|
if not self.validated:
|
||||||
|
|||||||
@ -39,7 +39,8 @@ class DocType:
|
|||||||
self.doclist = doclist
|
self.doclist = doclist
|
||||||
|
|
||||||
def get_bin(self, item_code):
|
def get_bin(self, item_code):
|
||||||
bin = sql("select name from tabBin where item_code = '%s' and warehouse = '%s'" % (item_code, self.doc.name))
|
bin = sql("select name from tabBin where item_code = %s and \
|
||||||
|
warehouse = %s", (item_code, self.doc.name))
|
||||||
bin = bin and bin[0][0] or ''
|
bin = bin and bin[0][0] or ''
|
||||||
if not bin:
|
if not bin:
|
||||||
if not self.doc.warehouse_type :
|
if not self.doc.warehouse_type :
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user