All files / src/domains/manufacturing/schemas bill-of-material.schema.ts

0% Statements 0/28
0% Branches 0/10
100% Functions 0/0
0% Lines 0/24

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                                                                                                                             
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ timestamps: true, collection: 'manufacturing_boms' })
export class BillOfMaterial extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true })
  bomCode: string;
 
  @Prop({ required: true })
  itemCode: string; // output product item code
 
  @Prop({ required: true })
  bomName: string;
 
  @Prop({ default: 1 })
  version: number;
 
  @Prop({ default: 'Draft' })
  status: string; // 'Draft' | 'Active' | 'Inactive'
 
  @Prop({ type: MongooseSchema.Types.ObjectId, ref: 'ManufacturingPlant' })
  plantId?: MongooseSchema.Types.ObjectId;
 
  @Prop({ default: 1 })
  bomQuantity: number; // reference yield batch size
 
  @Prop({ default: true })
  isActive: boolean;
}
 
export const BillOfMaterialSchema = SchemaFactory.createForClass(BillOfMaterial);
BillOfMaterialSchema.index({ tenantId: 1, bomCode: 1 }, { unique: true });
 
@Schema({ timestamps: true, collection: 'manufacturing_bom_lines' })
export class BomLine extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ type: MongooseSchema.Types.ObjectId, ref: 'BillOfMaterial', required: true })
  bomId: MongooseSchema.Types.ObjectId;
 
  @Prop({ required: true })
  componentItemCode: string;
 
  @Prop({ required: true, default: 1 })
  quantity: number;
 
  @Prop({ required: true })
  uom: string;
 
  @Prop({ default: 0 })
  scrapFactorPercent: number; // e.g. 5% scrap
 
  @Prop({ default: false })
  isPhantom: boolean; // Phantom BOM sub-assembly indicator
}
 
export const BomLineSchema = SchemaFactory.createForClass(BomLine);
BomLineSchema.index({ tenantId: 1, bomId: 1 });