From 7ccf83bb95cf64e7bc6809995ed19d821bf99ed0 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Tue, 14 Oct 2025 13:19:01 +0800 Subject: [PATCH] E-Invoice - API, Sales Invoice Report with update post request to include validation --- .../ControllersLogic/UpdateBookingSalesInvoiceLogic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Classes/Modules/Bookings/ControllersLogic/UpdateBookingSalesInvoiceLogic.php b/app/Classes/Modules/Bookings/ControllersLogic/UpdateBookingSalesInvoiceLogic.php index ef604c2c..ba994141 100644 --- a/app/Classes/Modules/Bookings/ControllersLogic/UpdateBookingSalesInvoiceLogic.php +++ b/app/Classes/Modules/Bookings/ControllersLogic/UpdateBookingSalesInvoiceLogic.php @@ -67,7 +67,7 @@ class UpdateBookingSalesInvoiceLogic extends AbstractControllerLogic $dto = new UpdateBookingSalesInvoiceDTO($data); $this->canUpdateBookingSalesInvoice->passes($dto); - ProcessSalesInvoiceReportV2CommandJob::dispatch($dto->toArray()); + // ProcessSalesInvoiceReportV2CommandJob::dispatch($dto->toArray()); return $this->response([]); }