From a470fc5c2c200962ffec23c79d261c02d9941786 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 29 Sep 2023 09:10:07 +1000 Subject: [PATCH] Remove status from default report for vendors --- app/Export/CSV/VendorExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Export/CSV/VendorExport.php b/app/Export/CSV/VendorExport.php index 81c70a21d0..805837ea07 100644 --- a/app/Export/CSV/VendorExport.php +++ b/app/Export/CSV/VendorExport.php @@ -143,7 +143,7 @@ class VendorExport extends BaseExport $entity['vendor.classification'] = ctrans("texts.{$vendor->classification}") ?? ''; } - $entity['status'] = $this->calculateStatus($vendor); + // $entity['status'] = $this->calculateStatus($vendor); return $entity; }