All files / quality/schemas ncr-capa.schema.ts

100% Statements 24/24
80% Branches 16/20
100% Functions 0/0
100% Lines 20/20

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 511x 1x     1x   1x     1x     1x     1x     1x     1x     1x 1x     1x   1x     1x     1x     1x     1x     1x     1x 1x  
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ timestamps: true, collection: 'qms_non_conformances' })
export class QmsNonConformance extends Document {
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true, index: true })
  tenantId: MongooseSchema.Types.ObjectId;
 
  @Prop({ required: true })
  ncrNumber: string;
 
  @Prop({ type: MongooseSchema.Types.ObjectId })
  inspectionLotId?: MongooseSchema.Types.ObjectId;
 
  @Prop({ required: true })
  defectDescription: string;
 
  @Prop({ default: 'reported', index: true })
  status: string; // 'reported' | 'containment' | 'disposition_approved' | 'closed'
 
  @Prop({ default: 'hold' })
  dispositionType: string; // 'hold' | 'rework' | 'scrap' | 'accept_as_is'
}
 
export const QmsNonConformanceSchema = SchemaFactory.createForClass(QmsNonConformance);
QmsNonConformanceSchema.index({ tenantId: 1, ncrNumber: 1 }, { unique: true });
 
@Schema({ timestamps: true, collection: 'qms_capas' })
export class QmsCapa extends Document {
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true, index: true })
  tenantId: MongooseSchema.Types.ObjectId;
 
  @Prop({ required: true })
  capaNumber: string;
 
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  nonConformanceId: MongooseSchema.Types.ObjectId;
 
  @Prop({ required: true })
  correctiveAction: string;
 
  @Prop({ default: false })
  effectivenessVerified: boolean;
 
  @Prop({ default: 'draft', index: true })
  status: string; // 'draft' | 'approved' | 'action_in_progress' | 'closed'
}
 
export const QmsCapaSchema = SchemaFactory.createForClass(QmsCapa);
QmsCapaSchema.index({ tenantId: 1, capaNumber: 1 }, { unique: true });