service=app('ForeignHaiRoboticsService'); $stockInfo = [ "skuCode" => "TEST-BSSKU",//商品编码 sku "qty" => 9,//数量 ]; $bin = [ "taskCode" => "TEST-BS2010100001",//任务编号 全局唯一 "binCode" => "TEST-BIN01",//料箱编码 "fromLocCode" => "HAIB1-02-01",//源库位编码 "toLocCode" => "HAIB1-02-01",//目标库位编码 出库填多个,表示这些库位都可以支持 "sequence" => -1,//出库顺序 -1表示没有顺序,只有移库出库时需要指定顺序,其他可为-1 "stockInfo" => [$stockInfo],//商品信息 ]; /*$this->request = [[ "groupCode" => 1,//组号/波次号 一组任务需要一起完成,再开始下一组任务;没有组任务的限制默认传-1或空 "taskMode" => 3,//任务模式 值 1 (输送线入库)值 2 (输送线出库)值 3(货架到缓存货架)值4(货架到流利货架) "priority" => 99,//优先级 1-2147483647 1最低 "sequenceFlag" => -1,//是否需要有序 1:需要有序 0:不需要有序 "bins" => [$bin],//可执行货箱任务 ]];*/ $this->request = [[ "taskMode" => 2, "bins"=>[[ "taskCode" =>"TEST-BS2011160004", "binCode" => "IDE0000034", // "fromLocCode" => "BIN-IN1", "toLocCode" => "BIN-OUT1", ]], "groupCode" => 4, "priority" => 20, "sequenceFlag" => -1, ]]; } public function relocate(Request $request){ $response = Http::post(config('api.haiq.storage.moveBin'),$this->request); if (!$response->ok()){ app('LogService')->log(__METHOD__,"haiq-请求失败,路径异常","REQUEST:".json_encode($this->request)." | RESPONSE:".$response); return ['success'=>false,"data"=>$response->body()]; } if (($response["code"] ?? false) && $response["code"] != 200){ app('LogService')->log(__METHOD__,"haiq-料箱出库失败","REQUEST:".json_encode($this->request)." | RESPONSE:".$response); return ['success'=>false,"data"=>$response["errMsg"]]; } if (($response["status"] ?? false) && $response["status"] == 500){ app('LogService')->log(__METHOD__,"haiq-料箱出库失败","REQUEST:".json_encode($this->request)." | RESPONSE:".$response); return ['success'=>false,"data"=>$response["msg"]]; } app('LogService')->log(__METHOD__,"haiq-料箱出库成功","REQUEST:".json_encode($this->request)." | RESPONSE:".$response); return ["success"=>true]; } public function moveBin(Request $request){ } public function taskUpdate(Request $request){ $this->service->taskUpdate(); app('LogService')->log(__METHOD__,__FUNCTION__,json_encode($request->all())); return ['code'=>200,'errMsg'=>'','data'=>$request->all()]; } public function exception(Request $request){ $this->service->taskUpdate(); app('LogService')->log(__METHOD__,__FUNCTION__,json_encode($request->all())); return ['code'=>200,'errMsg'=>'','data'=>$request->all()]; } }