我正在尝试从db返回一个值并收到此错误。我在这里尝试了以前回答的问题,但没有运气。任何人都可以帮助我吗?
@frappe.whitelist()
def generate_barcode():
last_barcode = frappe.db.sql("""\
select MAX(barcode) from `tabItem` """)
if last_barcode:
last_barcode = last_barcode + 1
else:
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
random.shuffle(x)
last_barcode = x[0]
return {'last_barcode':last_barcode}
添加追溯:
Traceback (innermost last):
File "/home/adminuser/frappe-bench-hitech/apps/frappe/frappe/app.py", line 49, in application
response = frappe.handler.handle()
File "/home/adminuser/frappe-bench-hitech/apps/frappe/frappe/handler.py", line 66, in handle
execute_cmd(cmd)
File "/home/adminuser/frappe-bench-hitech/apps/frappe/frappe/handler.py", line 89, in execute_cmd
ret = frappe.call(method, **frappe.form_dict)
File "/home/adminuser/frappe-bench-hitech/apps/frappe/frappe/__init__.py", line 531, in call
return fn(*args, **newargs)
File "/home/adminuser/frappe-bench-hitech/apps/erpnext/erpnext/stock/doctype/item/item.py", line 405, in generate_barcode
last_barcode = last_barcode + 1
TypeError: can only concatenate tuple (not "int") to tuple
答案 0 :(得分:1)
我不知道" frappe"是的,你没有发布完整的回溯所以我们只能尝试猜测,但非常明显frappe.db.sql("select MAX(barcode) from
tabItem ")
返回一个元组(这是我对SQL上的select的期望db),所以你需要这样的东西:
row = frappe.db.sql(
"select MAX(barcode) from `tabItem`"
)
last_barcode = row[0]
if last_barcode:
last_barcode = last_barcode + 1
作为旁注:如果你想要一个0到9之间的随机int(包括),它拼写为random.randint(0, 9)
答案 1 :(得分:1)
我得到了答案。谢谢大家的帮助。
@frappe.whitelist()
def generate_barcode():
last_barcode_auto = frappe.db.sql("""\
select MAX(barcode) from `tabItem` """)
if last_barcode_auto[0][0] :
last_barcode = last_barcode_auto[0][0]
final_barcode= last_barcode+1
else:
final_barcode=random.randrange(100001, 100000000000, 2)
return {'final_barcode':final_barcode}
答案 2 :(得分:0)
错误消息是last_barcode
是一个元组。使用last_barcode[0]
检索第一个值(在这种情况下,这是唯一的值,因为您选择了一列)。
if last_barcode:
last_barcode = last_barcode[0] + 1