Commit 2df39af0 authored by xiao-hesheng's avatar xiao-hesheng
Browse files

新增期初录入脚本

parent ab5e7de4
......@@ -91,5 +91,12 @@ try:
test1()
except:
print('期初单号不存在,请检查脚本或者数据')
# 从文件读取期初单号_低值
module = "b4_herp3_InitStock"
info = FileUtils().r_info8(module, "期初单号低值", 'message')
list2 = info['list_a']
QCID = ' '.join(list2)
print('bbbb', QCID, type(QCID))
test1(QCID)
# if __name__ == '__main__':
# test1()
\ No newline at end of file
......@@ -81,6 +81,10 @@ def test1():
id = i['id']
orderNo = i['orderNo']
break
#调用a_b7_期初录入_试剂_新增产品页面列表_查询全部.air
sys.path.append(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_b7_期初录入_试剂_新增产品页面列表_查询全部.air')
using(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_b7_期初录入_试剂_新增产品页面列表_查询全部.air')
from a_b7_期初录入_试剂_新增产品页面列表_查询全部 import test1
# 从message2文件中获取详情信息
info = FileUtils().r_info8(module, "期初产品信息", 'message2')
# print('info', info)
......
# -*- encoding=utf8 -*-
from common.db.sql.sql_get_info import sql_get_info
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,a_b7_期初录入_试剂_新增产品页面列表_查询全部,id2301,id2301-17,sit,on
内网:a_b7_期初录入_试剂_新增产品页面列表_查询全部
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
from airtest.core.api import using
import sys
def test1():
module = "b4_herp3_InitStock"
"""
场景:a_b7_期初录入_试剂_新增产品页面列表_查询全部
用例名称:a_b7_期初录入_试剂_新增产品页面列表_查询全部
输入:无
输出:"rtn_msg": {"code": 0, "msg": null, "data": true}
"""
# 内网登录
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,
"herpService_mcmsInitStock_getMcmsGoodsInfoVOS_url")
print(url)
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
print('headers', headers)
# # #获取日期
# date1=timeUtils().get_time_hms(2)
# date2=timeUtils().get_time_add(-1)
# print(date1,date2)
# #从文件中获取库房名称,写脚本时用已经存在的库房,方便编写脚本和调试脚本
# stock_name=commonFuc().get_business_data(module,'stock_name')
# #============================================
# #从基础数据模块写入的库房名称中获取(暂时注释)
# # branch_name = FileUtils().r_info('b2_herp3_bs', '院区新增')["branch_name"]
# # stock_name=branch_name+'中心库房'
# #=============================================
# #通过数据库获取库房id和库区id===============
# stockId=sql_get_info().get_mcms_stock_info(stock_name)
# areaCode=sql_get_info().get_mcms_stock_shelf_info(stockId)
# stockId = stockId.replace("'", "")
# areaCode=areaCode.replace("'","")
# # 通过数据库获取库房id和库区id===============
# 调用a_a4_期初录入_低值_录入_获取单据信息
pro_path = commonFuc().get_pro_path()
sys.path.append(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_a4_期初录入_低值_录入_获取单据信息.air')
using(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_a4_期初录入_低值_录入_获取单据信息.air')
from a_a4_期初录入_低值_录入_获取单据信息 import test1
# 从文件读取期初单号_低值
info = FileUtils().r_info8(module, "期初单号试剂", 'message')
list2 = info['list_a']
QCID = ' '.join(list2)
print('bbbb', QCID, type(QCID))
test1(QCID)
# 从message1文件中获取信息
info = FileUtils().r_info8(module, "期初单号信息", 'message1')
# print('info', info)
list_a = info['list_a']
# print('list_a', list_a)
id = 'id'
hosId = 'hosId'
deptId = 'deptId'
stockId = 'stockId'
orderNo = 'orderNo'
purMode = 'purMode'
for i in list_a:
id = i['id']
hosId = i['hosId']
deptId = i['deptId']
stockId = i['stockId']
orderNo = i['orderNo']
purMode = i['purMode']
break
# # 请求体
hospitalId = commonFuc().get_business_data(module, "hospitalId")
branchId = commonFuc().get_business_data(module, "branchId")
request_body = commonFuc().get_business_data(module, "payload_3_1", id, hosId, deptId, stockId, orderNo, purMode)
print('request_body', request_body)
# 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('result', result)
# 断言
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)
# 期初产品信息写入文件
data1 = commonFuc().analysis_json('data', data)
list_a = []
list_b = []
list_c = []
if total >= 1:
list_a.append(data1[0])
if total >= 2:
list_b.append(data1[1])
if total >= 3:
list_c.append(data1[2])
# print('list_a', len(list_a), list_a)
try:
info = (list_a, list_b, list_c)
titlename = ('list_a', 'list_b', 'list_c')
# 将期初产品信息写入到文件中
FileUtils().w_info8(info, module, '期初产品信息', titlename, 'message2')
except:
print('产品数据数量不足3,请检查产品数据或者修改此处脚本')
test1()
# -*- encoding=utf8 -*-
from common.db.sql.sql_get_info import sql_get_info
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,a_b8_期初录入_试剂_生成,id2301,id2301-18,sit,on
内网:a_b8_期初录入_试剂_生成
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
from airtest.core.api import using
import sys
def test1():
module = "b4_herp3_InitStock"
"""
场景:a_b8_期初录入_试剂_生成
用例名称:a_b8_期初录入_试剂_生成
输入:无
输出:"rtn_msg": {"code": 0, "msg": null, "data": true}
"""
# 内网登录
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,
"herpService_mcmsInitStock_generate_url")
print(url)
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
print('headers', headers)
# # #获取日期
# date1=timeUtils().get_time_hms(2)
# date2=timeUtils().get_time_add(-1)
# print(date1,date2)
# #从文件中获取库房名称,写脚本时用已经存在的库房,方便编写脚本和调试脚本
# stock_name=commonFuc().get_business_data(module,'stock_name')
# #============================================
# #从基础数据模块写入的库房名称中获取(暂时注释)
# # branch_name = FileUtils().r_info('b2_herp3_bs', '院区新增')["branch_name"]
# # stock_name=branch_name+'中心库房'
# #=============================================
# #通过数据库获取库房id和库区id===============
# stockId=sql_get_info().get_mcms_stock_info(stock_name)
# areaCode=sql_get_info().get_mcms_stock_shelf_info(stockId)
# stockId = stockId.replace("'", "")
# areaCode=areaCode.replace("'","")
# # 通过数据库获取库房id和库区id===============
# 调用a_a4_期初录入_低值_录入_获取单据信息
pro_path = commonFuc().get_pro_path()
sys.path.append(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_a4_期初录入_低值_录入_获取单据信息.air')
using(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_a4_期初录入_低值_录入_获取单据信息.air')
from a_a4_期初录入_低值_录入_获取单据信息 import test1
# 从文件读取期初单号_低值
info = FileUtils().r_info8(module, "期初单号试剂", 'message')
list2 = info['list_a']
QCID = ' '.join(list2)
print('bbbb', QCID, type(QCID))
test1(QCID)
# 从message1文件中获取表头部分信息
info = FileUtils().r_info8(module, "期初单号信息", 'message1')
# print('info', info)
list_a = info['list_a']
# print('list_a', list_a)
id = 'id'
orderNo = 'orderNo'
for i in list_a:
id = i['id']
orderNo = i['orderNo']
break
# 从message2文件中获取详情信息
info = FileUtils().r_info8(module, "期初产品信息", 'message2')
# print('info', info)
list_a = info['list_a']
print('list_a啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊', list_a)
hosGoodsId = 'hosGoodsId'
hosGoodsCode = 'hosGoodsCode'
provId = 'provId'
subProvId = 'subProvId'
inSettlement = 'inSettlement'
supplyId = 'supplyId'
batchCode = 'batchCode'
stockQty = '1'
pkgDefId = 'pkgDefId'
pkgDefName = 'pkgDefName'
pkgDefQty = 'pkgDefQty'
for i in list_a:
hosGoodsId = i['hosGoodsId']
hosGoodsCode = i['hosGoodsCode']
provId = i['provId']
subProvId = i['subProvId']
inSettlement = i['inSettlement']
supplyId = i['supplyId']
batchCode = 'batchCode'
stockQty = "1"
pkgDefId = i['pkgDefId']
pkgDefName = i['pkgDefName']
pkgDefQty = i['pkgDefQty']
break
# # #获取日期
productDate = timeUtils().get_time_hms(5)
expdtDate = timeUtils().get_time_add(30, 2)
# 获取单元包信息,a_a8_期初录入_低值_查询单元含量信息.air
pro_path = commonFuc().get_pro_path()
sys.path.append(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_a8_期初录入_低值_查询单元含量信息.air')
using(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_a8_期初录入_低值_查询单元含量信息.air')
from a_a8_期初录入_低值_查询单元含量信息 import test1
print('hosGoodsId', hosGoodsId)
test1(hosGoodsId)
# 从message3文件中读取单元包信息
info = FileUtils().r_info8(module, "产品单元包信息", 'message3')
# print('info', info)
list_a = info['list_a']
list_a = ','.join(map(str, list_a))
print(list_a) # 输出:
print('list_a不不不不不不不不不不不不不不不不不不不不不不不不不', list_a, type(list_a))
import json
new_request_body = list_a.replace("'", '"')
new_request_body1 = new_request_body.replace("None", 'null')
print(new_request_body1)
list_a2 = json.loads(new_request_body1)
print('list_a2不不不不不不不不不不不不不不不不不不不不不不不不不', list_a2, type(list_a2))
pkgDefId = 'pkgDefId'
for i in list_a2:
pkgDefId = i['id']
pkgDefName = i['pkgDefName']
pkgDefQty = i['pkgDefQty']
break
# # 请求体
hospitalId = commonFuc().get_business_data(module, "hospitalId")
branchId = commonFuc().get_business_data(module, "branchId")
sys.path.append(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_b5_期初录入_生成_获取详细信息.air')
using(pro_path + r'\\air_case\\b4_herp3_InitStock\\a_b5_期初录入_生成_获取详细信息.air')
from a_b5_期初录入_生成_获取详细信息 import test1
test1(3)# 参数3是检验试剂
# 从message5文件中读取期初子表id
info = FileUtils().r_info8(module, "期初单子表信息", 'message5')
# print('info', info)
list_a = info['list_a']
list_a = ','.join(map(str, list_a))
print(list_a) # 输出:
print('list_a', list_a, type(list_a))
import json
new_request_body = list_a.replace("'", '"')
new_request_body1 = new_request_body.replace("None", 'null')
print(new_request_body1)
list_a2 = json.loads(new_request_body1)
print('list_a2', list_a2, type(list_a2))
initStockBatchVOS_id = 'initStockBatchVOS_id'
lastModified = 'lastModified'
version = 'version'
createTime = 'createTime'
createUser = 'createUser'
lastModifiedUser = 'lastModifiedUser'
pid = 'pid'
detailId = 'detailId'
unit = 'unit'
purMode = 'purMode'
unitName = 'unitName'
batchVORepeatKey = 'batchVORepeatKey'
inSettlement = 'inSettlement'
supplyId = 'supplyId'
initStockBatchVOS='initStockBatchVOS'
for i in list_a2:
initStockBatchVOS = i['initStockBatchVOS']
inSettlement = i['inSettlement']
supplyId = i['supplyId']
break
for i in initStockBatchVOS:
initStockBatchVOS_id = i['id']
lastModified = i['lastModified']
version = i['version']
createTime = i['createTime']
createUser = i['createUser']
lastModifiedUser = i['lastModifiedUser']
pid = i['pid']
detailId = i['detailId']
unit = i['unit']
purMode = i['purMode']
unitName = i['unitName']
batchVORepeatKey = i['batchVORepeatKey']
break
request_body = commonFuc().get_business_data(module, "payload_9", id, orderNo, hosGoodsId, hosGoodsCode, provId,
subProvId, inSettlement, supplyId, initStockBatchVOS_id, lastModified,
version, createTime, createUser, lastModifiedUser, pid, detailId,
batchCode, productDate, expdtDate, stockQty, pkgDefId, pkgDefName,
pkgDefQty, unit, purMode, unitName, batchVORepeatKey)
print('request_body', request_body)
# 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('result', result)
# 断言
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
if code == 0 and len(data) >= 1:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
......@@ -47,6 +47,8 @@ json_headers2: {
"payload_1": {"stockId":"%s","areaCode":"%s","purMode":"20","hosId":"%s","branchId":"%s"}
"payload_2": {"stockId":"%s","areaCode":"%s","purMode":"60","hosId":"%s","branchId":"%s"}
"payload_3": {"queryObject":{"id":"%s","hosId":"%s","deptId":"%s","stockId":"%s","orderNo":"%s","purMode":"%s"},"pageNum":1,"pageSize":50}
"payload_3_1": {"queryObject":{"id":"%s","hosId":"%s","deptId":"%s","stockId":"%s","orderNo":"%s","purMode":"%s"},"pageNum":1,"pageSize":50}
"payload_4": {"branchId":"%s","hosGoodsId":"%s","pkgDefId":""}
"payload_5": {"initStockId":"%s","orderNo":"%s","initStockDetailDTOList":[{"hosGoodsId":"%s","hosGoodsCode":"%s","provId":"%s","subProvId":"%s","inSettlement":"%s","supplyId":"%s","initStockBatchVOS":[{"batchCode":"%s","productDate":"%s","expdtDate":"%s","stockQty":"%s","pkgDefId":"%s","pkgDefName":"%s","pkgDefQty":"%s"}]}]}
"payload_6": {"stockId":"%s","hosId":"%s","code":"%s"}
......
......@@ -54,9 +54,9 @@
</tr>
<tr width="600">
<td class='details-col-elapsed'>16</td>
<td class='details-col-elapsed'>16</td>
<td class='details-col-elapsed'>0分20</td>
<td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>0分5</td>
<td class="details-col-elapsed">100.0%</td>
</tr>
</table>
......@@ -72,114 +72,9 @@
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a1_期初录入_新增_低值/log.html' target='_blank'>a_a1_期初录入_新增_低值</a></td>
<td class="details-col-elapsed"><a href='../log/a_b8_期初录入_试剂_生成/log.html' target='_blank'>a_b8_期初录入_试剂_生成</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.644</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a2_期初录入_新增_高值/log.html' target='_blank'>a_a2_期初录入_新增_高值</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.445</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a3_期初录入_新增_试剂/log.html' target='_blank'>a_a3_期初录入_新增_试剂</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.471</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a4_期初录入_低值_录入_获取单据信息/log.html' target='_blank'>a_a4_期初录入_低值_录入_获取单据信息</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.406</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a5_期初录入_低值_新增产品页面列表_查询全部/log.html' target='_blank'>a_a5_期初录入_低值_新增产品页面列表_查询全部</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">1.307</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a6_期初录入_低值_暂存/log.html' target='_blank'>a_a6_期初录入_低值_暂存</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">1.721</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a7_期初录入_低值_生成/log.html' target='_blank'>a_a7_期初录入_低值_生成</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">4.086</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a8_期初录入_低值_查询单元含量信息/log.html' target='_blank'>a_a8_期初录入_低值_查询单元含量信息</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.421</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_a9_期初录入_高值_扫条码/log.html' target='_blank'>a_a9_期初录入_高值_扫条码</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.421</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_b0_期初录入_高值_暂存/log.html' target='_blank'>a_b0_期初录入_高值_暂存</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.854</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_b1_期初录入_高值_生成/log.html' target='_blank'>a_b1_期初录入_高值_生成</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">3.607</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_b2_期初录入_试剂_新增产品页面列表_查询全部/log.html' target='_blank'>a_b2_期初录入_试剂_新增产品页面列表_查询全部</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.826</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_b3_期初录入_试剂_暂存/log.html' target='_blank'>a_b3_期初录入_试剂_暂存</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">1.283</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_b4_期初录入_低值_异常_重复生成/log.html' target='_blank'>a_b4_期初录入_低值_异常_重复生成</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">1.184</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_b5_期初录入_生成_获取详细信息/log.html' target='_blank'>a_b5_期初录入_生成_获取详细信息</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.776</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/a_b6_期初录入_高值_异常_重复生成/log.html' target='_blank'>a_b6_期初录入_高值_异常_重复生成</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">1.518</td>
<td class="details-col-elapsed">5.835</td>
<td class="details-col-elapsed">xiaohesheng</td>
</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