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
0799fe19
Commit
0799fe19
authored
Mar 04, 2024
by
周念东
Browse files
一物多码管理
parent
95ae05fc
Changes
4
Hide whitespace changes
Inline
Side-by-side
air_case/cmdc_directory_onethingmulticode/一物多码管理列表.air/一物多码管理列表.py
0 → 100644
View file @
0799fe19
# -*- encoding=utf8 -*-
__author__
=
"zhouniandong"
"""
case_tag:cmdc_api,cmdc一物多码管理列表,2293,2293-3,sit,bs
主数据平台:运营后台管理系统一物多码管理列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_directory_onethingmulticode"
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url1"
)
print
(
url
)
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload1"
)
"""
场景:一物多码管理()
用例名称:一物多码管理列表(一物多码管理)
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result
=
requests
.
post
(
url
,
json
=
request_body
,
headers
=
headers
)
print
(
"
\033
[031mresult1============
\033
[0m"
,
result
)
result
=
json
.
loads
(
result
.
content
)
print
(
"
\033
[031mresult2============
\033
[0m"
,
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict1"
)
print
(
"
\033
[031mcheck_dict============
\033
[0m"
,
check_dict
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
air_case/cmdc_directory_onethingmulticode/一物多码管理查询产品线名称.air/一物多码管理查询产品线名称.py
0 → 100644
View file @
0799fe19
# -*- encoding=utf8 -*-
__author__
=
"zhouniandong"
"""
case_tag:cmdc_api,cmdc一物多码管理查询产品线名称,2293,2293-3,sit,bs
主数据平台:运营后台管理系统一物多码管理列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_directory_onethingmulticode"
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url2"
)
print
(
url
)
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload2"
)
"""
场景:一物多码管理()
用例名称:一物多码管理查询产品线名称(一物多码管理)
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
print
(
"
\033
[031mresult1============
\033
[0m"
,
result
)
result
=
json
.
loads
(
result
.
content
)
print
(
"
\033
[031mresult2============
\033
[0m"
,
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict2"
)
print
(
"
\033
[031mcheck_dict============
\033
[0m"
,
check_dict
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
air_case/cmdc_directory_onethingmulticode/一物多码管理获取生产厂商.air/一物多码管理获取生产厂商.py
0 → 100644
View file @
0799fe19
# -*- encoding=utf8 -*-
__author__
=
"zhouniandong"
"""
case_tag:cmdc_api,cmdc一物多码管理获取生产厂商,2293,2293-3,sit,bs
主数据平台:运营后台管理系统一物多码管理列表接口
"""
from
common.common_func
import
commonFuc
from
air_case.cmdc_login.后台管理系统登录.后台管理系统登录
import
CmdcDoLogin
import
requests
import
json
module
=
"cmdc_directory_onethingmulticode"
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"url3"
)
print
(
url
)
# 获取登录所需账号密码
username
=
commonFuc
().
get_business_data
(
module
,
"username"
)
password
=
commonFuc
().
get_business_data
(
module
,
"password"
)
# 获取登录后Cmdc_access_token
cmdc_access_token
=
CmdcDoLogin
(
username
,
password
).
get_token
()
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers"
,
cmdc_access_token
)
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload3"
)
"""
场景:一物多码管理()
用例名称:一物多码管理获取生产厂商(一物多码管理)
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result
=
requests
.
get
(
url
,
params
=
request_body
,
headers
=
headers
)
print
(
"
\033
[031mresult1============
\033
[0m"
,
result
)
result
=
json
.
loads
(
result
.
content
)
print
(
"
\033
[031mresult2============
\033
[0m"
,
result
)
# 获取预期结果
check_dict
=
commonFuc
().
get_business_data
(
module
,
"checkDict3"
)
print
(
"
\033
[031mcheck_dict============
\033
[0m"
,
check_dict
)
# 断言实际结果中是否包含预期结果的内容
commonFuc
().
check_result
(
check_dict
,
result
)
data/cmdc_directory_onethingmulticode/data
0 → 100644
View file @
0799fe19
#后台运营管理系统登录信息(子站)
"username": "Admin00111"
"password": "Aa123456"
json_headers: {
"Content-Type": "application/json",
"Cmdc_access_token": "%s"
}
#一物多码管理
#一物多码管理列表 post
"url1": "/product/productGroup/oneThingMultiCodeManagementList"
"payload1": {"productGroupName":"","productGroupNo":"","productCode":"","productName":"","specifications":"","materialCode":"","manufacturerValue":"","isControlSales":null,"pageNum":1,"pageSize":10}
#预期结果
checkDict1: {"success":true,"code":"200","message":"OK"}
#一物多码管理查询产品线名称 get
"url2": "/product/public/queryProductLineName"
"payload2": filialeCode=00111
#预期结果
checkDict2: {"success":true,"code":"200","message":"OK","data":[{"productLineCode":"01","productLineName":"爱德华wjp"},{"productLineCode":"0240001","productLineName":"uv001"},{"productLineCode":"0330","productLineName":"swallow测试产品线"},{"productLineCode":"100008","productLineName":"雅培起搏器"},{"productLineCode":"100016","productLineName":"百多安产品线2017"},{"productLineCode":"10004","productLineName":"百多安顾禹"},{"productLineCode":"10026922","productLineName":"17001035"},{"productLineCode":"101","productLineName":"测试产品线"},{"productLineCode":"1019","productLineName":"测试小线"},{"productLineCode":"11","productLineName":"11"},{"productLineCode":"1110001","productLineName":"erptest1"},{"productLineCode":"1110002","productLineName":"erptest2"},{"productLineCode":"111002","productLineName":"2"},{"productLineCode":"11111","productLineName":"wjp产品线"},{"productLineCode":"111SM","productLineName":"111扫码+仓库测试产品线TR"},{"productLineCode":"111TR-CS","productLineName":"骨科平台数据同步测试"},{"productLineCode":"111TR-GK","productLineName":"骨科平台测试"},{"productLineCode":"111TR-YP","productLineName":"骨科平台测试-雅培"},{"productLineCode":"1121","productLineName":"爱德华阮嘉雯IE"},{"productLineCode":"112801","productLineName":"swallow客户产品线"},{"productLineCode":"17001035","productLineName":"10031665"},{"productLineCode":"2011","productLineName":"施乐辉敷料"},{"productLineCode":"2012","productLineName":"麦迪康"},{"productLineCode":"2013","productLineName":"伟康"},{"productLineCode":"201803","productLineName":"诊断仪器"},{"productLineCode":"22","productLineName":"22"},{"productLineCode":"2222","productLineName":"TESTW"},{"productLineCode":"3010","productLineName":"贝朗CCPT-EQ"},{"productLineCode":"3011","productLineName":"爱德华"},{"productLineCode":"3012","productLineName":"爱德华心脏瓣膜"},{"productLineCode":"3021","productLineName":"费森尤斯"},{"productLineCode":"3022","productLineName":"费森腹透"},{"productLineCode":"3031","productLineName":"巴德"},{"productLineCode":"3033","productLineName":"巴德Foley"},{"productLineCode":"3039","productLineName":"贝朗OPM"},{"productLineCode":"3040","productLineName":"西门子-物流平台"},{"productLineCode":"3041","productLineName":"贝朗CCPT"},{"productLineCode":"3042","productLineName":"贝朗SIVT"},{"productLineCode":"3043","productLineName":"蛇牌基础"},{"productLineCode":"3044","productLineName":"蛇牌神外"},{"productLineCode":"3045","productLineName":"蛇牌腔镜"},{"productLineCode":"3046","productLineName":"蛇牌"},{"productLineCode":"3047","productLineName":"蛇牌神外耗材"},{"productLineCode":"3048","productLineName":"蛇牌神外设备"},{"productLineCode":"3049","productLineName":"贝朗其它"},{"productLineCode":"3050","productLineName":"蛇牌基础灭菌盒"},{"productLineCode":"3051","productLineName":"美敦力DIB"},{"productLineCode":"3052","productLineName":"美敦力ER"},{"productLineCode":"3053","productLineName":"动力系统"},{"productLineCode":"3057","productLineName":"蛇牌神外耗材(阴凉库)"},{"productLineCode":"3061","productLineName":"澳思托"},{"productLineCode":"3071","productLineName":"BDB"},{"productLineCode":"3072","productLineName":"BD采血器"},{"productLineCode":"3073","productLineName":"BD-DC"},{"productLineCode":"3074","productLineName":"BD非公立医院"},{"productLineCode":"3075","productLineName":"BDMDSPA"},{"productLineCode":"3076","productLineName":"BD-DS"},{"productLineCode":"3080","productLineName":"麦迪科"},{"productLineCode":"3081","productLineName":"拜耳"},{"productLineCode":"3091","productLineName":"百多安"},{"productLineCode":"3101","productLineName":"安思尔"},{"productLineCode":"3111","productLineName":"康乐保"},{"productLineCode":"3121","productLineName":"尼普洛"},{"productLineCode":"3131","productLineName":"康维德"},{"productLineCode":"3141","productLineName":"卡瓦盛邦"},{"productLineCode":"3142","productLineName":"卡瓦齿科"},{"productLineCode":"3151","productLineName":"AVITA"},{"productLineCode":"3161","productLineName":"布鲁克"},{"productLineCode":"328","productLineName":"ZJCS1"},{"productLineCode":"33","productLineName":"33"},{"productLineCode":"3333","productLineName":"3333"},{"productLineCode":"33333","productLineName":"JDE-TOOLS升级测试产品线"},{"productLineCode":"3334","productLineName":"33334"},{"productLineCode":"356777","productLineName":"百多安2222"},{"productLineCode":"40000000","productLineName":"徐荣自建"},{"productLineCode":"4001","productLineName":"百多安"},{"productLineCode":"4002","productLineName":"BDB"},{"productLineCode":"4003","productLineName":"蛇牌神外耗材"},{"productLineCode":"4004","productLineName":"捷迈"},{"productLineCode":"4005","productLineName":"理贝尔"},{"productLineCode":"4011","productLineName":"HV"},{"productLineCode":"4012","productLineName":"理诺珐自体血液回收产品"},{"productLineCode":"4021","productLineName":"泰利福"},{"productLineCode":"4031","productLineName":"百特"},{"productLineCode":"44","productLineName":"44"},{"productLineCode":"4444","productLineName":"4444"},{"productLineCode":"5001","productLineName":"百多安2017111"},{"productLineCode":"50010","productLineName":"百多安20171112"},{"productLineCode":"5002","productLineName":"百多安20171115"},{"productLineCode":"5003BDA","productLineName":"BDA产品"},{"productLineCode":"5011","productLineName":"史塞克关节"},{"productLineCode":"5012","productLineName":"史赛克工具"},{"productLineCode":"5013","productLineName":"史赛克创伤"},{"productLineCode":"5021","productLineName":"闻泰百得"},{"productLineCode":"5031","productLineName":"山东威高"},{"productLineCode":"5041","productLineName":"常州鼎健"},{"productLineCode":"5044","productLineName":"WJP产品线"},{"productLineCode":"5051","productLineName":"强生脊柱"},{"productLineCode":"5061","productLineName":"威联德"},{"productLineCode":"5071","productLineName":"理贝尔"},{"productLineCode":"5072","productLineName":"理贝尔工具"},{"productLineCode":"5080","productLineName":"强生关节"},{"productLineCode":"5081","productLineName":"邦美关节"},{"productLineCode":"5091","productLineName":"捷迈关节"},{"productLineCode":"5092","productLineName":"骨科周边"},{"productLineCode":"6011","productLineName":"达芬奇耗材"},{"productLineCode":"6020","productLineName":"士卓曼齿科"},{"productLineCode":"6030","productLineName":"3M齿科"},{"productLineCode":"6040","productLineName":"鱼跃血糖产品"},{"productLineCode":"7011","productLineName":"KCI负压引流"},{"productLineCode":"7021","productLineName":"3M医疗"},{"productLineCode":"7031","productLineName":"优安轻胰岛素针头"},{"productLineCode":"789","productLineName":"扫码测试"},{"productLineCode":"800523","productLineName":"TESTZHAOKEJING"},{"productLineCode":"8011","productLineName":"西门子"},{"productLineCode":"8021","productLineName":"泰夫恩口腔"},{"productLineCode":"8031","productLineName":"艾普迪"},{"productLineCode":"8041","productLineName":"MV神外"},{"productLineCode":"9011","productLineName":"设备部其它"},{"productLineCode":"9020","productLineName":"耗材部其它"},{"productLineCode":"9030","productLineName":"商务一部其它"},{"productLineCode":"9040","productLineName":"配送部其它"},{"productLineCode":"9050","productLineName":"商务二部其它"},{"productLineCode":"9060","productLineName":"福建办其它"},{"productLineCode":"9070","productLineName":"采购部其它"},{"productLineCode":"9080","productLineName":"市外部其它"},{"productLineCode":"9090","productLineName":"市场开发部其它"},{"productLineCode":"9091","productLineName":"医学检验部其它"},{"productLineCode":"CMDC2018","productLineName":"ZHAOKEJINGTEST"},{"productLineCode":"GK001","productLineName":"骨科平台测试产品线"},{"productLineCode":"HL001","productLineName":"test"},{"productLineCode":"lk-test","productLineName":"智云网上订单平台"},{"productLineCode":"PFB01","productLineName":"PFB集中配送"},{"productLineCode":"RFID001","productLineName":"RFID-WMS测试产品线"},{"productLineCode":"SM0001","productLineName":"扫码产品3"},{"productLineCode":"SM0002","productLineName":"扫码管理测试2"},{"productLineCode":"SMCE-TR","productLineName":"扫码测试-台荣"},{"productLineCode":"test001","productLineName":"UAT测试专用"},{"productLineCode":"WMS001","productLineName":"WMS001"},{"productLineCode":"wms002","productLineName":"test111"},{"productLineCode":"WSCPX001","productLineName":"网上产品线测试001"},{"productLineCode":"WSCPX002","productLineName":"网上产品线测试002"},{"productLineCode":"WSCPX003","productLineName":"网上产品线测试003"},{"productLineCode":"WSCPX004","productLineName":"网上产品线测试004"},{"productLineCode":"WSCPX005","productLineName":"网上产品线测试005"},{"productLineCode":"XSQH","productLineName":"缺货测试"},{"productLineCode":"ZJCS1","productLineName":"ZJ测试产品线"},{"productLineCode":"市北001","productLineName":"市北医院"}],"freshToken":null}
#{"success":true,"code":"200","message":"OK","data":[{"productLineCode":"01","productLineName":"爱德华wjp"},{"productLineCode":"0240001","productLineName":"uv001"},{"productLineCode":"0330","productLineName":"swallow测试产品线"},{"productLineCode":"100008","productLineName":"雅培起搏器"},{"productLineCode":"100016","productLineName":"百多安产品线2017"},{"productLineCode":"10004","productLineName":"百多安顾禹"},{"productLineCode":"10026922","productLineName":"17001035"},{"productLineCode":"101","productLineName":"测试产品线"},{"productLineCode":"1019","productLineName":"测试小线"},{"productLineCode":"11","productLineName":"11"},{"productLineCode":"1110001","productLineName":"erptest1"},{"productLineCode":"1110002","productLineName":"erptest2"},{"productLineCode":"111002","productLineName":"2"},{"productLineCode":"11111","productLineName":"wjp产品线"},{"productLineCode":"111SM","productLineName":"111扫码+仓库测试产品线TR"},{"productLineCode":"111TR-CS","productLineName":"骨科平台数据同步测试"},{"productLineCode":"111TR-GK","productLineName":"骨科平台测试"},{"productLineCode":"111TR-YP","productLineName":"骨科平台测试-雅培"},{"productLineCode":"1121","productLineName":"爱德华阮嘉雯IE"},{"productLineCode":"112801","productLineName":"swallow客户产品线"},{"productLineCode":"17001035","productLineName":"10031665"},{"productLineCode":"2011","productLineName":"施乐辉敷料"},{"productLineCode":"2012","productLineName":"麦迪康"},{"productLineCode":"2013","productLineName":"伟康"},{"productLineCode":"201803","productLineName":"诊断仪器"},{"productLineCode":"22","productLineName":"22"},{"productLineCode":"2222","productLineName":"TESTW"},{"productLineCode":"3010","productLineName":"贝朗CCPT-EQ"},{"productLineCode":"3011","productLineName":"爱德华"},{"productLineCode":"3012","productLineName":"爱德华心脏瓣膜"},{"productLineCode":"3021","productLineName":"费森尤斯"},{"productLineCode":"3022","productLineName":"费森腹透"},{"productLineCode":"3031","productLineName":"巴德"},{"productLineCode":"3033","productLineName":"巴德Foley"},{"productLineCode":"3039","productLineName":"贝朗OPM"},{"productLineCode":"3040","productLineName":"西门子-物流平台"},{"productLineCode":"3041","productLineName":"贝朗CCPT"},{"productLineCode":"3042","productLineName":"贝朗SIVT"},{"productLineCode":"3043","productLineName":"蛇牌基础"},{"productLineCode":"3044","productLineName":"蛇牌神外"},{"productLineCode":"3045","productLineName":"蛇牌腔镜"},{"productLineCode":"3046","productLineName":"蛇牌"},{"productLineCode":"3047","productLineName":"蛇牌神外耗材"},{"productLineCode":"3048","productLineName":"蛇牌神外设备"},{"productLineCode":"3049","productLineName":"贝朗其它"},{"productLineCode":"3050","productLineName":"蛇牌基础灭菌盒"},{"productLineCode":"3051","productLineName":"美敦力DIB"},{"productLineCode":"3052","productLineName":"美敦力ER"},{"productLineCode":"3053","productLineName":"动力系统"},{"productLineCode":"3057","productLineName":"蛇牌神外耗材(阴凉库)"},{"productLineCode":"3061","productLineName":"澳思托"},{"productLineCode":"3071","productLineName":"BDB"},{"productLineCode":"3072","productLineName":"BD采血器"},{"productLineCode":"3073","productLineName":"BD-DC"},{"productLineCode":"3074","productLineName":"BD非公立医院"},{"productLineCode":"3075","productLineName":"BDMDSPA"},{"productLineCode":"3076","productLineName":"BD-DS"},{"productLineCode":"3080","productLineName":"麦迪科"},{"productLineCode":"3081","productLineName":"拜耳"},{"productLineCode":"3091","productLineName":"百多安"},{"productLineCode":"3101","productLineName":"安思尔"},{"productLineCode":"3111","productLineName":"康乐保"},{"productLineCode":"3121","productLineName":"尼普洛"},{"productLineCode":"3131","productLineName":"康维德"},{"productLineCode":"3141","productLineName":"卡瓦盛邦"},{"productLineCode":"3142","productLineName":"卡瓦齿科"},{"productLineCode":"3151","productLineName":"AVITA"},{"productLineCode":"3161","productLineName":"布鲁克"},{"productLineCode":"328","productLineName":"ZJCS1"},{"productLineCode":"33","productLineName":"33"},{"productLineCode":"3333","productLineName":"3333"},{"productLineCode":"33333","productLineName":"JDE-TOOLS升级测试产品线"},{"productLineCode":"3334","productLineName":"33334"},{"productLineCode":"356777","productLineName":"百多安2222"},{"productLineCode":"40000000","productLineName":"徐荣自建"},{"productLineCode":"4001","productLineName":"百多安"},{"productLineCode":"4002","productLineName":"BDB"},{"productLineCode":"4003","productLineName":"蛇牌神外耗材"},{"productLineCode":"4004","productLineName":"捷迈"},{"productLineCode":"4005","productLineName":"理贝尔"},{"productLineCode":"4011","productLineName":"HV"},{"productLineCode":"4012","productLineName":"理诺珐自体血液回收产品"},{"productLineCode":"4021","productLineName":"泰利福"},{"productLineCode":"4031","productLineName":"百特"},{"productLineCode":"44","productLineName":"44"},{"productLineCode":"4444","productLineName":"4444"},{"productLineCode":"5001","productLineName":"百多安2017111"},{"productLineCode":"50010","productLineName":"百多安20171112"},{"productLineCode":"5002","productLineName":"百多安20171115"},{"productLineCode":"5003BDA","productLineName":"BDA产品"},{"productLineCode":"5011","productLineName":"史塞克关节"},{"productLineCode":"5012","productLineName":"史赛克工具"},{"productLineCode":"5013","productLineName":"史赛克创伤"},{"productLineCode":"5021","productLineName":"闻泰百得"},{"productLineCode":"5031","productLineName":"山东威高"},{"productLineCode":"5041","productLineName":"常州鼎健"},{"productLineCode":"5044","productLineName":"WJP产品线"},{"productLineCode":"5051","productLineName":"强生脊柱"},{"productLineCode":"5061","productLineName":"威联德"},{"productLineCode":"5071","productLineName":"理贝尔"},{"productLineCode":"5072","productLineName":"理贝尔工具"},{"productLineCode":"5080","productLineName":"强生关节"},{"productLineCode":"5081","productLineName":"邦美关节"},{"productLineCode":"5091","productLineName":"捷迈关节"},{"productLineCode":"5092","productLineName":"骨科周边"},{"productLineCode":"6011","productLineName":"达芬奇耗材"},{"productLineCode":"6020","productLineName":"士卓曼齿科"},{"productLineCode":"6030","productLineName":"3M齿科"},{"productLineCode":"6040","productLineName":"鱼跃血糖产品"},{"productLineCode":"7011","productLineName":"KCI负压引流"},{"productLineCode":"7021","productLineName":"3M医疗"},{"productLineCode":"7031","productLineName":"优安轻胰岛素针头"},{"productLineCode":"789","productLineName":"扫码测试"},{"productLineCode":"800523","productLineName":"TESTZHAOKEJING"},{"productLineCode":"8011","productLineName":"西门子"},{"productLineCode":"8021","productLineName":"泰夫恩口腔"},{"productLineCode":"8031","productLineName":"艾普迪"},{"productLineCode":"8041","productLineName":"MV神外"},{"productLineCode":"9011","productLineName":"设备部其它"},{"productLineCode":"9020","productLineName":"耗材部其它"},{"productLineCode":"9030","productLineName":"商务一部其它"},{"productLineCode":"9040","productLineName":"配送部其它"},{"productLineCode":"9050","productLineName":"商务二部其它"},{"productLineCode":"9060","productLineName":"福建办其它"},{"productLineCode":"9070","productLineName":"采购部其它"},{"productLineCode":"9080","productLineName":"市外部其它"},{"productLineCode":"9090","productLineName":"市场开发部其它"},{"productLineCode":"9091","productLineName":"医学检验部其它"},{"productLineCode":"CMDC2018","productLineName":"ZHAOKEJINGTEST"},{"productLineCode":"GK001","productLineName":"骨科平台测试产品线"},{"productLineCode":"HL001","productLineName":"test"},{"productLineCode":"lk-test","productLineName":"智云网上订单平台"},{"productLineCode":"PFB01","productLineName":"PFB集中配送"},{"productLineCode":"RFID001","productLineName":"RFID-WMS测试产品线"},{"productLineCode":"SM0001","productLineName":"扫码产品3"},{"productLineCode":"SM0002","productLineName":"扫码管理测试2"},{"productLineCode":"SMCE-TR","productLineName":"扫码测试-台荣"},{"productLineCode":"test001","productLineName":"UAT测试专用"},{"productLineCode":"WMS001","productLineName":"WMS001"},{"productLineCode":"wms002","productLineName":"test111"},{"productLineCode":"WSCPX001","productLineName":"网上产品线测试001"},{"productLineCode":"WSCPX002","productLineName":"网上产品线测试002"},{"productLineCode":"WSCPX003","productLineName":"网上产品线测试003"},{"productLineCode":"WSCPX004","productLineName":"网上产品线测试004"},{"productLineCode":"WSCPX005","productLineName":"网上产品线测试005"},{"productLineCode":"XSQH","productLineName":"缺货测试"},{"productLineCode":"ZJCS1","productLineName":"ZJ测试产品线"},{"productLineCode":"市北001","productLineName":"市北医院"}],"freshToken":null}
#一物多码管理获取生产厂商 get
"url3": "/product/public/getManufacturers"
"payload3":
#预期结果
checkDict3: {"success":true,"code":"200","message":"OK","data":["上海上东医疗器械制造有限公司","测试厂家zj2","wsm测试厂家zj","JDEPY-TOOLS升级厂家测试","B.BraunSurgicalSA123456","KENSWICKGmbH","ZJQ生产厂家","江西诺诚电气有限公司","生产厂家-台荣","测试厂家zj1","上海健强卫生护理用品有限公司","测试用例专用生产厂家","新创SPD生产厂家测试-洪钰","深圳市新鸿镁医疗器械有限公司-李震宇","MathysLtdBettlach"],"freshToken":null}
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