Commit 9ad94529 authored by liguangyu06's avatar liguangyu06
Browse files

优化

parent f767db09
......@@ -65,11 +65,11 @@ host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库中商品对应的库存数量
sql = "SELECT sum(t.quantity)/10000 FROM `cmdc-product`.ic_inventory t " \
"WHERE productCode = 10146174 and markForDelete = 0 " \
"and type = 1 and isLimited != 'Y' and effectiveDate > {}".format(ru_date)
"and type = 1 and isLimited != 'Y' "
# print(sql)
total = (mysql_handle.selectSql(host, port, user, pwd, "cmdc-product", sql)[0][0] if
mysql_handle.selectSql(host, port, user, pwd, "cmdc-product", sql)[0][0] else 0)
# print(total)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict109", int(total))
# print(check_dict)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment