feat: chatbot CDT lookup — SRP quad, 4-digit auto-prefix, quad field to Selenium

- parseSrpCode: recognize "D4341 UL" / "4341 LR" etc., store quadrant in quad field
- matchOne: auto-prefix D for 4-digit inputs like "0120" → D0120
- LLM prompt: keep SRP code and quadrant together as one procedureName entry
- CdtMatch / CdtResult: add quad field, thread through matchedCodes action data
- claim-form.tsx: include quad in chatbot_claim_prefill type and spread to service line
- selenium_claimSubmitWorker.py: pass quad to fill_service_line, select quadrant
  dropdown by index (UR=1, UL=2, LL=3, LR=4) matching MassHealth form structure

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Gitead
2026-06-11 22:14:50 -04:00
parent 6cfca0d015
commit 831f67b093
9 changed files with 81 additions and 26 deletions

View File

@@ -527,7 +527,7 @@ export function ClaimForm({
if (!raw) return;
try {
const { codes, serviceDate, renderingProvider } = JSON.parse(raw) as {
codes: { code: string; description: string; toothNumber?: string; toothSurface?: string }[];
codes: { code: string; description: string; toothNumber?: string; toothSurface?: string; quad?: string }[];
serviceDate?: string;
renderingProvider?: string | null;
};
@@ -553,6 +553,7 @@ export function ClaimForm({
procedureDate: date,
...(c.toothNumber ? { toothNumber: c.toothNumber } : {}),
...(c.toothSurface ? { toothSurface: c.toothSurface } : {}),
...(c.quad ? { quad: c.quad } : {}),
};
}
});

View File

@@ -62,6 +62,7 @@ interface CheckAndClaimData {
autoCheck: string;
matchedCodes: { code: string; description: string }[];
serviceDate?: string | null;
renderingProvider?: string | null;
}
let msgCounter = 0;
@@ -346,6 +347,7 @@ export function ChatbotButton() {
memberId: checkAndClaimData.memberId,
dob: checkAndClaimData.dob,
serviceDate: checkAndClaimData.serviceDate ?? null,
renderingProvider: checkAndClaimData.renderingProvider ?? null,
})
);
prefillAndNavigate(checkAndClaimData.memberId, checkAndClaimData.dob, checkAndClaimData.autoCheck);
@@ -412,6 +414,7 @@ export function ChatbotButton() {
autoCheck: data.actionData.autoCheck,
matchedCodes: data.actionData.matchedCodes ?? [],
serviceDate: data.actionData.serviceDate ?? null,
renderingProvider: data.actionData.renderingProvider ?? null,
});
setStep("check-and-claim-ready");
return;
@@ -788,6 +791,7 @@ export function ChatbotButton() {
autoCheck: data.actionData.autoCheck,
matchedCodes: data.actionData.matchedCodes ?? [],
serviceDate: data.actionData.serviceDate ?? null,
renderingProvider: data.actionData.renderingProvider ?? null,
});
setStep("check-and-claim-ready");
} else if (data.action === "eligibility_id_ready" && data.actionData) {

View File

@@ -686,7 +686,7 @@ export default function InsuranceStatusPage() {
try {
const raw = sessionStorage.getItem("chatbot_claim_codes");
if (!raw) return false;
const { codes, siteKey, patientId, memberId: storedMemberId, serviceDate } = JSON.parse(raw);
const { codes, siteKey, patientId, memberId: storedMemberId, serviceDate, renderingProvider } = JSON.parse(raw);
sessionStorage.removeItem("chatbot_claim_codes");
let pid: number | null = resolvedPatientId ?? patientId ?? null;
@@ -706,7 +706,7 @@ export default function InsuranceStatusPage() {
sessionStorage.setItem(
"chatbot_claim_prefill",
JSON.stringify({ codes, siteKey, serviceDate: serviceDate ?? null, autoSubmit: true })
JSON.stringify({ codes, siteKey, serviceDate: serviceDate ?? null, autoSubmit: true, renderingProvider: renderingProvider ?? null })
);
setLocation(`/claims?newPatient=${pid}`);
return true;