Error in Report

Hi All,

I want to add a description column in Quoted Item Comparison. So I had changed the code and it is working fine for the items which have Supplier Quotation Document. But the item which don’t have Supplier Quotation document, I am getting a error like this.

Here is my code,

from future import unicode_literals
from erpnext.setup.utils import get_exchange_rate
from frappe.utils import flt, cint
import frappe

def execute(filters=None):
qty_list = get_quantity_list(filters.item)

data = get_quote_list(filters.item, qty_list)

columns = get_columns(qty_list)

return columns, data

def get_quote_list(item, qty_list):
out = []
if item:
price_data = []
suppliers = []
company_currency = frappe.db.get_default(“currency”)
float_precision = cint(frappe.db.get_default(“float_precision”)) or 2
# Get the list of suppliers
for root in frappe.db.sql(“”“select parent, qty, description, rate from tabSupplier Quotation Item where item_code=%s and docstatus < 2"”“, item, as_dict=1):
for splr in frappe.db.sql(”““SELECT supplier from tabSupplier Quotation where name =%s and docstatus < 2"””, root.parent, as_dict=1):
ip = frappe._dict({
“supplier”: splr.supplier,
“qty”: root.qty,
“description”: root.description,
“parent”: root.parent,
“rate”: root.rate})
price_data.append(ip)
suppliers.append(splr.supplier)

	#Add a row for each supplier
	for root in set(suppliers):
		supplier_currency = frappe.db.get_value("Supplier", root, "default_currency")
		if supplier_currency:
			exchange_rate = get_exchange_rate(supplier_currency, company_currency)
		else:
			exchange_rate = 1

		row = frappe._dict({
			"supplier_name": root,
		})
		for col in qty_list:
			# Get the quantity for this row
			for item_price in price_data:
				if str(item_price.qty) == col.key and item_price.supplier == root:
					row[col.key] = flt(item_price.rate * exchange_rate, float_precision)
					row[col.key + "QUOTE"] = item_price.parent
					row[col.key + "QUOTE1"] = item_price.description
					break
				else:
					row[col.key] = ""
					row[col.key + "QUOTE"] = ""
					row[col.key + "QUOTE1"] = ""
		out.append(row)
		
return out

def get_quantity_list(item):
out = []

if item:
	qty_list = frappe.db.sql("""select distinct qty, description from `tabSupplier Quotation Item` where ifnull(item_code,'')=%s and docstatus < 2""", item, as_dict=1)
	qty_list.sort(reverse=False)
	for qt in qty_list:
		col = frappe._dict({
			"key": str(qt.qty),
			"label": "Qty: " + str(int(qt.qty))
		})
	out.append(col)

return out

def get_columns(qty_list):
columns = [{
“fieldname”: “supplier_name”,
“label”: “Supplier”,
“fieldtype”: “Link”,
“options”: “Supplier”,
“width”: 200
}]

for qty in qty_list:
	columns.append({
		"fieldname": qty.key,
		"label": qty.label,
		"fieldtype": "Currency",
		"options": "currency",
		"width": 80
	})
	columns.append({
		"fieldname": qty.key + "QUOTE",
		"label": "Quotation",
		"fieldtype": "Link",
		"options": "Supplier Quotation",
		"width": 90
	})
	columns.append({
		"fieldname": qty.key + "QUOTE1",
		"label": "Description",
		"fieldtype": "Data",
		"options": "Item",
		"width": 200
	})

return columns

Kindly help me to solve it.

You’ve added description to the qty_list variable, which isn’t necessary. I think that is messing up the rest of it.

Change

qty_list = frappe.db.sql("""select distinct qty, description from \tabSupplier Quotation Item` where ifnull(item_code,‘’)=%s and docstatus < 2"“”, item, as_dict=1)`

to

qty_list = frappe.db.sql("""select distinct qty from \tabSupplier Quotation Item` where ifnull(item_code,‘’)=%s and docstatus < 2"“”, item, as_dict=1)`

Thanks for the reply, but even after changing as per mentioned above getting a same error.

Hi, please check, please add one line to your code

Hi,
After added this line
col = frappe._dict({})
Getting a error like this,
Traceback (most recent call last):
File “/home/aravind/frappe-bench/apps/frappe/frappe/app.py”, line 56, in application
response = frappe.handler.handle()
File “/home/aravind/frappe-bench/apps/frappe/frappe/handler.py”, line 21, in handle
data = execute_cmd(cmd)
File “/home/aravind/frappe-bench/apps/frappe/frappe/handler.py”, line 52, in execute_cmd
return frappe.call(method, **frappe.form_dict)
File “/home/aravind/frappe-bench/apps/frappe/frappe/init.py”, line 922, in call
return fn(*args, **newargs)
File “/home/aravind/frappe-bench/apps/frappe/frappe/desk/query_report.py”, line 95, in run
res = frappe.get_attr(method_name)(frappe._dict(filters))
File “/home/aravind/frappe-bench/apps/erpnext/erpnext/buying/report/quoted_item_comparison/quoted_item_comparison.py”, line 14, in execute
columns = get_columns(qty_list)
File “/home/aravind/frappe-bench/apps/erpnext/erpnext/buying/report/quoted_item_comparison/quoted_item_comparison.py”, line 104, in get_columns
“fieldname”: qty.key + “QUOTE”,
TypeError: unsupported operand type(s) for +: ‘NoneType’ and ‘unicode’

also please change it

1 Like

Thanks a lot, working fine. Solved