You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
841 B
15 lines
841 B
*** Settings ***
|
|
Library Collections
|
|
Library RequestsLibrary
|
|
|
|
*** Test Cases ***
|
|
Platform_audit
|
|
#平台审核
|
|
Create Session factoring ${ztbscops} ${ztbsc_header}
|
|
${reps} GET On Session factoring ztb-supply-chain-service/admin/get/factoring-audit-list params=auditStatus=0&supplyChainInstanceId=${supplyChainInstanceId}&pageNum=1&pageSize=10
|
|
${FauditId} Get From Dictionary ${reps.json()['data']['records'][0]} id #平台保理审核id
|
|
#保理审核通过
|
|
${FactoringData} Set Variable { \ \ \ \ "status":1, \ \ \ \ "id":"${FauditId}" }
|
|
${reps} POST On Session factoring ztb-supply-chain-service/admin/audit/factoring ${FactoringData.encode('utf-8')}
|
|
Should Be Equal As Strings ${reps.json()['message']} successful
|
|
sleep 0.5
|