diff --git a/app/Classes/Modules/Exports/Services/ExportsReceivePaymentDepositEntryReport.php b/app/Classes/Modules/Exports/Services/ExportsReceivePaymentDepositEntryReport.php index abdc7fba..995b1e78 100644 --- a/app/Classes/Modules/Exports/Services/ExportsReceivePaymentDepositEntryReport.php +++ b/app/Classes/Modules/Exports/Services/ExportsReceivePaymentDepositEntryReport.php @@ -31,6 +31,7 @@ class ExportsReceivePaymentDepositEntryReport implements FromQuery, WithHeadings public function headings(): array { return [ + 'DocNo', 'DocDate', 'DebtorCode', 'Description', @@ -75,7 +76,7 @@ class ExportsReceivePaymentDepositEntryReport implements FromQuery, WithHeadings $paymentMethod = ''; if($transaction->payment_method == PaymentMethodType::WALLET){ - $paymentMethod = 'Wallet Deposit - Exc'; + $paymentMethod = 'WALLET DEPOSIT - EXC'; if($owner instanceof Booking){ return[]; } @@ -85,6 +86,7 @@ class ExportsReceivePaymentDepositEntryReport implements FromQuery, WithHeadings } return [ + '<>', //DocNo $formattedDocumentDate, //DocDate $company ? $company->debtor : '', //DebtorCode $booking ? $booking->marking : '', //Description