All files / src/domains/hr/payroll/structures/schemas salary-structure-component.schema.ts

0% Statements 0/14
0% Branches 0/15
100% Functions 0/0
0% Lines 0/12

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                                               
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ collection: 'salary_structure_components', timestamps: true })
export class SalaryStructureComponent extends Document {
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  tenantId!: MongooseSchema.Types.ObjectId;
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  structureId!: MongooseSchema.Types.ObjectId;
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  componentId!: MongooseSchema.Types.ObjectId;
  @Prop() defaultAmount?: number;
  @Prop() formulaOverride?: string;
  @Prop({ default: true }) isActive!: boolean;
  @Prop({ default: 0 }) priority!: number;
}
export const SalaryStructureComponentSchema = SchemaFactory.createForClass(
  SalaryStructureComponent,
);
SalaryStructureComponentSchema.index(
  { tenantId: 1, structureId: 1, componentId: 1 },
  { unique: true },
);