Skip to content

URS-010 · Submit different order types (Bill-Only, Trunk Stock, Direct, Drop-ship)

Title: Submit different order types (Bill-Only, Trunk Stock, Direct, Drop-ship) Date: 2026-04-23T03:35:46.490Z Duration: 111.3s Overall Status: ✅ PASS

The system shall allow reps to submit different order types (Bill‑Only, Trunk Stock, Direct, Drop‑ship).

Source: User_Requirement_Specifications_ZuriMED_DeviceFlow.xlsx — the run below proves the system meets this requirement.

Status: ✅ PASS

Each step below corresponds to one Playwright test that ran sequentially. Screenshots and video recordings provide visual evidence of the UI behaviour.

1. Step 1: Login and navigate — ✅ PASS

Section titled “1. Step 1: Login and navigate — ✅ PASS”

What this step proves:

Proves that Bob Kauffman (StellarTech sales rep) can authenticate and reach the order creation form. Establishes the user context used for every subsequent submission.

Screenshots:

step 01 logged in

step 01 order creation form

Video recording:


What this step proves:

A Bill-Only order is created and submitted end-to-end via the /billing/new flow. The rep selects BOSS Surgical as the sales account, uses their own trunk (TRUNK-36) as the inventory source, and adds SpeedPatch with the seeded lot. The success screen confirms the bill-only submission landed as a billing_orders row. A “New Bill-Only Order” notification email is dispatched to the rep confirming the submission.

Audit events generated by this step:

(Evidence scoped to step execution window: 2026-04-23T03:36:09.140Z → 2026-04-23T03:36:23.761Z)

TimeTypeActionUserOrgPerformed
2026-04-23 03:36:18Zdecisionbill_only_order.enqueue_upload_classificationbob.kauffman@stellartech.comZuriMEDno
2026-04-23 03:36:19Ztransactional_emailnew_bill_onlyStellarTech Medical Solutions

Emails triggered by this step:

(Evidence matched by declared name — step timing not available or no events fell in window)

Email 1: New Bill-Only Order - 4/22/2026 - ZuriMED BO-1

Template: New_Bill-Only_Order_-_4_22_2026_-_ZuriMED_BO-1

New Bill-Only Order - 4/22/2026 - ZuriMED BO-1

Screenshots:

step 02 bill only devices

step 02 bill only product

step 02 bill only documents

step 02 bill only review

step 02 bill only submitted

Video recording:


What this step proves:

A consignment order is created and submitted end-to-end via /orders/requests/new. The rep selects BOSS Surgical as the delivery location; Consignment is the default order type. The success screen confirms the order_requests row was accepted with order type “Consignment”.

Audit events generated by this step:

(Evidence scoped to step execution window: 2026-04-23T03:36:32.963Z → 2026-04-23T03:36:38.778Z)

TimeTypeActionUserOrgPerformed
2026-04-23 03:36:38Zdecisionorder_request_createdbob.kauffman@stellartech.comZuriMEDyes

Screenshots:

step 03 consignment step2

step 03 consignment products

step 03 consignment review

step 03 consignment submitted

Video recording:


What this step proves:

A direct sales order is created and submitted end-to-end via /orders/requests/new. The rep selects Copley Hospital as the delivery location and switches the order type to Direct Order. The success screen confirms the order_requests row was accepted with order type “Direct”.

Audit events generated by this step:

(Evidence scoped to step execution window: 2026-04-23T03:36:51.716Z → 2026-04-23T03:36:57.315Z)

TimeTypeActionUserOrgPerformed
2026-04-23 03:36:57Zdecisionorder_request_createdbob.kauffman@stellartech.comZuriMEDyes

Screenshots:

step 04 direct step2

step 04 direct products

step 04 direct review

step 04 direct submitted

Video recording:


What this step proves:

A drop-ship order is created and submitted end-to-end via /orders/requests/new. The rep selects Connecticut Orthopaedic Surgery Center as the delivery location and switches the order type to Drop-ship, which reveals the Receiving Rep selector. The success screen confirms the order_requests row was accepted with order type “Drop-ship”.

Audit events generated by this step:

(Evidence scoped to step execution window: 2026-04-23T03:37:10.350Z → 2026-04-23T03:37:16.177Z)

