Commit 1d2ee27c authored by liguangyu06's avatar liguangyu06
Browse files

补充套包相关用例

parent 045cb578
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc创建需求单_普通套包,2264,2264-33,sit,bs
主数据平台:多采商城创建需求单接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
from common.db.db import mySql
import requests
import json
module = "cmdc_fresenius_group"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcMaiiLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token)
# 第二步加入购物车
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url31")
request_body = commonFuc().get_business_data(module, "payload31")
"""
场景:套包清单获取
用例名称:套包清单获取
输出:{"demandCode": "%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
demand_parent_id = result["data"]["国药集团上海医疗器械有限公司"]["demandParentId"]
result = {"demandCode": result["data"]["国药集团上海医疗器械有限公司"]["demandItems"][0]["demandCode"]}
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 需求单查询
sql = "SELECT t.demandCode FROM `cmdc-order`.tc_demand t WHERE demandParentId = '{}'".format(demand_parent_id)
demand_code = mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)[0][0]
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict31", demand_code)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc套包清单获取,2264,2264-32,sit,bs
主数据平台:多采商城套包清单获取接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
import requests
import json
module = "cmdc_fresenius_group"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcMaiiLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token)
# 第二步加入购物车
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url30")
request_body = commonFuc().get_business_data(module, "payload30")
"""
场景:套包清单获取
用例名称:套包清单获取
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
result = json.loads(result.content)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict30")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc验证套包结构调整后审核是否拦截,2264,2264-33,sit,bs
主数据平台:套包核验接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
module = "cmdc_fresenius_group"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username1")
password = commonFuc().get_business_data(module, "password1")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 第二步进行套包核验
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url32")
request_body = commonFuc().get_business_data(module, "payload32")
"""
场景:验证套包结构调整后审核是否拦截
用例名称:验证套包结构调整后审核是否拦截
输出:{"errType": 5}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
result = {"errType": result["data"][0]["errType"]}
print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict32")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -219,13 +219,28 @@ checkDict28: {"groupCode":"%s"} ...@@ -219,13 +219,28 @@ checkDict28: {"groupCode":"%s"}
checkDict29: {"success":true,"code":"200","message":"OK"} checkDict29: {"success":true,"code":"200","message":"OK"}
#测试场景二十九:套包清单获取
#套包清单获取接口地址和报文
"url30": "/order/public/getFreseniusGroup"
"payload30": {"userNo":"1126384","companyCode":"00111","back":true,"p":true,"buyCart":true,"num":1}
#预期结果
checkDict30: {"success":true,"code":"200","message":"OK"}
#测试场景三十:创建需求单_普通套包
#需求单创建接口地址和报文
"url31": "/order/public/saveAllDemandOrder"
"payload31": {"国药集团上海医疗器械有限公司":{"datas":[{"demandId":null,"demandParentId":null,"demandParentCode":null,"demandCode":null,"customerId":null,"customerName":null,"customerCode":1126384,"loginName":null,"realName":null,"addressNumber":null,"mobile":null,"productName":null,"productCode":null,"sellerCompanyName":null,"sellerCompanyCode":null,"paymentType":null,"receiveBankName":null,"receiveBankAccount":null,"paymentAmount":101,"productAmount":201,"payableAmount":101,"refundAmount":null,"cancelAmount":null,"discountAmount":0,"orderStatus":null,"refundStatus":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"remark":null,"revokedReason":null,"auditById":null,"auditByName":null,"auditTime":null,"auditRemark":null,"flhsStatus":null,"pushJdeStatus":null,"createTime":null,"updateTime":null,"submitTime":null,"pushJdeTime":null,"successTime":null,"auditStatus":null,"deleteSign":null,"firstOrderFlag":null,"demandItems":[{"demandSkuId":null,"demandId":null,"distributionId":null,"companyCode":"00111","demandCode":null,"demandParentId":null,"sellerCompanyId":null,"sellerCompanyName":null,"sellerCompanyCode":null,"customerCode":null,"productLineCode":"2012","productLineName":"麦迪康","propertyStr":null,"storageType":"002","suppDist":null,"productId":7438,"productName":"检查手套","productCode":"14037826","productNature":null,"brandName":null,"optionStr":"1131C 丁腈无粉 M 蓝紫色","imageUrl":"","lineNumber":null,"price":100,"rebateId":null,"originalPrice":null,"biddingDiscountTax":null,"salesDiscountTax":null,"quantity":1,"sumQuantity":null,"sendQuantity":null,"lackQuantity":null,"cancelQuantity":null,"cancelAmount":null,"refundQuantity":null,"refundAmount":null,"discountQuantity":null,"discountAmount":null,"subtotal":100,"measuringUnit":"只","auxiliaryMeasuringUnit":null,"procurementMeasuringUnit":null,"pricingMeasuringUnit":null,"materialCode":"SFTCN1131C-0100100","manufacturer":"麦迪康(马来西亚)公司 A R Medicom (M) Sdn Bhd","produceRegisterNum":"国械备20181202号","riskRank":null,"productClassify":null,"createTime":null,"updateTime":null,"deleteSign":null,"calCancelFlag":null,"refundFlag":null,"discountRate":100,"realPay":100,"promotionPrice":null,"promotionTotalPrice":0,"demandParentCode":null,"regionId":null,"regionName":null,"spitSign":null,"activityAmount":0,"couponAmount":49.75,"activityUnitAmount":0,"couponUnitAmount":null,"activityBasicId":null,"couponSgin":null,"couponSgin2":null,"returnQuantity":null,"returnAmount":null,"customerId":null,"prescription":null,"specifications":null,"lineCodeDelete":null,"sdOutStorage":null,"licenseNo":null,"demandCodes":null,"areaName":null,"agreementPriceId":null,"offerPrice":null,"orderMark":null,"totalPrice":null,"productLimitBuyList":null,"giftSign":0,"giftProductCode":null,"activityCarDataVoList":[],"orderSource":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"rebateTripId":null,"allSign":null,"salesReturn":null,"nowAmount":null,"taxSign":0,"plusMinuKey":null,"rebateRule":null,"areaPrice":null,"lockType":null,"estimatedDeliveryDate":null,"licenseInfoFeignDtos":null,"receivedQty":null,"lineNumberOrg":null,"changeSgin":null,"addSgin":null,"ptbfa1":null,"ptbfa2":null,"ptbfa3":null,"ptbfa4":null,"ptbfa5":null,"yapeiPriceId":null,"ypLinePromotion":null,"yapeiPrice":null,"companyId":6,"buyerCartId":null,"userReceiveIdx":null,"userReceiveIdx2":null,"limitNum":null,"productLimitBuyId":null,"alreadyBuyNum":null,"limitBuySign":0,"proposeNum":null,"takeEffectRange":null,"takeEffectTime":null,"endTime1":null,"groupId":355,"fsGroupId":355,"proposalQuantity":null,"proposalSign":0,"manufacturerUserNo":null,"manufacturerUserDesc":null,"manufacturerProductNo":null,"manufacturerProductDesc":null,"manufacturerUserId":null,"manufacturerProductId":null,"busProductCode":null,"paidTime":null,"customerName":null,"paymentAmount":null,"specQuantity":null,"disQuantity":null,"fulfilledQuantity":null,"fulCancelQuantity":null,"couponId":null,"couponId2":null,"limitS":null,"starts":null,"ends":null,"userId":null,"productTax":"","taxRate":0.13,"demandSplitSign":"1","hospitalHopeDate":null,"uniqueKey":null,"productType":null,"activityRuleId":null,"allowanceBeginTime":null,"allowanceEndTime":null,"sign":null,"differenceActivityUserId":null,"groupNumber":1,"groupName":"套包测试","skuGroup":{"id":null,"groupId":355,"companyCode":"00111","groupProductType":4,"createTime":null,"updateTime":null,"demandSkuId":null,"demandId":null,"dataJson":"{\\\"groupCode\\\":\\\"cpg00659551\\\",\\\"groupName\\\":\\\"套包测试\\\",\\\"groupCode1\\\":\\\"cpg00659551\\\",\\\"groupPrice\\\":201,\\\"groupProductType\\\":4,\\\"realPay\\\":201,\\\"subtotal\\\":201,\\\"quantity\\\":1,\\\"calSubFreName\\\":\\\"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\\\\\"color:red\\\\\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\\\\\"color:red\\\\\\\">1</span>副\\\",\\\"subList\\\":[{\\\"activityUnitAmount\\\":\\\"100.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14037826\\\"},{\\\"activityUnitAmount\\\":\\\"101.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14479934\\\"}]}","lineNumber":null,"freseniusPriceId":null,"groupNumber":1,"demandSkuList":null,"demandSkuVOList":null,"groupCode":"cpg00659551","groupName":"套包测试","groupCode1":"cpg00659551","groupPrice":201,"realPay":201,"subtotal":201,"quantity":1,"calSubFreName":"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\"color:red\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\"color:red\\\">1</span>副","subList":[{"activityUnitAmount":"100.0","quantity":1,"productCode":"14037826"},{"activityUnitAmount":"101.0","quantity":1,"productCode":"14479934"}],"_rebateType":false},"subList":null,"dataJson":null,"skuMergeSign":null,"freseniusPriceId":null,"quantityAndGroupAll":1,"booleaTime":null,"spitSgin":0,"groupSpitSign":0,"sort":0,"circleArea":null,"purchaseEntryId":null,"mustInstallDate":false,"installedDate":null,"installedDateStr":null,"demandLines":null,"subLineNumber":null,"demandSubCode":null,"propertyName":null,"propertyVal":null,"propertyNote":null,"sendManualSign":0,"activityType":0,"giftSettlementMethod":null,"giftInitQuantity":null,"packageCode":null,"giftGroupQuantity":null,"siteCompanyCode":null,"hospitalOrderType":null,"isCollectionAllocation":null,"recDifferenceQty":null,"orderStatus":null,"distributionType":null,"groupCode":"cpg00659551","groupProductType":4,"pSign":0,"backSign":0,"description":"","stockNumber":null,"priceChange":false,"rebate":false,"bol":true,"purchaseZeroProductList":[],"prePromotionPrice":null,"prepromotionTotalPrice":0,"preDiscountRate":null,"userBalance":0,"rebateType":0},{"demandSkuId":null,"demandId":null,"distributionId":null,"companyCode":"00111","demandCode":null,"demandParentId":null,"sellerCompanyId":null,"sellerCompanyName":null,"sellerCompanyCode":null,"customerCode":null,"productLineCode":"2012","productLineName":"麦迪康","propertyStr":null,"storageType":"002","suppDist":null,"productId":7439,"productName":"一次性使用灭菌橡胶外科手套","productCode":"14479934","productNature":null,"brandName":null,"optionStr":"SFTCS1145E 7.5 无粉麻面","imageUrl":"https://pro-cmdc.oss-cn-beijing.aliyuncs.com/productFile/2021/04/13/bb721764-a0ca-4ff7-9d63-778803bc0c68.jpg","lineNumber":null,"price":101,"rebateId":null,"originalPrice":null,"biddingDiscountTax":null,"salesDiscountTax":null,"quantity":1,"sumQuantity":null,"sendQuantity":null,"lackQuantity":null,"cancelQuantity":null,"cancelAmount":null,"refundQuantity":null,"refundAmount":null,"discountQuantity":null,"discountAmount":null,"subtotal":101,"measuringUnit":"副","auxiliaryMeasuringUnit":null,"procurementMeasuringUnit":null,"pricingMeasuringUnit":null,"materialCode":"SFTCS1145E-0040050","manufacturer":"TG MEDICAL SDN. BHD.","produceRegisterNum":"国械注进20172661704","riskRank":null,"productClassify":null,"createTime":null,"updateTime":null,"deleteSign":null,"calCancelFlag":null,"refundFlag":null,"discountRate":100,"realPay":101,"promotionPrice":null,"promotionTotalPrice":0,"demandParentCode":null,"regionId":null,"regionName":null,"spitSign":null,"activityAmount":0,"couponAmount":50.25,"activityUnitAmount":0,"couponUnitAmount":null,"activityBasicId":null,"couponSgin":null,"couponSgin2":null,"returnQuantity":null,"returnAmount":null,"customerId":null,"prescription":null,"specifications":null,"lineCodeDelete":null,"sdOutStorage":null,"licenseNo":null,"demandCodes":null,"areaName":null,"agreementPriceId":null,"offerPrice":null,"orderMark":null,"totalPrice":null,"productLimitBuyList":null,"giftSign":0,"giftProductCode":null,"activityCarDataVoList":[],"orderSource":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"rebateTripId":null,"allSign":null,"salesReturn":null,"nowAmount":null,"taxSign":0,"plusMinuKey":null,"rebateRule":null,"areaPrice":null,"lockType":null,"estimatedDeliveryDate":null,"licenseInfoFeignDtos":null,"receivedQty":null,"lineNumberOrg":null,"changeSgin":null,"addSgin":null,"ptbfa1":null,"ptbfa2":null,"ptbfa3":null,"ptbfa4":null,"ptbfa5":null,"yapeiPriceId":null,"ypLinePromotion":null,"yapeiPrice":null,"companyId":6,"buyerCartId":null,"userReceiveIdx":null,"userReceiveIdx2":null,"limitNum":null,"productLimitBuyId":null,"alreadyBuyNum":null,"limitBuySign":0,"proposeNum":null,"takeEffectRange":null,"takeEffectTime":null,"endTime1":null,"groupId":355,"fsGroupId":355,"proposalQuantity":null,"proposalSign":0,"manufacturerUserNo":null,"manufacturerUserDesc":null,"manufacturerProductNo":null,"manufacturerProductDesc":null,"manufacturerUserId":null,"manufacturerProductId":null,"busProductCode":null,"paidTime":null,"customerName":null,"paymentAmount":null,"specQuantity":null,"disQuantity":null,"fulfilledQuantity":null,"fulCancelQuantity":null,"couponId":null,"couponId2":null,"limitS":null,"starts":null,"ends":null,"userId":null,"productTax":"","taxRate":0.13,"demandSplitSign":"1","hospitalHopeDate":null,"uniqueKey":null,"productType":null,"activityRuleId":null,"allowanceBeginTime":null,"allowanceEndTime":null,"sign":null,"differenceActivityUserId":null,"groupNumber":1,"groupName":"套包测试","skuGroup":{"id":null,"groupId":355,"companyCode":"00111","groupProductType":4,"createTime":null,"updateTime":null,"demandSkuId":null,"demandId":null,"dataJson":"{\\\"groupCode\\\":\\\"cpg00659551\\\",\\\"groupName\\\":\\\"套包测试\\\",\\\"groupCode1\\\":\\\"cpg00659551\\\",\\\"groupPrice\\\":201,\\\"groupProductType\\\":4,\\\"realPay\\\":201,\\\"subtotal\\\":201,\\\"quantity\\\":1,\\\"calSubFreName\\\":\\\"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\\\\\"color:red\\\\\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\\\\\"color:red\\\\\\\">1</span>副\\\",\\\"subList\\\":[{\\\"activityUnitAmount\\\":\\\"100.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14037826\\\"},{\\\"activityUnitAmount\\\":\\\"101.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14479934\\\"}]}","lineNumber":null,"freseniusPriceId":null,"groupNumber":1,"demandSkuList":null,"demandSkuVOList":null,"groupCode":"cpg00659551","groupName":"套包测试","groupCode1":"cpg00659551","groupPrice":201,"realPay":201,"subtotal":201,"quantity":1,"calSubFreName":"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\"color:red\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\"color:red\\\">1</span>副","subList":[{"activityUnitAmount":"100.0","quantity":1,"productCode":"14037826"},{"activityUnitAmount":"101.0","quantity":1,"productCode":"14479934"}],"_rebateType":false},"subList":null,"dataJson":null,"skuMergeSign":null,"freseniusPriceId":null,"quantityAndGroupAll":1,"booleaTime":null,"spitSgin":0,"groupSpitSign":0,"sort":0,"circleArea":null,"purchaseEntryId":null,"mustInstallDate":false,"installedDate":null,"installedDateStr":null,"demandLines":null,"subLineNumber":null,"demandSubCode":null,"propertyName":null,"propertyVal":null,"propertyNote":null,"sendManualSign":0,"activityType":0,"giftSettlementMethod":null,"giftInitQuantity":null,"packageCode":null,"giftGroupQuantity":null,"siteCompanyCode":null,"hospitalOrderType":null,"isCollectionAllocation":null,"recDifferenceQty":null,"orderStatus":null,"distributionType":null,"groupCode":"cpg00659551","groupProductType":4,"pSign":0,"backSign":0,"description":"","stockNumber":null,"priceChange":false,"rebate":false,"bol":false,"purchaseZeroProductList":[],"prePromotionPrice":null,"prepromotionTotalPrice":0,"preDiscountRate":null,"userBalance":0,"rebateType":0}],"demandSubItems":null,"rebateDetail":null,"rebateAmountList":null,"productLineCode":"2012","productLineName":"麦迪康","auditLoginName":null,"showPurchaseNo":false,"isRebate":null,"isShowReate":null,"taxRate":0.13,"rebateType":0,"paymentAmountWholeLine":201,"discountAmountWholeLine":0,"payableAmountWholeLine":201,"discountRate":null,"singleRebateAmount":null,"isRebateEdit":null,"payCertUrl":null,"rebateAmount":null,"demandCance":null,"soAdd":null,"soCance":null,"orderReturn":null,"needCustomerConfirm":false,"measuringUnit":null,"productId":null,"version":null,"mainVersion":null,"agencyConfigId":null,"confirmSign":null,"replySign":null,"agencySign":null,"editIng":null,"editIngStr":null,"jdeType":null,"isElectronicSeal":null,"contractAgreementNo":null,"alesDepartmentNo":null,"alesDepartmentName":null,"salesPersonNo":null,"salesPersonName":null,"customerNote":null,"otherNote":null,"contractAgreementCode":null,"projectName":null,"projectCode":null,"regionId":null,"regionName":null,"productLineBindSign":null,"shipVia":null,"orderSource":null,"userBalance":null,"liquidCode":null,"shipmentTypeStr":null,"specifications":null,"pageStart":1,"pageSize":5,"changeSgin":null,"yapei":2,"companyId":6,"preemptConfig":null,"productSpec":null,"secondAuditSign":null,"secondAuditById":null,"secondAuditByName":null,"secondAuditTime":null,"secondAuditRemark":null,"secondAuditStatus":null,"rebateRule":"0","rebateControlSign":0,"rebateId":null,"preferenceType":null,"preferenceName":null,"disPrice":null,"lineNum":0,"auditStaySign":0,"fileList":null,"imageUrls":null,"total":null,"submitTimeStr":null,"updateTimeStr":null,"auditTimeStr":null,"acceptTime":null,"acceptTimeStr":null,"paidTime":null,"paidTimeStr":null,"erpHandingTime":null,"erpHandingTimeStr":null,"partShippingTime":null,"partShippingTimeStr":null,"allShippingTime":null,"allShippingTimeStr":null,"pushJdeTimeStr":null,"successTimeStr":null,"onlinePaySuccessTime":null,"onlinePaySuccessTimeStr":null,"bankTransactionSerial":null,"newIsTax":null,"countFormula":null,"countNumber":null,"noTaxRebateAmount":0,"isCollectionAllocation":0,"siteCompanyCode":null,"hospitalOrderType":null,"proofTime":null,"proofURL":null,"proofRemark":null,"proofSign":0,"customerCancelSign":null,"cancelRecords":null,"cancelCount":0,"updateNewTime":null,"updateNewTimeStr":null,"fsDedUseSign":null,"notice":null,"shareType":null,"singleRebateSign":null,"cf":false,"isPre":null,"showDemandAuditLineLabel":false,"orderType":null,"newDiscountRate":null,"oldOrderType":null,"oldNewDiscountRate":null,"pendding":null,"pushJdeStatusDemandSub":null,"circleGiftSign":0,"delay":null,"limitS":null,"starts":null,"ends":null,"completedS":null,"confirmDays":null,"remindS":null,"skuGroupList":null,"groupProductType":0,"purchaseId":null,"purchaseCode":null,"sdCancelTime":null,"sdTipSign":0,"receiverNote":null,"receiverPhoneNote":null,"receiverAddressNote":null,"flag":null,"sourceStr":null,"addressNoNote":null,"detailIsSpit":false,"spitSgin":null,"distributionType":null,"rebateValidity":null,"orderChangeType":null,"logoIcon":null,"detail":null,"changeBigType":null,"promotionType":2,"activityTotalAmount":0,"couponTotalAmount":100,"userReceiveId":null,"editSgin":null,"snSgin":null,"jdeOutAmount":null,"totalAllPaAmount":null,"diffShowSgin":0,"lineCodeDelete":null,"startTime":null,"endTime":null,"changeSign":null,"distributionId":null,"limitBuySign":0,"companyType":null,"afterSale":null,"csId":null,"sdStatusNodeParamList":null,"ypPromotionTotal":null,"acrossMainCode":null,"forceApprovedSign":0,"circleGiftContinueSgin":0,"customerCharge":null,"onlinePaySign":0,"recodeDemandSkuList":null,"mergeDemandSkuList":null,"inventoryNode":null,"customCode":null,"terminalSource":null,"potentialClientsId":null,"settlementStatus":null,"firstOrderAuditStatus":null,"confirmReceiptSign":null,"confirmReceiptTime":null,"afterSaleDays":null,"deliveryCompletedTime":null,"taxSign":0,"orderSplitSign":0,"demandRebateSkuList":null,"confirmTime":null,"customerPurchaseNo":null,"mustInstallDate":false,"secondAddressList":null,"splitOrMerge":null,"spitOrderSign":null,"edit":false,"productAmountWholeLine":201,"auditCompanyName":null,"auditCompanyNameCode":null,"ratio":null,"showMoreAttribute":false,"lastNoTaxDiscountAmount":0,"lastDiscountAmount":0,"showInfo":false,"addressConfig":2,"settementQuantity":2,"userBalancePrice":0,"isEdit":true,"discountRateOne":100,"totalPriceNum":0}],"addressConfig":2,"openPreTaxAmount":0,"promotionOrRebate":2,"promotionType":2,"productLineCodes":["2012"],"addressIsCommon":true,"showChangePromotionOrRebate":false,"couponTotalAmount":100,"activityTotalAmount":0,"totalQuantity":2,"totalPrice":201,"discountAmount":0,"demandItems":[{"demandSkuId":null,"demandId":null,"distributionId":null,"companyCode":"00111","demandCode":null,"demandParentId":null,"sellerCompanyId":null,"sellerCompanyName":null,"sellerCompanyCode":null,"customerCode":null,"productLineCode":"2012","productLineName":"麦迪康","propertyStr":null,"storageType":"002","suppDist":null,"productId":7438,"productName":"检查手套","productCode":"14037826","productNature":null,"brandName":null,"optionStr":"1131C 丁腈无粉 M 蓝紫色","imageUrl":"","lineNumber":null,"price":100,"rebateId":null,"originalPrice":null,"biddingDiscountTax":null,"salesDiscountTax":null,"quantity":1,"sumQuantity":null,"sendQuantity":null,"lackQuantity":null,"cancelQuantity":null,"cancelAmount":null,"refundQuantity":null,"refundAmount":null,"discountQuantity":null,"discountAmount":null,"subtotal":100,"measuringUnit":"只","auxiliaryMeasuringUnit":null,"procurementMeasuringUnit":null,"pricingMeasuringUnit":null,"materialCode":"SFTCN1131C-0100100","manufacturer":"麦迪康(马来西亚)公司 A R Medicom (M) Sdn Bhd","produceRegisterNum":"国械备20181202号","riskRank":null,"productClassify":null,"createTime":null,"updateTime":null,"deleteSign":null,"calCancelFlag":null,"refundFlag":null,"discountRate":100,"realPay":100,"promotionPrice":null,"promotionTotalPrice":0,"demandParentCode":null,"regionId":null,"regionName":null,"spitSign":null,"activityAmount":0,"couponAmount":49.75,"activityUnitAmount":0,"couponUnitAmount":null,"activityBasicId":null,"couponSgin":null,"couponSgin2":null,"returnQuantity":null,"returnAmount":null,"customerId":null,"prescription":null,"specifications":null,"lineCodeDelete":null,"sdOutStorage":null,"licenseNo":null,"demandCodes":null,"areaName":null,"agreementPriceId":null,"offerPrice":null,"orderMark":null,"totalPrice":null,"productLimitBuyList":null,"giftSign":0,"giftProductCode":null,"activityCarDataVoList":[],"orderSource":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"rebateTripId":null,"allSign":null,"salesReturn":null,"nowAmount":null,"taxSign":0,"plusMinuKey":null,"rebateRule":null,"areaPrice":null,"lockType":null,"estimatedDeliveryDate":null,"licenseInfoFeignDtos":null,"receivedQty":null,"lineNumberOrg":null,"changeSgin":null,"addSgin":null,"ptbfa1":null,"ptbfa2":null,"ptbfa3":null,"ptbfa4":null,"ptbfa5":null,"yapeiPriceId":null,"ypLinePromotion":null,"yapeiPrice":null,"companyId":6,"buyerCartId":null,"userReceiveIdx":null,"userReceiveIdx2":null,"limitNum":null,"productLimitBuyId":null,"alreadyBuyNum":null,"limitBuySign":0,"proposeNum":null,"takeEffectRange":null,"takeEffectTime":null,"endTime1":null,"groupId":355,"fsGroupId":355,"proposalQuantity":null,"proposalSign":0,"manufacturerUserNo":null,"manufacturerUserDesc":null,"manufacturerProductNo":null,"manufacturerProductDesc":null,"manufacturerUserId":null,"manufacturerProductId":null,"busProductCode":null,"paidTime":null,"customerName":null,"paymentAmount":null,"specQuantity":null,"disQuantity":null,"fulfilledQuantity":null,"fulCancelQuantity":null,"couponId":null,"couponId2":null,"limitS":null,"starts":null,"ends":null,"userId":null,"productTax":"","taxRate":0.13,"demandSplitSign":"1","hospitalHopeDate":null,"uniqueKey":null,"productType":null,"activityRuleId":null,"allowanceBeginTime":null,"allowanceEndTime":null,"sign":null,"differenceActivityUserId":null,"groupNumber":1,"groupName":"套包测试","skuGroup":{"id":null,"groupId":355,"companyCode":"00111","groupProductType":4,"createTime":null,"updateTime":null,"demandSkuId":null,"demandId":null,"dataJson":"{\\\"groupCode\\\":\\\"cpg00659551\\\",\\\"groupName\\\":\\\"套包测试\\\",\\\"groupCode1\\\":\\\"cpg00659551\\\",\\\"groupPrice\\\":201,\\\"groupProductType\\\":4,\\\"realPay\\\":201,\\\"subtotal\\\":201,\\\"quantity\\\":1,\\\"calSubFreName\\\":\\\"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\\\\\"color:red\\\\\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\\\\\"color:red\\\\\\\">1</span>副\\\",\\\"subList\\\":[{\\\"activityUnitAmount\\\":\\\"100.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14037826\\\"},{\\\"activityUnitAmount\\\":\\\"101.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14479934\\\"}]}","lineNumber":null,"freseniusPriceId":null,"groupNumber":1,"demandSkuList":null,"demandSkuVOList":null,"groupCode":"cpg00659551","groupName":"套包测试","groupCode1":"cpg00659551","groupPrice":201,"realPay":201,"subtotal":201,"quantity":1,"calSubFreName":"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\"color:red\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\"color:red\\\">1</span>副","subList":[{"activityUnitAmount":"100.0","quantity":1,"productCode":"14037826"},{"activityUnitAmount":"101.0","quantity":1,"productCode":"14479934"}],"_rebateType":false},"subList":null,"dataJson":null,"skuMergeSign":null,"freseniusPriceId":null,"quantityAndGroupAll":1,"booleaTime":null,"spitSgin":0,"groupSpitSign":0,"sort":0,"circleArea":null,"purchaseEntryId":null,"mustInstallDate":false,"installedDate":null,"installedDateStr":null,"demandLines":null,"subLineNumber":null,"demandSubCode":null,"propertyName":null,"propertyVal":null,"propertyNote":null,"sendManualSign":0,"activityType":0,"giftSettlementMethod":null,"giftInitQuantity":null,"packageCode":null,"giftGroupQuantity":null,"siteCompanyCode":null,"hospitalOrderType":null,"isCollectionAllocation":null,"recDifferenceQty":null,"orderStatus":null,"distributionType":null,"groupCode":"cpg00659551","groupProductType":4,"pSign":0,"backSign":0,"description":"","stockNumber":null,"priceChange":false,"rebate":false,"bol":true,"purchaseZeroProductList":[],"prePromotionPrice":null,"prepromotionTotalPrice":0,"preDiscountRate":null,"userBalance":0},{"demandSkuId":null,"demandId":null,"distributionId":null,"companyCode":"00111","demandCode":null,"demandParentId":null,"sellerCompanyId":null,"sellerCompanyName":null,"sellerCompanyCode":null,"customerCode":null,"productLineCode":"2012","productLineName":"麦迪康","propertyStr":null,"storageType":"002","suppDist":null,"productId":7439,"productName":"一次性使用灭菌橡胶外科手套","productCode":"14479934","productNature":null,"brandName":null,"optionStr":"SFTCS1145E 7.5 无粉麻面","imageUrl":"https://pro-cmdc.oss-cn-beijing.aliyuncs.com/productFile/2021/04/13/bb721764-a0ca-4ff7-9d63-778803bc0c68.jpg","lineNumber":null,"price":101,"rebateId":null,"originalPrice":null,"biddingDiscountTax":null,"salesDiscountTax":null,"quantity":1,"sumQuantity":null,"sendQuantity":null,"lackQuantity":null,"cancelQuantity":null,"cancelAmount":null,"refundQuantity":null,"refundAmount":null,"discountQuantity":null,"discountAmount":null,"subtotal":101,"measuringUnit":"副","auxiliaryMeasuringUnit":null,"procurementMeasuringUnit":null,"pricingMeasuringUnit":null,"materialCode":"SFTCS1145E-0040050","manufacturer":"TG MEDICAL SDN. BHD.","produceRegisterNum":"国械注进20172661704","riskRank":null,"productClassify":null,"createTime":null,"updateTime":null,"deleteSign":null,"calCancelFlag":null,"refundFlag":null,"discountRate":100,"realPay":101,"promotionPrice":null,"promotionTotalPrice":0,"demandParentCode":null,"regionId":null,"regionName":null,"spitSign":null,"activityAmount":0,"couponAmount":50.25,"activityUnitAmount":0,"couponUnitAmount":null,"activityBasicId":null,"couponSgin":null,"couponSgin2":null,"returnQuantity":null,"returnAmount":null,"customerId":null,"prescription":null,"specifications":null,"lineCodeDelete":null,"sdOutStorage":null,"licenseNo":null,"demandCodes":null,"areaName":null,"agreementPriceId":null,"offerPrice":null,"orderMark":null,"totalPrice":null,"productLimitBuyList":null,"giftSign":0,"giftProductCode":null,"activityCarDataVoList":[],"orderSource":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"rebateTripId":null,"allSign":null,"salesReturn":null,"nowAmount":null,"taxSign":0,"plusMinuKey":null,"rebateRule":null,"areaPrice":null,"lockType":null,"estimatedDeliveryDate":null,"licenseInfoFeignDtos":null,"receivedQty":null,"lineNumberOrg":null,"changeSgin":null,"addSgin":null,"ptbfa1":null,"ptbfa2":null,"ptbfa3":null,"ptbfa4":null,"ptbfa5":null,"yapeiPriceId":null,"ypLinePromotion":null,"yapeiPrice":null,"companyId":6,"buyerCartId":null,"userReceiveIdx":null,"userReceiveIdx2":null,"limitNum":null,"productLimitBuyId":null,"alreadyBuyNum":null,"limitBuySign":0,"proposeNum":null,"takeEffectRange":null,"takeEffectTime":null,"endTime1":null,"groupId":355,"fsGroupId":355,"proposalQuantity":null,"proposalSign":0,"manufacturerUserNo":null,"manufacturerUserDesc":null,"manufacturerProductNo":null,"manufacturerProductDesc":null,"manufacturerUserId":null,"manufacturerProductId":null,"busProductCode":null,"paidTime":null,"customerName":null,"paymentAmount":null,"specQuantity":null,"disQuantity":null,"fulfilledQuantity":null,"fulCancelQuantity":null,"couponId":null,"couponId2":null,"limitS":null,"starts":null,"ends":null,"userId":null,"productTax":"","taxRate":0.13,"demandSplitSign":"1","hospitalHopeDate":null,"uniqueKey":null,"productType":null,"activityRuleId":null,"allowanceBeginTime":null,"allowanceEndTime":null,"sign":null,"differenceActivityUserId":null,"groupNumber":1,"groupName":"套包测试","skuGroup":{"id":null,"groupId":355,"companyCode":"00111","groupProductType":4,"createTime":null,"updateTime":null,"demandSkuId":null,"demandId":null,"dataJson":"{\\\"groupCode\\\":\\\"cpg00659551\\\",\\\"groupName\\\":\\\"套包测试\\\",\\\"groupCode1\\\":\\\"cpg00659551\\\",\\\"groupPrice\\\":201,\\\"groupProductType\\\":4,\\\"realPay\\\":201,\\\"subtotal\\\":201,\\\"quantity\\\":1,\\\"calSubFreName\\\":\\\"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\\\\\"color:red\\\\\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\\\\\"color:red\\\\\\\">1</span>副\\\",\\\"subList\\\":[{\\\"activityUnitAmount\\\":\\\"100.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14037826\\\"},{\\\"activityUnitAmount\\\":\\\"101.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14479934\\\"}]}","lineNumber":null,"freseniusPriceId":null,"groupNumber":1,"demandSkuList":null,"demandSkuVOList":null,"groupCode":"cpg00659551","groupName":"套包测试","groupCode1":"cpg00659551","groupPrice":201,"realPay":201,"subtotal":201,"quantity":1,"calSubFreName":"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\"color:red\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\"color:red\\\">1</span>副","subList":[{"activityUnitAmount":"100.0","quantity":1,"productCode":"14037826"},{"activityUnitAmount":"101.0","quantity":1,"productCode":"14479934"}],"_rebateType":false},"subList":null,"dataJson":null,"skuMergeSign":null,"freseniusPriceId":null,"quantityAndGroupAll":1,"booleaTime":null,"spitSgin":0,"groupSpitSign":0,"sort":0,"circleArea":null,"purchaseEntryId":null,"mustInstallDate":false,"installedDate":null,"installedDateStr":null,"demandLines":null,"subLineNumber":null,"demandSubCode":null,"propertyName":null,"propertyVal":null,"propertyNote":null,"sendManualSign":0,"activityType":0,"giftSettlementMethod":null,"giftInitQuantity":null,"packageCode":null,"giftGroupQuantity":null,"siteCompanyCode":null,"hospitalOrderType":null,"isCollectionAllocation":null,"recDifferenceQty":null,"orderStatus":null,"distributionType":null,"groupCode":"cpg00659551","groupProductType":4,"pSign":0,"backSign":0,"description":"","stockNumber":null,"priceChange":false,"rebate":false,"bol":false,"purchaseZeroProductList":[],"prePromotionPrice":null,"prepromotionTotalPrice":0,"preDiscountRate":null,"userBalance":0}],"productPrice":101,"fileList":[],"showInfo":false,"pageStart":1,"pageSize":5,"receiveInfo":[{"addressId":27568,"addressNo":82429,"addressName":"昆明高新技术产业开发区马金铺高登路1676号水科技园标准工业厂房1号办公楼4层405室,2号工业厂房一层101、102、103、104-2室","provinceCode":null,"userId":null,"companyId":null,"receiverName":"/","address":"","isDefault":1,"type":null,"postcode":null,"mobile":"/","updateDate":null,"updateTime":null,"flag":null,"deleteSign":null,"province":null,"city":null,"area":null,"dateTime":null,"provinceStr":null,"cityStr":null,"areaStr":null,"isJde":0}],"defaultBankInfo":{"accountId":3,"companyId":6,"companyName":"国药集团上海医疗器械有限公司","registeredAddress":"上海市宝山区江杨南路880号厂房7幢V008","bank":"中国光大银行上海彭浦支行","accountName":"国药集团上海医疗器械有限公司","accountNumber":"36830188000041806","disableSign":0,"deleteSign":0,"createTime":"2021-05-06 10:46:15","updateTime":"2021-05-06 10:46:15","createBy":2795,"realName":"国药集团上海医疗器械有限公司admin"},"addressList":[{"addressId":27568,"addressNo":82429,"addressName":null,"provinceCode":null,"userId":null,"companyId":6,"receiverName":"/","address":"昆明高新技术产业开发区马金铺高登路1676号水科技园标准工业厂房1号办公楼4层405室,2号工业厂房一层101、102、103、104-2室","isDefault":1,"type":3,"postcode":null,"mobile":"/","updateDate":120035,"updateTime":93623,"flag":null,"deleteSign":null,"province":0,"city":0,"area":0,"dateTime":null,"provinceStr":"","cityStr":"","areaStr":"","isJde":0,"cityList":[],"areaList":[]}],"selecteAddresId":27568,"receiverNote":"/","receiverPhoneNote":"/","receiverAddressNote":"昆明高新技术产业开发区马金铺高登路1676号水科技园标准工业厂房1号办公楼4层405室,2号工业厂房一层101、102、103、104-2室","addressNoNote":82429,"province":0,"city":0,"cityList":[],"area":0,"areaList":[],"paymentAmount":"101.0000","taxRate":null,"demands":[{"demandId":null,"demandParentId":null,"demandParentCode":null,"demandCode":null,"customerId":null,"customerName":null,"customerCode":1126384,"loginName":null,"realName":null,"addressNumber":null,"mobile":null,"productName":null,"productCode":null,"sellerCompanyName":null,"sellerCompanyCode":null,"paymentType":null,"receiveBankName":null,"receiveBankAccount":null,"paymentAmount":101,"productAmount":201,"payableAmount":101,"refundAmount":null,"cancelAmount":null,"discountAmount":0,"orderStatus":null,"refundStatus":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"remark":null,"revokedReason":null,"auditById":null,"auditByName":null,"auditTime":null,"auditRemark":null,"flhsStatus":null,"pushJdeStatus":null,"createTime":null,"updateTime":null,"submitTime":null,"pushJdeTime":null,"successTime":null,"auditStatus":null,"deleteSign":null,"firstOrderFlag":null,"demandItems":[{"demandSkuId":null,"demandId":null,"distributionId":null,"companyCode":"00111","demandCode":null,"demandParentId":null,"sellerCompanyId":null,"sellerCompanyName":null,"sellerCompanyCode":null,"customerCode":null,"productLineCode":"2012","productLineName":"麦迪康","propertyStr":null,"storageType":"002","suppDist":null,"productId":7438,"productName":"检查手套","productCode":"14037826","productNature":null,"brandName":null,"optionStr":"1131C 丁腈无粉 M 蓝紫色","imageUrl":"","lineNumber":null,"price":100,"rebateId":null,"originalPrice":null,"biddingDiscountTax":null,"salesDiscountTax":null,"quantity":1,"sumQuantity":null,"sendQuantity":null,"lackQuantity":null,"cancelQuantity":null,"cancelAmount":null,"refundQuantity":null,"refundAmount":null,"discountQuantity":null,"discountAmount":null,"subtotal":100,"measuringUnit":"只","auxiliaryMeasuringUnit":null,"procurementMeasuringUnit":null,"pricingMeasuringUnit":null,"materialCode":"SFTCN1131C-0100100","manufacturer":"麦迪康(马来西亚)公司 A R Medicom (M) Sdn Bhd","produceRegisterNum":"国械备20181202号","riskRank":null,"productClassify":null,"createTime":null,"updateTime":null,"deleteSign":null,"calCancelFlag":null,"refundFlag":null,"discountRate":100,"realPay":100,"promotionPrice":null,"promotionTotalPrice":0,"demandParentCode":null,"regionId":null,"regionName":null,"spitSign":null,"activityAmount":0,"couponAmount":49.75,"activityUnitAmount":0,"couponUnitAmount":null,"activityBasicId":null,"couponSgin":null,"couponSgin2":null,"returnQuantity":null,"returnAmount":null,"customerId":null,"prescription":null,"specifications":null,"lineCodeDelete":null,"sdOutStorage":null,"licenseNo":null,"demandCodes":null,"areaName":null,"agreementPriceId":null,"offerPrice":null,"orderMark":null,"totalPrice":null,"productLimitBuyList":null,"giftSign":0,"giftProductCode":null,"activityCarDataVoList":[],"orderSource":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"rebateTripId":null,"allSign":null,"salesReturn":null,"nowAmount":null,"taxSign":0,"plusMinuKey":null,"rebateRule":null,"areaPrice":null,"lockType":null,"estimatedDeliveryDate":null,"licenseInfoFeignDtos":null,"receivedQty":null,"lineNumberOrg":null,"changeSgin":null,"addSgin":null,"ptbfa1":null,"ptbfa2":null,"ptbfa3":null,"ptbfa4":null,"ptbfa5":null,"yapeiPriceId":null,"ypLinePromotion":null,"yapeiPrice":null,"companyId":6,"buyerCartId":null,"userReceiveIdx":null,"userReceiveIdx2":null,"limitNum":null,"productLimitBuyId":null,"alreadyBuyNum":null,"limitBuySign":0,"proposeNum":null,"takeEffectRange":null,"takeEffectTime":null,"endTime1":null,"groupId":355,"fsGroupId":355,"proposalQuantity":null,"proposalSign":0,"manufacturerUserNo":null,"manufacturerUserDesc":null,"manufacturerProductNo":null,"manufacturerProductDesc":null,"manufacturerUserId":null,"manufacturerProductId":null,"busProductCode":null,"paidTime":null,"customerName":null,"paymentAmount":null,"specQuantity":null,"disQuantity":null,"fulfilledQuantity":null,"fulCancelQuantity":null,"couponId":null,"couponId2":null,"limitS":null,"starts":null,"ends":null,"userId":null,"productTax":"","taxRate":0.13,"demandSplitSign":"1","hospitalHopeDate":null,"uniqueKey":null,"productType":null,"activityRuleId":null,"allowanceBeginTime":null,"allowanceEndTime":null,"sign":null,"differenceActivityUserId":null,"groupNumber":1,"groupName":"套包测试","skuGroup":{"id":null,"groupId":355,"companyCode":"00111","groupProductType":4,"createTime":null,"updateTime":null,"demandSkuId":null,"demandId":null,"dataJson":"{\\\"groupCode\\\":\\\"cpg00659551\\\",\\\"groupName\\\":\\\"套包测试\\\",\\\"groupCode1\\\":\\\"cpg00659551\\\",\\\"groupPrice\\\":201,\\\"groupProductType\\\":4,\\\"realPay\\\":201,\\\"subtotal\\\":201,\\\"quantity\\\":1,\\\"calSubFreName\\\":\\\"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\\\\\"color:red\\\\\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\\\\\"color:red\\\\\\\">1</span>副\\\",\\\"subList\\\":[{\\\"activityUnitAmount\\\":\\\"100.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14037826\\\"},{\\\"activityUnitAmount\\\":\\\"101.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14479934\\\"}]}","lineNumber":null,"freseniusPriceId":null,"groupNumber":1,"demandSkuList":null,"demandSkuVOList":null,"groupCode":"cpg00659551","groupName":"套包测试","groupCode1":"cpg00659551","groupPrice":201,"realPay":201,"subtotal":201,"quantity":1,"calSubFreName":"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\"color:red\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\"color:red\\\">1</span>副","subList":[{"activityUnitAmount":"100.0","quantity":1,"productCode":"14037826"},{"activityUnitAmount":"101.0","quantity":1,"productCode":"14479934"}],"_rebateType":false},"subList":null,"dataJson":null,"skuMergeSign":null,"freseniusPriceId":null,"quantityAndGroupAll":1,"booleaTime":null,"spitSgin":0,"groupSpitSign":0,"sort":0,"circleArea":null,"purchaseEntryId":null,"mustInstallDate":false,"installedDate":null,"installedDateStr":null,"demandLines":null,"subLineNumber":null,"demandSubCode":null,"propertyName":null,"propertyVal":null,"propertyNote":null,"sendManualSign":0,"activityType":0,"giftSettlementMethod":null,"giftInitQuantity":null,"packageCode":null,"giftGroupQuantity":null,"siteCompanyCode":null,"hospitalOrderType":null,"isCollectionAllocation":null,"recDifferenceQty":null,"orderStatus":null,"distributionType":null,"groupCode":"cpg00659551","groupProductType":4,"pSign":0,"backSign":0,"description":"","stockNumber":null,"priceChange":false,"rebate":false,"bol":true,"purchaseZeroProductList":[],"prePromotionPrice":null,"prepromotionTotalPrice":0,"preDiscountRate":null,"userBalance":0,"orderType":null,"rebateType":0},{"demandSkuId":null,"demandId":null,"distributionId":null,"companyCode":"00111","demandCode":null,"demandParentId":null,"sellerCompanyId":null,"sellerCompanyName":null,"sellerCompanyCode":null,"customerCode":null,"productLineCode":"2012","productLineName":"麦迪康","propertyStr":null,"storageType":"002","suppDist":null,"productId":7439,"productName":"一次性使用灭菌橡胶外科手套","productCode":"14479934","productNature":null,"brandName":null,"optionStr":"SFTCS1145E 7.5 无粉麻面","imageUrl":"https://pro-cmdc.oss-cn-beijing.aliyuncs.com/productFile/2021/04/13/bb721764-a0ca-4ff7-9d63-778803bc0c68.jpg","lineNumber":null,"price":101,"rebateId":null,"originalPrice":null,"biddingDiscountTax":null,"salesDiscountTax":null,"quantity":1,"sumQuantity":null,"sendQuantity":null,"lackQuantity":null,"cancelQuantity":null,"cancelAmount":null,"refundQuantity":null,"refundAmount":null,"discountQuantity":null,"discountAmount":null,"subtotal":101,"measuringUnit":"副","auxiliaryMeasuringUnit":null,"procurementMeasuringUnit":null,"pricingMeasuringUnit":null,"materialCode":"SFTCS1145E-0040050","manufacturer":"TG MEDICAL SDN. BHD.","produceRegisterNum":"国械注进20172661704","riskRank":null,"productClassify":null,"createTime":null,"updateTime":null,"deleteSign":null,"calCancelFlag":null,"refundFlag":null,"discountRate":100,"realPay":101,"promotionPrice":null,"promotionTotalPrice":0,"demandParentCode":null,"regionId":null,"regionName":null,"spitSign":null,"activityAmount":0,"couponAmount":50.25,"activityUnitAmount":0,"couponUnitAmount":null,"activityBasicId":null,"couponSgin":null,"couponSgin2":null,"returnQuantity":null,"returnAmount":null,"customerId":null,"prescription":null,"specifications":null,"lineCodeDelete":null,"sdOutStorage":null,"licenseNo":null,"demandCodes":null,"areaName":null,"agreementPriceId":null,"offerPrice":null,"orderMark":null,"totalPrice":null,"productLimitBuyList":null,"giftSign":0,"giftProductCode":null,"activityCarDataVoList":[],"orderSource":null,"receiverName":null,"receiverContact":null,"receiverAddress":null,"rebateTripId":null,"allSign":null,"salesReturn":null,"nowAmount":null,"taxSign":0,"plusMinuKey":null,"rebateRule":null,"areaPrice":null,"lockType":null,"estimatedDeliveryDate":null,"licenseInfoFeignDtos":null,"receivedQty":null,"lineNumberOrg":null,"changeSgin":null,"addSgin":null,"ptbfa1":null,"ptbfa2":null,"ptbfa3":null,"ptbfa4":null,"ptbfa5":null,"yapeiPriceId":null,"ypLinePromotion":null,"yapeiPrice":null,"companyId":6,"buyerCartId":null,"userReceiveIdx":null,"userReceiveIdx2":null,"limitNum":null,"productLimitBuyId":null,"alreadyBuyNum":null,"limitBuySign":0,"proposeNum":null,"takeEffectRange":null,"takeEffectTime":null,"endTime1":null,"groupId":355,"fsGroupId":355,"proposalQuantity":null,"proposalSign":0,"manufacturerUserNo":null,"manufacturerUserDesc":null,"manufacturerProductNo":null,"manufacturerProductDesc":null,"manufacturerUserId":null,"manufacturerProductId":null,"busProductCode":null,"paidTime":null,"customerName":null,"paymentAmount":null,"specQuantity":null,"disQuantity":null,"fulfilledQuantity":null,"fulCancelQuantity":null,"couponId":null,"couponId2":null,"limitS":null,"starts":null,"ends":null,"userId":null,"productTax":"","taxRate":0.13,"demandSplitSign":"1","hospitalHopeDate":null,"uniqueKey":null,"productType":null,"activityRuleId":null,"allowanceBeginTime":null,"allowanceEndTime":null,"sign":null,"differenceActivityUserId":null,"groupNumber":1,"groupName":"套包测试","skuGroup":{"id":null,"groupId":355,"companyCode":"00111","groupProductType":4,"createTime":null,"updateTime":null,"demandSkuId":null,"demandId":null,"dataJson":"{\\\"groupCode\\\":\\\"cpg00659551\\\",\\\"groupName\\\":\\\"套包测试\\\",\\\"groupCode1\\\":\\\"cpg00659551\\\",\\\"groupPrice\\\":201,\\\"groupProductType\\\":4,\\\"realPay\\\":201,\\\"subtotal\\\":201,\\\"quantity\\\":1,\\\"calSubFreName\\\":\\\"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\\\\\"color:red\\\\\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\\\\\"color:red\\\\\\\">1</span>副\\\",\\\"subList\\\":[{\\\"activityUnitAmount\\\":\\\"100.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14037826\\\"},{\\\"activityUnitAmount\\\":\\\"101.0\\\",\\\"quantity\\\":1,\\\"productCode\\\":\\\"14479934\\\"}]}","lineNumber":null,"freseniusPriceId":null,"groupNumber":1,"demandSkuList":null,"demandSkuVOList":null,"groupCode":"cpg00659551","groupName":"套包测试","groupCode1":"cpg00659551","groupPrice":201,"realPay":201,"subtotal":201,"quantity":1,"calSubFreName":"检查手套(1131C 丁腈无粉 M 蓝紫色)*<span style=\\\"color:red\\\">1</span>只+一次性使用灭菌橡胶外科手套(SFTCS1145E 7.5 无粉麻面)*<span style=\\\"color:red\\\">1</span>副","subList":[{"activityUnitAmount":"100.0","quantity":1,"productCode":"14037826"},{"activityUnitAmount":"101.0","quantity":1,"productCode":"14479934"}],"_rebateType":false},"subList":null,"dataJson":null,"skuMergeSign":null,"freseniusPriceId":null,"quantityAndGroupAll":1,"booleaTime":null,"spitSgin":0,"groupSpitSign":0,"sort":0,"circleArea":null,"purchaseEntryId":null,"mustInstallDate":false,"installedDate":null,"installedDateStr":null,"demandLines":null,"subLineNumber":null,"demandSubCode":null,"propertyName":null,"propertyVal":null,"propertyNote":null,"sendManualSign":0,"activityType":0,"giftSettlementMethod":null,"giftInitQuantity":null,"packageCode":null,"giftGroupQuantity":null,"siteCompanyCode":null,"hospitalOrderType":null,"isCollectionAllocation":null,"recDifferenceQty":null,"orderStatus":null,"distributionType":null,"groupCode":"cpg00659551","groupProductType":4,"pSign":0,"backSign":0,"description":"","stockNumber":null,"priceChange":false,"rebate":false,"bol":false,"purchaseZeroProductList":[],"prePromotionPrice":null,"prepromotionTotalPrice":0,"preDiscountRate":null,"userBalance":0,"orderType":null,"rebateType":0}],"demandSubItems":null,"rebateDetail":null,"rebateAmountList":null,"productLineCode":"2012","productLineName":"麦迪康","auditLoginName":null,"showPurchaseNo":false,"isRebate":null,"isShowReate":null,"taxRate":0.13,"rebateType":0,"paymentAmountWholeLine":201,"discountAmountWholeLine":0,"payableAmountWholeLine":201,"discountRate":null,"singleRebateAmount":null,"isRebateEdit":null,"payCertUrl":null,"rebateAmount":null,"demandCance":null,"soAdd":null,"soCance":null,"orderReturn":null,"needCustomerConfirm":false,"measuringUnit":null,"productId":null,"version":null,"mainVersion":null,"agencyConfigId":null,"confirmSign":null,"replySign":null,"agencySign":null,"editIng":null,"editIngStr":null,"jdeType":null,"isElectronicSeal":null,"contractAgreementNo":null,"alesDepartmentNo":null,"alesDepartmentName":null,"salesPersonNo":null,"salesPersonName":null,"customerNote":null,"otherNote":null,"contractAgreementCode":null,"projectName":null,"projectCode":null,"regionId":null,"regionName":null,"productLineBindSign":null,"shipVia":null,"orderSource":null,"userBalance":null,"liquidCode":null,"shipmentTypeStr":null,"specifications":null,"pageStart":1,"pageSize":5,"changeSgin":null,"yapei":2,"companyId":6,"preemptConfig":null,"productSpec":null,"secondAuditSign":null,"secondAuditById":null,"secondAuditByName":null,"secondAuditTime":null,"secondAuditRemark":null,"secondAuditStatus":null,"rebateRule":"0","rebateControlSign":0,"rebateId":null,"preferenceType":null,"preferenceName":null,"disPrice":null,"lineNum":0,"auditStaySign":0,"fileList":null,"imageUrls":null,"total":null,"submitTimeStr":null,"updateTimeStr":null,"auditTimeStr":null,"acceptTime":null,"acceptTimeStr":null,"paidTime":null,"paidTimeStr":null,"erpHandingTime":null,"erpHandingTimeStr":null,"partShippingTime":null,"partShippingTimeStr":null,"allShippingTime":null,"allShippingTimeStr":null,"pushJdeTimeStr":null,"successTimeStr":null,"onlinePaySuccessTime":null,"onlinePaySuccessTimeStr":null,"bankTransactionSerial":null,"newIsTax":null,"countFormula":null,"countNumber":null,"noTaxRebateAmount":0,"isCollectionAllocation":0,"siteCompanyCode":null,"hospitalOrderType":null,"proofTime":null,"proofURL":null,"proofRemark":null,"proofSign":0,"customerCancelSign":null,"cancelRecords":null,"cancelCount":0,"updateNewTime":null,"updateNewTimeStr":null,"fsDedUseSign":null,"notice":null,"shareType":null,"singleRebateSign":null,"cf":false,"isPre":null,"showDemandAuditLineLabel":false,"orderType":null,"newDiscountRate":null,"oldOrderType":null,"oldNewDiscountRate":null,"pendding":null,"pushJdeStatusDemandSub":null,"circleGiftSign":0,"delay":null,"limitS":null,"starts":null,"ends":null,"completedS":null,"confirmDays":null,"remindS":null,"skuGroupList":null,"groupProductType":0,"purchaseId":null,"purchaseCode":null,"sdCancelTime":null,"sdTipSign":0,"receiverNote":null,"receiverPhoneNote":null,"receiverAddressNote":null,"flag":null,"sourceStr":null,"addressNoNote":null,"detailIsSpit":false,"spitSgin":null,"distributionType":null,"rebateValidity":null,"orderChangeType":null,"logoIcon":null,"detail":null,"changeBigType":null,"promotionType":2,"activityTotalAmount":0,"couponTotalAmount":100,"userReceiveId":null,"editSgin":null,"snSgin":null,"jdeOutAmount":null,"totalAllPaAmount":null,"diffShowSgin":0,"lineCodeDelete":null,"startTime":null,"endTime":null,"changeSign":null,"distributionId":null,"limitBuySign":0,"companyType":null,"afterSale":null,"csId":null,"sdStatusNodeParamList":null,"ypPromotionTotal":null,"acrossMainCode":null,"forceApprovedSign":0,"circleGiftContinueSgin":0,"customerCharge":null,"onlinePaySign":0,"recodeDemandSkuList":null,"mergeDemandSkuList":null,"inventoryNode":null,"customCode":null,"terminalSource":null,"potentialClientsId":null,"settlementStatus":null,"firstOrderAuditStatus":null,"confirmReceiptSign":null,"confirmReceiptTime":null,"afterSaleDays":null,"deliveryCompletedTime":null,"taxSign":0,"orderSplitSign":0,"demandRebateSkuList":null,"confirmTime":null,"customerPurchaseNo":null,"mustInstallDate":false,"secondAddressList":null,"splitOrMerge":null,"spitOrderSign":null,"edit":false,"productAmountWholeLine":201,"auditCompanyName":null,"auditCompanyNameCode":null,"ratio":null,"showMoreAttribute":false,"lastNoTaxDiscountAmount":0,"lastDiscountAmount":0,"showInfo":false,"addressConfig":2,"settementQuantity":2,"userBalancePrice":0,"isEdit":true,"discountRateOne":100,"totalPriceNum":0,"pSign":0}],"orderStatus":102,"userReceiveId":null,"userReceiveId2":null,"productAmount":201,"paymentType":0,"accountId":3,"receiveBankName":"国药集团上海医疗器械有限公司","receiveBankAccount":"36830188000041806","addressNumber":82429,"receiverName":"/","receiverContact":"/","receiverAddress":"昆明高新技术产业开发区马金铺高登路1676号水科技园标准工业厂房1号办公楼4层405室,2号工业厂房一层101、102、103、104-2室","buyerCartIds":[null],"sellerCompanyCode":"00111","companyId":6,"rebateType":0}}
#预期结果
checkDict31: {"demandCode": "%s"}
#测试场景三十一:验证当套包结构发生改变时,需求单审核是否会进行拦截
#套包核验接口
"url32": "/order/public/submitFreseniusCheck"
"payload32": [{"companyId":"6","customerCode":1126384,"fsGroupId":355,"groupCode":"cpg00659551","groupNumber":1,"userId":"69","sellerCompanyCode":"00111","productId":7438,"quantity":1,"groupProductType":4,"storageType":"002","price":100,"productLineCode":"2012","backSign":1,"freseniusPriceId":null,"demandCode":"16987323703568573","demandSkuId":198980},{"companyId":"6","customerCode":1126384,"fsGroupId":355,"groupCode":"cpg00659551","groupNumber":1,"userId":"69","sellerCompanyCode":"00111","productId":7439,"quantity":1,"groupProductType":4,"storageType":"002","price":101,"productLineCode":"2012","backSign":1,"freseniusPriceId":null,"demandCode":"16987323703568573","demandSkuId":198981}]
#预期结果
checkDict32: {"errType": 5}
......
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