Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; import { Document, Schema as MongooseSchema } from 'mongoose'; @Schema({ timestamps: true, collection: 'overtime_policies' }) export class OvertimePolicy extends Document { @Prop({ required: true, index: true }) tenantId: string; @Prop({ required: true }) policyCode: string; @Prop({ required: true }) policyName: string; @Prop() description: string; @Prop({ default: true }) preApprovalRequired: boolean; @Prop({ default: 30 }) minimumQualifyingMinutes: number; @Prop({ default: 15 }) roundingMinutes: number; @Prop({ default: 240 }) dailyCapMinutes: number; @Prop({ default: 1200 }) weeklyCapMinutes: number; @Prop({ default: 4800 }) monthlyCapMinutes: number; @Prop({ default: true }) allowWeekdayOvertime: boolean; @Prop({ default: true }) allowWeekendOvertime: boolean; @Prop({ default: true }) allowHolidayOvertime: boolean; @Prop({ default: 'active' }) status: string; } export const OvertimePolicySchema = SchemaFactory.createForClass(OvertimePolicy); OvertimePolicySchema.index({ tenantId: 1, policyCode: 1 }, { unique: true }); @Schema({ timestamps: true, collection: 'overtime_requests' }) export class OvertimeRequest extends Document { @Prop({ required: true, index: true }) tenantId: string; @Prop({ required: true, index: true }) employeeId: string; @Prop({ required: true }) attendanceDate: string; @Prop({ required: true }) requestedMinutes: number; @Prop() reason: string; @Prop({ default: 'pending' }) status: string; // pending, approved, rejected, cancelled @Prop({ default: 0 }) approvedMinutes: number; @Prop() approvedBy: string; } export const OvertimeRequestSchema = SchemaFactory.createForClass(OvertimeRequest); @Schema({ timestamps: true, collection: 'overtime_calculations' }) export class OvertimeCalculation extends Document { @Prop({ required: true, index: true }) tenantId: string; @Prop({ required: true }) employeeId: string; @Prop({ required: true }) attendanceDate: string; @Prop({ required: true }) calculatedMinutes: number; @Prop({ default: false }) isWeekend: boolean; @Prop({ default: false }) isHoliday: boolean; @Prop({ default: Date.now }) calculatedAt: Date; } export const OvertimeCalculationSchema = SchemaFactory.createForClass(OvertimeCalculation); |