TimeTypeActionUserOrgPerformed
2026-04-23 03:37:15Zdecisionorder_request_createdbob.kauffman@stellartech.comZuriMEDyes

Screenshots:

step 05 dropship step2

step 05 dropship products

step 05 dropship review

step 05 dropship submitted

Video recording:


What this step proves:

Both the /orders/requests and /billing lists are opened after all submissions. Evidence screenshots show that the consignment, direct, drop-ship, and bill-only orders all persisted and are visible in their respective list views.

Screenshots:

step 06 orders list

step 06 billing list

Video recording:


The following SQL queries ran against the application database after the Playwright scenarios completed. Each query asserts a specific condition that proves the feature under test persisted its data correctly.

Assertion: A billing_orders row tagged URS-010 should exist for Bob

SELECT bo.id, bo.order_number, bo.status, bo.sales_account_id,
bo.notes, bo.created_at
FROM billing_orders bo
WHERE bo.created_by_user_id = $1
AND bo.notes LIKE '%URS-010%'
ORDER BY bo.created_at DESC
LIMIT 5
idorder_numberstatussales_account_idnotescreated_at
019db868-efbe-76a0-9b92-c2bd134663fcBO-1submittedfea7b8c9-d0e1-2345-0123-456789012345URS-010 validation: bill-only2026-04-23T03:36:18.045Z

Bill-Only item pulls from Bob’s trunk with the seeded lot — ✅ PASS

Section titled “Bill-Only item pulls from Bob’s trunk with the seeded lot — ✅ PASS”

Assertion: A billing_order_items row should reference TRUNK-36 and lot URS010-SP-001

SELECT boi.id, boi.billing_order_id, boi.location_id,
boi.lot_number, op.title AS product_name,
rwl.name AS location_name, rwl.type AS location_type
FROM billing_order_items boi
JOIN billing_orders bo ON boi.billing_order_id = bo.id
LEFT JOIN org_products op ON boi.product_id = op.id
LEFT JOIN real_world_locations rwl ON boi.location_id = rwl.id
WHERE bo.created_by_user_id = $1
AND bo.notes LIKE '%URS-010%'
AND boi.lot_number = $2
ORDER BY bo.created_at DESC
LIMIT 10
idbilling_order_idlocation_idlot_numberproduct_namelocation_namelocation_type
019db868-efba-7f7a-8bf8-0b0e0078973f019db868-efbe-76a0-9b92-c2bd134663fca6e7f8a9-b0c1-2345-0123-456789012345URS010-SP-001FiberLocker® Instrument SNTRUNK-36trunk_stock

Assertion: A consignment order_request tagged URS-010 should exist

SELECT id, request_number, order_type, status, sales_account_id, notes
FROM order_requests
WHERE requested_by_user_id = $1
AND order_type = 'consignment'
AND notes LIKE '%URS-010%'
ORDER BY created_at DESC
LIMIT 1
idrequest_numberorder_typestatussales_account_idnotes
019db869-4030-74f8-a149-6a40de3c7b50OR-2consignmentsubmittedfea7b8c9-d0e1-2345-0123-456789012345URS-010 validation: consignment

Assertion: A direct order_request tagged URS-010 should exist

SELECT id, request_number, order_type, status, sales_account_id, notes
FROM order_requests
WHERE requested_by_user_id = $1
AND order_type = 'direct'
AND notes LIKE '%URS-010%'
ORDER BY created_at DESC
LIMIT 1
idrequest_numberorder_typestatussales_account_idnotes
019db869-887d-791a-a978-818c8d3abaf5OR-3directsubmitted1fb8c9d0-e1f2-3456-1234-567890123456URS-010 validation: direct

Assertion: A dropship order_request tagged URS-010 should exist

SELECT id, request_number, order_type, status, sales_account_id, notes
FROM order_requests
WHERE requested_by_user_id = $1
AND order_type = 'dropship'
AND notes LIKE '%URS-010%'
ORDER BY created_at DESC
LIMIT 1
idrequest_numberorder_typestatussales_account_idnotes
019db869-d1a7-7775-a653-ae4b6c39800bOR-4dropshipsubmitted2ac9d0e1-f2a3-4567-2345-678901234567URS-010 validation: dropship

All four order types submitted — ✅ PASS

Section titled “All four order types submitted — ✅ PASS”

