Commit 91eecb77 authored by liguangyu06's avatar liguangyu06
Browse files

Merge remote-tracking branch 'origin/master'

parents 55350911 9b062b88
...@@ -10,6 +10,8 @@ case_tag:api,mdm-web企业审核,id2248,sit,on,2023090802 ...@@ -10,6 +10,8 @@ case_tag:api,mdm-web企业审核,id2248,sit,on,2023090802
from common.common_func import commonFuc from common.common_func import commonFuc
from air_case.mdm_login.登录外网系统.登录外网系统 import login_system from air_case.mdm_login.登录外网系统.登录外网系统 import login_system
def Enterprise_audit(): def Enterprise_audit():
module = "mdm3-ea" module = "mdm3-ea"
# 注册企业 # 注册企业
...@@ -33,140 +35,195 @@ def Enterprise_audit(): ...@@ -33,140 +35,195 @@ def Enterprise_audit():
password = commonFuc().get_business_data(module, "password") password = commonFuc().get_business_data(module, "password")
print(username, password) print(username, password)
# 获取token和projectCode # 获取token和projectCode
token,projectCode,uxid,corpId = login_system(username, password).get_token() token, projectCode, uxid, corpId = login_system(username, password).get_token()
#获取请求头信息 # 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2", headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token, commonFuc().get_business_data(module, "json_contentType"), token,
projectCode, token) projectCode, token)
request_body = commonFuc().get_business_data(module, "payload1",id1) request_body = commonFuc().get_business_data(module, "payload1", id1)
# 发送请求 # 发送请求
result = commonFuc().http_post(url, request_body, headers) result = commonFuc().http_post(url, request_body, headers)
# # print(result) # # print(result)
#获取预期结果 # 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict") check_dict = commonFuc().get_business_data(module, "checkDict")
print(check_dict) print(check_dict)
#断言实际结果中是否包含预期结果的内容 # 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result) commonFuc().check_result(check_dict, result)
#=============== 企业注册提交接口_认领结束 # =============== 企业注册提交接口_认领结束
#企业审核接口_查询数据_开始 # 企业审核接口_查询数据_开始
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "queryListPage_url") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "queryListPage_url")
request_body = commonFuc().get_business_data(module, "payload2",cname) request_body = commonFuc().get_business_data(module, "payload2", cname)
# 发送请求 # 发送请求
result = commonFuc().http_post(url, request_body, headers) result = commonFuc().http_post(url, request_body, headers)
#获取接口返回数据 # 获取接口返回数据
code = commonFuc().analysis_json('code', result) code = commonFuc().analysis_json('code', result)
#断言实际结果中是否包含预期结果的内容 # 断言实际结果中是否包含预期结果的内容
# commonFuc().check_result(code, result) # commonFuc().check_result(code, result)
#断言实际结果中是否包含预期的文本 # 断言实际结果中是否包含预期的文本
commonFuc().check_text_exist(code,result) commonFuc().check_text_exist(code, result)
#===============企业注册提交接口_查询数据_结束 # ===============企业注册提交接口_查询数据_结束
#企业注册提交接口_锁定_开始 # 企业注册提交接口_锁定_开始
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "queryAlCompanyRegistInfo_url") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "queryAlCompanyRegistInfo_url")
request_body = commonFuc().get_business_data(module, "payload3",id1) request_body = commonFuc().get_business_data(module, "payload3", id1)
# 发送请求 # 发送请求
result = commonFuc().http_post(url, request_body, headers) result = commonFuc().http_post(url, request_body, headers)
#获取接口返回数据 # 获取接口返回数据
code = commonFuc().analysis_json('code', result) code = commonFuc().analysis_json('code', result)
#断言实际结果中是否包含预期结果的内容 # 断言实际结果中是否包含预期结果的内容
commonFuc().check_text_exist(code, result) commonFuc().check_text_exist(code, result)
#===============企业注册提交接口_锁定_结束 # ===============企业注册提交接口_锁定_结束
#企业审核接口_再次查询数据_开始 # 企业审核接口_再次查询数据_开始
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "upCompanyList_url") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "upCompanyList_url")
request_body = commonFuc().get_business_data(module, "payload4",cname) request_body = commonFuc().get_business_data(module, "payload4", cname)
# 发送请求 # 发送请求
result = commonFuc().http_post(url, request_body, headers) result = commonFuc().http_post(url, request_body, headers)
#获取接口返回数据 # 获取接口返回数据
code = commonFuc().analysis_json('code', result) code = commonFuc().analysis_json('code', result)
#断言实际结果中是否包含预期结果的内容 # 断言实际结果中是否包含预期结果的内容
commonFuc().check_text_exist(code, result) commonFuc().check_text_exist(code, result)
#===============企业注册提交接口_查询数据_结束 # ===============企业注册提交接口_查询数据_结束
#企业注册提交接口_审核通过_开始 # 企业注册提交接口_审核通过_开始
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "auditCompanyRegistBill_url") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "auditCompanyRegistBill_url")
request_body = commonFuc().get_business_data(module, "payload5",id1) request_body = commonFuc().get_business_data(module, "payload5", id1)
# 发送请求 # 发送请求
result = commonFuc().http_post(url, request_body, headers) result = commonFuc().http_post(url, request_body, headers)
# print('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',result) # print('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa',result)
#获取接口返回数据 # 获取接口返回数据
code = commonFuc().analysis_json('code', result) code = commonFuc().analysis_json('code', result)
check_dict1 = commonFuc().get_business_data(module, "checkDict1") check_dict1 = commonFuc().get_business_data(module, "checkDict1")
#断言实际结果中是否包含预期结果的内容 # 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict1, result) commonFuc().check_result(check_dict1, result)
return cname return cname
#===============企业注册提交接口_审核通过_结束 # ===============企业注册提交接口_审核通过_结束
def p_m_a():
module = "mdm3-pim" module = "mdm3-pim"
#登录 # 登录
username = Enterprise_audit() username = Enterprise_audit()
password = commonFuc().get_business_data(module, "password") password = commonFuc().get_business_data(module, "password")
print(username, password) print(username, password)
# 获取token和projectCode # 获取token和projectCode
token,projectCode,uxid,corpId= login_system(username, password).get_token() token, projectCode, uxid, corpId = login_system(username, password).get_token()
#分页查询供应商产品数据接口 # 分页查询供应商产品数据接口
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "listVoPage_url") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "listVoPage_url")
#获取请求头信息 # 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2", headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token, commonFuc().get_business_data(module, "json_contentType"), token,
projectCode) projectCode)
request_body = commonFuc().get_business_data(module, "payload",corpId) request_body = commonFuc().get_business_data(module, "payload", corpId)
# 发送请求 # 发送请求
result = commonFuc().http_post(url, request_body, headers) result = commonFuc().http_post(url, request_body, headers)
# print('实际值',result) # print('实际值',result)
code = commonFuc().analysis_json('code', result) code = commonFuc().analysis_json('code', result)
data=commonFuc().analysis_json('data', result) data = commonFuc().analysis_json('data', result)
data=commonFuc().analysis_json('data', data) data = commonFuc().analysis_json('data', data)
# print('aaaaaaaaaaaaaaaaaaaaaaaaaaaa',data) # print('aaaaaaaaaaaaaaaaaaaaaaaaaaaa',data)
# 断言实际结果中是否包含预期结果的内容 # 断言实际结果中是否包含预期结果的内容
#新注册的企业首次查询产品信息,预期结果为空 # 新注册的企业首次查询产品信息,预期结果为空
check_dict = commonFuc().get_business_data(module, "checkDict") check_dict = commonFuc().get_business_data(module, "checkDict")
# print('预期值',check_dict) # print('预期值',check_dict)
commonFuc().check_text_exist(code, result) #检查验证码 commonFuc().check_text_exist(code, result) # 检查验证码
commonFuc().check_text_exist(data, result)#检查数据data为空[] commonFuc().check_text_exist(data, result) # 检查数据data为空[]
#产品申报 # 产品申报
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "submitGoodsRegist_url") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "submitGoodsRegist_url")
#获取请求头信息 # 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2", headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token, commonFuc().get_business_data(module, "json_contentType"), token,
projectCode) projectCode)
p_name = commonFuc().get_business_data(module, "name1") # 获取前缀name p_name = commonFuc().get_business_data(module, "name1") # 获取前缀name
p_name = p_name + commonFuc().randomString(5) # 随机数生成拼接产品名称 p_name = p_name + commonFuc().randomString(5) # 随机数生成拼接产品名称
request_body = commonFuc().get_business_data(module, "payload6",p_name,p_name,p_name,p_name) request_body = commonFuc().get_business_data(module, "payload6", p_name, p_name, p_name, p_name, p_name, p_name, p_name,
# 发送请求 p_name, p_name, p_name, p_name, p_name, p_name, p_name)
result = commonFuc().http_post(url, request_body, headers) print('新增产品请求体', request_body)
# print("新增产品返回结果",result) # 发送请求
goodsRegistVO=commonFuc().analysis_json('goodsRegistVO', result) result = commonFuc().http_post(url, request_body, headers)
goodsName=commonFuc().analysis_json('goodsName', goodsRegistVO) print("新增产品返回结果", result)
commonFuc().check_text_exist(goodsName, result) #检查返回结果中是否存在新增的产品名称 goodsRegistVO = commonFuc().analysis_json('goodsRegistVO', result)
#===================产品查询========================================== goodsName = commonFuc().analysis_json('goodsName', goodsRegistVO)
url= commonFuc().get_api_url() + commonFuc().get_business_data(module, "listAuditBillByPage_url") commonFuc().check_text_exist(goodsName, result) # 检查返回结果中是否存在新增的产品名称
#获取请求头信息 # ===================产品查询==========================================
headers = commonFuc().get_business_data(module, "json_headers2", url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "listAuditBillByPage_url")
commonFuc().get_business_data(module, "json_contentType"), token, # 获取请求头信息
projectCode) headers = commonFuc().get_business_data(module, "json_headers2",
request_body = commonFuc().get_business_data(module, "payload7",p_name) commonFuc().get_business_data(module, "json_contentType"), token,
projectCode)
# 发送请求 request_body = commonFuc().get_business_data(module, "payload7", p_name)
result = commonFuc().http_post(url, request_body, headers)
# print('查询产品信息',result) # 发送请求
data=commonFuc().analysis_json('data', result) result = commonFuc().http_post(url, request_body, headers)
GRBid=commonFuc().analysis_json('id', data) print('查询产品信息',result)
#===================产品查询后锁定========================================== data = commonFuc().analysis_json('data', result)
url= commonFuc().get_api_url() + commonFuc().get_business_data(module, "updateById_url2") GRBid = commonFuc().analysis_json('id', data)
#获取请求头信息 print('GRBid',GRBid)
headers = commonFuc().get_business_data(module, "json_headers2", # ===================产品查询后锁定==================================================
commonFuc().get_business_data(module, "json_contentType"), token, url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "updateById_url2")
projectCode) # 获取请求头信息
now=timeUtils().get_time_hms() headers = commonFuc().get_business_data(module, "json_headers2",
request_body = commonFuc().get_business_data(module, "payload8",GRBid,uxid,now) commonFuc().get_business_data(module, "json_contentType"), token,
projectCode)
# 发送请求 now = timeUtils().get_time_hms()
result = commonFuc().http_post(url, request_body, headers) request_body = commonFuc().get_business_data(module, "payload8", GRBid, uxid, now)
# print('锁定结果',result) # 发送请求
#===================产品锁定后查询获取必要信息========================================== result = commonFuc().http_post(url, request_body, headers)
\ No newline at end of file # print('锁定结果',result)
# ===================产品锁定后查询获取产品详情登等必要信息==========================================
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "getGoodsRegistBillDetail_url")
url = url + GRBid + "/1"
print('url', url)
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
projectCode)
# 发送请求
result = commonFuc().http_get(url, headers)
print('产品锁定后查询获取必要信息', result)
# print('data',data)
goodsRegistVO_id = commonFuc().analysis_json('id', commonFuc().analysis_json('goodsRegistVO',
commonFuc().analysis_json('data', result)))
print('goodsRegistVO_id', goodsRegistVO_id)
goodsName = p_name
goodsMfrsId = commonFuc().analysis_json('goodsMfrsId', commonFuc().analysis_json('goodsRegistVO',
commonFuc().analysis_json('data',
result)))
corpId = commonFuc().analysis_json('corpId', commonFuc().analysis_json('goodsRegistVO',
commonFuc().analysis_json('data', result)))
registrationRegistVO_id = commonFuc().analysis_json('id', commonFuc().analysis_json('registrationRegistVO',
commonFuc().analysis_json('data',
result)))
goodsSpecsRegistVOList_id = commonFuc().analysis_json('id', commonFuc().analysis_json('goodsSpecsRegistVOList',
commonFuc().analysis_json('data',
result)))
print(goodsRegistVO_id, goodsMfrsId, corpId, registrationRegistVO_id, goodsSpecsRegistVOList_id)
# =============================产品审核通过======================================
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "handleAuditGoodsRegist_url")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
projectCode)
request_body = commonFuc().get_business_data(module, "payload9", GRBid, goodsRegistVO_id, now, now, uxid, uxid, GRBid,
goodsName, goodsMfrsId, goodsMfrsId, corpId, corpId,
goodsSpecsRegistVOList_id, now, now, uxid, uxid, GRBid, goodsRegistVO_id,
goodsMfrsId, goodsName, goodsName, goodsName, goodsName, goodsName,
goodsName, registrationRegistVO_id, now, now, uxid, uxid, GRBid,
goodsRegistVO_id, goodsName, now, goodsMfrsId, goodsMfrsId, goodsName)
# 发送请求
result = commonFuc().http_post(url, request_body, headers)
# print('产品审核通过',result)
code= commonFuc().analysis_json('code', result)
# print('code',code)
commonFuc().check_text_exist(code,result)
print('username',username)
return username
# p_m_a()
from common.timeUtils import timeUtils
from common.rw import Rw
Rw().w_info(p_m_a())
# -*- encoding=utf8 -*-
import sys
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,mdm-web企业审核,id2248,sit,on,2023090802
主数据平台:产品新增和审核通过
"""
from common.common_func import commonFuc
pro_path=commonFuc().get_pro_path()
from airtest.core.api import using
# sys.path.append(pro_path+'\\air_case\\mdm3-pim\\产品新增和审核通过.air')
sys.path.append(r'D:\PycharmProjects\autotest-airtest-web\\air_case\\mdm3-pim2\\产品新增和审核通过.air')
using("产品新增和审核通过.air")
...@@ -375,6 +375,7 @@ class commonFuc(object): ...@@ -375,6 +375,7 @@ class commonFuc(object):
结果检查,检查文本内容是否存在于返回结果中,返回结果也是文本 结果检查,检查文本内容是否存在于返回结果中,返回结果也是文本
""" """
Flag = False Flag = False
check_text=str(check_text)
# print('bbbbbbbbbbbbbbbbbbbbbbbbb'+str(result.values())) # print('bbbbbbbbbbbbbbbbbbbbbbbbb'+str(result.values()))
if check_text in result_text: if check_text in result_text:
Flag = True Flag = True
...@@ -528,4 +529,12 @@ class commonFuc(object): ...@@ -528,4 +529,12 @@ class commonFuc(object):
continue continue
return chrome.find_element_by_xpath('//div[text()=" %s "]' % username).text return chrome.find_element_by_xpath('//div[text()=" %s "]' % username).text
def quit_chrome(self,chrome): def quit_chrome(self,chrome):
chrome.quit() chrome.quit()
\ No newline at end of file
# 获取当前项目的根目录的路径
def get_pro_path(self):
import os
curPath = os.path.abspath(os.path.dirname(__file__)) # 获取当前文件的所在目录的绝对路径
print(os.path.split(curPath))
rootPath = os.path.split(curPath)[0]
return rootPath
\ No newline at end of file
u779700044448_sit: loginusername1:
time: 2021-12-27 17:11:01.269465 loginusername: 国药集团公司aVD9#
token: u779700044448_562a6850c0ed622ce15bb087140e27e3_1640592012
enc_user_id: u779700044448
...@@ -23,6 +23,17 @@ class Rw: ...@@ -23,6 +23,17 @@ class Rw:
yaml.dump(dict, f, Dumper=yaml.RoundTripDumper) yaml.dump(dict, f, Dumper=yaml.RoundTripDumper)
return token return token
def w_info(self, username):
dict = {}
value = {}
value["loginusername"] = username
key="loginusername1"
dict[key] = value
yamlpath = os.path.join(curpath, "data")
# 写入到yaml文件
with open(yamlpath, "w", encoding="utf-8") as f:
yaml.dump(dict, f, Dumper=yaml.RoundTripDumper,allow_unicode=True)
def r_token(self, enc_user_id='u779700044448', env='on'): def r_token(self, enc_user_id='u779700044448', env='on'):
yamlpath = os.path.join(curpath, "data") yamlpath = os.path.join(curpath, "data")
file_value = open(yamlpath, 'r') file_value = open(yamlpath, 'r')
...@@ -37,6 +48,8 @@ class Rw: ...@@ -37,6 +48,8 @@ class Rw:
return None return None
def r_temp_file(self, key): def r_temp_file(self, key):
""" """
读临时文件 读临时文件
......
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
"submitGoodsRegist_url": "/test2api/mdmService/goodsRegistBill/submitGoodsRegist" "submitGoodsRegist_url": "/test2api/mdmService/goodsRegistBill/submitGoodsRegist"
"listAuditBillByPage_url": "/test2api/mdmService/goodsRegistBill/listAuditBillByPage" "listAuditBillByPage_url": "/test2api/mdmService/goodsRegistBill/listAuditBillByPage"
"updateById_url2": "/test2api/mdmService/goodsRegistBill/updateById" "updateById_url2": "/test2api/mdmService/goodsRegistBill/updateById"
"getGoodsRegistBillDetail_url": "/test2api/mdmService/goodsRegistBill/getGoodsRegistBillDetail/"
"handleAuditGoodsRegist_url": "/test2api/mdmService/goodsRegistBill/handleAuditGoodsRegist/"
"username": "1679886114521" "username": "1679886114521"
"password": "a123456!" "password": "a123456!"
...@@ -144,7 +146,7 @@ json_headers2: { ...@@ -144,7 +146,7 @@ json_headers2: {
"miDjmc": "%s", "miDjmc": "%s",
"mi20code": "12345678901234567890", "mi20code": "12345678901234567890",
"made": "美国", "made": "美国",
"certCode": "1234567890", "certCode": "%s",
"certKind": "0", "certKind": "0",
"certKindName": "医疗器械注册证", "certKindName": "医疗器械注册证",
"expdtBeginDate": "2023-09-05", "expdtBeginDate": "2023-09-05",
...@@ -153,12 +155,12 @@ json_headers2: { ...@@ -153,12 +155,12 @@ json_headers2: {
"uploadFilePath": "/sfile/2023/pub/src=http___10wallpaper.com_wallp_f7d03d60d2fe42da8be7d65dfe1de601.jpg", "uploadFilePath": "/sfile/2023/pub/src=http___10wallpaper.com_wallp_f7d03d60d2fe42da8be7d65dfe1de601.jpg",
"tableFromDec": [ "tableFromDec": [
{ {
"goodsGg": "10ml", "goodsGg": "%s",
"miGoodsGg": "10ml", "miGoodsGg": "%s",
"miGoodsXh": "%s", "miGoodsXh": "%s",
"goodsUseUnit": "支", "goodsUseUnit": "支",
"mi27code": "12345678901234567890", "mi27code": "%s",
"udiCode": "12345678901234", "udiCode": "%s",
"diType": "0", "diType": "0",
"rowNum": 1 "rowNum": 1
} }
...@@ -172,7 +174,7 @@ json_headers2: { ...@@ -172,7 +174,7 @@ json_headers2: {
"corpId": "", "corpId": "",
"corpName": "", "corpName": "",
"registrationRegistVO": { "registrationRegistVO": {
"certCode": "1234567890", "certCode": "%s",
"certKind": "0", "certKind": "0",
"certKindName": "医疗器械注册证", "certKindName": "医疗器械注册证",
"expdtBeginDate": "2023-09-05 00:00:00", "expdtBeginDate": "2023-09-05 00:00:00",
...@@ -182,12 +184,12 @@ json_headers2: { ...@@ -182,12 +184,12 @@ json_headers2: {
}, },
"goodsSpecsRegistVOList": [ "goodsSpecsRegistVOList": [
{ {
"goodsGg": "10ml", "goodsGg": "%s",
"miGoodsGg": "10ml", "miGoodsGg": "%s",
"miGoodsXh": "%s", "miGoodsXh": "%s",
"goodsUseUnit": "支", "goodsUseUnit": "支",
"mi27code": "12345678901234567890", "mi27code": "%s",
"udiCode": "12345678901234", "udiCode": "%s",
"diType": "0", "diType": "0",
"rowNum": 1 "rowNum": 1
} }
...@@ -212,6 +214,94 @@ json_headers2: { ...@@ -212,6 +214,94 @@ json_headers2: {
"auditor": "%s", "auditor": "%s",
"auditStartTime": "%s" "auditStartTime": "%s"
} }
"payload9": {
"id": "%s",
"auditStatus": 20,
"auditComment": "",
"goodsRegistVO": {
"id": "%s",
"lastModified": "%s",
"version": 0,
"createTime": "%s",
"createUser": "%s",
"lastModifiedUser": "%s",
"billId": "%s",
"provGoodsId": null,
"mdmGoodsCode": null,
"goodsName": "%s",
"goodsMfrsId": "%s",
"goodsAgentMfrsId": "%s",
"brand": null,
"miDjmc": null,
"mi20code": null,
"miKindCode": null,
"isAbroad": 0,
"made": null,
"property": "1",
"mgrLevel": "1",
"goodsDesc": null,
"corpId": "%s",
"createUserCorpId": "%s",
"goodsMfrsName": "北京中杉金桥生物技术有限公司(test)",
"goodsAgentMfrsName": "北京中杉金桥生物技术有限公司(test)",
"purpose": "01",
"purposeName": "有源手术器械",
"kind68Code": "6801",
"kind68CodeName": "基础外科手术器械",
"mgrLevelName": "I级"
},
"goodsSpecsRegistVOList": [
{
"id": "%s",
"lastModified": "%s",
"version": 0,
"createTime": "%s",
"createUser": "%s",
"lastModifiedUser": "%s",
"billId": "%s",
"goodsRegistId": "%s",
"mdmGoodsSpecCode": null,
"provGoodsSpecsId": null,
"goodsMfrsId": "%s",
"goodsName": "%s",
"shortPinyin": "%s",
"goodsGg": "%s",
"miGoodsGg": "%s",
"miGoodsXh": "%s",
"mi27code": "%s",
"udiCode": 01234567891234,
"goodsUseUnit": "支",
"auditStatus": 10,
"auditComment": "审批通过",
"specAuditStatus": true
}
],
"registrationRegistVO": {
"id": "%s",
"lastModified": "%s",
"version": 0,
"createTime": "%s",
"createUser": "%s",
"lastModifiedUser": "%s",
"billId": "%s",
"goodsRegistId": "%s",
"certKind": "0",
"certKindName": "医疗器械注册证",
"certCode": "%s",
"expdtBeginDate": "%sT00:00:00.000+00:00",
"expdtEndDate": "2093-06-01 00:00:00T00:00:00.000+00:00",
"regMfrsId": "%s",
"agentMfrsId": "%s",
"productName": "%s",
"activeFlag": 1,
"registSourceProject": "h0347",
"filePath": "/sfile/2023/hdi/2023-04-30_090212_2ed1db473e3d42c3b2265a18a6596e5b.png",
"fileOriginalName": "2023-04-30_090212.png"
},
"version": 1
}
"name1": "一次性注射器" "name1": "一次性注射器"
checkDict: {"code": 0, "msg":None,"data": {"pageNum": 1, "pageSize": 20, "total": 0, "data": [], "totalInfo": None}} checkDict: {"code": 0, "msg":None,"data": {"pageNum": 1, "pageSize": 20, "total": 0, "data": [], "totalInfo": None}}
checkDict1: {"code": -2,"msg": "医院已被注册,请耐心等待审核通知!", "data": None} checkDict1: {"code": -2,"msg": "医院已被注册,请耐心等待审核通知!", "data": None}
......
...@@ -54,8 +54,8 @@ ...@@ -54,8 +54,8 @@
</tr> </tr>
<tr width="600"> <tr width="600">
<td class='details-col-elapsed'>1</td> <td class='details-col-elapsed'>2</td>
<td class='details-col-elapsed'>1</td> <td class='details-col-elapsed'>2</td>
<td class='details-col-elapsed'>0分2秒</td> <td class='details-col-elapsed'>0分2秒</td>
<td class="details-col-elapsed">100.0%</td> <td class="details-col-elapsed">100.0%</td>
</tr> </tr>
...@@ -74,7 +74,14 @@ ...@@ -74,7 +74,14 @@
<tr width="600"> <tr width="600">
<td class="details-col-elapsed"><a href='../log/产品新增和审核通过/log.html' target='_blank'>产品新增和审核通过</a></td> <td class="details-col-elapsed"><a href='../log/产品新增和审核通过/log.html' target='_blank'>产品新增和审核通过</a></td>
<td class="success">成功</td> <td class="success">成功</td>
<td class="details-col-elapsed">2.154</td> <td class="details-col-elapsed">2.548</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/产品规格新增和审核通过/log.html' target='_blank'>产品规格新增和审核通过</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">0.002</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