From 7473abcc947545d61de098a83068ab22bd4757d2 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Wed, 5 Nov 2025 12:20:13 +0530 Subject: [PATCH] Remove 'Distribution Type' and 'Customer Code' columns from invoice data report table for improved clarity --- app/Console/Commands/SendInvoiceDataReport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SendInvoiceDataReport.php b/app/Console/Commands/SendInvoiceDataReport.php index 73c8785..234e8f5 100644 --- a/app/Console/Commands/SendInvoiceDataReport.php +++ b/app/Console/Commands/SendInvoiceDataReport.php @@ -203,7 +203,7 @@ class SendInvoiceDataReport extends Command $this->info($contentVars['greeting'] ?? 'Invoice Data Report'); $this->table( - ['No', 'Plant', 'Distribution Type', 'Customer Code', 'Document Number', 'Document Date', 'Trade Name', 'Location', 'Status'], + ['No', 'Plant', 'Document Number', 'Document Date', 'Trade Name', 'Location', 'Status'],//'Distribution Type', 'Customer Code', $tableData ); $this->info($contentVars['wishes'] ?? '');