5c9365ec33
Closes the gap between the SP10 backend (5 lanes) and the SP6
frontend (4 lanes). The Payer-Rejected lane (277CA STC A4/A6/A7)
is now rendered alongside Rejected/Candidates/Unmatched/Done,
with an Acknowledge bulk action that drops claims from the
working surface without erasing the original 277CA rejection
event (audit log stays intact, SP11).
Backend:
* Migration 0010: add payer_rejected_acknowledged_at +
payer_rejected_acknowledged_actor columns + partial index.
* db.py: surface the two new columns on the Claim model.
* inbox_lanes.py: filter acknowledged claims out of the
payer_rejected lane; expose the new fields on the row payload
for forward-compat (e.g. a future 'Recently acknowledged' view).
* api.py:
- POST /api/inbox/payer-rejected/acknowledge
Bulk-acknowledge. Idempotent. Returns transitioned /
already_acked / not_found / not_rejected counts so the UI
can show '3 of 5 were already acknowledged' on a noop bulk.
Writes a 'claim.payer_rejected_acknowledged' event to the
SP11 hash-chained audit log.
- GET /api/inbox/export.csv: accept 'payer_rejected' lane.
* test_acks.py: bump user_version assertion to 10.
* test_lane_filter_acknowledged.py: 4 tests for the lane filter
and forward-compat row payload.
* test_payer_rejected_acknowledge.py: 6 tests for the endpoint
(happy path, idempotency, no-op on non-rejected, missing
ids, 400 on empty, audit-log wiring + chain integrity).
Frontend:
* lib/inbox-api.ts: add payer_rejected to InboxLanes, add
acknowledgePayerRejected(), update exportInboxCsvUrl union.
* hooks/useInboxLanes.ts: add payer_rejected to initial state.
* hooks/useInboxLanes.test.ts: add payer_rejected to mocks.
* components/inbox/BulkBar.tsx: add 'payer_rejected' lane with
Acknowledge action (no Resubmit, no Dismiss — payer-rejected
is not eligible for either).
* components/inbox/BulkBar.test.tsx: add payer_rejected test.
* pages/Inbox.tsx: render the 5th lane, hook up onAcknowledge,
include payer_rejected in the needEyes count.
* pages/Inbox.test.tsx: 3 new tests (5-lane render, need-eyes
count, acknowledge action hits the right endpoint).
* components/inbox/InboxHeader.tsx: doc comment now explains
why payer_rejected rolls up into need-eyes.
Pre-existing typecheck warnings in BulkBar.test.tsx / InboxRow
.test.tsx / Lane.tsx / download.test.ts are unchanged from
main — not touched here.
Test counts: backend 724 -> 734 (+10). Frontend 350 -> 354 (+4).
111 lines
3.8 KiB
TypeScript
111 lines
3.8 KiB
TypeScript
// ---------------------------------------------------------------------------
|
|
// BulkBar
|
|
//
|
|
// Per-lane floating action bar. Each Inbox lane has its own BulkBar —
|
|
// the bar shows when the lane has a selection and exposes the actions
|
|
// appropriate to that lane:
|
|
//
|
|
// * rejected → Re-submit (move back to SUBMITTED)
|
|
// * payer_rejected → Acknowledge (drop from working surface; SP14)
|
|
// * candidates → Dismiss (suppress a remit/claim pair)
|
|
// * unmatched → (no destructive action; just export)
|
|
// * done_today → (read-only; just export)
|
|
//
|
|
// Every lane gets the Export CSV action so the operator can ship
|
|
// anything actionable to a file for off-system follow-up (appeals,
|
|
// re-keying, posting to the billing system of record, etc).
|
|
// ---------------------------------------------------------------------------
|
|
|
|
type LaneKey =
|
|
| "rejected"
|
|
| "payer_rejected"
|
|
| "candidates"
|
|
| "unmatched"
|
|
| "done_today";
|
|
|
|
export function BulkBar({
|
|
lane,
|
|
count,
|
|
onResubmit,
|
|
onAcknowledge,
|
|
onDismiss,
|
|
onExport,
|
|
}: {
|
|
lane: LaneKey;
|
|
count: number;
|
|
onResubmit: () => void;
|
|
onAcknowledge: () => void;
|
|
onDismiss: () => void;
|
|
onExport: () => void;
|
|
}) {
|
|
if (count === 0) return null;
|
|
return (
|
|
<div
|
|
className="fixed bottom-6 left-1/2 px-3 py-2.5 mono flex items-center gap-2 z-20 rounded-md"
|
|
style={{
|
|
transform: "translateX(-50%)",
|
|
background: "var(--tt-bg-elev)",
|
|
border: "1px solid var(--tt-amber)",
|
|
color: "var(--tt-ink)",
|
|
fontSize: 11,
|
|
boxShadow:
|
|
"0 0 0 1px hsl(36 88% 56% / 0.15), 0 12px 40px -8px hsl(0 0% 0% / 0.6), inset 0 1px 0 0 hsl(0 0% 100% / 0.04)",
|
|
}}
|
|
>
|
|
<span
|
|
className="tabular-nums flex items-center gap-1.5 px-2 py-0.5 rounded-sm"
|
|
style={{
|
|
color: "var(--tt-bg)",
|
|
background: "var(--tt-amber)",
|
|
fontWeight: 700,
|
|
fontSize: 11,
|
|
letterSpacing: "0.04em",
|
|
}}
|
|
>
|
|
{count}
|
|
</span>
|
|
<span style={{ color: "var(--tt-amber)", letterSpacing: "0.12em", textTransform: "uppercase" }}>
|
|
selected
|
|
</span>
|
|
|
|
<span className="mx-1 h-4 w-px" style={{ background: "var(--tt-muted)" }} aria-hidden />
|
|
|
|
{lane === "rejected" && (
|
|
<button
|
|
onClick={onResubmit}
|
|
className="px-2.5 py-1 rounded-sm uppercase tracking-[0.12em] transition-colors hover:bg-[color:var(--tt-amber)]/10 focus-visible:outline-none focus-visible:bg-[color:var(--tt-amber)]/10"
|
|
style={{ color: "var(--tt-ink)", fontWeight: 600 }}
|
|
>
|
|
Re-submit ({count})
|
|
</button>
|
|
)}
|
|
{lane === "payer_rejected" && (
|
|
<button
|
|
onClick={onAcknowledge}
|
|
data-testid="payer-rejected-acknowledge"
|
|
className="px-2.5 py-1 rounded-sm uppercase tracking-[0.12em] transition-colors hover:bg-[color:var(--tt-amber)]/10 focus-visible:outline-none focus-visible:bg-[color:var(--tt-amber)]/10"
|
|
style={{ color: "var(--tt-ink)", fontWeight: 600 }}
|
|
>
|
|
Acknowledge ({count})
|
|
</button>
|
|
)}
|
|
{lane === "candidates" && (
|
|
<button
|
|
onClick={onDismiss}
|
|
className="px-2.5 py-1 rounded-sm uppercase tracking-[0.12em] transition-colors hover:bg-[color:var(--tt-amber)]/10 focus-visible:outline-none focus-visible:bg-[color:var(--tt-amber)]/10"
|
|
style={{ color: "var(--tt-ink)", fontWeight: 600 }}
|
|
>
|
|
Dismiss ({count})
|
|
</button>
|
|
)}
|
|
<button
|
|
onClick={onExport}
|
|
className="px-2.5 py-1 rounded-sm uppercase tracking-[0.12em] transition-colors hover:bg-[color:var(--tt-amber)]/10 focus-visible:outline-none focus-visible:bg-[color:var(--tt-amber)]/10"
|
|
style={{ color: "var(--tt-ink)", fontWeight: 600 }}
|
|
>
|
|
Export CSV ({count})
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|