From 82cdbbf8b93ddec02ceb2a7badb702da2f2a718c Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 15:23:35 +0800 Subject: [PATCH 01/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- resources/views/pages/customers/index.blade.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/resources/views/pages/customers/index.blade.php b/resources/views/pages/customers/index.blade.php index ecc61595..046ad80a 100644 --- a/resources/views/pages/customers/index.blade.php +++ b/resources/views/pages/customers/index.blade.php @@ -268,10 +268,8 @@ -->
- - + + Export Leads Data
From f6a8f1d31ae43e87c5c52aa88556fae14fa7f4f7 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 15:35:03 +0800 Subject: [PATCH 02/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- .../views/pages/downloads/index.blade.php | 35 ++++++++++++++++++- routes/web.php | 8 ++--- 2 files changed, 38 insertions(+), 5 deletions(-) diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index 6c75f192..ec621f16 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -10,14 +10,47 @@
customers.csv - + + Download + +
+
+ + +
+
+
+ transactions.csv + Download
+
+
+
+
+ bookingData.csv + + Download + +
+
+
+
+
+
+ billingData.csv + + Download + +
+
+
+
diff --git a/routes/web.php b/routes/web.php index 7cd12903..6a6a6d67 100644 --- a/routes/web.php +++ b/routes/web.php @@ -289,8 +289,8 @@ Route::get('billplz/bills/{bill_no}', function($bill_no){ })->name('billplz.bill'); -Route::get('/export/customers/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@export')->name('customer.export'); -Route::get('/export/transactions/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@transactions'); +Route::get('/export/customers/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@export')->name('customers.export'); +Route::get('/export/transactions/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@transactions')->name('transactions.export'); Route::get('/export/null-debtor/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@nullDebtor')->name('newDebtor.export'); Route::get('/export/payment-transactions/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@paymentTransactions')->name('paymentTransactions.export'); Route::get('/export/white-form-transactions/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@whiteFormTransactions')->name('whiteFormTransactions.export'); @@ -300,8 +300,8 @@ Route::get('/export/invoice-transactions/f614e339d7058904a831aad742e24d55', 'Exp Route::get('/export/receipt-transactions/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@receiptTransactions')->name('receiptTransactions.export'); Route::get('/export/imported-invoice-mapped', 'Exports\ExportCustomersToExcelController@importedInvoiceMapped')->name('importedInvoiceMapped.export'); Route::get('/export/imported-receipt-mapped', 'Exports\ExportCustomersToExcelController@importedReceiptMapped')->name('importedReceiptMapped.export'); -Route::get('/export/analytic/booking', 'Exports\ExportAnalyticToExcelController@bookingData'); -Route::get('/export/analytic/bills', 'Exports\ExportAnalyticToExcelController@billingData'); +Route::get('/export/analytic/booking', 'Exports\ExportAnalyticToExcelController@bookingData')->name('bookingData.export');; +Route::get('/export/analytic/bills', 'Exports\ExportAnalyticToExcelController@billingData')->name('billingData.export');; Route::get('/export/customers/leads', 'Exports\ExportCustomersToExcelController@leadsData')->name('leads.export'); route::get('/export/excel/{id}', 'Exports\ExportCustomersToExcelController@exportCurrencyVendorOrder')->name('group.excel'); From 1d73bc108f9f0da41bab081c7646e0aba0ca4eb8 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 15:59:58 +0800 Subject: [PATCH 03/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- .../ExportsAnalyticBookingTransactions.php | 10 +++++----- .../Modules/Exports/Services/ExportsCustomers.php | 6 ++++-- .../Exports/Services/ExportsTransactions.php | 7 +++++-- resources/views/pages/downloads/index.blade.php | 15 ++++++++++++--- 4 files changed, 26 insertions(+), 12 deletions(-) diff --git a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php index c1e2af71..f30b2a35 100644 --- a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php @@ -51,8 +51,8 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit * @return \Illuminate\Support\Collection|mixed */ public function query() - { - return Booking::query(); + { + return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(3), Carbon::now()]); //Limit, 'expensive' query; } /** @@ -66,12 +66,12 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit $companyType[companyType::PERSONAL_BUSINESS] = 'PERSONAL_BUSINESS'; $payments = $booking->transactions()->where('type', 1)->whereIn('status', [2, 3]); - + $paymentmethondArray = PaymentMethodType::PAYMENT_METHODS_ID; $paymentmethondArray[0] = 'Hybrid'; $paymentMethod = ''; foreach ($payments->get() as $payment) { - if ( $paymentMethod == '' ) { + if ( $paymentMethod == '' ) { $paymentMethod = $payment->payment_method; } else if ( $payment->payment_method != $paymentMethod ) { $paymentMethod = 0; // set it to Hybrid @@ -104,4 +104,4 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit '', ]; } -} \ No newline at end of file +} diff --git a/app/Classes/Modules/Exports/Services/ExportsCustomers.php b/app/Classes/Modules/Exports/Services/ExportsCustomers.php index 9f314030..18498b4c 100644 --- a/app/Classes/Modules/Exports/Services/ExportsCustomers.php +++ b/app/Classes/Modules/Exports/Services/ExportsCustomers.php @@ -5,6 +5,7 @@ namespace App\Classes\Modules\Exports\Services; use App\Classes\ValueObjects\Constants\BusinessType; use App\Classes\ValueObjects\Constants\CompanyType; use App\Models\Company; +use Carbon\Carbon; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concerns\ShouldAutoSize; @@ -38,7 +39,8 @@ class ExportsCustomers implements FromQuery, WithHeadings, WithHeadingRow, WithM */ public function query() { - return Company::where('business_type', '=', 2); + return Company::where('business_type', '=', 2) + ->whereBetween('created_at', [Carbon::now()->subMonths(12), Carbon::now()]); //Limit, 'expensive' query; } /** @@ -66,4 +68,4 @@ class ExportsCustomers implements FromQuery, WithHeadings, WithHeadingRow, WithM count($company->segments()->where('segment_id', '=', 5)->get()) ? 'Exchange 1.0' : 'Exchange 2.0' ]; } -} \ No newline at end of file +} diff --git a/app/Classes/Modules/Exports/Services/ExportsTransactions.php b/app/Classes/Modules/Exports/Services/ExportsTransactions.php index 6d6751bf..a6072e38 100644 --- a/app/Classes/Modules/Exports/Services/ExportsTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsTransactions.php @@ -9,6 +9,7 @@ use App\Models\Booking; use App\Models\Company; use App\Models\Transaction; use App\Models\Wallet; +use Carbon\Carbon; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromQuery; use Maatwebsite\Excel\Concerns\WithHeadingRow; @@ -26,7 +27,9 @@ class ExportsTransactions implements FromQuery, WithHeadingRow, WithMapping, Sho */ public function query() { - return Transaction::whereIn('type', [TransactionType::PAYMENT, TransactionType::BILL])->where('owner_type', '!=',Wallet::class); + return Transaction::whereIn('type', [TransactionType::PAYMENT, TransactionType::BILL]) + ->where('owner_type', '!=',Wallet::class) + ->whereBetween('created_at', [Carbon::now()->subMonths(3), Carbon::now()]); //Limit, 'expensive' query; } /** @@ -87,7 +90,7 @@ class ExportsTransactions implements FromQuery, WithHeadingRow, WithMapping, Sho $transaction->currency_rate, $transaction->tax, $transaction->service_charge, - $transactionStatus[$transaction->status], + isset($transactionStatus[$transaction->status]) ? $transactionStatus[$transaction->status] : 'Unknown Status', \PhpOffice\PhpSpreadsheet\Shared\Date::dateTimeToExcel($transaction->created_at), \PhpOffice\PhpSpreadsheet\Shared\Date::dateTimeToExcel($transaction->updated_at), // $marking diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index ec621f16..47c338dd 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -9,7 +9,10 @@
- customers.csv +
+ customers.csv +

(last 12 months)

+
Download @@ -20,7 +23,10 @@
- transactions.csv +
+ transactions.csv +

(last 3 months)

+
Download @@ -32,7 +38,10 @@
- bookingData.csv +
+ bookingData.csv +

(last 3 months)

+
Download From 80a016be282274e7ceeed544b4d5dde8d57ffdce Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 16:13:21 +0800 Subject: [PATCH 04/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- .../Exports/Services/ExportsAnalyticBookingTransactions.php | 2 +- app/Classes/Modules/Exports/Services/ExportsTransactions.php | 2 +- resources/views/pages/downloads/index.blade.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php index f30b2a35..c268d08c 100644 --- a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php @@ -52,7 +52,7 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit */ public function query() { - return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(3), Carbon::now()]); //Limit, 'expensive' query; + return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]); //Limit, 'expensive' query; } /** diff --git a/app/Classes/Modules/Exports/Services/ExportsTransactions.php b/app/Classes/Modules/Exports/Services/ExportsTransactions.php index a6072e38..30a99200 100644 --- a/app/Classes/Modules/Exports/Services/ExportsTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsTransactions.php @@ -29,7 +29,7 @@ class ExportsTransactions implements FromQuery, WithHeadingRow, WithMapping, Sho { return Transaction::whereIn('type', [TransactionType::PAYMENT, TransactionType::BILL]) ->where('owner_type', '!=',Wallet::class) - ->whereBetween('created_at', [Carbon::now()->subMonths(3), Carbon::now()]); //Limit, 'expensive' query; + ->whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]); //Limit, 'expensive' query; } /** diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index 47c338dd..2e54efaa 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -25,7 +25,7 @@
transactions.csv -

(last 3 months)

+

(last 2 months)

Download @@ -40,7 +40,7 @@
bookingData.csv -

(last 3 months)

+

(last 2 months)

Download From ea49856890d3e1a7b506566a3f7249ea6d1a7568 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 16:31:19 +0800 Subject: [PATCH 05/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- .../Exports/Services/ExportsAnalyticBookingTransactions.php | 2 +- .../Modules/Exports/Services/ExportsTransactions.php | 6 +++--- resources/views/pages/downloads/index.blade.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php index c268d08c..3ab92d23 100644 --- a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php @@ -52,7 +52,7 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit */ public function query() { - return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]); //Limit, 'expensive' query; + return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(1), Carbon::now()]); //Limit, 'expensive' query; } /** diff --git a/app/Classes/Modules/Exports/Services/ExportsTransactions.php b/app/Classes/Modules/Exports/Services/ExportsTransactions.php index 30a99200..32ca5cc8 100644 --- a/app/Classes/Modules/Exports/Services/ExportsTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsTransactions.php @@ -27,9 +27,9 @@ class ExportsTransactions implements FromQuery, WithHeadingRow, WithMapping, Sho */ public function query() { - return Transaction::whereIn('type', [TransactionType::PAYMENT, TransactionType::BILL]) - ->where('owner_type', '!=',Wallet::class) - ->whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]); //Limit, 'expensive' query; + return Transaction::whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]) //Limit, 'expensive' query; + ->whereIn('type', [TransactionType::PAYMENT, TransactionType::BILL]) + ->where('owner_type', '!=',Wallet::class); } /** diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index 2e54efaa..8ee2631b 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -25,7 +25,7 @@
transactions.csv -

(last 2 months)

+

(last 1 month)

Download From e9fa9fe592909e0af83c3209f9067e8e40071e58 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 16:32:45 +0800 Subject: [PATCH 06/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- resources/views/pages/downloads/index.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index 8ee2631b..d36ed6f6 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -25,7 +25,7 @@
transactions.csv -

(last 1 month)

+

(last 2 months)

Download @@ -40,7 +40,7 @@
bookingData.csv -

(last 2 months)

+

(last 1 month)

Download From c6329c2a423348e2d7064b8eaee67e31a374d457 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 16:58:38 +0800 Subject: [PATCH 07/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- .../Exports/Services/ExportsAnalyticBookingTransactions.php | 2 +- app/Classes/Modules/Exports/Services/ExportsTransactions.php | 2 +- resources/views/pages/downloads/index.blade.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php index 3ab92d23..c268d08c 100644 --- a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php @@ -52,7 +52,7 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit */ public function query() { - return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(1), Carbon::now()]); //Limit, 'expensive' query; + return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]); //Limit, 'expensive' query; } /** diff --git a/app/Classes/Modules/Exports/Services/ExportsTransactions.php b/app/Classes/Modules/Exports/Services/ExportsTransactions.php index 32ca5cc8..b66cf878 100644 --- a/app/Classes/Modules/Exports/Services/ExportsTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsTransactions.php @@ -27,7 +27,7 @@ class ExportsTransactions implements FromQuery, WithHeadingRow, WithMapping, Sho */ public function query() { - return Transaction::whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]) //Limit, 'expensive' query; + return Transaction::whereBetween('created_at', [Carbon::now()->subMonths(1), Carbon::now()]) //Limit, 'expensive' query; ->whereIn('type', [TransactionType::PAYMENT, TransactionType::BILL]) ->where('owner_type', '!=',Wallet::class); } diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index d36ed6f6..bcd78fcc 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -25,7 +25,7 @@
transactions.csv -

(last 2 months)

+

(last 1 months)

Download @@ -40,7 +40,7 @@
bookingData.csv -

(last 1 month)

+

(last 2 month)

Download From e55c2bd1d67be728ea4f16ad658a1d064468912a Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 17:16:09 +0800 Subject: [PATCH 08/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- resources/views/pages/downloads/index.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index bcd78fcc..8ee2631b 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -25,7 +25,7 @@
transactions.csv -

(last 1 months)

+

(last 1 month)

Download @@ -40,7 +40,7 @@
bookingData.csv -

(last 2 month)

+

(last 2 months)

Download From b42c1071e101defc203aac94eacacf5a59ecc9ec Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 17:50:07 +0800 Subject: [PATCH 09/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- .../Exports/Services/ExportsAnalyticBookingTransactions.php | 2 +- resources/views/pages/downloads/index.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php index c268d08c..201d9e4a 100644 --- a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php @@ -52,7 +52,7 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit */ public function query() { - return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonths(2), Carbon::now()]); //Limit, 'expensive' query; + return Booking::query()->whereBetween('created_at', [Carbon::now()->subDays(45), Carbon::now()]); //Limit, 'expensive' query; } /** diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index 8ee2631b..1ac85867 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -40,7 +40,7 @@
bookingData.csv -

(last 2 months)

+

(last 45 days)

Download From bd7903f998632777f3a28ccc573371c6ffad10db Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 18:18:02 +0800 Subject: [PATCH 10/16] Laravel Vapor - New UI for admin to download reports (sync code from Shipping Portal) --- .../Exports/Services/ExportsAnalyticBookingTransactions.php | 2 +- resources/views/pages/downloads/index.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php index 201d9e4a..a4252e9b 100644 --- a/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsAnalyticBookingTransactions.php @@ -52,7 +52,7 @@ class ExportsAnalyticBookingTransactions implements FromQuery, WithHeadings, Wit */ public function query() { - return Booking::query()->whereBetween('created_at', [Carbon::now()->subDays(45), Carbon::now()]); //Limit, 'expensive' query; + return Booking::query()->whereBetween('created_at', [Carbon::now()->subMonth(1), Carbon::now()]); //Limit, 'expensive' query; } /** diff --git a/resources/views/pages/downloads/index.blade.php b/resources/views/pages/downloads/index.blade.php index 1ac85867..1cf3a36b 100644 --- a/resources/views/pages/downloads/index.blade.php +++ b/resources/views/pages/downloads/index.blade.php @@ -40,7 +40,7 @@
bookingData.csv -

(last 45 days)

+

(last 1 month)

Download From 6c77c575b3a0dd9b31dbe85ae55d8648b3ffd740 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 12 Oct 2024 22:58:36 +0800 Subject: [PATCH 11/16] Laravel Vapor - latest code from master branch --- .../bookings/sections/SupplierPendingOrdersSectionComponent.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue b/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue index f171ec83..2adb9a43 100644 --- a/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue +++ b/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue @@ -124,7 +124,6 @@