作者 王晓刚
1 个管道 的构建 通过 耗费 0 秒

合并分支 'wangxiaogang' 到 'master'

Wangxiaogang



查看合并请求 !37
... ... @@ -30,6 +30,7 @@ class LoadController extends HomeBaseController
dump(cache('param'));
dump(cache('result'));
dump(cache('result_data'));
dump(cache('data'));
}
public function notify(){
... ... @@ -43,9 +44,9 @@ class LoadController extends HomeBaseController
}
$result = json_decode($RequestData,true);
cache('result',$result);
cache('result_data',$result['data']);
cache('result_data',$result['Data']);
$indentModel = new IndentModel();
foreach($result['data'] as $key => $vo){
foreach($result['Data'] as $key => $vo){
$indent = $indentModel->findData(['logistic_code'=>$vo['LogisticCode']]);
if(!empty($indent)){
if($vo['state'] >=1 && $vo['state'] != 4){
... ...