diff --git a/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php b/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php index a0cd1d3e..61f0e17d 100644 --- a/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php @@ -109,10 +109,12 @@ class ExportsPaymentTransactions implements FromQuery, WithHeadings, WithHeading switch($item->reference){ case 'SHIPPING_FEE': $furtherDescription .= str_replace('X1 Freight Service Charge
', '', $item->name)."\n"; + break; + case 'OVER_WEIGHT_CHARGES': case 'MIN_CBM_CHARGES': $furtherDescription .= $item->name.' '.$item->quantity.' CBM'."\n"; - case 'OVER_WEIGHT_CHARGES': - $furtherDescription .= $item->name.' '.$item->quantity.' CBM'."\n"; + break; + default: $furtherDescription .= $item->name.' '.$item->quantity.' X '.$item->price."\n";