All files / src/domains/hr/payroll/formulas/schemas payroll-formula-version.schema.ts

0% Statements 0/21
0% Branches 0/29
100% Functions 0/0
0% Lines 0/17

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                                                                     
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ collection: 'payroll_formula_versions', timestamps: true })
export class PayrollFormulaVersion extends Document {
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  tenantId!: MongooseSchema.Types.ObjectId;
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  formulaId!: MongooseSchema.Types.ObjectId;
  @Prop({ required: true }) version!: number;
  @Prop({ required: true }) expression!: string;
  @Prop({ type: MongooseSchema.Types.ObjectId })
  publishedBy?: MongooseSchema.Types.ObjectId;
}
export const PayrollFormulaVersionSchema = SchemaFactory.createForClass(
  PayrollFormulaVersion,
);
 
@Schema({ collection: 'payroll_formula_test_cases', timestamps: true })
export class PayrollFormulaTestCase extends Document {
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  tenantId!: MongooseSchema.Types.ObjectId;
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  formulaId!: MongooseSchema.Types.ObjectId;
  @Prop({ type: MongooseSchema.Types.Mixed, required: true })
  inputVariables!: Record<string, number>;
  @Prop({ required: true }) expectedOutput!: number;
  @Prop() actualOutput?: number;
  @Prop({ default: 'pending', enum: ['pending', 'passed', 'failed'] })
  result!: string;
}
export const PayrollFormulaTestCaseSchema = SchemaFactory.createForClass(
  PayrollFormulaTestCase,
);