update deptno for transactions export

This commit is contained in:
omair saleh
2022-04-11 11:39:24 +08:00
parent df6a96addd
commit 3b15aef71a
2 changed files with 9 additions and 5 deletions
@@ -39,7 +39,8 @@ class ExportsPaymentTransactions implements FromQuery, WithHeadings, WithHeading
'DetailDescription',
'Qty',
'UnitPrice',
'AccNo'
'AccNo',
'DeptNo'
];
}
@@ -100,7 +101,8 @@ class ExportsPaymentTransactions implements FromQuery, WithHeadings, WithHeading
'PLEASE REFER TO THE ATTACHED APPENDIX REF ' . $booking->marking,
1,
$transaction->amount,
'500-0000'
'500-0000',
'CIEF'
];
}
}
@@ -39,7 +39,8 @@ class ExportsWalletTransactions implements FromQuery, WithHeadings, WithHeadingR
'DetailDescription',
'Qty',
'UnitPrice',
'AccNo'
'AccNo',
'DeptNo'
];
}
@@ -80,7 +81,7 @@ class ExportsWalletTransactions implements FromQuery, WithHeadings, WithHeadingR
}
/**
* @param Company $transaction
* @param Transaction $transaction
*
* @return array
*/
@@ -99,7 +100,8 @@ class ExportsWalletTransactions implements FromQuery, WithHeadings, WithHeadingR
'CREDIT SALES',
1,
$transaction->amount,
'500-0000'
'500-0000',
'WALLET'
];
}
}