Mirrors the utility statement intake on the insurance side: a policy_ocr batch/document pair of tables, a GMX parser, a matcher keyed on Policy.policyNumber, and a "Captura" screen under /polizas that proposes policy -> customer for staff to confirm. Lifts the OCR seam out of StatementsModule into its own OcrModule so PolicyOcrModule can inject OCR_PROVIDER without taking on the rest of the statement pipeline; StatementsModule now imports it and binds nothing itself. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
18 lines
712 B
TypeScript
18 lines
712 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { OcrModule } from "../ocr/ocr.module";
|
|
import { PolicyOcrController } from "./policy-ocr.controller";
|
|
import { PolicyOcrService } from "./policy-ocr.service";
|
|
import { PolicyMatcherService } from "./policy-matcher.service";
|
|
|
|
/**
|
|
* Reuses the OCR seam from OcrModule unchanged: the Tesseract provider is
|
|
* bound there and `OcrProvider` is the only thing the parsers touch. This
|
|
* module registers its own controller + service + matcher; nothing about
|
|
* utility ingestion needs to know about it.
|
|
*/
|
|
@Module({
|
|
imports: [OcrModule],
|
|
controllers: [PolicyOcrController],
|
|
providers: [PolicyOcrService, PolicyMatcherService],
|
|
})
|
|
export class PolicyOcrModule {} |