diff --git a/app/Console/Commands/initiateTunai.php b/app/Console/Commands/initiateTunai.php index 87fb606..a880525 100644 --- a/app/Console/Commands/initiateTunai.php +++ b/app/Console/Commands/initiateTunai.php @@ -12,7 +12,7 @@ class initiateTunai extends Command * * @var string */ - protected $signature = 'initiate:tunai'; + protected $signature = 'initiate:tunai {--all : all zone} {--1 : update zone 1} {--2 : update zone 2} {--3 : update zone3}'; /** * The console command description. @@ -38,7 +38,19 @@ class initiateTunai extends Command */ public function handle() { - $updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/initiate/tunai')->json(); + if($this->option('all')){ + $zone = 'all'; + }else if($this->option('1')){ + $zone = '1'; + }else if ($this->option('2')){ + $zone = '2'; + }else if ($this->option('3')){ + $zone = '3'; + } + + $updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/initiate/tunai',[ + 'zone' => $zone + ])->json(); if($updateOnline == 'successful'){ return 0; }else{ diff --git a/app/Console/Commands/keluarLelong.php b/app/Console/Commands/keluarLelong.php index 7688456..c3a66c7 100644 --- a/app/Console/Commands/keluarLelong.php +++ b/app/Console/Commands/keluarLelong.php @@ -12,7 +12,7 @@ class keluarLelong extends Command * * @var string */ - protected $signature = 'keluar:lelong'; + protected $signature = 'keluar:lelong {--all : all zone} {--1 : update zone 1} {--2 : update zone 2} {--3 : update zone3}'; /** * The console command description. @@ -38,8 +38,22 @@ class keluarLelong extends Command */ public function handle() { - $updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong')->json(); - $updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong/tawarruq')->json(); + if($this->option('all')){ + $zone = 'all'; + }else if($this->option('1')){ + $zone = '1'; + }else if ($this->option('2')){ + $zone = '2'; + }else if ($this->option('3')){ + $zone = '3'; + } + + $updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong',[ + 'zone' => $zone + ])->json(); + $updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong/tawarruq',[ + 'zone' => $zone + ])->json(); if($updateOnline == 'successful'){ return 0; }else{ diff --git a/app/Console/Commands/updateJbg.php b/app/Console/Commands/updateJbg.php index 14569d3..982e9f2 100644 --- a/app/Console/Commands/updateJbg.php +++ b/app/Console/Commands/updateJbg.php @@ -50,7 +50,9 @@ class updateJbg extends Command $updatejbg = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/updatejbgsemasa',[ 'zone' => $zone ])->json(); - $updatejbgLelong = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/updatejbglelong')->json(); + $updatejbgLelong = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/updatejbglelong',[ + 'zone' => $zone + ])->json(); $hapusGadaiNull = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/hapus/gadai/null')->json(); if($updatejbg == 'successful'){ $this->info('Success'); diff --git a/resources/views/khazanah/laporan/datalejer_am.blade.php b/resources/views/khazanah/laporan/datalejer_am.blade.php index 0d8e183..a468ff2 100644 --- a/resources/views/khazanah/laporan/datalejer_am.blade.php +++ b/resources/views/khazanah/laporan/datalejer_am.blade.php @@ -25,7 +25,7 @@