From d8fd8cfe1b9aa3f7354ec36f15d18c042e07ec04 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 12 Jun 2012 14:30:57 +0530 Subject: [PATCH] error fixed in reorder item email notification --- erpnext/stock/doctype/bin/bin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/bin/bin.py b/erpnext/stock/doctype/bin/bin.py index 229fee17f9..c9a700c9e7 100644 --- a/erpnext/stock/doctype/bin/bin.py +++ b/erpnext/stock/doctype/bin/bin.py @@ -385,7 +385,7 @@ class DocType: """ Notify user about auto creation of indent""" from webnotes.utils.email_lib import sendmail - email_list=[d for d in sql("select parent from tabUserRole where role in ('Purchase Manager','Material Manager') ")] + email_list=[d[0] for d in sql("select parent from tabUserRole where role in ('Purchase Manager','Material Manager') ")] msg='A Purchase Request has been raised for item %s: %s on %s '%(doc_type, doc_name, nowdate()) sendmail(email_list, subject='Auto Purchase Request Generation Notification', msg = msg)