All files / src/domains/hr/leave/dashboard dashboard.service.ts

0% Statements 0/21
0% Branches 0/16
0% Functions 0/5
0% Lines 0/19

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                                                                                                                                             
import { Injectable } from '@nestjs/common';
import { InjectModel } from '@nestjs/mongoose';
import { Model } from 'mongoose';
import {
  LeaveRequest,
  EmployeeLeaveAccount,
  CompOffEarning,
  LeaveDailyMetrics,
} from '../schemas';
 
@Injectable()
export class DashboardService {
  constructor(
    @InjectModel(LeaveRequest.name) private requestModel: Model<LeaveRequest>,
    @InjectModel(EmployeeLeaveAccount.name)
    private accountModel: Model<EmployeeLeaveAccount>,
    @InjectModel(CompOffEarning.name)
    private compOffModel: Model<CompOffEarning>,
    @InjectModel(LeaveDailyMetrics.name)
    private metricsModel: Model<LeaveDailyMetrics>,
  ) {}
 
  async getMySummary(tenantId: string, employeeId: string) {
    const activeLeaves = await this.requestModel.countDocuments({
      tenantId,
      employeeId,
      status: 'approved',
    });
    const pending = await this.requestModel.countDocuments({
      tenantId,
      employeeId,
      status: 'pending_approval',
    });
    return { activeLeaves, pendingApprovals: pending };
  }
 
  async getMyBalances(
    tenantId: string,
    employeeId: string,
    leavePeriodId: string,
  ) {
    return this.accountModel
      .find({ tenantId, employeeId, leavePeriodId })
      .exec();
  }
 
  async getTeamSummary(tenantId: string, managerId: string) {
    // In real app, resolve team members from direct reports hierarchy
    const teamPending = await this.requestModel.countDocuments({
      tenantId,
      status: 'pending_approval',
    });
    return { pendingCount: teamPending };
  }
 
  async getHRSummary(tenantId: string) {
    const today = new Date().toISOString().split('T')[0];
    const leavesToday = await this.requestModel.countDocuments({
      tenantId,
      status: 'approved',
      startDate: { $lte: today },
      endDate: { $gte: today },
    });
    const pending = await this.requestModel.countDocuments({
      tenantId,
      status: 'pending_approval',
    });
    return { onLeaveToday: leavesToday, pendingApprovals: pending };
  }
}