Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
test
autotest-airtest-web-cmdc
Commits
c845f882
Commit
c845f882
authored
Mar 12, 2024
by
liguangyu06
Browse files
优化
parent
25844b25
Changes
1
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_order_list/获取库存列表信息.air/获取库存列表信息.py
View file @
c845f882
...
...
@@ -65,8 +65,10 @@ 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 expireDate > {}"
.
format
(
ru_date
)
total
=
mysql_handle
.
selectSql
(
host
,
port
,
user
,
pwd
,
"cmdc-product"
,
sql
)[
0
][
0
]
"and type = 1 and isLimited != 'Y' and effectiveDate > {}"
.
format
(
ru_date
)
# 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
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict109"
,
int
(
total
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment