All files / src/domains/hr/attendance/schemas regularization.schema.ts

0% Statements 0/40
0% Branches 0/24
100% Functions 0/0
0% Lines 0/34

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 107                                                                                                                                                                                                                     
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ timestamps: true, collection: 'attendance_regularization_requests' })
export class AttendanceRegularizationRequest extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, index: true })
  employeeId: string;
 
  @Prop({ required: true })
  attendanceDate: string;
 
  @Prop({ required: true })
  requestType: string; // Missed check-in, Missed check-out, Incorrect punch, Wrong shift, Work from home, Field work, On-duty, System issue, Device issue, Geofence issue, Other
 
  @Prop()
  requestedCheckIn: Date;
 
  @Prop()
  requestedCheckOut: Date;
 
  @Prop()
  reason: string;
 
  @Prop()
  supportingFileId: string;
 
  @Prop({ default: 'pending' })
  status: string; // pending, approved, rejected, cancelled, request-changes
 
  @Prop()
  currentApproverId: string;
 
  @Prop({ default: null })
  submittedAt: Date;
 
  @Prop({ default: null })
  resolvedAt: Date;
}
export const AttendanceRegularizationRequestSchema =
  SchemaFactory.createForClass(AttendanceRegularizationRequest);
AttendanceRegularizationRequestSchema.index({
  tenantId: 1,
  employeeId: 1,
  attendanceDate: 1,
});
AttendanceRegularizationRequestSchema.index({
  tenantId: 1,
  status: 1,
  submittedAt: -1,
});
 
@Schema({ timestamps: true, collection: 'attendance_regularization_actions' })
export class AttendanceRegularizationAction extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({
    required: true,
    type: MongooseSchema.Types.ObjectId,
    ref: 'AttendanceRegularizationRequest',
  })
  requestId: string;
 
  @Prop({ required: true })
  actionBy: string;
 
  @Prop({ required: true })
  action: string; // approved, rejected, request-changes
 
  @Prop()
  comments: string;
}
export const AttendanceRegularizationActionSchema =
  SchemaFactory.createForClass(AttendanceRegularizationAction);
 
@Schema({ timestamps: true, collection: 'attendance_corrections' })
export class AttendanceCorrection extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true })
  employeeId: string;
 
  @Prop({ required: true })
  attendanceDate: string;
 
  @Prop({
    type: MongooseSchema.Types.ObjectId,
    ref: 'AttendanceRegularizationRequest',
  })
  regularizationRequestId: string;
 
  @Prop()
  correctedCheckIn: Date;
 
  @Prop()
  correctedCheckOut: Date;
 
  @Prop({ required: true })
  correctedBy: string;
}
export const AttendanceCorrectionSchema =
  SchemaFactory.createForClass(AttendanceCorrection);