Assertion: All four order types should be present: consignment, direct, dropship (order_requests) plus at least one billing_orders row (Bill-Only)

SELECT
(SELECT COUNT(DISTINCT order_type)::int
FROM order_requests
WHERE requested_by_user_id = $1
AND notes LIKE '%URS-010%'
AND order_type IN ('consignment', 'direct', 'dropship')) AS request_type_count,
(SELECT COUNT(*)::int
FROM billing_orders
WHERE created_by_user_id = $1
AND notes LIKE '%URS-010%') AS billing_order_count
request_type_countbilling_order_count
31

Per-declaration outcome of every expectedAuditActions and expectedEmailTemplates entry written into the orchestrator. Missing evidence here is a real test failure, not a soft warning.

Each row asserts that a declared expectedAuditActions entry produced a matching row in audit_events. A ❌ flips overall status to FAIL — the declaration is real proof, not just an annotation.

StepExpected Audit ActionFound
Step 2: Bill-Only orderdecision:bill_only_order.enqueue_upload_classification

Each row asserts that a declared expectedEmailTemplates entry was matched (case-insensitive substring) by a captured email subject or template. A ❌ flips overall status to FAIL.

StepExpected TemplateFound
Step 2: Bill-Only orderbill-only

Every row written to audit_events while this test was running (scoped to the demo organizations). Provides compliance evidence that user actions are traced end-to-end (URS-003).

Capture window start: 2026-04-23T03:35:44.607Z

SELECT
ae.created_at,
ae.event_type,
ae.action,
ae.user_id,
u.email AS user_email,
ae.organization_id,
o.name AS organization_name,
ae.object_id,
ae.secondary_object_id,
ae.payload,
ae.route,
ae.trace_id
FROM audit_events ae
LEFT JOIN users u ON u.id = ae.user_id
LEFT JOIN organizations o ON o.id = ae.organization_id
WHERE ae.created_at >= $1
AND ae.organization_id = ANY($2::uuid[])
ORDER BY ae.created_at ASC

11 event(s) captured:

TimeTypeActionUserOrgObject IDPerformedReason
2026-04-23 03:35:49Zuser_loguser:loginbob.kauffman@stellartech.comStellarTech Medical Solutions
2026-04-23 03:35:57Zuser_loguser:loginbob.kauffman@stellartech.comStellarTech Medical Solutions
2026-04-23 03:36:18Zdecisionbill_only_order.enqueue_upload_classificationbob.kauffman@stellartech.comZuriMED019db868-efbe-76a0-9b92-c2bd134663fcnoNo uploaded PO documents
2026-04-23 03:36:19Ztransactional_emailnew_bill_onlyStellarTech Medical Solutions019db868-efbe-76a0-9b92-c2bd134663fc
2026-04-23 03:36:25Zuser_loguser:loginbob.kauffman@stellartech.comStellarTech Medical Solutions
2026-04-23 03:36:38Zdecisionorder_request_createdbob.kauffman@stellartech.comZuriMED019db869-4030-74f8-a149-6a40de3c7b50yesOrder request OR-2 created (importSource=manual)
2026-04-23 03:36:43Zuser_loguser:loginbob.kauffman@stellartech.comStellarTech Medical Solutions
2026-04-23 03:36:57Zdecisionorder_request_createdbob.kauffman@stellartech.comZuriMED019db869-887d-791a-a978-818c8d3abaf5yesOrder request OR-3 created (importSource=manual)
2026-04-23 03:37:01Zuser_loguser:loginbob.kauffman@stellartech.comStellarTech Medical Solutions
2026-04-23 03:37:15Zdecisionorder_request_createdbob.kauffman@stellartech.comZuriMED019db869-d1a7-7775-a653-ae4b6c39800byesOrder request OR-4 created (importSource=manual)
2026-04-23 03:37:20Zuser_loguser:loginbob.kauffman@stellartech.comStellarTech Medical Solutions

1 notification email(s) were captured during this test run. Each email is rendered as a screenshot for compliance review.

1. New Bill-Only Order - 4/22/2026 - ZuriMED BO-1

Section titled “1. New Bill-Only Order - 4/22/2026 - ZuriMED BO-1”

Template: New_Bill-Only_Order_-_4_22_2026_-_ZuriMED_BO-1

New Bill-Only Order - 4/22/2026 - ZuriMED BO-1