diff --git a/.env.example b/.env.example index e0297ad..e028ed9 100644 --- a/.env.example +++ b/.env.example @@ -60,4 +60,8 @@ VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" # キントーン定義 KINTONE_HOST= -KINTONE_APP_CARROOM= \ No newline at end of file +KINTONE_APP_CARROOM= + +# IC定期連携 +HT_IC_WEB_API_KEY=gneriughiruebvisna8ASn9h78NN0u89sasasaAAAAan +HT_IC_WEB_URL=http://15.152.238.14 \ No newline at end of file diff --git a/app/Http/Controllers/Web/HTICWeb/SeasonTicketContractParam.php b/app/Http/Controllers/Web/HTICWeb/SeasonTicketContractParam.php index a530bf7..155c593 100644 --- a/app/Http/Controllers/Web/HTICWeb/SeasonTicketContractParam.php +++ b/app/Http/Controllers/Web/HTICWeb/SeasonTicketContractParam.php @@ -33,8 +33,8 @@ class SeasonTicketContractParam extends BaseParam 'vehicle_type_name' => $this->str(), 'parking_use_type_name' => $this->str(), 'contractor_type_line_no_name' => $this->str(), - 'position_memo' => $this->str(), - 'memo' => $this->str(), + 'position_memo' => $this->str(true), + 'memo' => $this->str(true), 'invalid_flg' => $this->boolean(), ]; } diff --git a/routes/web.php b/routes/web.php index e72fe4d..acc34cd 100644 --- a/routes/web.php +++ b/routes/web.php @@ -21,10 +21,6 @@ RouteHelper::get('/pdf', App\Http\Controllers\PDFController::class); RouteHelper::get('/image/season-ticket-contract/{id}', App\Http\Controllers\Web\Image\SeasonTicketContractImageController::class); RouteHelper::get('/test/bank', App\Http\Controllers\Web\Image\SeasonTicketContractImageController::class); -Route::get("/test/bank", function () { - return view('bank-test'); -}); - // BANK CHECK WEBHOOK RouteHelper::get('/bank-check/info', App\Http\Controllers\Web\BanckCheck\PaymentInfoController::class);