| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <?php
- namespace App\Http\Controllers\api\thirdPart\haiq;
- use App\Http\Requests\ForeignHaiRobotic_taskUpdateRequest;
- use App\Services\ForeignHaiRoboticsService;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Http;
- use Ramsey\Uuid\Uuid;
- class StorageController
- {
- protected $post;
- /** @var ForeignHaiRoboticsService $service */
- private $service;
- public function __construct()
- {
- $this->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->post = [[
- "taskMode" => 2,
- "bins"=>[[
- "taskCode" =>'t'.microtime(true),
- "binCode" => "IDE0000130",
- "fromLocCode" => "BIN-IN1",
- "toLocCode" => "BIN-OUT1",
- ],],
- "groupCode" => 'g'.microtime(true),
- "priority" => 20,
- "sequenceFlag" => 1,
- ]];
- $this->post2 = [[
- "taskMode" => 1,
- "bins"=>[[
- "taskCode" =>'t'.microtime(true),
- "binCode" => "IDE0005676",
- "fromLocCode" => "BIN-IN1",
- "toLocCode" => "BIN-OUT1",
- ],],
- "groupCode" => 'g'.microtime(true),
- "priority" => 20,
- "sequenceFlag" => 1,
- ]];
- $this->backIn = [[
- "taskMode" => 1,
- "bins"=>[[
- "taskCode" =>"testIn1ax",
- "binCode" => "IDE0000007",
- "fromLocCode" => "BIN-IN1",
- "toLocCode" => "",
- ],[
- "taskCode" =>"testIn2ax",
- "binCode" => "IDE0000129",
- "fromLocCode" => "BIN-IN1",
- "toLocCode" => "",
- ],],
- "groupCode" => 'WMx135ax',
- "priority" => 20,
- "sequenceFlag" => 1,
- ]];
- $this->backIn2 = [[
- "taskMode" => 6,
- "bins"=>[[
- "taskCode" =>'t'.microtime(true),
- "binCode" => "IDE0000130",
- "fromLocCode" => "HAIB2-01-03",
- "toLocCode" => "",
- ],],
- "groupCode" => 'g'.microtime(true),
- "priority" => 20,
- "sequenceFlag" => 1,
- ]];
- $this->move = [[
- "taskMode" => 3,
- "bins"=>[[
- "taskCode" =>'t'.Uuid::uuid4(),
- "binCode" => "IDE0005678",
- "fromLocCode" => "",
- "toLocCode" => "HAIB1-03-01",
- ],[
- "taskCode" =>'t'.Uuid::uuid4(),
- "binCode" => "IDE0004975",
- "fromLocCode" => "",
- "toLocCode" => "HAIB1-03-02",
- ],],
- "groupCode" => 'g'.microtime(true),
- "priority" => 20,
- "sequenceFlag" => 1,
- ]];//128,129.127
- $this->move2 = [[
- "taskMode" => 6,
- "bins"=>[
- [
- "taskCode" =>'t'.Uuid::uuid4(),
- "binCode" => "IDE0005711",
- "fromLocCode" => "HAIB1-01-02", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- "toLocCode" => "",
- ],
- [
- "taskCode" =>'t'.Uuid::uuid4(),
- "binCode" => "IDE0005680",
- "fromLocCode" => "HAIB1-02-02", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- "toLocCode" => "",
- ],
- // ,[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005680",
- // "fromLocCode" => "HAIB2-03-02", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005676",
- // "fromLocCode" => "HAIB2-03-01", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005714",
- // "fromLocCode" => "HAIB2-02-03", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005677",
- // "fromLocCode" => "HAIB2-02-02", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005682",
- // "fromLocCode" => "HAIB2-02-01", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005679",
- // "fromLocCode" => "HAIB2-01-03", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0000166",
- // "fromLocCode" => "HAIB2-01-02", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005710",
- // "fromLocCode" => "HAIB2-01-01", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0005678",
- // "fromLocCode" => "HAIB1-03-01", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],[
- // "taskCode" =>'t'.Uuid::uuid4(),
- // "binCode" => "IDE0004975",
- // "fromLocCode" => "HAIB1-03-02", //B1是面对架货右手,从右往左数列,第三个数字从下往上数行
- // "toLocCode" => "",
- // ],
- ],
- "groupCode" => 'g'.microtime(true),
- "priority" => 20,
- "sequenceFlag" => 1,
- ]];
- $this->move3 = [[
- "taskMode" => 6,
- "bins"=>[[
- "taskCode" =>"testm11",
- "binCode" => "IDE0000128",
- "fromLocCode" => "HAIB2-01-01",
- "toLocCode" => "",
- ],[
- "taskCode" =>"testm21",
- "binCode" => "IDE000129",
- "fromLocCode" => "HAIB2-02-01",
- "toLocCode" => "",
- ],[
- "taskCode" =>"testm31",
- "binCode" => "IDE0000127",
- "fromLocCode" => "HAIB2-03-01",
- "toLocCode" => "",
- ],],
- "groupCode" => 'WMm2',
- "priority" => 20,
- "sequenceFlag" => 1,
- ]];
- $this->lightOn = [
- "areaCode"=> "1004",
- "PTLAction"=> 1,
- "PTLSettings"=> [
- "color"=> 1,
- "frequency"=> 1
- ],
- "displayInfo"=> [
- "detail01"=> "detail01",
- "detail02"=> "detail02",
- "detail03"=> "detail03",
- "qrCode"=> "qrCode",
- "qty00"=> "11",
- "qty01"=> 1,
- "qty02"=> 2,
- "title"=> "title",
- "uomDesc01"=> "uo",
- "uomDesc02"=> "uo"
- ],
- "locCode"=> "HAIB2-02-03"
- ];
- $this->lightOff = [
- "PTLAction"=> 0,
- "locCode"=> "HAIB2-02-03"
- ];
- }
- public function relocate(Request $request,$post){
- $response = Http::post(config('api.haiq.storage.moveBin'),$post);
- if (!$response->ok()){
- app('LogService')->log(__METHOD__,"haiq-请求失败,路径异常","REQUEST:".json_encode($this->post)." | RESPONSE:".$response);
- return ['success'=>false,"data"=>$response->body()];
- }
- if (($response["code"] ?? false) && $response["code"] != 200){
- app('LogService')->log(__METHOD__,"haiq-料箱出库失败","REQUEST:".json_encode($this->post)." | RESPONSE:".$response);
- return ['success'=>false,"data"=>$response["errMsg"]];
- }
- if (($response["status"] ?? false) && $response["status"] == 500){
- app('LogService')->log(__METHOD__,"haiq-料箱出库失败","REQUEST:".json_encode($this->post)." | RESPONSE:".$response);
- return ['success'=>false,"data"=>$response["msg"]];
- }
- app('LogService')->log(__METHOD__,"haiq-料箱出库成功","REQUEST:".json_encode($this->post)." | RESPONSE:".$response);
- return ["success"=>true];
- }
- public function light(Request $request,$post){
- $response = Http::post(config('api.haiq.storage.light'),$post);
- return $response->body();
- }
- public function moveBinOut(Request $request){
- return $this->relocate($request,$this->post);
- }
- public function postBin2(Request $request){
- return $this->relocate($request,$this->post2);
- }
- public function moveBinIn(Request $request){
- return $this->relocate($request,$this->backIn);
- }
- public function moveBinIn2(Request $request){
- return $this->relocate($request,$this->backIn2);
- }
- public function moveBinM(Request $request){
- return $this->relocate($request,$this->move);
- }
- public function moveBinM2(Request $request){
- return $this->relocate($request,$this->move2);
- }
- public function lightOn(Request $request){
- return $this->light($request,$this->lightOn);
- }
- public function lightOff(Request $request){
- return $this->light($request,$this->lightOff);
- }
- public function taskUpdate(ForeignHaiRobotic_taskUpdateRequest $request){
- try{
- $this->service->taskUpdate(
- // $request['groupCode']
- $request['taskCode']
- ,$request['updateEventType']
- ,$request['status']
- ,$request['binCode']
- // ,$request['kubotId']
- // ,$request['description']
- );
- return ['code'=>200,'errMsg'=>'','data'=>$request->all()];
- }catch (\Exception $e){
- return ['code'=>$e->getCode(),'errMsg'=>$e->getMessage(),'data'=>$request->all()];
- }
- }
- public function exception(Request $request){
- $this->service->excepted('海柔异常','',json_encode($request));
- return ['code'=>200,'errMsg'=>'','data'=>$request->all()];
- }
- }
|