Commit b78085ad authored by xiao-hesheng's avatar xiao-hesheng
Browse files

新增用户管理脚本

parent 0e76a3d6
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delData
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,r_e6用户管理_用户管理_列表查询_查询全部,id2263,id2263-249,sit,on
内网:r_e6用户管理_用户管理_列表查询_查询全部
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:r_e6用户管理_用户管理_列表查询_查询全部
用例名称:r_e6用户管理_用户管理_列表查询_查询全部
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
username = commonFuc().get_business_data(module, "username")
## print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token, projectCode, uxid, corpId, info = login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "sys_user_list")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
# # 请求体
request_body = commonFuc().get_business_data(module, "payload63_5")
print('request_body', request_body)
# # # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaa', result)
# 断言
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
id1 = ""
if code == 0 and len(data) >= 1:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delData
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,r_e7用户管理_用户管理_列表查询_条件查询_精确查询,id2263,id2263-250,sit,on
内网:r_e7用户管理_用户管理_列表查询_条件查询_精确查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1(orgName='d69a68df361a4289b2262e4ef75b55a5'):
"""
场景:r_e7用户管理_用户管理_列表查询_条件查询_精确查询
用例名称:r_e7用户管理_用户管理_列表查询_条件查询_精确查询
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
username = commonFuc().get_business_data(module, "username")
## print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token, projectCode, uxid, corpId, info = login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "sys_user_list")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
str = commonFuc().get_business_data(module, 'data21')
list2 = list(str.split(","))
print(list2)
# # 请求体
for i in list2:
request_body = commonFuc().get_business_data(module, "payload63_6", i)
print('request_body', request_body)
# # # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaa', result)
# 断言
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
cname = commonFuc().analysis_json('cname', result)
if code == 0 and len(data) >= 1 and cname == i:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
# 条件全部输入精确查询
request_body = commonFuc().get_business_data(module, "payload63_7", orgName)
result = commonFuc().http_post(url, request_body, headers)
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
total = commonFuc().analysis_json('total', data)
if code == 0 and len(data) >= 1 and total == 1:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delData
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,r_e8用户管理_用户管理_列表查询_条件查询_模糊查询,id2263,id2263-251,sit,on
内网:r_e8用户管理_用户管理_列表查询_条件查询_模糊查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1(orgName='d69a68df361a4289b2262e4ef75b55a5'):
"""
场景:r_e8用户管理_用户管理_列表查询_条件查询_模糊查询
用例名称:r_e8用户管理_用户管理_列表查询_条件查询_模糊查询
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
username = commonFuc().get_business_data(module, "username")
## print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token, projectCode, uxid, corpId, info = login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "sys_user_list")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
str = commonFuc().get_business_data(module, 'data22')
list2 = list(str.split(","))
print(list2)
# # 请求体
for i in list2:
request_body = commonFuc().get_business_data(module, "payload63_6", i)
print('request_body', request_body)
# # # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaa', result)
# 断言
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
cname = commonFuc().analysis_json('cname', result)
if code == 0 and len(data) >= 1:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
# 姓名模糊输入,其他条件全部输入
request_body = commonFuc().get_business_data(module, "payload63_8", i,orgName)
result = commonFuc().http_post(url, request_body, headers)
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
total = commonFuc().analysis_json('total', data)
if code == 0 and len(data) >= 1 :
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delData
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,r_e9用户管理_用户管理_列表查询_条件查询_异常查询,id2263,id2263-252,sit,on
内网:r_e9用户管理_用户管理_列表查询_条件查询_异常查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1(orgName='d69a68df361a4289b2262e4ef75b55a5'):
"""
场景:r_e9用户管理_用户管理_列表查询_条件查询_异常查询
用例名称:r_e9用户管理_用户管理_列表查询_条件查询_异常查询
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
username = commonFuc().get_business_data(module, "username")
## print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token, projectCode, uxid, corpId, info = login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "sys_user_list")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
str = commonFuc().get_business_data(module, 'data3')
list2 = list(str.split(","))
print(list2)
# # 请求体
for i in list2:
request_body = commonFuc().get_business_data(module, "payload63_6", i)
print('request_body', request_body)
# # # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaa', result)
# 断言
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
total = commonFuc().analysis_json('total', data)
if code == 0 and total == 0:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
# 姓名输入异常内容,其他条件全部输入
request_body = commonFuc().get_business_data(module, "payload63_8", i,orgName)
result = commonFuc().http_post(url, request_body, headers)
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
total = commonFuc().analysis_json('total', data)
if code == 0 and total == 0 :
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
...@@ -106,6 +106,8 @@ ...@@ -106,6 +106,8 @@
"sys_role_menu_all_url": "/api/platformService/sys/role/v2/menu/all" "sys_role_menu_all_url": "/api/platformService/sys/role/v2/menu/all"
"sys_role_menu_batch_save": "/api/platformService/sys/role/v2/menu/batch/save" "sys_role_menu_batch_save": "/api/platformService/sys/role/v2/menu/batch/save"
"sys_role_update": "/api/platformService/sys/role/v2/update" "sys_role_update": "/api/platformService/sys/role/v2/update"
"sys_user_list": "/api/platformService/sys/user/v2/list"
data1: '条码,high_info,check_detail,高值打码,out_stock,goods_change_baseInfo,center_out_stock_pkg,mcms_centre_out_stock,pkg_info,mcms_dept_out_stock,barcode_common,mcms_centre_in_stock,goods_change_price,mcms_dept_in_stock,check_detail_pkg,center_out_stock_high,center_out_stock_high,high_consume,shelf_code,barcode_common_pkg,check_detail_high,balance_bill,barcode_rfid,bottle_info,验收单明细打印,产品信息变更,中心库出库单低值,医院中心库出库单,包信息,医院科室出库单,高值纸质条码打印,医院中心库入库单,产品调价,医院科室入库单,低值验收单,中心库出库单高值,高值耗材使用登记表,货位码,单元包纸质条码打印,高值验收单,结算单打印,高值RFID条码打印,单瓶码打印' data1: '条码,high_info,check_detail,高值打码,out_stock,goods_change_baseInfo,center_out_stock_pkg,mcms_centre_out_stock,pkg_info,mcms_dept_out_stock,barcode_common,mcms_centre_in_stock,goods_change_price,mcms_dept_in_stock,check_detail_pkg,center_out_stock_high,center_out_stock_high,high_consume,shelf_code,barcode_common_pkg,check_detail_high,balance_bill,barcode_rfid,bottle_info,验收单明细打印,产品信息变更,中心库出库单低值,医院中心库出库单,包信息,医院科室出库单,高值纸质条码打印,医院中心库入库单,产品调价,医院科室入库单,低值验收单,中心库出库单高值,高值耗材使用登记表,货位码,单元包纸质条码打印,高值验收单,结算单打印,高值RFID条码打印,单瓶码打印'
data2: 'code,医院标识,code1,code1,erpCode,JDE编码修改,GOODS_CHANGE_STATUS,产品信息变更状态,GOODS_CHARGE_COST,是否计入成本,GOODS_KIND_TYPE,产品分类类型,MFRS_KIND,企业职能,miCode,医保编码修改,NOTICE_RANGE_KIND,公告通知范围,PUR_MODE,耗材类型,YWMS,业务模式,CORP_TYPE,主体类别,PROGRAM_TYPE,程序端,GRAIN,参数粒度,ENV,发布环境,PROJECT_GROUP,系统分组,RETURN_REASON_TYPE,退货原因,NEWCPFL,新产品分类,ZZLX,企业证照类型,68FL,68器械分类,18FL,18器械分类,GOODS_START_STOP,产品启停,YYDJ,医院等级,GOODS_TEMP,产品临采,GLJB,耗材管理级别,GOODS_PURCHASE,产品是否采购,HIS_CODE_CHANGE,HIS编码修改,MI_CODE_CHANGE,医保型号修改,MI_GOODS_GG_CHANGE,医保产品规格,MI_GOODS_XH_CHANGE,医保型号修改,GOODS_CHARGE,产品是否计费,GOODS_BAR_CODE,产品管理模式,GOODS_PUR_MODE,耗材类型,GOODS_CHANGE_PRICE,产品调价类型,GOODS_BAR_CODE_STRATEGY,UDI管理策略,FOCUS_CONTROL_TYPE,重点管控分类,MANUAL_PICK_REASON,手工出库原因,RFID_LABEL_CHANGE,RFID标签管理,ALLOT_PICK_REASON,调拨出库原因,MAGRE_PICK_REASON,移库出库原因' data2: 'code,医院标识,code1,code1,erpCode,JDE编码修改,GOODS_CHANGE_STATUS,产品信息变更状态,GOODS_CHARGE_COST,是否计入成本,GOODS_KIND_TYPE,产品分类类型,MFRS_KIND,企业职能,miCode,医保编码修改,NOTICE_RANGE_KIND,公告通知范围,PUR_MODE,耗材类型,YWMS,业务模式,CORP_TYPE,主体类别,PROGRAM_TYPE,程序端,GRAIN,参数粒度,ENV,发布环境,PROJECT_GROUP,系统分组,RETURN_REASON_TYPE,退货原因,NEWCPFL,新产品分类,ZZLX,企业证照类型,68FL,68器械分类,18FL,18器械分类,GOODS_START_STOP,产品启停,YYDJ,医院等级,GOODS_TEMP,产品临采,GLJB,耗材管理级别,GOODS_PURCHASE,产品是否采购,HIS_CODE_CHANGE,HIS编码修改,MI_CODE_CHANGE,医保型号修改,MI_GOODS_GG_CHANGE,医保产品规格,MI_GOODS_XH_CHANGE,医保型号修改,GOODS_CHARGE,产品是否计费,GOODS_BAR_CODE,产品管理模式,GOODS_PUR_MODE,耗材类型,GOODS_CHANGE_PRICE,产品调价类型,GOODS_BAR_CODE_STRATEGY,UDI管理策略,FOCUS_CONTROL_TYPE,重点管控分类,MANUAL_PICK_REASON,手工出库原因,RFID_LABEL_CHANGE,RFID标签管理,ALLOT_PICK_REASON,调拨出库原因,MAGRE_PICK_REASON,移库出库原因'
...@@ -127,6 +129,8 @@ data17: "006检验科,1库房,00,6" ...@@ -127,6 +129,8 @@ data17: "006检验科,1库房,00,6"
data18: "001,A库区,自动化测试" data18: "001,A库区,自动化测试"
data19: "0,1,A,库区,自动化测试" data19: "0,1,A,库区,自动化测试"
data20: "xhs,x,h,s" data20: "xhs,x,h,s"
data21: "xhs1009,张三丰"
data22: "x,h,s,张,三,丰"
"username": "xhs1009" "username": "xhs1009"
"password": "1qaz!QAZ" "password": "1qaz!QAZ"
...@@ -490,6 +494,10 @@ json_headers2: { ...@@ -490,6 +494,10 @@ json_headers2: {
"payload63_2": {"projectCode":"herp","roleCode":"%s"} "payload63_2": {"projectCode":"herp","roleCode":"%s"}
"payload63_3": '[{"addMenus":[{"menuCode":"herp.pc.pm01631.pm01632.pm01633","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01632.pm01634","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01632.pm01635","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01632.pm01923","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01642","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01643","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01644","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01645","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01646","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01718","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01926","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm02197","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01779","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01912","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm02108","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01641.pm02180","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01637.pm01647","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01648","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01649","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01650","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01651","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01652","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01653","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01668","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01654","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01655","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01656","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01658","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01734","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01735","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01640.pm01659","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01640.pm02192","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01641.pm01660","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01641.pm01661","btnCodes":null},{"menuCode":"herp.pc.pm01921.pm01922","btnCodes":null},{"menuCode":"herp.pc.pm01921.pm02193","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm02168.pm02169","btnCodes":null},{"menuCode":"herp.pc.pm01898.pm01899","btnCodes":null},{"menuCode":"herp.pc.pm01898.pm01900","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01693","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01694","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01695","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm02160","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01707","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01883","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01882","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm02155","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm02199","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01724","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01728","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01727","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01902","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm02200","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm02179","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01725","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01729","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01730","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01723","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01736","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01737","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01738","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01739","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01740","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm02156","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01742","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01743","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01744","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01745","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01746","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01747","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01770","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01748","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01787.pm01788","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01787.pm01808","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01688","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01690","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01691","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01708","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm02158","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm02161","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm02196","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01749.pm01751","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01749.pm01752","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01762","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01763.pm01765","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01763.pm01764","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01763.pm02198","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm02188.pm02189","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01761","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01755","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01756","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01753","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01754","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm02165","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01785.pm01786","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01760","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01711","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01712","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01714","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01713","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01715","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01716","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01768","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01924.pm01925","btnCodes":null},{"menuCode":"herp.pc.pm01676.pm01677","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01814.pm01824","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01814.pm01822","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01814.pm01823","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01815.pm01827","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01815.pm01825","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01815.pm01826","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01828","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01829","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01830","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01831","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01832","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01833","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01835","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01836","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01837","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01838","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01839","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01840","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01818.pm01841","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01819.pm01843","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01820.pm01844","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01820.pm01845","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01846","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01847","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01848","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01849","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm02170.pm02171","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm02174.pm02175","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01941","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01940","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01943","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01942","btnCodes":null},{"menuCode":"herp.pc.pm02185.cuspm01944","btnCodes":null}],"delMenus":[],"projectCode":"herp.pc","roleCode":"ro00529"},{"addMenus":[],"delMenus":[],"projectCode":"herp.pda","roleCode":"ro00529"}]' "payload63_3": '[{"addMenus":[{"menuCode":"herp.pc.pm01631.pm01632.pm01633","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01632.pm01634","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01632.pm01635","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01632.pm01923","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01642","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01643","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01644","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01645","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01646","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01718","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01926","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm02197","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01779","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm01912","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01636.pm02108","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01641.pm02180","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01637.pm01647","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01648","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01649","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01650","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01651","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01652","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01653","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01668","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01638.pm01654","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01655","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01656","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01658","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01734","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01639.pm01735","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01640.pm01659","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01640.pm02192","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01641.pm01660","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm01641.pm01661","btnCodes":null},{"menuCode":"herp.pc.pm01921.pm01922","btnCodes":null},{"menuCode":"herp.pc.pm01921.pm02193","btnCodes":null},{"menuCode":"herp.pc.pm01631.pm02168.pm02169","btnCodes":null},{"menuCode":"herp.pc.pm01898.pm01899","btnCodes":null},{"menuCode":"herp.pc.pm01898.pm01900","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01693","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01694","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01695","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm02160","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01707","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01883","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm01882","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm02155","btnCodes":null},{"menuCode":"herp.pc.pm01692.pm02199","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01724","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01728","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01727","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm01902","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm02200","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01721.pm02179","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01725","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01729","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01730","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01723","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01736","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01737","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01738","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01739","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm01740","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01722.pm02156","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01742","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01743","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01744","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01745","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01746","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01747","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01770","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01741.pm01748","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01787.pm01788","btnCodes":null},{"menuCode":"herp.pc.pm01720.pm01787.pm01808","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01688","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01690","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01691","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm01708","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm02158","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm02161","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01687.pm02196","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01749.pm01751","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01749.pm01752","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01762","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01763.pm01765","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01763.pm01764","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01763.pm02198","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm02188.pm02189","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01761","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01755","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01756","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01753","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm01754","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01750.pm02165","btnCodes":null},{"menuCode":"herp.pc.pm01686.pm01785.pm01786","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01760","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01711","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01712","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01714","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01713","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01715","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01716","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01710.pm01768","btnCodes":null},{"menuCode":"herp.pc.pm01709.pm01924.pm01925","btnCodes":null},{"menuCode":"herp.pc.pm01676.pm01677","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01814.pm01824","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01814.pm01822","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01814.pm01823","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01815.pm01827","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01815.pm01825","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01815.pm01826","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01828","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01829","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01830","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01831","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01832","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01816.pm01833","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01835","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01836","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01837","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01838","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01839","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01817.pm01840","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01818.pm01841","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01819.pm01843","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01820.pm01844","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01820.pm01845","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01846","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01847","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01848","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm01821.pm01849","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm02170.pm02171","btnCodes":null},{"menuCode":"herp.pc.pm01812.pm02174.pm02175","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01941","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01940","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01943","btnCodes":null},{"menuCode":"herp.pc.pm01935.cuspm01934.cuspm01942","btnCodes":null},{"menuCode":"herp.pc.pm02185.cuspm01944","btnCodes":null}],"delMenus":[],"projectCode":"herp.pc","roleCode":"ro00529"},{"addMenus":[],"delMenus":[],"projectCode":"herp.pda","roleCode":"ro00529"}]'
"payload63_4": {"cname":"自动化测试2","projectCode":"herp","id":"%s","roleTemplateId":null} "payload63_4": {"cname":"自动化测试2","projectCode":"herp","id":"%s","roleTemplateId":null}
"payload63_5": {"pageNum":1,"pageSize":50,"queryObject":{"cname":"","orgName":"","corpId":"h0347"}}
"payload63_6": {"pageNum":1,"pageSize":50,"queryObject":{"cname":"%s","orgName":"","corpId":"h0347"}}
"payload63_7": {"pageNum":1,"pageSize":50,"queryObject":{"cname":"xhs1009","roleCode":"ro00442","orgName":"%s","corpId":"h0347"}}
"payload63_8": {"pageNum":1,"pageSize":50,"queryObject":{"cname":"%s","roleCode":"ro00442","orgName":"%s","corpId":"h0347"}}
checkDict: {"code": 0,'msg': None,'data': True} checkDict: {"code": 0,'msg': None,'data': True}
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
<tr width="600"> <tr width="600">
<td class='details-col-elapsed'>1</td> <td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>1</td> <td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>0分2</td> <td class='details-col-elapsed'>0分6</td>
<td class="details-col-elapsed">100.0%</td> <td class="details-col-elapsed">100.0%</td>
</tr> </tr>
</table> </table>
...@@ -72,9 +72,9 @@ ...@@ -72,9 +72,9 @@
</tr> </tr>
<tr width="600"> <tr width="600">
<td class="details-col-elapsed"><a href='../log/r_e5用户管理_角色管理_编辑角色名称/log.html' target='_blank'>r_e5用户管理_角色管理_编辑角色名称</a></td> <td class="details-col-elapsed"><a href='../log/r_e9用户管理_用户管理_列表查询_条件查询_异常查询/log.html' target='_blank'>r_e9用户管理_用户管理_列表查询_条件查询_异常查询</a></td>
<td class="success">成功</td> <td class="success">成功</td>
<td class="details-col-elapsed">2.839</td> <td class="details-col-elapsed">6.836</td>
<td class="details-col-elapsed">xiaohesheng</td> <td class="details-col-elapsed">xiaohesheng</td>
</tr> </tr>
......
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