Commit 2a40485f authored by liguangyu06's avatar liguangyu06
Browse files

优化

parent 7f3387b6
......@@ -38,6 +38,7 @@ productCode = result["data"]["list"][product_random]["productCode"]
productName = result["data"]["list"][product_random]["productName"]
specifications = result["data"]["list"][product_random]["specifications"]
num = random.randint(1, 5)
# print(num)
# print(productCode)
# 获取文件
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
......@@ -81,6 +82,7 @@ host, port, user, pwd = mysql_handle.getConf(db="cmdc_db_be")
sql = "SELECT t.wholeQuantity FROM `cmdc-order`.tc_supernova t " \
"WHERE companyCode = 00102 and productCode = {}".format(productCode)
total = int(mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)[0][0])
# print(sql)
result = {"wholeQuantity": total}
# 将接口响应时间添加至result
......
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