24 lines
827 B
PHP
24 lines
827 B
PHP
<?php
|
|
namespace app\controllers\channel;
|
|
use app\models\common\Ali;
|
|
use Yii;
|
|
class TestController extends CommonController{
|
|
public function actionIndex(){
|
|
// $res = Ali::RelationBind($this->wqData['uniacid'],[[
|
|
// 'type'=>'loginName',
|
|
// 'account'=>'399334754@qq.com',
|
|
// 'name'=>'湖北千企来网络科技有限公司',
|
|
// 'memo'=>'运费分账'
|
|
// ]]);
|
|
// $res = Ali::RelationNnbind($this->wqData['uniacid'],[[
|
|
// 'type'=>'loginName',
|
|
// 'account'=>'1260375140@qq.com',
|
|
// 'name'=>'彭杨',
|
|
// 'memo'=>'运费分账'
|
|
// ]]);
|
|
// $res = Ali::RelationBatchquery($this->wqData['uniacid']);
|
|
// dd($res);
|
|
$res = Ali::OrderSettle($this->wqData['uniacid'],'',[]);
|
|
dd($res);
|
|
}
|
|
} |