-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d8dc071
commit ced465f
Showing
8 changed files
with
7,486 additions
and
8,366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,236 @@ | ||
import type { Payment } from "@/types/interfaces/payroll" | ||
|
||
export const employeePayrollData: Payment[] = [ | ||
{ | ||
"id": "e1", | ||
"name": "John Doe", | ||
"position": "Software Engineer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e2", | ||
"name": "Jane Smith", | ||
"position": "Data Analyst", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e3", | ||
"name": "Bob Johnson", | ||
"position": "Product Manager", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e4", | ||
"name": "Alice Brown", | ||
"position": "UX Designer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e5", | ||
"name": "Charlie Wilson", | ||
"position": "Quality Assurance", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e6", | ||
"name": "Eve Adams", | ||
"position": "Business Analyst", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e7", | ||
"name": "David Lee", | ||
"position": "Project Manager", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e8", | ||
"name": "Grace Taylor", | ||
"position": "HR Manager", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e9", | ||
"name": "Frank Martinez", | ||
"position": "DevOps Engineer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e10", | ||
"name": "Sophia White", | ||
"position": "Frontend Developer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e11", | ||
"name": "Henry Thomas", | ||
"position": "Backend Developer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e12", | ||
"name": "Olivia Wilson", | ||
"position": "Marketing Specialist", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e13", | ||
"name": "James Garcia", | ||
"position": "Finance Manager", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e14", | ||
"name": "Linda Rodriguez", | ||
"position": "Customer Support", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e15", | ||
"name": "Robert Smith", | ||
"position": "IT Administrator", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e16", | ||
"name": "Mia Hernandez", | ||
"position": "Sales Executive", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e17", | ||
"name": "Michael Davis", | ||
"position": "Legal Counsel", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e18", | ||
"name": "Emily Clark", | ||
"position": "Graphic Designer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e19", | ||
"name": "Daniel Brown", | ||
"position": "Operations Manager", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e20", | ||
"name": "Ava Martin", | ||
"position": "Researcher", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e21", | ||
"name": "William Thompson", | ||
"position": "Product Designer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e22", | ||
"name": "Sofia Anderson", | ||
"position": "Content Writer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e23", | ||
"name": "Jackson Moore", | ||
"position": "Supply Chain Manager", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e24", | ||
"name": "Ella Garcia", | ||
"position": "Quality Control", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e25", | ||
"name": "Matthew Wilson", | ||
"position": "Systems Analyst", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e26", | ||
"name": "Aria Lopez", | ||
"position": "Data Scientist", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e27", | ||
"name": "Benjamin Allen", | ||
"position": "Logistics Coordinator", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e28", | ||
"name": "Liam Taylor", | ||
"position": "Network Engineer", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"id": "e30", | ||
"name": "Christopher Anderson", | ||
"position": "Business Development", | ||
"amount": 0, | ||
"status": "pending", | ||
"email": "[email protected]" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.