Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #389 from kmcwebdev/development
Browse files Browse the repository at this point in the history
Fix reimbursement expenseDate formatting
  • Loading branch information
csulit authored Oct 16, 2023
2 parents dd2415b + b489b83 commit 088001c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/finance/services/reimbursement.approve.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export class ReimbursementApproveService {
fullName: reimbursement?.full_name || 'No name set',
employeeId: reimbursement?.employee_id || 'No employee id set',
expenseType: reimbursement.expense_type,
expenseDate: reimbursement.created_at,
expenseDate: reimbursement.created_at.toString(),
amount: reimbursement.amount,
receiptsAttached: reimbursement.attachment,
};
Expand Down

0 comments on commit 088001c

Please sign in to comment.