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.
60 lines
2.0 KiB
60 lines
2.0 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2021-5-20
|
||
|
*/
|
||
|
// 引入主文件
|
||
|
require_once(dirname(__FILE__).'/../../SuningSdk.php');
|
||
|
require_once(dirname(__FILE__).'/../../DefaultSuningClient.php');
|
||
|
$req = new OrderdiscountactAddRequest();
|
||
|
//赋值……
|
||
|
$req->setActivityLimitType("Y");
|
||
|
$req->setActivityName("2020订单满减活动");
|
||
|
$activityProductList = new ActivityProductList();
|
||
|
$activityProductList->setProductCode("761361976");
|
||
|
$activityProductList->setProductType("00");
|
||
|
$req->setActivityProductList(array($activityProductList));
|
||
|
$req->setActivityProductType("1");
|
||
|
$req->setActivityTimesLimit("100");
|
||
|
$req->setAreaCode("0012");
|
||
|
$req->setBaseQuantifierType("1");
|
||
|
$req->setBooleanCap("1");
|
||
|
$req->setEndTime("2020-01-01 00:00:00");
|
||
|
$floorList = new FloorList();
|
||
|
$floorList->setBaseAmount("22.10");
|
||
|
$floorList->setCutAmount("11.11");
|
||
|
$floorList->setDiscountThreshold("3.4");
|
||
|
$floorList->setFloor("1");
|
||
|
$floorList->setRedirectLimit("899.99");
|
||
|
$floorList->setReduceLimit("2");
|
||
|
$req->setFloorList(array($floorList));
|
||
|
$req->setOperType("1");
|
||
|
$req->setPeopleActivityTimesLimit("1");
|
||
|
$req->setPeopleDayTimesLimit("2");
|
||
|
$req->setRewardType("1");
|
||
|
$req->setStartTime("2020-01-01 00:00:00");
|
||
|
|
||
|
//api入参校验逻辑开关,当测试稳定之后建议设置为 false 或者删除该行
|
||
|
$req -> setCheckParam('true');
|
||
|
$serverUrl = "http://openpre.cnsuning.com/api/http/sopRequest";
|
||
|
$appKey = "a13b8bd0efb06a770c57d1c370ce8ee7";
|
||
|
$appSecret = "f08ce9836c4bcfc708194594081f6690";
|
||
|
$client = new DefaultSuningClient($serverUrl,$appKey,$appSecret,'json');
|
||
|
$resp = $client -> execute($req);
|
||
|
$reqJson = getReqJson($req);
|
||
|
print_r("请求报文:\n".$reqJson);
|
||
|
print_r("\n返回响应报文:\n".$resp);
|
||
|
|
||
|
function getReqJson($req){
|
||
|
$paramsArray = $req -> getApiParams();
|
||
|
if(empty($paramsArray)){
|
||
|
$paramsArray = '';
|
||
|
}
|
||
|
$paramsArray = array('sn_request' => array('sn_body' => array(
|
||
|
"{$req -> getBizName()}" => $paramsArray
|
||
|
)));
|
||
|
return json_encode($paramsArray);
|
||
|
}
|
||
|
?>
|