feat: add PreAuth tab, preauth selenium flow, and PreAuth No column
- Insurance Forms modal: split into Insurance Claim / PreAuth tabs - PreAuth tab: same patient info + service lines, no toggle/direct combos - Excluded Recalls & New Patients, Composite Fillings (Front/Back), Pedo from PreAuth combos - Extractions: replaced Simple/Surg/Baby Teeth EXT with Full Bony EXT (D7240) - MH PreAuth button: rewritten selenium worker to use masshealth-dental.org, selects Dental Prior Authorization (2nd option), skips Date of Service field - agent.py: convert pdf_path to pdf_url for /claim-pre-auth endpoint - nginx + Express: raise body size limit to 50mb (fix 413 errors) - DB schema: appointmentId optional on Claim, add preAuthNumber field, add PREAUTH status - Backend: create PREAUTH claim record on preauth submit, save preAuthNumber on completion - Claims table: add PreAuth No column (blue) next to Claim No Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -75,12 +75,18 @@ export async function runClaimSubmitProcessor(
|
||||
// 1) Call the Python service synchronously (BullMQ worker handles async)
|
||||
const result = await callPythonSync(endpoint, payload, 10 * 60 * 1000);
|
||||
|
||||
// 2) Persist claimNumber and update status to REVIEW
|
||||
// 2) Persist claimNumber / preAuthNumber and update status
|
||||
if (claimId) {
|
||||
try {
|
||||
const updates: Record<string, any> = { status: "REVIEW" };
|
||||
if (result?.claimNumber) updates.claimNumber = result.claimNumber;
|
||||
await storage.updateClaim(claimId, updates);
|
||||
if (variant === "claim-pre-auth") {
|
||||
const updates: Record<string, any> = { status: "PREAUTH" };
|
||||
if (result?.preAuthNumber) updates.preAuthNumber = result.preAuthNumber;
|
||||
await storage.updateClaim(claimId, updates);
|
||||
} else {
|
||||
const updates: Record<string, any> = { status: "REVIEW" };
|
||||
if (result?.claimNumber) updates.claimNumber = result.claimNumber;
|
||||
await storage.updateClaim(claimId, updates);
|
||||
}
|
||||
} catch (e) {
|
||||
console.error("[claimSubmitProcessor] failed to update claim after submission:", e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user