diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 36a8c0e4..b201f682 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -31,27 +31,27 @@ class Kernel extends ConsoleKernel protected function schedule(Schedule $schedule) { - // $schedule->command('inspire')->hourly(); - $schedule->command('mail:EmailDoToVTCommand')->dailyAt('10:00')->withoutOverlapping(); + // // $schedule->command('inspire')->hourly(); + // $schedule->command('mail:EmailDoToVTCommand')->dailyAt('10:00')->withoutOverlapping(); - $schedule->command('seasonalSegmantCompany:remove') - ->hourly() - ->appendOutputTo(storage_path().'/logs/soft-delete-seasonal-segmant-company.log') - ->withoutOverlapping(); - - $schedule->command('delete:bulk-download-files') - ->hourly() - ->appendOutputTo(storage_path().'/logs/delete-bulk-download-files.log') - ->withoutOverlapping(); - - $schedule->command('booking:expired') - ->dailyAt('02:00') - ->appendOutputTo(storage_path().'/logs/expire-booking.log') - ->withoutOverlapping(); - - // $schedule->command('purchaseOrder:autoFill') - // ->dailyAt('03:00') + // $schedule->command('seasonalSegmantCompany:remove') + // ->dailyAt('01:00') + // ->appendOutputTo(storage_path().'/logs/soft-delete-seasonal-segmant-company.log') // ->withoutOverlapping(); + + // $schedule->command('delete:bulk-download-files') + // ->hourly() + // ->appendOutputTo(storage_path().'/logs/delete-bulk-download-files.log') + // ->withoutOverlapping(); + + // $schedule->command('booking:expired') + // ->dailyAt('02:00') + // ->appendOutputTo(storage_path().'/logs/expire-booking.log') + // ->withoutOverlapping(); + + // // $schedule->command('purchaseOrder:autoFill') + // // ->dailyAt('03:00') + // // ->withoutOverlapping(); } /** diff --git a/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue b/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue index 5d47ba88..fb720737 100644 --- a/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue +++ b/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue @@ -6,7 +6,7 @@
- +
diff --git a/resources/views/errors/503.blade.php b/resources/views/errors/503.blade.php new file mode 100644 index 00000000..d8fbc8c3 --- /dev/null +++ b/resources/views/errors/503.blade.php @@ -0,0 +1,30 @@ + + + + + + Site Under Maintenance + + + +
+

We'll be back soon!

+

Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!

+

— CIEF EXCHANGE

+
+ + diff --git a/routes/web.php b/routes/web.php index 74e9ecbb..07962268 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1104,6 +1104,7 @@ Route::get('/show-white-form-transactions-in-date-range/{from_date}/{to_date}', echo 'PO approve date'; echo 'Remark'; echo 'Add Remarks'; + echo 'Upload Bank Slip'; echo ''; echo ''; echo ''; @@ -1121,7 +1122,7 @@ Route::get('/show-white-form-transactions-in-date-range/{from_date}/{to_date}', echo '' . $bill->created_at->format('d-m-Y h:i A') . ''; echo '' . $bill->issuerCompany->name . ''; echo '' . ($bill->status === ApprovalStatus::APPROVED ? $bill->updated_at->format('d-m-Y h:i A') : 'Pending Upload') . ''; - echo '' . ($po ? $po->updated_at->format('d-m-Y h:i A') : 'Pending Submission') . ''; + echo '' . ($po ? $po->updated_at->format('d-m-Y h:i A') : 'Pending Submission') . ''; echo '' . ($po ? ($po->status === ApprovalStatus::APPROVED ? $po->updated_at->format('d-m-Y h:i A') : '' ) : '' ). ''; $remarks = $bill->remarks; echo ''; @@ -1138,11 +1139,88 @@ Route::get('/show-white-form-transactions-in-date-range/{from_date}/{to_date}', echo csrf_field(); echo ''; echo ''; + echo '' ; + if ($bill->status !== ApprovalStatus::APPROVED) { + echo '
'; + echo ''; + echo ''; + echo csrf_field(); + echo '
'; + } + echo ''; echo ''; } echo ''; echo ''; + // script + echo ''; }); Route::get('check-duplicate-refunds', function () {