Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HRIS-412] -[BE MIGRATION] Overtime Management > Index > Approve/Disapprove All Summary Requests #366

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

EarlJosephClaro
Copy link
Contributor

Issue Link

Backlog: HRIS-412
NestJS Migration: Row 53
Slack: [Thread]

Definition of Done

  • Manager can successfully approve or disapprove All Overtime Summary Request without any issues.

Notes

Commands to run
1.Run Frontend Client

cd client
npm run dev

2.Run Backend API

cd api
dotnet run

3.Run NestJS Backend API

cd api_v2
npm run dev

Pre-condition

  1. Open localhost:3000 and sign-in as Manager User Role Account
  2. Go to my-daily-time-record page
  3. Create an Overtime Request
  4. Make sure to input your Manager User as the leader to request to
  5. Open localhost:3001/graphql
  6. Add new tab
  7. Paste this mutation code into the tab and Test it.
mutation {
  approveDisapproveAllOvertimeSummary(
    approvingDatas: {
      approveOvertimeRequests: [
        {
          userId: 81
          overtimeId: 5
          approvedMinutes: 120
          isApproved: true
          managerRemarks: "Approved by manager"
        },
        {
          userId: 81
          overtimeId: 10
          approvedMinutes: 0
          isApproved: false
          managerRemarks: "Disapproved due to incorrect filing"
        }
      ]
    }
  )
}

  1. Make sure to replace the userId and overtimeId to your existing Manager User and Overtime Request ID.
  2. Click the Execute Button at the center.

Expected Output

  • When a Manager approves an All Overtime Summary Request, the system updates the request status accordingly.
  • When a Manager disapproves a request, the system reflects the change and notifies the relevant employee.

Screenshots/Recordings

localhost:3001/graphql
image

@EarlJosephClaro EarlJosephClaro changed the title [HRIS-411] -[BE] Overtime Management > Index > Approve/Disapprove All Summary Requests [HRIS-412] -[BE] Overtime Management > Index > Approve/Disapprove All Summary Requests Mar 27, 2025
@EarlJosephClaro EarlJosephClaro self-assigned this Mar 27, 2025
@EarlJosephClaro EarlJosephClaro changed the title [HRIS-412] -[BE] Overtime Management > Index > Approve/Disapprove All Summary Requests [HRIS-412] -[BE MIGRATION] Overtime Management > Index > Approve/Disapprove All Summary Requests Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant