feat(web,analytics): /analytics needs-attention section - #2120
Conversation
…st header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…ckup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…t ingestion copy
- Fix two failing tests: the 90d preset test asserted an off-by-one date
(implementation was correct), and the disclaimer-chip test failed to
match the tooltip-split text node. Also fixes a third, previously
undetected failure in the degradation-banner "renders nothing" test,
which asserted an empty DOM even though renderWithProviders always
mounts a toast region.
- Stop leaking schema jargon ("placedAt is not a column") into
operator-facing aria-label/tooltip copy; move the rationale into a
code comment and replace the bare `title` with a keyboard-reachable
Tooltip.
- Relabel the trust-header "Current to" row and the degradation banner's
"has not ingested since" copy, both of which asserted data currency
from `lastPollAt` — a pipe-liveness signal, not proof any order data
arrived. Now "Last polled" / "has not been polled since".
- Drop the stale "UTC-widening math" file-header claim in
date-range.lib.ts (the file only does local-time formatting).
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
c967317 to
5abbac1
Compare
…shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
bbb27e0 to
026bba3
Compare
Adds GET /analytics/sales client, view-model helpers, and the two FE sections #1990 scopes: a 6-card KPI strip (Revenue, Orders, Order value w/ median, Units, Cancellations, Returns & refunds) and a by-channel DataTable, mounted into the #1986 route shell. Currency-aware per #1987/#2049/ADR-040: every money figure carries its currency (headline.reportingCurrency), and a channel's revenueBasis ('reporting' | 'native' | 'unavailable') drives whether its revenue/ share render as plain values, a same-currency-but-incomparable caveat, or an explicit empty value — never a blended or falsely-comparable number. taxTreatment 'mixed' surfaces an inline chip so gross/net incomparability is stated, not implied. A channel whose earliest order postdates the range start renders a "Partial history" flag. Fixes an exclusive-end date bug found in a prior implementation attempt: the toolbar hands this an inclusive yyyy-mm-dd end day, but the endpoint treats `to` as exclusive — toExclusiveEndInstant converts it so the selected range's last day isn't silently dropped. Also fixes a pre-existing test race in orders-list-page.test.tsx: a synchronous assertion on empty-state text that depends on an async query, following an await on a chip that mounts synchronously from a URL param — now awaited with findByText. Closes #1990 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…el table tests
CI's `tsc -b` (project-references build) caught what a plain `tsc
--noEmit -p tsconfig.json` run missed locally: `vi.fn(() => new
Promise(() => {}))` infers `Mock<() => Promise<unknown>>`, which
doesn't satisfy `getSales`'s `Promise<SalesAndChannelAnalytics>`
return type. Pin the generic on the never-resolving Promise, matching
the existing analytics-trust test precedent.
Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…nto 1990-sales-analytics-trend-plan
…nto 1990-sales-analytics-trend-plan
currency contract The frontend types were drafted ahead of the backend and assumed a shape it never shipped (non-null reportingCurrency, revenueBasis/nativeCurrency per channel, taxTreatmentMixed). Now that the actual #1987 currency wiring (reportingTotalAmount stamp + unconvertedCurrency labelling) has been merged in, rewrite the frontend to match it exactly: one nullable system-wide currency, unconvertedCount/Value/Currency per channel, and revenueShare always a number. - Cancellations KPI now leads with the rate (%), value/count as qualifiers. - By-channel table: a channel with no FX-stamped revenue yet falls back to its own unconverted-currency evidence instead of showing an empty cell, flagged with an "Awaiting FX stamp" chip. - Total rows: one reporting-currency total (real KPI aggregate) plus one informational unconverted-currency subtotal per distinct native currency — only emitted when more than one channel contributes, so a lone channel never gets a redundant duplicate total. - Orders/Avg daily/Units per order/Cancellation rate on the KPI strip now count every placed order (stamped + unconverted), not just the stamped subset. - Share and Trend columns reordered so Share sits immediately before Trend (previously Share was misplaced next to Revenue). - Fixed a CSS specificity bug where the Phase-6 dashboard-triage `.status-strip` rule silently won over `.status-strip--analytics` at >=1024px, packing the 6 KPI cards 4-then-2 instead of 3x2. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…ection Plans issue #1989 — three actionable categories (coverage gaps, stock at risk, failed-sync value) consuming the already-shipped GET /analytics/needs-attention (#1983), mounted into the #1986 shell. No backend changes; resolves link targets, the mixedCurrency interim (tracked against #2049), and the ambiguous multi-connection copy case. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
Renders the three needs-attention categories — coverage gaps, stock at risk, value stuck in failed syncs — mounted into the #1986 shell. Consumes the already-shipped GET /analytics/needs-attention (#1983) as-is; no backend changes. Either the open rows render or a single all-clear line does, never both, per the design mockup's rule. Each open row deep-links into the flow that resolves it: the unified publish wizard, the product detail page, or the orders list filtered to the needs_attention health bucket. Ambiguous multi-connection cases fall back to a connection-agnostic headline; the failed-sync total renders currency-neutral since the DTO carries no currency field in either the mixed or non-mixed case (interim pending #2049). Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
The plan (implementation-plan-analytics-needs-attention.md) required a client-side "checked HH:MM" timestamp in the panel header and a neutral-tone Clear badge, mirroring frame 02 of the design mockup (docs/plans/mockups/analytics-ledger-2003.html on the still-open #2018 branch). Both were dropped in the original implementation. Adds the checked-at timestamp (TimeDisplay driven by the query's own dataUpdatedAt, since the DTO carries no such field) and switches the all-clear badge from success to neutral, per spec. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
026bba3 to
71a8f70
Compare
…1990-sales-analytics-trend-plan Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> # Conflicts: # apps/api/src/orders/http/orders.controller.spec.ts # apps/web/src/app/api/api-client.ts # apps/web/src/features/analytics/api/analytics-trust.api.ts # apps/web/src/features/analytics/index.ts # apps/web/src/index.css # apps/web/src/pages/analytics/analytics-page.test.tsx # apps/web/src/pages/analytics/analytics-page.tsx # apps/web/src/test/test-utils.tsx # libs/core/src/orders/domain/ports/order-record-repository.port.ts
…nto 1990-sales-analytics-trend-plan
…into 1989-needs-attention-plan
… into 1989-needs-attention-plan
piotrswierzy
left a comment
There was a problem hiding this comment.
Tech Lead review — #2120 (/analytics needs-attention section)
Clean FE slice: correct layering (pages → features → shared), barrel-only cross-feature import (useConnectionsQuery from '../../connections'), TanStack Query for server state, pure copy derivations isolated in lib/ with their own spec, tokens-only CSS, StatusBadge carrying text + dot (never colour alone), and the three deep-links verified against their real consumers (?health=needs_attention is in OrderHealthValues; ?productIds=/&variantIds=/&connectionId= match bulk-create-wizard-page.tsx). CI is green. One issue blocks.
🔴 BLOCKING
1. The headline asserts a channel over data that only covers a 20-item sample — features/analytics/lib/needs-attention-copy.lib.ts
NeedsAttentionService caps its preview arrays at DEFAULT_AGGREGATE_LIMIT = 20, while coverageGapsTotalCount / stockAtRiskTotalCount are the true totals. deriveCoverageHeadline checks items.every(... === 1) over the ≤20 sample and then renders that conclusion against totalCount:
412 variants missing from Allegro
when only the 20 sampled variants were verified to be Allegro's — the other 392 may sit on any channel. deriveStockHeadline has the identical shape for the shared-buffer branch (buffer 2 claimed for a total the sample cannot speak for).
This is the defect class the repo repeatedly refuses to ship (#2075's "a false statement about their own catalogue"; ADR-041 §54's never-silently-decline rule). Fix: only take the connection-named branch when items.length === totalCount; otherwise fall through to the connection-agnostic headline that already exists. One added conjunct in each sharesOne* predicate, plus a spec.
🟡 IMPORTANT
2. "Publish now" silently seeds ≤20 of N — analytics-needs-attention.tsx
Same root cause: the row says 412, the link pre-fills the sampled 20. The wizard is a review flow so nothing wrong gets published, but the operator clicks through, publishes, and the row still reads 412 with no explanation. At minimum say so in sub ("showing the first 20"), or point at a list surface that carries all of them.
3. Grammar bug pinned by a test — needs-attention-copy.lib.ts
The ambiguous branch singularises the noun but hardcodes the plural verb: 1 variant have a listing gap on at least one channel. needs-attention-copy.lib.test.ts: asserts that exact string, so the test locks the bug in. Reword to a verb-free form (… with a listing gap on at least one channel) and update the assertion.
4. en-US-pinned number formatting — formatCurrencyNeutral
docs/frontend-architecture.md § i18n states useNumberFormat() exists specifically to replace toLocaleString('en-US') so numbers follow locale. The helper is pure so the hook isn't reachable here — thread a BCP 47 tag in from the caller (getBcp47Locale) rather than hardcoding.
🟢 SUGGESTION
5. MAX_WIZARD_IDS = 100 is unreachable — the source arrays are already capped at 20 server-side. It also slices productIds and variantIds independently, which (if ever reached) could emit a variantId whose product was dropped. Either drop the constant or derive both from one filtered item list.
6. Coverage/stock hidden behind an order-ingestion gate — analytics-page.tsx. AnalyticsNeedsAttention sits in the else of connections.every(status === 'never-ingested'). Coverage gaps and stock-at-risk are listing facts, not order facts, so a fresh install with a full catalogue and no orders yet sees neither — arguably exactly when they matter most.
7. List semantics — .attention-list is divs; <ul>/<li> would give screen-reader users the item count for free, matching the guide's accessibility section.
Verdict
❌ Request changes — item 1 only. Items 2–4 should land in the same pass; 5–7 are optional. Nothing architectural is wrong here.
(Note: this targets 1986-analytics-page-shell-plan, not main — merge order #1985 → #1986 → this.)
…into 1989-needs-attention-plan
…defect
- BLOCKING: deriveCoverageHeadline/deriveStockHeadline only name a
connection when the preview sample IS the total (items.length ===
totalCount); otherwise fall through to the connection-agnostic
headline, so a headline never asserts something only a 20-item
sample verified.
- "Publish now" sub now discloses when it only seeds the sampled
variants ("showing the first N of M").
- Fix the "1 variant have a listing gap" grammar bug to a verb-free
form, updating the test that had locked it in.
- Thread a BCP 47 locale into deriveFailedSyncHeadline instead of
hardcoding toLocaleString('en-US').
- Drop the unreachable MAX_WIZARD_IDS cap; derive productIds/variantIds
from the same item list instead of two independently sliced arrays.
- Render AnalyticsNeedsAttention regardless of order-ingestion status —
coverage gaps and stock-at-risk are listing facts, not order facts.
- Render .attention-list as <ul>/<li> for list semantics.
Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…undary, aria-label, style guide - toExclusiveEndInstant now anchors on UTC midnight instead of local midnight, matching the controller's UTC-parsed `from` (was silently dropping/adding hours off UTC). - Sparkline aria-labels derive from the actual selected range instead of a hardcoded "last 7 days". - Register the analytics KPI card's 152px/3-col geometry as a documented carve-out in the style guide (Density table + parity matrix), per the "never introduce an undocumented row height" rule. - Fix "Data order" planned-tag typo -> "Planned"; section-infotip font-size to the rem token equivalent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
piotrswierzy
left a comment
There was a problem hiding this comment.
Tech-lead review (/pr-review) — re-review after the fix round
Verdict: 🔄 Approve with changes — the prior BLOCKING and IMPORTANT findings are correctly fixed. One new IMPORTANT: the same false-channel claim the BLOCKING fix removed from the headline is still present in the deep link.
The fix round
The sample-vs-total BLOCKING fix is exactly right and well argued. items is a ≤20 preview while totalCount is the truth, so items.length === totalCount now gates every connection-named headline in both deriveCoverageHeadline and deriveStockHeadline, with the reasoning recorded in the module header and tied to the repo's own precedents (#2075, ADR-041 §54). Deriving productIds/variantIds from the same item list rather than two independent slices — so a variantId can't outlive its own product — is the right response to that suggestion too.
🟡 IMPORTANT
The connectionId deep-link parameter uses a weaker predicate than the headline, and can name a channel the copy deliberately refused to name.
analytics-needs-attention.tsx:
const missingConnectionIds = uniqueValues(
summary.coverageGaps
.filter((item) => item.missingFromConnectionIds.length === 1)
.map((item) => item.missingFromConnectionIds[0])
);
if (missingConnectionIds.length === 1) params.set('connectionId', missingConnectionIds[0]);Compare deriveCoverageHeadline, which requires all three of items.length === totalCount, items.every(len === 1), and one distinct id. The link requires only the last. So with 20 sampled gaps where 19 are missing from Allegro only and one is missing from both Allegro and Erli, the headline correctly falls back to "…with a listing gap on at least one channel" — and the link still pins connectionId=<Allegro>. Worse, the items.length === totalCount guard is absent entirely, so a 20-of-340 sample that happens to be uniform pins a channel for a population it cannot speak for.
The operator then lands in the bulk wizard pre-filled with a destination that the sentence above the button explicitly declined to assert. That is the same defect the BLOCKING fix removed, one function over. Reuse one predicate for both — have deriveCoverageHeadline return the resolved connection id (or null) alongside the copy, and build the link from that.
🟢 SUGGESTIONS
1. "Publish now" doesn't say it publishes a sample. The partial-sample disclosure is a — showing the first 20 of 340 suffix on the sub line, while the headline still reads "340 variants missing…" and the button still reads "Publish now". An operator who clicks, reviews 20 rows and submits has reasonable grounds to believe the 340 are handled. Carrying it into the label (Publish first 20) puts the caveat on the control that acts, not two lines above it.
2. formatCurrencyNeutral renders money as a bare number. "1,234.56 of orders never reached a destination" parses as a count on first read. The interim is documented and the reason is real (the DTO has no currency field), but a neutral unit marker — or leading with the order count — would keep the sentence unambiguous until #2049 lands. Worth noting that #2151/#2172 (in flight on this same stack) now carry currency and unconvertedCurrency on their own DTOs, so the fix for FailedSyncValueSummary has a shape to copy.
3. const checkedCount = 3; sits directly above a list of exactly three if blocks. Derive it, or the all-clear line will one day claim three checks after a fourth is added.
Positive observations
- The either/or rule (open items or the all-clear line, never both, and a resolved category renders nothing) is implemented as stated, with the mockup frame cited.
- Every open row deep-links into the flow that resolves it rather than into a list the operator then has to navigate — coverage → the unified wizard, stock → product detail, failed syncs →
/orders?health=needs_attention. That is the difference between a dashboard and a work queue. - The ambiguity fallbacks are the right shape throughout: connection-agnostic headline rather than a wrong channel, "buffers vary by channel" rather than one buffer, and
mixedCurrencyrefusing to render a single total with the reason in the copy ("a single total would misrepresent this sum"). useConnectionsQueryresolved once into a memoisedMaplookup rather than per row, matching theConnectionCellrule in the style guide.- Loading / error / empty all rendered deliberately, with a real Retry.
Notes — merge mechanics
Two process points, both worth resolving before this merges:
- This branch carries #1990/#2171's already-merged code and its outstanding tech-review fixes. Bundling them is declared in the PR body, which is the right instinct, but it means those fixes — the
toExclusiveEndInstantUTC anchoring in particular, which is a real correctness bug — are now gated behind #1985 → #1986 → this PR landing. A fix to mergedmaincode should go tomaindirectly; consider extracting them into a small standalone PR so they aren't held hostage by a four-deep stack. - The base is stale: this PR's base sha is
b9acec2while #2098's head is85be7ccon the same branch name. Merge the newer1986-analytics-page-shell-planin before assessing conflicts —analytics-page.tsx,features/analytics/index.tsandindex.cssare all touched by both. pnpm testand manual browser verification are both unchecked. The unit coverage here is good, but the deep-link URL construction — the subject of the IMPORTANT above — is exactly the part a browser pass would have caught.
…roups groupChannelTotalsByCurrency skipped a currency's Total row whenever only one channel contributed to it, so a deployment with exactly one connection per currency (e.g. one EUR shop) silently lost that row. No spec basis for the threshold — the by-channel currency total should render for every distinct currency present, regardless of how many channels contribute. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…tion Reuses deriveCoverageHeadline's own connection resolution for the coverage deep link's connectionId param instead of re-deriving it with a weaker predicate, so the bulk-wizard link can never name a channel the headline declined to name. Also derives the all-clear checkedCount from the evaluated categories rather than a hardcoded literal. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…into 1989-needs-attention-plan Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> # Conflicts: # apps/web/src/index.css
Pre-existing lint error surfaced while validating the 1986 merge — vi was imported but never used in this file. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…-sync row
`deriveFailedSyncHeadline` formatted `totalValue` with no currency
symbol ("6,120.64 of orders never reached a destination"), which reads
as a real monetary figure to an operator even though the DTO carries
no currency at all — the same misrepresentation risk the mixedCurrency
branch already guarded against, just less obviously so. Both branches
now render the same count-only shape; `totalValue` stays on the wire
for future consumers, this headline just stops reading it.
Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
piotrswierzy
left a comment
There was a problem hiding this comment.
Re-review (/pr-review) — 375dca5 → 55e7a09
Verdict: 🔄 One IMPORTANT still open. The currency suggestion was resolved better than I proposed; the deep-link finding is untouched.
Suggestion 2 — resolved, and the fix is better than the suggestion
I proposed a unit marker or leading with the count. The change removes the bare number entirely, and the reasoning is the stronger argument:
a bare number formatted with no currency symbol ("6,120.64 of orders never reached a destination") reads as a real, currency-denominated figure — exactly the false claim this repo's currency-neutral-total precedent exists to avoid making, just less obviously so than the mixed-currency case.
Both branches now lead with the count and differ only in the qualifier, which also collapses the mixed/non-mixed asymmetry that made the two headlines read as different kinds of fact. Keeping totalValue on the wire for other consumers while this headline declines to read it is the right split.
(The getBcp47Locale / useTranslation removal is a consequence of no longer formatting a number, not a locale regression — worth stating since it looks like one in isolation.)
🟡 IMPORTANT — still open: the deep link can name a channel the copy refused to name
Unchanged at analytics-needs-attention.tsx:105-116:
const missingConnectionIds = uniqueValues(
summary.coverageGaps
.filter((item) => item.missingFromConnectionIds.length === 1)
.map((item) => item.missingFromConnectionIds[0])
);
if (missingConnectionIds.length === 1) params.set('connectionId', missingConnectionIds[0]);deriveCoverageHeadline requires three conditions (items.length === totalCount, items.every(len === 1), one distinct id); the link requires only the third. Two live consequences:
- 19 of 20 sampled gaps missing from Allegro only, one missing from Allegro and Erli → the headline correctly falls back to "…on at least one channel", and the link still pins
connectionId=<Allegro>. - The
items.length === totalCountguard is absent entirely, so a uniform 20-of-340 sample pins a channel for a population it cannot speak for — the exact reasoning the BLOCKING fix added to the headline.
The operator lands in the bulk wizard pre-filled with a destination the sentence above the button explicitly declined to assert. Fix is the same shape as before: have deriveCoverageHeadline return the resolved connection id (or null) alongside the copy, and build the link from that, so one predicate serves both.
Still open from the first pass
- Suggestion 1 — "Publish now" still doesn't say it seeds only the sampled ≤20; the caveat lives on the sub line while the button acts. Lower priority than the above.
const checkedCount = 3;still hardcoded above threeifblocks.- Merge mechanics — this branch still carries #1990/#2171's already-merged code and its outstanding review fixes, including the
toExclusiveEndInstantUTC correction. Those remain gated behind a five-deep stack. Extracting them to a small PR againstmainis still worth doing; note #2098 has since landed its owntoUtcRangeInstants, so the two UTC-boundary fixes now need to be reconciled rather than merged blind.
…l row
groupChannelTotalsByCurrency emitted a `Total · {currency} (unconverted)`
row per distinct unconvertedCurrency found across channels, with no
regard for whether that currency string collided with the real
reporting-currency Total row's label — a domestic-currency channel
simply awaiting its first FX-stamp pass produced a second, same-labelled
"Total · PLN" row computed from unrelated fields, reading as a
contradiction rather than two distinct facts.
Drop that row entirely. countUnconvertedOrders reports the
currency-agnostic total count as a single footnote sentence under the
table instead ("N orders not yet converted to the reporting currency —
excluded from the figures above"), never a competing Total row and
never a bare currency-neutral amount.
Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
… headline declined to deriveCoverageHeadline's connection-naming rule requires items.length === totalCount, every item missing from exactly one connection, and one distinct id. The "Publish now" deep link recomputed its own, weaker predicate (only the last condition), so a partial-but-uniform sample could pin a connectionId into the wizard link while the headline right next to it correctly fell back to the connection-agnostic copy — sending the operator into a wizard pre-scoped to a channel the row never actually asserted (#2120 re-review, IMPORTANT). deriveCoverageHeadline now returns connectionId (string | null) alongside the copy, computed by the same predicate; the component reads it instead of re-deriving one. Added a regression test pinning the exact partial-sample/uniform-connection case from the review. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
piotrswierzy
left a comment
There was a problem hiding this comment.
Re-review (/pr-review) — 55e7a09 → c9dc74f
Verdict: ✅ Approve. The remaining IMPORTANT is fixed, exactly as proposed.
The deep-link predicate
deriveCoverageHeadline now returns CoverageHeadlineResult extends AttentionRowCopy with a connectionId: string | null, and the caller destructures it rather than re-deriving:
const { connectionId, ...copy } = deriveCoverageHeadline(...);
// `connectionId` is read from the headline's OWN resolution, never
// re-derived here — a separately-computed, weaker predicate could pin a
// channel into this link that the headline above explicitly declined to
// name (#2120 re-review, IMPORTANT).
if (connectionId) params.set('connectionId', connectionId);One predicate, two consumers, and it inherits all three conditions (items.length === totalCount, every(len === 1), one distinct id) for free. The type-level doc is the part that will keep it fixed:
A caller building a deep link MUST read this field rather than re-deriving its own "single missing connection" predicate … the same false-claim-about-your-own-catalogue defect the sample-vs-total rule above exists to prevent, one field over.
Both surfaces now refuse to name a channel under the same conditions, which was the point.
Remaining, unchanged and minor
- "Publish now" still doesn't say it seeds only the sampled ≤20 — the caveat is on the sub line, the button is what acts.
const checkedCount = 3;still hardcoded above threeifblocks.
Neither blocks.
Merge mechanics — still the real risk here
This branch continues to carry #1990/#2171's already-merged code and its outstanding review fixes, including the toExclusiveEndInstant UTC correction. Since my last pass, #2098 landed its own toUtcRangeInstants covering the same local-day-in / UTC-instant-out conversion. Those two now overlap and need reconciling deliberately rather than merged blind — most cleanly by dropping the #2171 fix here in favour of #2098's, if they agree, or by naming which one is authoritative if they don't.
Stack position unchanged: base 1986-analytics-page-shell-plan (#2098), with #2014's migration-timestamp verification still gating the chain.
piotrswierzy
left a comment
There was a problem hiding this comment.
Tech-lead review — ✅ Approve
Scope: 33 files, +3862/−9. Needs-attention section, sales KPI view-model, copy helpers, GapMark, page wiring.
Two honesty rules that carry this PR
-
The sample-vs-total rule is the right fix and is correctly generalised.
itemsis a preview capped atDEFAULT_AGGREGATE_LIMIT(20) whiletotalCountis the real total, so a connection-named headline is only sound whenitems.length === totalCount. Naming a channel off a sample that can't speak for the remainder is the same class of defect as #2075's "no categories match" and ADR-041 §54's silent decline — a confident, specific, false statement about the operator's own data. Falling through to the connection-agnostic headline on any partial sample is the correct degradation, and the docblock ties it to the precedent rather than treating it as a local judgment call. -
FailedSyncValueSummary.totalValueis never rendered, including in the non-mixed case. This is the subtler half and it went the right way: a bare number with no currency symbol ("6,120.64 of orders never reached a destination") reads to an operator as a real denominated figure, so the non-mixed branch was making the same false claim as the mixed one, just less visibly. Always rendering the currency-agnostic count — and leavingtotalValueon the wire for unrelated consumers rather than ripping it out — is the proportionate call.
Both are consistent with the currency discipline in #2151/#2172 below them in the stack, which matters because these figures share a page.
Also right
- Copy helpers isolated from render so wording can be revised without touching component tests (+181 / +191 spec lines across the two libs).
GapMarkdistinguishes "a real figure with a caveat" from a whole-card planned treatment — those genuinely are different states and collapsing them would overstate what's missing.- Feature-barrel discipline maintained;
orders-list-page.test.tsxtouched only for shared test-util additions. ✅
🟡 IMPORTANT — GapMark's tooltip is unreachable without a mouse
apps/web/src/features/analytics/components/gap-mark.tsx
<span className="gap-mark" title={title}>†</span>The dagger is the element's entire content, so its accessible name is the glyph — screen readers announce "dagger" or nothing useful — and a native title on a non-interactive, non-focusable <span> never surfaces for a keyboard user. The reason the figure isn't backed by data is therefore mouse-only, which the style guide's Accessibility section rules out ("keyboard navigable … accessible tables and status labels", and the repo's general rule that a mark must not be the only signal).
Note this is not the .listing-cell__reason precedent (#2231), where title carries an overflow of text that is also rendered in full in the per-product panel — here there is no other surface carrying the reason.
Cheapest fix keeping the visual identical:
<span className="gap-mark" role="img" aria-label={title} title={title}>†</span>tabIndex={0} would additionally make it focusable, but a native title still won't render on focus in most browsers — if the reason is worth showing on focus, the Tooltip primitive (shared/ui/tooltip.tsx, wraps @radix-ui/react-tooltip, hover and focus with a delay group) is the sanctioned route and is already in the catalogue. Given a dagger is a footnote marker rather than a control, aria-label alone is proportionate for this PR; the Tooltip upgrade is a fine follow-up.
Not blocking — it's an added affordance on a new surface, degrading to a rendered figure that is still correct.
Checks
- Pure libs in
lib/, hooks inhooks/, page composes; no rawfetch();features→sharedonly. ✅ - CSS additions token-driven (+249 in
index.css), no raw hex spotted. ✅ - Style guide updated (+4). ✅
Approving, with the aria-label worth folding in before merge. Sits on #2098 → #2172 → #2151 → #2014.
…1991) (#2191) * feat(web,analytics): top products table with per-channel breakdown (#1991) Adds the /analytics top-products table: one row per product, per-channel units split, revenue/units sort toggle, and a Publish affordance for channels the product isn't listed on. Fixes a labeling gap found while manually testing against seeded data: a channel absent from the sales breakdown was always rendered "Not listed", even when the product was genuinely listed there and simply had no sale in the selected date range — now only a channel actually missing from `missingFromConnectionIds` gets the "Not listed" + Publish treatment; a listed-but-quiet channel renders the same real, full-weight `0` a channel with sales would. Closes #1991 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991)" This reverts commit 5a39290. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): show the native-currency evidence behind an unstamped top-products row (#1991) A product whose only orders in range were stamped under a PREVIOUS reporting-currency setting (or never stamped at all) rendered a bare "No FX-stamped order" empty value, even though the backend already exposed the native-currency figure as unconvertedRevenue/unconvertedCurrency (#1988). The Revenue column now falls back to that evidence when there is no current-era stamp, marked informational via a title tooltip — mirroring ChannelSalesTable's identical fallback for the #1987 by-channel read. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(web): remove unused vi import breaking tsc build" This reverts commit b915a03. * fix(web,analytics): address #2191 tech review — units total, Publish gating, touch a11y, ESLint slug - Units column now reads row.units (server-ranked figure) instead of re-summing row.channels[], which could silently disagree with the sort order the header arrow claims. - The Publish action is gated on listings:write via useWriteAccess + ReadOnlyLock: hidden for an unauthorized non-demo session, rendered disabled with the read-only tooltip for a demo viewer. - Swapped the Chip (aria-pressed toggle) for a real Link styled as a button, so the one-shot publish navigation carries link semantics (middle-click, open-in-new-tab) instead of misrepresenting itself as a permanently-unpressed toggle to assistive tech. - @media (hover: none) now stacks the "Not listed" label and the Publish action, both visible, instead of hiding the label on touch — the #1991 AC's label-vs-action distinction was desktop-only before. - Added the analytics feature slug to both no-restricted-imports pattern groups in .eslintrc.js. Closes review findings on #2191 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): SQL precedence bug + surface coverageGapAvailable/unresolvedProductCount (#2172/#2191 review) Root cause of the failing top-products-ranking int-spec: `unconvertedOrZeroTotal` was a bare, unparenthesized `X OR Y` string spliced into `${unconvertedOrZeroTotal} AND rec."currency" IS NULL`. SQL's AND-before-OR precedence turned that into `X OR (Y AND Z)` instead of the intended `(X OR Y) AND Z` — since X (reportingCurrency mismatch) was true for nearly every unstamped row, the guard fired unconditionally and `unconverted_currency` fell to NULL far more often than the data warranted. Fixed by parenthesizing the constant at its definition (both getTopProductRanking and getProductChannelBreakdown); pinned by the existing int-spec against real Postgres (a mocked unit spec cannot observe operator precedence) and recorded in docs/lessons.md. Also addresses the two still-open review IMPORTANT findings on the FE table: - `coverageGapAvailable: false` now suppresses "Not listed"/Publish on every channel cell (the enrichment failure makes missingFromConnectionIds unreliable for the whole response), rendering the real 0 instead, with a footnote explaining the check is unavailable. - `unresolvedProductCount > 0` is now disclosed via a footnote rather than silently absorbed. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(analytics): period-over-period delta on the sales KPI strip Adds a "vs previous period" delta to Orders, Order value, Units and Cancellation rate on the /analytics KPI strip — a second GET /analytics/sales call over the immediately-preceding period of the same length, refused outright (GapMark) unless the entire previous window is covered by ingested order history (per-connection earliest-order-date, #2083). Matches the design mockup's delta anatomy (docs/plans/mockups/ analytics-ledger-2003.html): an aria-hidden ↑/↓/→ glyph, a sr-only spoken sentence, and count/amount deltas rendered as a relative "%" while rate deltas (cancellation rate) render as an absolute "pp" — a rate moves in points, not percent. Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): mount top-products table and reveal Publish on hover ProductSalesTable (#1991) was fully built end-to-end but never mounted on AnalyticsPage, so the top-products section never rendered. Also add the .cell-not-listed hover/focus CSS the component's own doc comment already described but that was never written — the "Not listed" label now swaps for a Publish action on hover/focus (with a light warning-yellow glow), staying permanently visible on touch pointers. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com>
A native `title` on a non-interactive, non-focusable `<span>` whose
entire content is a dagger glyph never surfaces for a keyboard user,
and a screen reader has no accessible name to announce beyond "dagger".
Add role="img" + aria-label={title} alongside the existing title so the
caveat is announced regardless of input modality (#2120 review).
Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com>
…1989-needs-attention-plan
8888d43
into
1986-analytics-page-shell-plan
…, page (#2098) * docs(analytics): implementation plan for #1986 route shell Plan for the /analytics route shell (date-range control, trust header), branched off the current #1985 order-analytics-read-model state per the user's request, since two of its decisions (coverage-window row, degradation-banner rule) explicitly track #1985 and its follow-up #2083. Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics route shell — date-range toolbar, trust header (#2115) * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> * fix(web): bump the lazy-route contract count to 52 for /settings/mcp-tokens An earlier merge (feat(mcp): Resource-Server auth via user-issued Personal Access Tokens, #1486/#1912) added the /settings/mcp-tokens page as a lazy route, but the parameterized route-lazy contract test's expected count was never bumped, failing CI on this branch with "expected 52 to be 51". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2098 tech review + trust-header single-line layout - Sync docs/plans/implementation-plan-analytics-page-shell.md with the now-resolved Decision 3 (real earliestOrderDate coverage row) and Decision 4 (hasSalesInRange dropped), and note the Reusable Components divergences. - Replace the analytics-date-range-toolbar's Tooltip-based "Order date" caveat with a Popover on a real <button>, matching AnalyticsTrustHeader's pattern — Radix Tooltip ignores pointerType === 'touch', making the old trigger unreachable on mobile. - Trust header renders a single-line "data from X · synced Y" fact string with a per-channel colored dot, replacing the prior two-column label/value layout; adds TimeDisplay's 'time' format and formatAbsoluteTime helper it depends on. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): drop dangling "data from" prefix on the no-orders-yet fact The "data from" prefix was rendered unconditionally, so a connection with no earliestOrderDate read "data from no orders yet" instead of just "no orders yet". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address remaining #2098 review findings - date-range.lib.ts: add toUtcRangeInstants — the single conversion point future /analytics/* consumers must use to turn this toolbar's local-day, inclusive from/to into the backend's UTC, to-exclusive range contract (SalesAnalyticsQueryDto.to). Fixes the inclusive/ exclusive and local/UTC mismatches flagged in the /pr-review pass, pinned with tests. - ingestion-trust.lib.ts: rename shouldShowDegradationBanner to selectDegradedConnections (it returns the degraded subset, not a boolean) and type DEGRADED_STATUSES as Set<ConnectionIngestionStatus> with a comment on why 'unknown' is deliberately excluded. - analytics-page.tsx: adopt PageLayout instead of hand-rolled page-header markup; document the frozen `today` ref decision. - Sync the implementation plan doc with all of the above. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics needs-attention section (#2120) * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): sales KPI strip + by-channel table (#1990) Adds GET /analytics/sales client, view-model helpers, and the two FE sections #1990 scopes: a 6-card KPI strip (Revenue, Orders, Order value w/ median, Units, Cancellations, Returns & refunds) and a by-channel DataTable, mounted into the #1986 route shell. Currency-aware per #1987/#2049/ADR-040: every money figure carries its currency (headline.reportingCurrency), and a channel's revenueBasis ('reporting' | 'native' | 'unavailable') drives whether its revenue/ share render as plain values, a same-currency-but-incomparable caveat, or an explicit empty value — never a blended or falsely-comparable number. taxTreatment 'mixed' surfaces an inline chip so gross/net incomparability is stated, not implied. A channel whose earliest order postdates the range start renders a "Partial history" flag. Fixes an exclusive-end date bug found in a prior implementation attempt: the toolbar hands this an inclusive yyyy-mm-dd end day, but the endpoint treats `to` as exclusive — toExclusiveEndInstant converts it so the selected range's last day isn't silently dropped. Also fixes a pre-existing test race in orders-list-page.test.tsx: a synchronous assertion on empty-state text that depends on an async query, following an await on a chip that mounts synchronously from a URL param — now awaited with findByText. Closes #1990 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): type the pending-promise mocks in KPI strip/channel table tests CI's `tsc -b` (project-references build) caught what a plain `tsc --noEmit -p tsconfig.json` run missed locally: `vi.fn(() => new Promise(() => {}))` infers `Mock<() => Promise<unknown>>`, which doesn't satisfy `getSales`'s `Promise<SalesAndChannelAnalytics>` return type. Pin the generic on the never-resolving Promise, matching the existing analytics-trust test precedent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): align KPI strip/by-channel table with the real #1987 currency contract The frontend types were drafted ahead of the backend and assumed a shape it never shipped (non-null reportingCurrency, revenueBasis/nativeCurrency per channel, taxTreatmentMixed). Now that the actual #1987 currency wiring (reportingTotalAmount stamp + unconvertedCurrency labelling) has been merged in, rewrite the frontend to match it exactly: one nullable system-wide currency, unconvertedCount/Value/Currency per channel, and revenueShare always a number. - Cancellations KPI now leads with the rate (%), value/count as qualifiers. - By-channel table: a channel with no FX-stamped revenue yet falls back to its own unconverted-currency evidence instead of showing an empty cell, flagged with an "Awaiting FX stamp" chip. - Total rows: one reporting-currency total (real KPI aggregate) plus one informational unconverted-currency subtotal per distinct native currency — only emitted when more than one channel contributes, so a lone channel never gets a redundant duplicate total. - Orders/Avg daily/Units per order/Cancellation rate on the KPI strip now count every placed order (stamped + unconverted), not just the stamped subset. - Share and Trend columns reordered so Share sits immediately before Trend (previously Share was misplaced next to Revenue). - Fixed a CSS specificity bug where the Phase-6 dashboard-triage `.status-strip` rule silently won over `.status-strip--analytics` at >=1024px, packing the 6 KPI cards 4-then-2 instead of 3x2. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * docs(analytics): implementation plan for /analytics needs-attention section Plans issue #1989 — three actionable categories (coverage gaps, stock at risk, failed-sync value) consuming the already-shipped GET /analytics/needs-attention (#1983), mounted into the #1986 shell. No backend changes; resolves link targets, the mixedCurrency interim (tracked against #2049), and the ambiguous multi-connection copy case. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics needs-attention section (#1989) Renders the three needs-attention categories — coverage gaps, stock at risk, value stuck in failed syncs — mounted into the #1986 shell. Consumes the already-shipped GET /analytics/needs-attention (#1983) as-is; no backend changes. Either the open rows render or a single all-clear line does, never both, per the design mockup's rule. Each open row deep-links into the flow that resolves it: the unified publish wizard, the product detail page, or the orders list filtered to the needs_attention health bucket. Ambiguous multi-connection cases fall back to a connection-agnostic headline; the failed-sync total renders currency-neutral since the DTO carries no currency field in either the mixed or non-mixed case (interim pending #2049). Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): match needs-attention section to the #2003 mockup The plan (implementation-plan-analytics-needs-attention.md) required a client-side "checked HH:MM" timestamp in the panel header and a neutral-tone Clear badge, mirroring frame 02 of the design mockup (docs/plans/mockups/analytics-ledger-2003.html on the still-open #2018 branch). Both were dropped in the original implementation. Adds the checked-at timestamp (TimeDisplay driven by the query's own dataUpdatedAt, since the DTO carries no such field) and switches the all-clear badge from success to neutral, per spec. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): add missing earliestOrderDate to a needs-attention fixture Rebase fallout from the earliestOrderDate swap (#2083): the #1989-cherry-picked "keep the trust header rendered when needs-attention fails" test fixture predates that field and failed type-check. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2120 tech review — sample-vs-total headline defect - BLOCKING: deriveCoverageHeadline/deriveStockHeadline only name a connection when the preview sample IS the total (items.length === totalCount); otherwise fall through to the connection-agnostic headline, so a headline never asserts something only a 20-item sample verified. - "Publish now" sub now discloses when it only seeds the sampled variants ("showing the first N of M"). - Fix the "1 variant have a listing gap" grammar bug to a verb-free form, updating the test that had locked it in. - Thread a BCP 47 locale into deriveFailedSyncHeadline instead of hardcoding toLocaleString('en-US'). - Drop the unreachable MAX_WIZARD_IDS cap; derive productIds/variantIds from the same item list instead of two independently sliced arrays. - Render AnalyticsNeedsAttention regardless of order-ingestion status — coverage gaps and stock-at-risk are listing facts, not order facts. - Render .attention-list as <ul>/<li> for list semantics. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #1990/PR #2171 tech review — KPI strip UTC boundary, aria-label, style guide - toExclusiveEndInstant now anchors on UTC midnight instead of local midnight, matching the controller's UTC-parsed `from` (was silently dropping/adding hours off UTC). - Sparkline aria-labels derive from the actual selected range instead of a hardcoded "last 7 days". - Register the analytics KPI card's 152px/3-col geometry as a documented carve-out in the style guide (Density table + parity matrix), per the "never introduce an undocumented row height" rule. - Fix "Data order" planned-tag typo -> "Planned"; section-infotip font-size to the rem token equivalent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): emit currency total for single-contributing-channel groups groupChannelTotalsByCurrency skipped a currency's Total row whenever only one channel contributed to it, so a deployment with exactly one connection per currency (e.g. one EUR shop) silently lost that row. No spec basis for the threshold — the by-channel currency total should render for every distinct currency present, regardless of how many channels contribute. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2120 re-review — deep-link connection resolution Reuses deriveCoverageHeadline's own connection resolution for the coverage deep link's connectionId param instead of re-deriving it with a weaker predicate, so the bulk-wizard link can never name a channel the headline declined to name. Also derives the all-clear checkedCount from the evaluated categories rather than a hardcoded literal. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import in sales-analytics.api.test.ts Pre-existing lint error surfaced while validating the 1986 merge — vi was imported but never used in this file. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop rendering a currency-neutral total on the failed-sync row `deriveFailedSyncHeadline` formatted `totalValue` with no currency symbol ("6,120.64 of orders never reached a destination"), which reads as a real monetary figure to an operator even though the DTO carries no currency at all — the same misrepresentation risk the mixedCurrency branch already guarded against, just less obviously so. Both branches now render the same count-only shape; `totalValue` stays on the wire for future consumers, this headline just stops reading it. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop rendering a duplicate/colliding unconverted Total row groupChannelTotalsByCurrency emitted a `Total · {currency} (unconverted)` row per distinct unconvertedCurrency found across channels, with no regard for whether that currency string collided with the real reporting-currency Total row's label — a domestic-currency channel simply awaiting its first FX-stamp pass produced a second, same-labelled "Total · PLN" row computed from unrelated fields, reading as a contradiction rather than two distinct facts. Drop that row entirely. countUnconvertedOrders reports the currency-agnostic total count as a single footnote sentence under the table instead ("N orders not yet converted to the reporting currency — excluded from the figures above"), never a competing Total row and never a bare currency-neutral amount. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop the coverage deep-link from naming a channel the headline declined to deriveCoverageHeadline's connection-naming rule requires items.length === totalCount, every item missing from exactly one connection, and one distinct id. The "Publish now" deep link recomputed its own, weaker predicate (only the last condition), so a partial-but-uniform sample could pin a connectionId into the wizard link while the headline right next to it correctly fell back to the connection-agnostic copy — sending the operator into a wizard pre-scoped to a channel the row never actually asserted (#2120 re-review, IMPORTANT). deriveCoverageHeadline now returns connectionId (string | null) alongside the copy, computed by the same predicate; the component reads it instead of re-deriving one. Added a regression test pinning the exact partial-sample/uniform-connection case from the review. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): top products table with per-channel breakdown (#1991) (#2191) * feat(web,analytics): top products table with per-channel breakdown (#1991) Adds the /analytics top-products table: one row per product, per-channel units split, revenue/units sort toggle, and a Publish affordance for channels the product isn't listed on. Fixes a labeling gap found while manually testing against seeded data: a channel absent from the sales breakdown was always rendered "Not listed", even when the product was genuinely listed there and simply had no sale in the selected date range — now only a channel actually missing from `missingFromConnectionIds` gets the "Not listed" + Publish treatment; a listed-but-quiet channel renders the same real, full-weight `0` a channel with sales would. Closes #1991 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991)" This reverts commit 5a39290. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): show the native-currency evidence behind an unstamped top-products row (#1991) A product whose only orders in range were stamped under a PREVIOUS reporting-currency setting (or never stamped at all) rendered a bare "No FX-stamped order" empty value, even though the backend already exposed the native-currency figure as unconvertedRevenue/unconvertedCurrency (#1988). The Revenue column now falls back to that evidence when there is no current-era stamp, marked informational via a title tooltip — mirroring ChannelSalesTable's identical fallback for the #1987 by-channel read. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(web): remove unused vi import breaking tsc build" This reverts commit b915a03. * fix(web,analytics): address #2191 tech review — units total, Publish gating, touch a11y, ESLint slug - Units column now reads row.units (server-ranked figure) instead of re-summing row.channels[], which could silently disagree with the sort order the header arrow claims. - The Publish action is gated on listings:write via useWriteAccess + ReadOnlyLock: hidden for an unauthorized non-demo session, rendered disabled with the read-only tooltip for a demo viewer. - Swapped the Chip (aria-pressed toggle) for a real Link styled as a button, so the one-shot publish navigation carries link semantics (middle-click, open-in-new-tab) instead of misrepresenting itself as a permanently-unpressed toggle to assistive tech. - @media (hover: none) now stacks the "Not listed" label and the Publish action, both visible, instead of hiding the label on touch — the #1991 AC's label-vs-action distinction was desktop-only before. - Added the analytics feature slug to both no-restricted-imports pattern groups in .eslintrc.js. Closes review findings on #2191 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): SQL precedence bug + surface coverageGapAvailable/unresolvedProductCount (#2172/#2191 review) Root cause of the failing top-products-ranking int-spec: `unconvertedOrZeroTotal` was a bare, unparenthesized `X OR Y` string spliced into `${unconvertedOrZeroTotal} AND rec."currency" IS NULL`. SQL's AND-before-OR precedence turned that into `X OR (Y AND Z)` instead of the intended `(X OR Y) AND Z` — since X (reportingCurrency mismatch) was true for nearly every unstamped row, the guard fired unconditionally and `unconverted_currency` fell to NULL far more often than the data warranted. Fixed by parenthesizing the constant at its definition (both getTopProductRanking and getProductChannelBreakdown); pinned by the existing int-spec against real Postgres (a mocked unit spec cannot observe operator precedence) and recorded in docs/lessons.md. Also addresses the two still-open review IMPORTANT findings on the FE table: - `coverageGapAvailable: false` now suppresses "Not listed"/Publish on every channel cell (the enrichment failure makes missingFromConnectionIds unreliable for the whole response), rendering the real 0 instead, with a footnote explaining the check is unavailable. - `unresolvedProductCount > 0` is now disclosed via a footnote rather than silently absorbed. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(analytics): period-over-period delta on the sales KPI strip Adds a "vs previous period" delta to Orders, Order value, Units and Cancellation rate on the /analytics KPI strip — a second GET /analytics/sales call over the immediately-preceding period of the same length, refused outright (GapMark) unless the entire previous window is covered by ingested order history (per-connection earliest-order-date, #2083). Matches the design mockup's delta anatomy (docs/plans/mockups/ analytics-ledger-2003.html): an aria-hidden ↑/↓/→ glyph, a sr-only spoken sentence, and count/amount deltas rendered as a relative "%" while rate deltas (cancellation rate) render as an absolute "pp" — a rate moves in points, not percent. Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): mount top-products table and reveal Publish on hover ProductSalesTable (#1991) was fully built end-to-end but never mounted on AnalyticsPage, so the top-products section never rendered. Also add the .cell-not-listed hover/focus CSS the component's own doc comment already described but that was never written — the "Not listed" label now swaps for a Publish action on hover/focus (with a light warning-yellow glow), staying permanently visible on touch pointers. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> * fix(web,analytics): make GapMark's caveat reachable without a mouse A native `title` on a non-interactive, non-focusable `<span>` whose entire content is a dagger glyph never surfaces for a keyboard user, and a screen reader has no accessible name to announce beyond "dagger". Add role="img" + aria-label={title} alongside the existing title so the caveat is announced regardless of input modality (#2120 review). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
… split (#1988) (#2172) * feat(orders,analytics): top-products endpoint with inline per-channel split (#1988) Adds GET /analytics/top-products - products ranked by revenue or units for a date range, each row carrying its own per-channel breakdown, catalog metadata, and a listing-coverage-gap flag. Stacked on #1987's currency- correctness pattern (FILTER (WHERE reportingCurrency IS NOT NULL) / SUM via each order's own implicit FX multiplier), never silently summing across currencies and always disclosing what's unstamped/cancelled. - OrderLineItemRepositoryPort +getTopProductRanking, +getProductChannelBreakdown - buildTopProducts pure aggregation + IOrderRecordService.getTopProducts - TopProductsController/DTOs + apps/api-layer TopProductsService composing orders + products + listings (coverage-gap flag, O(connections) fan-out, degrades gracefully on failure - mirrors NeedsAttentionService) - Fixes a pre-existing gap: order_line_items was missing from the integration-test harness's tablesToTruncate list (no DB FK to cascade from order_records), which would leak rows between test files Built following docs/plans/implementation-plan-top-products-analytics.md (pre-implement gate: READY, included in this PR). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1988) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. (cherry picked from commit 5a39290) Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(orders,analytics): disclose the native currency behind unconverted top-products evidence (#1988) getTopProductRanking already folded a prior reporting-currency era (or a never-stamped order) into unconvertedRevenue/unconvertedOrderCount, but gave the frontend no way to label that figure — unlike the #1987 by-channel read, which already carries unconvertedCurrency for the identical situation. Adds unconvertedCurrency end to end (repository SQL, ProductRankingRow, TopProductView, TopProductRowDto): the one native currency shared by every order contributing to unconvertedRevenue, or null when that set mixes currencies, mirroring DailyOrderAggregateRow's existing rule. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics,products): address #2172 review findings on top-products ranking Two IMPORTANT correctness issues and three SUGGESTIONS from the #2172 tech review, all still open on this branch: - IMPORTANT 1: ORDER BY revenue/units had no tiebreaker, so pagination over a non-unique sort was non-deterministic in Postgres (ties could repeat on one page and be skipped on the next). Add addOrderBy('product_id', 'ASC'). - IMPORTANT 2: a stamped order with totalAmount = 0 (fully discounted/free) silently vanished from both revenue and unconvertedRevenue, since the FX multiplier (reportingTotalAmount / totalAmount) is NULL via NULLIF(totalAmount, 0). It now folds into the unconverted bucket instead, same as a never-stamped order, in both getTopProductRanking and getProductChannelBreakdown. - SUGGESTION 3: documented, in the endpoint's @apioperation description, that ranking by revenue is blind to unconverted revenue for a product whose orders are all unstamped. - SUGGESTION 4: resolveCoverageGaps fired up to `limit` concurrent getVariantsByProductId calls. Added a batch getVariantsByProductIds (ProductVariantRepositoryPort -> IProductsService) so the page's variant ids resolve in one query instead of one per product. - SUGGESTION 5: a coverage-gap enrichment failure degraded every row to missingFromConnectionIds: [], indistinguishable from "listed everywhere". Added TopProductsResponseDto.coverageGapAvailable so the FE can tell the two apart. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): label unconvertedCurrency per channel on top-products (#2172 review) The ranking row's unconvertedRevenue gained a currency label in an earlier fix, but the per-channel breakdown row didn't, so ProductChannelBreakdownDto.unconvertedRevenue stayed a bare number with no unit. Inheriting the parent's label isn't sound either: the parent goes null on a mixed set, but an individual channel's own subset is routinely single-currency even then — a channel is strictly more labelable than the product as a whole, never less. Lifts the same MAX(currency) FILTER (...) / COUNT(DISTINCT ...) <= 1 shape getTopProductRanking already uses, computed per (product, connection) in getProductChannelBreakdown, threaded through ProductChannelBreakdownRow and ProductChannelBreakdownDto. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): address remaining #2172 review findings - applyTopProductsScope now requires rec."totalAmount" IS NOT NULL, matching applySalesAnalyticsScope; the doc comment no longer claims byte-for-byte alignment it didn't hold (IMPORTANT 1). - unconvertedCurrency's label guard now also requires zero NULL rec."currency" rows in the filtered set, since COUNT(DISTINCT ...) alone ignores NULLs and could mislabel a {NULL, 'PLN'} mix as 'PLN' (SUGGESTION 3, same fix needed on both getTopProductRanking and getProductChannelBreakdown). - TopProductRowDto.revenue now documents that it is LINE revenue, not a per-product slice of order revenue, and that ranking is blind to unconvertedRevenue (IMPORTANT 2). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders): parenthesize unconvertedOrZeroTotal in top-products currency guard The unconverted_currency CASE guard concatenated the OR-joined unconvertedOrZeroTotal predicate with `AND rec."currency" IS NULL` without parentheses. Since SQL AND binds tighter than OR, this parsed as `A OR (B AND C)` instead of the intended `(A OR B) AND C`, so the "no NULL currency in the unconverted set" guard was satisfied whenever the reporting-currency mismatch term alone was true — the common case for any unstamped row — causing a single-currency channel/product to mislabel unconvertedCurrency as null. Same bug in both getTopProductRanking and getProductChannelBreakdown; fixed by wrapping the shared predicate in parens at both call sites. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(analytics): #1986 route shell — trust header, date-range toolbar, page (#2098) * docs(analytics): implementation plan for #1986 route shell Plan for the /analytics route shell (date-range control, trust header), branched off the current #1985 order-analytics-read-model state per the user's request, since two of its decisions (coverage-window row, degradation-banner rule) explicitly track #1985 and its follow-up #2083. Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics route shell — date-range toolbar, trust header (#2115) * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> * fix(web): bump the lazy-route contract count to 52 for /settings/mcp-tokens An earlier merge (feat(mcp): Resource-Server auth via user-issued Personal Access Tokens, #1486/#1912) added the /settings/mcp-tokens page as a lazy route, but the parameterized route-lazy contract test's expected count was never bumped, failing CI on this branch with "expected 52 to be 51". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2098 tech review + trust-header single-line layout - Sync docs/plans/implementation-plan-analytics-page-shell.md with the now-resolved Decision 3 (real earliestOrderDate coverage row) and Decision 4 (hasSalesInRange dropped), and note the Reusable Components divergences. - Replace the analytics-date-range-toolbar's Tooltip-based "Order date" caveat with a Popover on a real <button>, matching AnalyticsTrustHeader's pattern — Radix Tooltip ignores pointerType === 'touch', making the old trigger unreachable on mobile. - Trust header renders a single-line "data from X · synced Y" fact string with a per-channel colored dot, replacing the prior two-column label/value layout; adds TimeDisplay's 'time' format and formatAbsoluteTime helper it depends on. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): drop dangling "data from" prefix on the no-orders-yet fact The "data from" prefix was rendered unconditionally, so a connection with no earliestOrderDate read "data from no orders yet" instead of just "no orders yet". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address remaining #2098 review findings - date-range.lib.ts: add toUtcRangeInstants — the single conversion point future /analytics/* consumers must use to turn this toolbar's local-day, inclusive from/to into the backend's UTC, to-exclusive range contract (SalesAnalyticsQueryDto.to). Fixes the inclusive/ exclusive and local/UTC mismatches flagged in the /pr-review pass, pinned with tests. - ingestion-trust.lib.ts: rename shouldShowDegradationBanner to selectDegradedConnections (it returns the degraded subset, not a boolean) and type DEGRADED_STATUSES as Set<ConnectionIngestionStatus> with a comment on why 'unknown' is deliberately excluded. - analytics-page.tsx: adopt PageLayout instead of hand-rolled page-header markup; document the frozen `today` ref decision. - Sync the implementation plan doc with all of the above. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics needs-attention section (#2120) * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): sales KPI strip + by-channel table (#1990) Adds GET /analytics/sales client, view-model helpers, and the two FE sections #1990 scopes: a 6-card KPI strip (Revenue, Orders, Order value w/ median, Units, Cancellations, Returns & refunds) and a by-channel DataTable, mounted into the #1986 route shell. Currency-aware per #1987/#2049/ADR-040: every money figure carries its currency (headline.reportingCurrency), and a channel's revenueBasis ('reporting' | 'native' | 'unavailable') drives whether its revenue/ share render as plain values, a same-currency-but-incomparable caveat, or an explicit empty value — never a blended or falsely-comparable number. taxTreatment 'mixed' surfaces an inline chip so gross/net incomparability is stated, not implied. A channel whose earliest order postdates the range start renders a "Partial history" flag. Fixes an exclusive-end date bug found in a prior implementation attempt: the toolbar hands this an inclusive yyyy-mm-dd end day, but the endpoint treats `to` as exclusive — toExclusiveEndInstant converts it so the selected range's last day isn't silently dropped. Also fixes a pre-existing test race in orders-list-page.test.tsx: a synchronous assertion on empty-state text that depends on an async query, following an await on a chip that mounts synchronously from a URL param — now awaited with findByText. Closes #1990 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): type the pending-promise mocks in KPI strip/channel table tests CI's `tsc -b` (project-references build) caught what a plain `tsc --noEmit -p tsconfig.json` run missed locally: `vi.fn(() => new Promise(() => {}))` infers `Mock<() => Promise<unknown>>`, which doesn't satisfy `getSales`'s `Promise<SalesAndChannelAnalytics>` return type. Pin the generic on the never-resolving Promise, matching the existing analytics-trust test precedent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): align KPI strip/by-channel table with the real #1987 currency contract The frontend types were drafted ahead of the backend and assumed a shape it never shipped (non-null reportingCurrency, revenueBasis/nativeCurrency per channel, taxTreatmentMixed). Now that the actual #1987 currency wiring (reportingTotalAmount stamp + unconvertedCurrency labelling) has been merged in, rewrite the frontend to match it exactly: one nullable system-wide currency, unconvertedCount/Value/Currency per channel, and revenueShare always a number. - Cancellations KPI now leads with the rate (%), value/count as qualifiers. - By-channel table: a channel with no FX-stamped revenue yet falls back to its own unconverted-currency evidence instead of showing an empty cell, flagged with an "Awaiting FX stamp" chip. - Total rows: one reporting-currency total (real KPI aggregate) plus one informational unconverted-currency subtotal per distinct native currency — only emitted when more than one channel contributes, so a lone channel never gets a redundant duplicate total. - Orders/Avg daily/Units per order/Cancellation rate on the KPI strip now count every placed order (stamped + unconverted), not just the stamped subset. - Share and Trend columns reordered so Share sits immediately before Trend (previously Share was misplaced next to Revenue). - Fixed a CSS specificity bug where the Phase-6 dashboard-triage `.status-strip` rule silently won over `.status-strip--analytics` at >=1024px, packing the 6 KPI cards 4-then-2 instead of 3x2. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * docs(analytics): implementation plan for /analytics needs-attention section Plans issue #1989 — three actionable categories (coverage gaps, stock at risk, failed-sync value) consuming the already-shipped GET /analytics/needs-attention (#1983), mounted into the #1986 shell. No backend changes; resolves link targets, the mixedCurrency interim (tracked against #2049), and the ambiguous multi-connection copy case. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics needs-attention section (#1989) Renders the three needs-attention categories — coverage gaps, stock at risk, value stuck in failed syncs — mounted into the #1986 shell. Consumes the already-shipped GET /analytics/needs-attention (#1983) as-is; no backend changes. Either the open rows render or a single all-clear line does, never both, per the design mockup's rule. Each open row deep-links into the flow that resolves it: the unified publish wizard, the product detail page, or the orders list filtered to the needs_attention health bucket. Ambiguous multi-connection cases fall back to a connection-agnostic headline; the failed-sync total renders currency-neutral since the DTO carries no currency field in either the mixed or non-mixed case (interim pending #2049). Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): match needs-attention section to the #2003 mockup The plan (implementation-plan-analytics-needs-attention.md) required a client-side "checked HH:MM" timestamp in the panel header and a neutral-tone Clear badge, mirroring frame 02 of the design mockup (docs/plans/mockups/analytics-ledger-2003.html on the still-open #2018 branch). Both were dropped in the original implementation. Adds the checked-at timestamp (TimeDisplay driven by the query's own dataUpdatedAt, since the DTO carries no such field) and switches the all-clear badge from success to neutral, per spec. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): add missing earliestOrderDate to a needs-attention fixture Rebase fallout from the earliestOrderDate swap (#2083): the #1989-cherry-picked "keep the trust header rendered when needs-attention fails" test fixture predates that field and failed type-check. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2120 tech review — sample-vs-total headline defect - BLOCKING: deriveCoverageHeadline/deriveStockHeadline only name a connection when the preview sample IS the total (items.length === totalCount); otherwise fall through to the connection-agnostic headline, so a headline never asserts something only a 20-item sample verified. - "Publish now" sub now discloses when it only seeds the sampled variants ("showing the first N of M"). - Fix the "1 variant have a listing gap" grammar bug to a verb-free form, updating the test that had locked it in. - Thread a BCP 47 locale into deriveFailedSyncHeadline instead of hardcoding toLocaleString('en-US'). - Drop the unreachable MAX_WIZARD_IDS cap; derive productIds/variantIds from the same item list instead of two independently sliced arrays. - Render AnalyticsNeedsAttention regardless of order-ingestion status — coverage gaps and stock-at-risk are listing facts, not order facts. - Render .attention-list as <ul>/<li> for list semantics. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #1990/PR #2171 tech review — KPI strip UTC boundary, aria-label, style guide - toExclusiveEndInstant now anchors on UTC midnight instead of local midnight, matching the controller's UTC-parsed `from` (was silently dropping/adding hours off UTC). - Sparkline aria-labels derive from the actual selected range instead of a hardcoded "last 7 days". - Register the analytics KPI card's 152px/3-col geometry as a documented carve-out in the style guide (Density table + parity matrix), per the "never introduce an undocumented row height" rule. - Fix "Data order" planned-tag typo -> "Planned"; section-infotip font-size to the rem token equivalent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): emit currency total for single-contributing-channel groups groupChannelTotalsByCurrency skipped a currency's Total row whenever only one channel contributed to it, so a deployment with exactly one connection per currency (e.g. one EUR shop) silently lost that row. No spec basis for the threshold — the by-channel currency total should render for every distinct currency present, regardless of how many channels contribute. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2120 re-review — deep-link connection resolution Reuses deriveCoverageHeadline's own connection resolution for the coverage deep link's connectionId param instead of re-deriving it with a weaker predicate, so the bulk-wizard link can never name a channel the headline declined to name. Also derives the all-clear checkedCount from the evaluated categories rather than a hardcoded literal. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import in sales-analytics.api.test.ts Pre-existing lint error surfaced while validating the 1986 merge — vi was imported but never used in this file. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop rendering a currency-neutral total on the failed-sync row `deriveFailedSyncHeadline` formatted `totalValue` with no currency symbol ("6,120.64 of orders never reached a destination"), which reads as a real monetary figure to an operator even though the DTO carries no currency at all — the same misrepresentation risk the mixedCurrency branch already guarded against, just less obviously so. Both branches now render the same count-only shape; `totalValue` stays on the wire for future consumers, this headline just stops reading it. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop rendering a duplicate/colliding unconverted Total row groupChannelTotalsByCurrency emitted a `Total · {currency} (unconverted)` row per distinct unconvertedCurrency found across channels, with no regard for whether that currency string collided with the real reporting-currency Total row's label — a domestic-currency channel simply awaiting its first FX-stamp pass produced a second, same-labelled "Total · PLN" row computed from unrelated fields, reading as a contradiction rather than two distinct facts. Drop that row entirely. countUnconvertedOrders reports the currency-agnostic total count as a single footnote sentence under the table instead ("N orders not yet converted to the reporting currency — excluded from the figures above"), never a competing Total row and never a bare currency-neutral amount. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop the coverage deep-link from naming a channel the headline declined to deriveCoverageHeadline's connection-naming rule requires items.length === totalCount, every item missing from exactly one connection, and one distinct id. The "Publish now" deep link recomputed its own, weaker predicate (only the last condition), so a partial-but-uniform sample could pin a connectionId into the wizard link while the headline right next to it correctly fell back to the connection-agnostic copy — sending the operator into a wizard pre-scoped to a channel the row never actually asserted (#2120 re-review, IMPORTANT). deriveCoverageHeadline now returns connectionId (string | null) alongside the copy, computed by the same predicate; the component reads it instead of re-deriving one. Added a regression test pinning the exact partial-sample/uniform-connection case from the review. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): top products table with per-channel breakdown (#1991) (#2191) * feat(web,analytics): top products table with per-channel breakdown (#1991) Adds the /analytics top-products table: one row per product, per-channel units split, revenue/units sort toggle, and a Publish affordance for channels the product isn't listed on. Fixes a labeling gap found while manually testing against seeded data: a channel absent from the sales breakdown was always rendered "Not listed", even when the product was genuinely listed there and simply had no sale in the selected date range — now only a channel actually missing from `missingFromConnectionIds` gets the "Not listed" + Publish treatment; a listed-but-quiet channel renders the same real, full-weight `0` a channel with sales would. Closes #1991 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991)" This reverts commit 5a39290. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): show the native-currency evidence behind an unstamped top-products row (#1991) A product whose only orders in range were stamped under a PREVIOUS reporting-currency setting (or never stamped at all) rendered a bare "No FX-stamped order" empty value, even though the backend already exposed the native-currency figure as unconvertedRevenue/unconvertedCurrency (#1988). The Revenue column now falls back to that evidence when there is no current-era stamp, marked informational via a title tooltip — mirroring ChannelSalesTable's identical fallback for the #1987 by-channel read. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(web): remove unused vi import breaking tsc build" This reverts commit b915a03. * fix(web,analytics): address #2191 tech review — units total, Publish gating, touch a11y, ESLint slug - Units column now reads row.units (server-ranked figure) instead of re-summing row.channels[], which could silently disagree with the sort order the header arrow claims. - The Publish action is gated on listings:write via useWriteAccess + ReadOnlyLock: hidden for an unauthorized non-demo session, rendered disabled with the read-only tooltip for a demo viewer. - Swapped the Chip (aria-pressed toggle) for a real Link styled as a button, so the one-shot publish navigation carries link semantics (middle-click, open-in-new-tab) instead of misrepresenting itself as a permanently-unpressed toggle to assistive tech. - @media (hover: none) now stacks the "Not listed" label and the Publish action, both visible, instead of hiding the label on touch — the #1991 AC's label-vs-action distinction was desktop-only before. - Added the analytics feature slug to both no-restricted-imports pattern groups in .eslintrc.js. Closes review findings on #2191 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): SQL precedence bug + surface coverageGapAvailable/unresolvedProductCount (#2172/#2191 review) Root cause of the failing top-products-ranking int-spec: `unconvertedOrZeroTotal` was a bare, unparenthesized `X OR Y` string spliced into `${unconvertedOrZeroTotal} AND rec."currency" IS NULL`. SQL's AND-before-OR precedence turned that into `X OR (Y AND Z)` instead of the intended `(X OR Y) AND Z` — since X (reportingCurrency mismatch) was true for nearly every unstamped row, the guard fired unconditionally and `unconverted_currency` fell to NULL far more often than the data warranted. Fixed by parenthesizing the constant at its definition (both getTopProductRanking and getProductChannelBreakdown); pinned by the existing int-spec against real Postgres (a mocked unit spec cannot observe operator precedence) and recorded in docs/lessons.md. Also addresses the two still-open review IMPORTANT findings on the FE table: - `coverageGapAvailable: false` now suppresses "Not listed"/Publish on every channel cell (the enrichment failure makes missingFromConnectionIds unreliable for the whole response), rendering the real 0 instead, with a footnote explaining the check is unavailable. - `unresolvedProductCount > 0` is now disclosed via a footnote rather than silently absorbed. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(analytics): period-over-period delta on the sales KPI strip Adds a "vs previous period" delta to Orders, Order value, Units and Cancellation rate on the /analytics KPI strip — a second GET /analytics/sales call over the immediately-preceding period of the same length, refused outright (GapMark) unless the entire previous window is covered by ingested order history (per-connection earliest-order-date, #2083). Matches the design mockup's delta anatomy (docs/plans/mockups/ analytics-ledger-2003.html): an aria-hidden ↑/↓/→ glyph, a sr-only spoken sentence, and count/amount deltas rendered as a relative "%" while rate deltas (cancellation rate) render as an absolute "pp" — a rate moves in points, not percent. Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): mount top-products table and reveal Publish on hover ProductSalesTable (#1991) was fully built end-to-end but never mounted on AnalyticsPage, so the top-products section never rendered. Also add the .cell-not-listed hover/focus CSS the component's own doc comment already described but that was never written — the "Not listed" label now swaps for a Publish action on hover/focus (with a light warning-yellow glow), staying permanently visible on touch pointers. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> * fix(web,analytics): make GapMark's caveat reachable without a mouse A native `title` on a non-interactive, non-focusable `<span>` whose entire content is a dagger glyph never surfaces for a keyboard user, and a screen reader has no accessible name to announce beyond "dagger". Add role="img" + aria-label={title} alongside the existing title so the caveat is announced regardless of input modality (#2120 review). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> * docs(orders): explain why getTopProducts reads are sequential, not parallel getProductChannelBreakdown is scoped to the current page's productIds, which only exist once getTopProductRanking has returned — unlike the three independent Promise.all reads in getSalesAndChannelAnalytics above it. Note the distinction so a reader doesn't mistake the missing parallelisation for an oversight (#2172 review, SUGGESTION 2). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
…2151) * feat(orders,analytics): add sales & channel aggregates endpoint (#1987) Adds GET /analytics/sales: revenue, order count, AOV, median order value, units sold, and cancelled count/value for a date range, plus a 7-day daily trend (revenue + order count), at headline level and broken down per source connection with a revenue share and a coverage-completeness signal (reusing #2083's getEarliestOrderDateByConnection so a channel that can't possibly cover the full requested range is identifiable in the response). Built entirely on top of the #1985 order analytics read model (order_records.placedAt/totalAmount/cancelledAt, order_line_items) - one new pure aggregation function in the orders domain layer, two new OrderRecordRepositoryPort methods (daily FILTER-clause aggregates, PERCENTILE_CONT median), one new OrderLineItemRepositoryPort method (units sold per connection), and one new IOrderRecordService method composing them - entirely intra-context, no new cross-context edge. Currency-mixing detection and gross/net tax-treatment normalization are deliberately out of scope - tracked under #2049/ADR-040 (currency) and a separate, not-yet-scoped tax-normalization effort respectively. totalAmount is summed as-is; this is called out explicitly in code comments so the omission reads as a scoping decision, not a gap. Includes the implementation plan doc this PR follows. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): report cancelled count/value per channel too (#1987) The issue's own follow-up comment asks for cancelled count/value "headline and, if feasible, per channel". It's feasible at zero extra cost: DailyOrderAggregateRow already carries cancelledCount/ cancelledValue per (day, connection), so this only sums data the existing query already returns - no new query, no new repository method. Adds ChannelSalesAnalytics.cancelledCount/cancelledValue, threads them through the aggregation function, the response DTO, and adds a test asserting the per-channel totals sum back to the headline figure. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): wire sales aggregates to reportingTotalAmount now that #2049 has landed This PR's own scope table deferred currency-mixing detection to #2049/ADR-040, summing totalAmount as-is. #2049 shipped (PR #2050) while this PR was still open, stamping order_records.reportingCurrency/ reportingTotalAmount - so the fix lands here rather than as a follow-up issue. - getDailyOrderAggregates / getMedianOrderValue: revenue, orderCount and medianOrderValue now sum/percentile reportingTotalAmount restricted to reportingCurrency IS NOT NULL - one comparable currency, never a naive cross-currency sum. - The complementary unstamped slice (pre-#2049 history, or a stamp still in flight) is surfaced explicitly via new unconvertedCount/ unconvertedValue fields (native totalAmount, informational, may itself mix currencies) rather than silently folded into revenue or silently dropped. - New `currency` field (headline + per channel) reports which reporting currency revenue/AOV/median are expressed in; null when nothing in range is stamped yet. - cancelledCount/cancelledValue deliberately left on native totalAmount, unchanged - a secondary figure, out of scope for this pass. - Threaded through the pure aggregation function, the response DTOs, and every affected test fixture (repository, service, aggregation, controller specs). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): label the unconverted-currency evidence per channel The by-channel table needs to show each market's own native-currency total for orders not yet FX-stamped, not just a single potentially mixed-currency number - the mockup this scope was designed against (03b · Two currencies) shows per-channel figures split by their own currency, with only the reporting-currency footer pooled. unconvertedCount/unconvertedValue already existed (#2049/ADR-040 follow-up) but carried no currency label and could legitimately mix currencies per the type's own doc comment. This is #1987's own scope, not an FX-epic deliverable: order_records.currency is the pre-existing native-currency column from #1985, untouched by the FX epic's reportingCurrency/reportingTotalAmount stamp - labelling the unconverted evidence is purely an aggregation-query addition. - getDailyOrderAggregates: adds unconverted_currency, the single native currency shared by every unconverted, non-cancelled order this day/connection, NULL when that set mixes currencies. - resolveUniformUnconvertedCurrency (aggregation layer): rolls the per-day label up to headline/channel, treating a day with zero unconverted orders as "nothing to report" rather than letting it poison the whole set to null. - Threaded through DailyOrderAggregateRow, SalesAnalyticsHeadline, ChannelSalesAnalytics, the response DTOs, and every affected test fixture (repository, service, aggregation, controller specs). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): guard mixed-currency labels + UTC day buckets (#1987 review) IMPORTANT 1: getDailyOrderAggregates labelled a (day, connection) bucket's revenue with (array_agg(reportingCurrency))[1] — the first value happened to sort first — even though reportingCurrency isn't guaranteed single-valued within a bucket (an in-flight #2096 restatement can leave two live at once). Guarded it with the same COUNT(DISTINCT ...) <= 1 pattern unconvertedCurrency already uses, and gave the domain-layer pickCurrency the matching cross-row disagreement check (resolveUniformReportingCurrency) rather than "first non-null wins". IMPORTANT 2: date_trunc('day', placedAt) truncates at local midnight per the Postgres session TimeZone GUC, since placedAt is timestamptz — on a non-UTC server every bucket would land on the wrong calendar day and silently mismatch enumerateDayKeys's UTC keys, zeroing every trend point beneath a correct headline. Made the boundary explicit: date_trunc('day', placedAt AT TIME ZONE 'UTC') AT TIME ZONE 'UTC'. SUGGESTIONS: medianOrderValue no longer flattens "no stamped order in range" to the same 0 as a genuine zero median (now number | null, plumbed through the DTO); documented the units-vs-orderCount scoping mismatch on OrderLineItemRepositoryPort; added sales-analytics-aggregates.int-spec.ts against Testcontainers Postgres to pin both IMPORTANT fixes against a real server (the reviewer's own root-cause note: the mocked query builder could never have caught either). Also merges in the latest 1985-order-analytics-read-model (this PR's base branch), which had picked up its own review fixes since this branch last merged from it. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders): make the UTC day-bucket int-spec actually guard the regression Testcontainers Postgres boots with session TimeZone = UTC, so the existing assertion passed identically with or without the AT TIME ZONE 'UTC' pair in getDailyOrderAggregates — it documented intent but couldn't fail on a regression (#2151 review, SUGGESTION). Force the session TimeZone to Europe/Warsaw for this one read (and restore it afterward), so a regression to a bare date_trunc('day', placedAt) actually flips the bucket to the following day and fails the test. SET TIME ZONE is session-scoped; dataSource.query and the repository read run back-to-back with nothing else contending for the pool, so the same just-released client is reused. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): address #2151 re-review — currency-era scoping, null flattening, units population - IMPORTANT 1: getUnitsSoldByConnection now splits into unitsSold/ unconvertedUnitsSold on the SAME reportingCurrency = current-era-stamped population orderCount/revenue use, instead of summing every non-cancelled line regardless of stamp state. - IMPORTANT 2: averageOrderValue and revenueShare now report null (not 0) when there is nothing to report, matching medianOrderValue's existing null-vs-zero distinction. - Notes (ported from #2172's getTopProductRanking fix): getDailyOrderAggregates and getMedianOrderValue now scope orderCount/revenue/median to reportingCurrency = currentReportingCurrency (resolved once per read via IReportingCurrencySettingsService.resolve()) instead of a bare IS NOT NULL, so a reporting-currency setting change folds prior-era stamps into the unconverted bucket rather than silently mixing two currencies into one sum. - Suggestion 3: GET /analytics/sales now rejects a range wider than 400 days. - Suggestion 4: unconverted_currency's uniformity guard now also fails when the unconverted set contains a row with no recorded native currency. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(orders,analytics): top-products endpoint with inline per-channel split (#1988) (#2172) * feat(orders,analytics): top-products endpoint with inline per-channel split (#1988) Adds GET /analytics/top-products - products ranked by revenue or units for a date range, each row carrying its own per-channel breakdown, catalog metadata, and a listing-coverage-gap flag. Stacked on #1987's currency- correctness pattern (FILTER (WHERE reportingCurrency IS NOT NULL) / SUM via each order's own implicit FX multiplier), never silently summing across currencies and always disclosing what's unstamped/cancelled. - OrderLineItemRepositoryPort +getTopProductRanking, +getProductChannelBreakdown - buildTopProducts pure aggregation + IOrderRecordService.getTopProducts - TopProductsController/DTOs + apps/api-layer TopProductsService composing orders + products + listings (coverage-gap flag, O(connections) fan-out, degrades gracefully on failure - mirrors NeedsAttentionService) - Fixes a pre-existing gap: order_line_items was missing from the integration-test harness's tablesToTruncate list (no DB FK to cascade from order_records), which would leak rows between test files Built following docs/plans/implementation-plan-top-products-analytics.md (pre-implement gate: READY, included in this PR). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1988) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. (cherry picked from commit 5a39290) Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(orders,analytics): disclose the native currency behind unconverted top-products evidence (#1988) getTopProductRanking already folded a prior reporting-currency era (or a never-stamped order) into unconvertedRevenue/unconvertedOrderCount, but gave the frontend no way to label that figure — unlike the #1987 by-channel read, which already carries unconvertedCurrency for the identical situation. Adds unconvertedCurrency end to end (repository SQL, ProductRankingRow, TopProductView, TopProductRowDto): the one native currency shared by every order contributing to unconvertedRevenue, or null when that set mixes currencies, mirroring DailyOrderAggregateRow's existing rule. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics,products): address #2172 review findings on top-products ranking Two IMPORTANT correctness issues and three SUGGESTIONS from the #2172 tech review, all still open on this branch: - IMPORTANT 1: ORDER BY revenue/units had no tiebreaker, so pagination over a non-unique sort was non-deterministic in Postgres (ties could repeat on one page and be skipped on the next). Add addOrderBy('product_id', 'ASC'). - IMPORTANT 2: a stamped order with totalAmount = 0 (fully discounted/free) silently vanished from both revenue and unconvertedRevenue, since the FX multiplier (reportingTotalAmount / totalAmount) is NULL via NULLIF(totalAmount, 0). It now folds into the unconverted bucket instead, same as a never-stamped order, in both getTopProductRanking and getProductChannelBreakdown. - SUGGESTION 3: documented, in the endpoint's @apioperation description, that ranking by revenue is blind to unconverted revenue for a product whose orders are all unstamped. - SUGGESTION 4: resolveCoverageGaps fired up to `limit` concurrent getVariantsByProductId calls. Added a batch getVariantsByProductIds (ProductVariantRepositoryPort -> IProductsService) so the page's variant ids resolve in one query instead of one per product. - SUGGESTION 5: a coverage-gap enrichment failure degraded every row to missingFromConnectionIds: [], indistinguishable from "listed everywhere". Added TopProductsResponseDto.coverageGapAvailable so the FE can tell the two apart. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): label unconvertedCurrency per channel on top-products (#2172 review) The ranking row's unconvertedRevenue gained a currency label in an earlier fix, but the per-channel breakdown row didn't, so ProductChannelBreakdownDto.unconvertedRevenue stayed a bare number with no unit. Inheriting the parent's label isn't sound either: the parent goes null on a mixed set, but an individual channel's own subset is routinely single-currency even then — a channel is strictly more labelable than the product as a whole, never less. Lifts the same MAX(currency) FILTER (...) / COUNT(DISTINCT ...) <= 1 shape getTopProductRanking already uses, computed per (product, connection) in getProductChannelBreakdown, threaded through ProductChannelBreakdownRow and ProductChannelBreakdownDto. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): address remaining #2172 review findings - applyTopProductsScope now requires rec."totalAmount" IS NOT NULL, matching applySalesAnalyticsScope; the doc comment no longer claims byte-for-byte alignment it didn't hold (IMPORTANT 1). - unconvertedCurrency's label guard now also requires zero NULL rec."currency" rows in the filtered set, since COUNT(DISTINCT ...) alone ignores NULLs and could mislabel a {NULL, 'PLN'} mix as 'PLN' (SUGGESTION 3, same fix needed on both getTopProductRanking and getProductChannelBreakdown). - TopProductRowDto.revenue now documents that it is LINE revenue, not a per-product slice of order revenue, and that ranking is blind to unconvertedRevenue (IMPORTANT 2). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders): parenthesize unconvertedOrZeroTotal in top-products currency guard The unconverted_currency CASE guard concatenated the OR-joined unconvertedOrZeroTotal predicate with `AND rec."currency" IS NULL` without parentheses. Since SQL AND binds tighter than OR, this parsed as `A OR (B AND C)` instead of the intended `(A OR B) AND C`, so the "no NULL currency in the unconverted set" guard was satisfied whenever the reporting-currency mismatch term alone was true — the common case for any unstamped row — causing a single-currency channel/product to mislabel unconvertedCurrency as null. Same bug in both getTopProductRanking and getProductChannelBreakdown; fixed by wrapping the shared predicate in parens at both call sites. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(analytics): #1986 route shell — trust header, date-range toolbar, page (#2098) * docs(analytics): implementation plan for #1986 route shell Plan for the /analytics route shell (date-range control, trust header), branched off the current #1985 order-analytics-read-model state per the user's request, since two of its decisions (coverage-window row, degradation-banner rule) explicitly track #1985 and its follow-up #2083. Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics route shell — date-range toolbar, trust header (#2115) * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> * fix(web): bump the lazy-route contract count to 52 for /settings/mcp-tokens An earlier merge (feat(mcp): Resource-Server auth via user-issued Personal Access Tokens, #1486/#1912) added the /settings/mcp-tokens page as a lazy route, but the parameterized route-lazy contract test's expected count was never bumped, failing CI on this branch with "expected 52 to be 51". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2098 tech review + trust-header single-line layout - Sync docs/plans/implementation-plan-analytics-page-shell.md with the now-resolved Decision 3 (real earliestOrderDate coverage row) and Decision 4 (hasSalesInRange dropped), and note the Reusable Components divergences. - Replace the analytics-date-range-toolbar's Tooltip-based "Order date" caveat with a Popover on a real <button>, matching AnalyticsTrustHeader's pattern — Radix Tooltip ignores pointerType === 'touch', making the old trigger unreachable on mobile. - Trust header renders a single-line "data from X · synced Y" fact string with a per-channel colored dot, replacing the prior two-column label/value layout; adds TimeDisplay's 'time' format and formatAbsoluteTime helper it depends on. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): drop dangling "data from" prefix on the no-orders-yet fact The "data from" prefix was rendered unconditionally, so a connection with no earliestOrderDate read "data from no orders yet" instead of just "no orders yet". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address remaining #2098 review findings - date-range.lib.ts: add toUtcRangeInstants — the single conversion point future /analytics/* consumers must use to turn this toolbar's local-day, inclusive from/to into the backend's UTC, to-exclusive range contract (SalesAnalyticsQueryDto.to). Fixes the inclusive/ exclusive and local/UTC mismatches flagged in the /pr-review pass, pinned with tests. - ingestion-trust.lib.ts: rename shouldShowDegradationBanner to selectDegradedConnections (it returns the degraded subset, not a boolean) and type DEGRADED_STATUSES as Set<ConnectionIngestionStatus> with a comment on why 'unknown' is deliberately excluded. - analytics-page.tsx: adopt PageLayout instead of hand-rolled page-header markup; document the frozen `today` ref decision. - Sync the implementation plan doc with all of the above. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics needs-attention section (#2120) * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): sales KPI strip + by-channel table (#1990) Adds GET /analytics/sales client, view-model helpers, and the two FE sections #1990 scopes: a 6-card KPI strip (Revenue, Orders, Order value w/ median, Units, Cancellations, Returns & refunds) and a by-channel DataTable, mounted into the #1986 route shell. Currency-aware per #1987/#2049/ADR-040: every money figure carries its currency (headline.reportingCurrency), and a channel's revenueBasis ('reporting' | 'native' | 'unavailable') drives whether its revenue/ share render as plain values, a same-currency-but-incomparable caveat, or an explicit empty value — never a blended or falsely-comparable number. taxTreatment 'mixed' surfaces an inline chip so gross/net incomparability is stated, not implied. A channel whose earliest order postdates the range start renders a "Partial history" flag. Fixes an exclusive-end date bug found in a prior implementation attempt: the toolbar hands this an inclusive yyyy-mm-dd end day, but the endpoint treats `to` as exclusive — toExclusiveEndInstant converts it so the selected range's last day isn't silently dropped. Also fixes a pre-existing test race in orders-list-page.test.tsx: a synchronous assertion on empty-state text that depends on an async query, following an await on a chip that mounts synchronously from a URL param — now awaited with findByText. Closes #1990 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): type the pending-promise mocks in KPI strip/channel table tests CI's `tsc -b` (project-references build) caught what a plain `tsc --noEmit -p tsconfig.json` run missed locally: `vi.fn(() => new Promise(() => {}))` infers `Mock<() => Promise<unknown>>`, which doesn't satisfy `getSales`'s `Promise<SalesAndChannelAnalytics>` return type. Pin the generic on the never-resolving Promise, matching the existing analytics-trust test precedent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): align KPI strip/by-channel table with the real #1987 currency contract The frontend types were drafted ahead of the backend and assumed a shape it never shipped (non-null reportingCurrency, revenueBasis/nativeCurrency per channel, taxTreatmentMixed). Now that the actual #1987 currency wiring (reportingTotalAmount stamp + unconvertedCurrency labelling) has been merged in, rewrite the frontend to match it exactly: one nullable system-wide currency, unconvertedCount/Value/Currency per channel, and revenueShare always a number. - Cancellations KPI now leads with the rate (%), value/count as qualifiers. - By-channel table: a channel with no FX-stamped revenue yet falls back to its own unconverted-currency evidence instead of showing an empty cell, flagged with an "Awaiting FX stamp" chip. - Total rows: one reporting-currency total (real KPI aggregate) plus one informational unconverted-currency subtotal per distinct native currency — only emitted when more than one channel contributes, so a lone channel never gets a redundant duplicate total. - Orders/Avg daily/Units per order/Cancellation rate on the KPI strip now count every placed order (stamped + unconverted), not just the stamped subset. - Share and Trend columns reordered so Share sits immediately before Trend (previously Share was misplaced next to Revenue). - Fixed a CSS specificity bug where the Phase-6 dashboard-triage `.status-strip` rule silently won over `.status-strip--analytics` at >=1024px, packing the 6 KPI cards 4-then-2 instead of 3x2. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * docs(analytics): implementation plan for /analytics needs-attention section Plans issue #1989 — three actionable categories (coverage gaps, stock at risk, failed-sync value) consuming the already-shipped GET /analytics/needs-attention (#1983), mounted into the #1986 shell. No backend changes; resolves link targets, the mixedCurrency interim (tracked against #2049), and the ambiguous multi-connection copy case. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics needs-attention section (#1989) Renders the three needs-attention categories — coverage gaps, stock at risk, value stuck in failed syncs — mounted into the #1986 shell. Consumes the already-shipped GET /analytics/needs-attention (#1983) as-is; no backend changes. Either the open rows render or a single all-clear line does, never both, per the design mockup's rule. Each open row deep-links into the flow that resolves it: the unified publish wizard, the product detail page, or the orders list filtered to the needs_attention health bucket. Ambiguous multi-connection cases fall back to a connection-agnostic headline; the failed-sync total renders currency-neutral since the DTO carries no currency field in either the mixed or non-mixed case (interim pending #2049). Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): match needs-attention section to the #2003 mockup The plan (implementation-plan-analytics-needs-attention.md) required a client-side "checked HH:MM" timestamp in the panel header and a neutral-tone Clear badge, mirroring frame 02 of the design mockup (docs/plans/mockups/analytics-ledger-2003.html on the still-open #2018 branch). Both were dropped in the original implementation. Adds the checked-at timestamp (TimeDisplay driven by the query's own dataUpdatedAt, since the DTO carries no such field) and switches the all-clear badge from success to neutral, per spec. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): add missing earliestOrderDate to a needs-attention fixture Rebase fallout from the earliestOrderDate swap (#2083): the #1989-cherry-picked "keep the trust header rendered when needs-attention fails" test fixture predates that field and failed type-check. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2120 tech review — sample-vs-total headline defect - BLOCKING: deriveCoverageHeadline/deriveStockHeadline only name a connection when the preview sample IS the total (items.length === totalCount); otherwise fall through to the connection-agnostic headline, so a headline never asserts something only a 20-item sample verified. - "Publish now" sub now discloses when it only seeds the sampled variants ("showing the first N of M"). - Fix the "1 variant have a listing gap" grammar bug to a verb-free form, updating the test that had locked it in. - Thread a BCP 47 locale into deriveFailedSyncHeadline instead of hardcoding toLocaleString('en-US'). - Drop the unreachable MAX_WIZARD_IDS cap; derive productIds/variantIds from the same item list instead of two independently sliced arrays. - Render AnalyticsNeedsAttention regardless of order-ingestion status — coverage gaps and stock-at-risk are listing facts, not order facts. - Render .attention-list as <ul>/<li> for list semantics. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #1990/PR #2171 tech review — KPI strip UTC boundary, aria-label, style guide - toExclusiveEndInstant now anchors on UTC midnight instead of local midnight, matching the controller's UTC-parsed `from` (was silently dropping/adding hours off UTC). - Sparkline aria-labels derive from the actual selected range instead of a hardcoded "last 7 days". - Register the analytics KPI card's 152px/3-col geometry as a documented carve-out in the style guide (Density table + parity matrix), per the "never introduce an undocumented row height" rule. - Fix "Data order" planned-tag typo -> "Planned"; section-infotip font-size to the rem token equivalent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): emit currency total for single-contributing-channel groups groupChannelTotalsByCurrency skipped a currency's Total row whenever only one channel contributed to it, so a deployment with exactly one connection per currency (e.g. one EUR shop) silently lost that row. No spec basis for the threshold — the by-channel currency total should render for every distinct currency present, regardless of how many channels contribute. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2120 re-review — deep-link connection resolution Reuses deriveCoverageHeadline's own connection resolution for the coverage deep link's connectionId param instead of re-deriving it with a weaker predicate, so the bulk-wizard link can never name a channel the headline declined to name. Also derives the all-clear checkedCount from the evaluated categories rather than a hardcoded literal. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import in sales-analytics.api.test.ts Pre-existing lint error surfaced while validating the 1986 merge — vi was imported but never used in this file. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop rendering a currency-neutral total on the failed-sync row `deriveFailedSyncHeadline` formatted `totalValue` with no currency symbol ("6,120.64 of orders never reached a destination"), which reads as a real monetary figure to an operator even though the DTO carries no currency at all — the same misrepresentation risk the mixedCurrency branch already guarded against, just less obviously so. Both branches now render the same count-only shape; `totalValue` stays on the wire for future consumers, this headline just stops reading it. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop rendering a duplicate/colliding unconverted Total row groupChannelTotalsByCurrency emitted a `Total · {currency} (unconverted)` row per distinct unconvertedCurrency found across channels, with no regard for whether that currency string collided with the real reporting-currency Total row's label — a domestic-currency channel simply awaiting its first FX-stamp pass produced a second, same-labelled "Total · PLN" row computed from unrelated fields, reading as a contradiction rather than two distinct facts. Drop that row entirely. countUnconvertedOrders reports the currency-agnostic total count as a single footnote sentence under the table instead ("N orders not yet converted to the reporting currency — excluded from the figures above"), never a competing Total row and never a bare currency-neutral amount. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): stop the coverage deep-link from naming a channel the headline declined to deriveCoverageHeadline's connection-naming rule requires items.length === totalCount, every item missing from exactly one connection, and one distinct id. The "Publish now" deep link recomputed its own, weaker predicate (only the last condition), so a partial-but-uniform sample could pin a connectionId into the wizard link while the headline right next to it correctly fell back to the connection-agnostic copy — sending the operator into a wizard pre-scoped to a channel the row never actually asserted (#2120 re-review, IMPORTANT). deriveCoverageHeadline now returns connectionId (string | null) alongside the copy, computed by the same predicate; the component reads it instead of re-deriving one. Added a regression test pinning the exact partial-sample/uniform-connection case from the review. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): top products table with per-channel breakdown (#1991) (#2191) * feat(web,analytics): top products table with per-channel breakdown (#1991) Adds the /analytics top-products table: one row per product, per-channel units split, revenue/units sort toggle, and a Publish affordance for channels the product isn't listed on. Fixes a labeling gap found while manually testing against seeded data: a channel absent from the sales breakdown was always rendered "Not listed", even when the product was genuinely listed there and simply had no sale in the selected date range — now only a channel actually missing from `missingFromConnectionIds` gets the "Not listed" + Publish treatment; a listed-but-quiet channel renders the same real, full-weight `0` a channel with sales would. Closes #1991 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991)" This reverts commit 5a39290. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): show the native-currency evidence behind an unstamped top-products row (#1991) A product whose only orders in range were stamped under a PREVIOUS reporting-currency setting (or never stamped at all) rendered a bare "No FX-stamped order" empty value, even though the backend already exposed the native-currency figure as unconvertedRevenue/unconvertedCurrency (#1988). The Revenue column now falls back to that evidence when there is no current-era stamp, marked informational via a title tooltip — mirroring ChannelSalesTable's identical fallback for the #1987 by-channel read. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(web): remove unused vi import breaking tsc build" This reverts commit b915a03. * fix(web,analytics): address #2191 tech review — units total, Publish gating, touch a11y, ESLint slug - Units column now reads row.units (server-ranked figure) instead of re-summing row.channels[], which could silently disagree with the sort order the header arrow claims. - The Publish action is gated on listings:write via useWriteAccess + ReadOnlyLock: hidden for an unauthorized non-demo session, rendered disabled with the read-only tooltip for a demo viewer. - Swapped the Chip (aria-pressed toggle) for a real Link styled as a button, so the one-shot publish navigation carries link semantics (middle-click, open-in-new-tab) instead of misrepresenting itself as a permanently-unpressed toggle to assistive tech. - @media (hover: none) now stacks the "Not listed" label and the Publish action, both visible, instead of hiding the label on touch — the #1991 AC's label-vs-action distinction was desktop-only before. - Added the analytics feature slug to both no-restricted-imports pattern groups in .eslintrc.js. Closes review findings on #2191 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): SQL precedence bug + surface coverageGapAvailable/unresolvedProductCount (#2172/#2191 review) Root cause of the failing top-products-ranking int-spec: `unconvertedOrZeroTotal` was a bare, unparenthesized `X OR Y` string spliced into `${unconvertedOrZeroTotal} AND rec."currency" IS NULL`. SQL's AND-before-OR precedence turned that into `X OR (Y AND Z)` instead of the intended `(X OR Y) AND Z` — since X (reportingCurrency mismatch) was true for nearly every unstamped row, the guard fired unconditionally and `unconverted_currency` fell to NULL far more often than the data warranted. Fixed by parenthesizing the constant at its definition (both getTopProductRanking and getProductChannelBreakdown); pinned by the existing int-spec against real Postgres (a mocked unit spec cannot observe operator precedence) and recorded in docs/lessons.md. Also addresses the two still-open review IMPORTANT findings on the FE table: - `coverageGapAvailable: false` now suppresses "Not listed"/Publish on every channel cell (the enrichment failure makes missingFromConnectionIds unreliable for the whole response), rendering the real 0 instead, with a footnote explaining the check is unavailable. - `unresolvedProductCount > 0` is now disclosed via a footnote rather than silently absorbed. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(analytics): period-over-period delta on the sales KPI strip Adds a "vs previous period" delta to Orders, Order value, Units and Cancellation rate on the /analytics KPI strip — a second GET /analytics/sales call over the immediately-preceding period of the same length, refused outright (GapMark) unless the entire previous window is covered by ingested order history (per-connection earliest-order-date, #2083). Matches the design mockup's delta anatomy (docs/plans/mockups/ analytics-ledger-2003.html): an aria-hidden ↑/↓/→ glyph, a sr-only spoken sentence, and count/amount deltas rendered as a relative "%" while rate deltas (cancellation rate) render as an absolute "pp" — a rate moves in points, not percent. Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): mount top-products table and reveal Publish on hover ProductSalesTable (#1991) was fully built end-to-end but never mounted on AnalyticsPage, so the top-products section never rendered. Also add the .cell-not-listed hover/focus CSS the component's own doc comment already described but that was never written — the "Not listed" label now swaps for a Publish action on hover/focus (with a light warning-yellow glow), staying permanently visible on touch pointers. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> * fix(web,analytics): make GapMark's caveat reachable without a mouse A native `title` on a non-interactive, non-focusable `<span>` whose entire content is a dagger glyph never surfaces for a keyboard user, and a screen reader has no accessible name to announce beyond "dagger". Add role="img" + aria-label={title} alongside the existing title so the caveat is announced regardless of input modality (#2120 review). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> * docs(orders): explain why getTopProducts reads are sequential, not parallel getProductChannelBreakdown is scoped to the current page's productIds, which only exist once getTopProductRanking has returned — unlike the three independent Promise.all reads in getSalesAndChannelAnalytics above it. Note the distinction so a reader doesn't mistake the missing parallelisation for an oversight (#2172 review, SUGGESTION 2). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Signed-off-by: jakubret Signed-off-by: Jakub Retajczyk <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
…s reporting (#2440) (#2442) * feat(orders,analytics): add sales & channel aggregates endpoint (#1987) Adds GET /analytics/sales: revenue, order count, AOV, median order value, units sold, and cancelled count/value for a date range, plus a 7-day daily trend (revenue + order count), at headline level and broken down per source connection with a revenue share and a coverage-completeness signal (reusing #2083's getEarliestOrderDateByConnection so a channel that can't possibly cover the full requested range is identifiable in the response). Built entirely on top of the #1985 order analytics read model (order_records.placedAt/totalAmount/cancelledAt, order_line_items) - one new pure aggregation function in the orders domain layer, two new OrderRecordRepositoryPort methods (daily FILTER-clause aggregates, PERCENTILE_CONT median), one new OrderLineItemRepositoryPort method (units sold per connection), and one new IOrderRecordService method composing them - entirely intra-context, no new cross-context edge. Currency-mixing detection and gross/net tax-treatment normalization are deliberately out of scope - tracked under #2049/ADR-040 (currency) and a separate, not-yet-scoped tax-normalization effort respectively. totalAmount is summed as-is; this is called out explicitly in code comments so the omission reads as a scoping decision, not a gap. Includes the implementation plan doc this PR follows. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): report cancelled count/value per channel too (#1987) The issue's own follow-up comment asks for cancelled count/value "headline and, if feasible, per channel". It's feasible at zero extra cost: DailyOrderAggregateRow already carries cancelledCount/ cancelledValue per (day, connection), so this only sums data the existing query already returns - no new query, no new repository method. Adds ChannelSalesAnalytics.cancelledCount/cancelledValue, threads them through the aggregation function, the response DTO, and adds a test asserting the per-channel totals sum back to the headline figure. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * docs(analytics): implementation plan for #1986 route shell Plan for the /analytics route shell (date-range control, trust header), branched off the current #1985 order-analytics-read-model state per the user's request, since two of its decisions (coverage-window row, degradation-banner rule) explicitly track #1985 and its follow-up #2083. Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): wire sales aggregates to reportingTotalAmount now that #2049 has landed This PR's own scope table deferred currency-mixing detection to #2049/ADR-040, summing totalAmount as-is. #2049 shipped (PR #2050) while this PR was still open, stamping order_records.reportingCurrency/ reportingTotalAmount - so the fix lands here rather than as a follow-up issue. - getDailyOrderAggregates / getMedianOrderValue: revenue, orderCount and medianOrderValue now sum/percentile reportingTotalAmount restricted to reportingCurrency IS NOT NULL - one comparable currency, never a naive cross-currency sum. - The complementary unstamped slice (pre-#2049 history, or a stamp still in flight) is surfaced explicitly via new unconvertedCount/ unconvertedValue fields (native totalAmount, informational, may itself mix currencies) rather than silently folded into revenue or silently dropped. - New `currency` field (headline + per channel) reports which reporting currency revenue/AOV/median are expressed in; null when nothing in range is stamped yet. - cancelledCount/cancelledValue deliberately left on native totalAmount, unchanged - a secondary figure, out of scope for this pass. - Threaded through the pure aggregation function, the response DTOs, and every affected test fixture (repository, service, aggregation, controller specs). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): sales KPI strip + by-channel table (#1990) Adds GET /analytics/sales client, view-model helpers, and the two FE sections #1990 scopes: a 6-card KPI strip (Revenue, Orders, Order value w/ median, Units, Cancellations, Returns & refunds) and a by-channel DataTable, mounted into the #1986 route shell. Currency-aware per #1987/#2049/ADR-040: every money figure carries its currency (headline.reportingCurrency), and a channel's revenueBasis ('reporting' | 'native' | 'unavailable') drives whether its revenue/ share render as plain values, a same-currency-but-incomparable caveat, or an explicit empty value — never a blended or falsely-comparable number. taxTreatment 'mixed' surfaces an inline chip so gross/net incomparability is stated, not implied. A channel whose earliest order postdates the range start renders a "Partial history" flag. Fixes an exclusive-end date bug found in a prior implementation attempt: the toolbar hands this an inclusive yyyy-mm-dd end day, but the endpoint treats `to` as exclusive — toExclusiveEndInstant converts it so the selected range's last day isn't silently dropped. Also fixes a pre-existing test race in orders-list-page.test.tsx: a synchronous assertion on empty-state text that depends on an async query, following an await on a chip that mounts synchronously from a URL param — now awaited with findByText. Closes #1990 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(orders,analytics): top-products endpoint with inline per-channel split (#1988) Adds GET /analytics/top-products - products ranked by revenue or units for a date range, each row carrying its own per-channel breakdown, catalog metadata, and a listing-coverage-gap flag. Stacked on #1987's currency- correctness pattern (FILTER (WHERE reportingCurrency IS NOT NULL) / SUM via each order's own implicit FX multiplier), never silently summing across currencies and always disclosing what's unstamped/cancelled. - OrderLineItemRepositoryPort +getTopProductRanking, +getProductChannelBreakdown - buildTopProducts pure aggregation + IOrderRecordService.getTopProducts - TopProductsController/DTOs + apps/api-layer TopProductsService composing orders + products + listings (coverage-gap flag, O(connections) fan-out, degrades gracefully on failure - mirrors NeedsAttentionService) - Fixes a pre-existing gap: order_line_items was missing from the integration-test harness's tablesToTruncate list (no DB FK to cascade from order_records), which would leak rows between test files Built following docs/plans/implementation-plan-top-products-analytics.md (pre-implement gate: READY, included in this PR). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): type the pending-promise mocks in KPI strip/channel table tests CI's `tsc -b` (project-references build) caught what a plain `tsc --noEmit -p tsconfig.json` run missed locally: `vi.fn(() => new Promise(() => {}))` infers `Mock<() => Promise<unknown>>`, which doesn't satisfy `getSales`'s `Promise<SalesAndChannelAnalytics>` return type. Pin the generic on the never-resolving Promise, matching the existing analytics-trust test precedent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): top products table with per-channel breakdown (#1991) Adds the /analytics top-products table: one row per product, per-channel units split, revenue/units sort toggle, and a Publish affordance for channels the product isn't listed on. Fixes a labeling gap found while manually testing against seeded data: a channel absent from the sales breakdown was always rendered "Not listed", even when the product was genuinely listed there and simply had no sale in the selected date range — now only a channel actually missing from `missingFromConnectionIds` gets the "Not listed" + Publish treatment; a listed-but-quiet channel renders the same real, full-weight `0` a channel with sales would. Closes #1991 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): label the unconverted-currency evidence per channel The by-channel table needs to show each market's own native-currency total for orders not yet FX-stamped, not just a single potentially mixed-currency number - the mockup this scope was designed against (03b · Two currencies) shows per-channel figures split by their own currency, with only the reporting-currency footer pooled. unconvertedCount/unconvertedValue already existed (#2049/ADR-040 follow-up) but carried no currency label and could legitimately mix currencies per the type's own doc comment. This is #1987's own scope, not an FX-epic deliverable: order_records.currency is the pre-existing native-currency column from #1985, untouched by the FX epic's reportingCurrency/reportingTotalAmount stamp - labelling the unconverted evidence is purely an aggregation-query addition. - getDailyOrderAggregates: adds unconverted_currency, the single native currency shared by every unconverted, non-cancelled order this day/connection, NULL when that set mixes currencies. - resolveUniformUnconvertedCurrency (aggregation layer): rolls the per-day label up to headline/channel, treating a day with zero unconverted orders as "nothing to report" rather than letting it poison the whole set to null. - Threaded through DailyOrderAggregateRow, SalesAnalyticsHeadline, ChannelSalesAnalytics, the response DTOs, and every affected test fixture (repository, service, aggregation, controller specs). Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): align KPI strip/by-channel table with the real #1987 currency contract The frontend types were drafted ahead of the backend and assumed a shape it never shipped (non-null reportingCurrency, revenueBasis/nativeCurrency per channel, taxTreatmentMixed). Now that the actual #1987 currency wiring (reportingTotalAmount stamp + unconvertedCurrency labelling) has been merged in, rewrite the frontend to match it exactly: one nullable system-wide currency, unconvertedCount/Value/Currency per channel, and revenueShare always a number. - Cancellations KPI now leads with the rate (%), value/count as qualifiers. - By-channel table: a channel with no FX-stamped revenue yet falls back to its own unconverted-currency evidence instead of showing an empty cell, flagged with an "Awaiting FX stamp" chip. - Total rows: one reporting-currency total (real KPI aggregate) plus one informational unconverted-currency subtotal per distinct native currency — only emitted when more than one channel contributes, so a lone channel never gets a redundant duplicate total. - Orders/Avg daily/Units per order/Cancellation rate on the KPI strip now count every placed order (stamped + unconverted), not just the stamped subset. - Share and Trend columns reordered so Share sits immediately before Trend (previously Share was misplaced next to Revenue). - Fixed a CSS specificity bug where the Phase-6 dashboard-triage `.status-strip` rule silently won over `.status-strip--analytics` at >=1024px, packing the 6 KPI cards 4-then-2 instead of 3x2. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics route shell — date-range toolbar, trust header (#2115) * feat(web,analytics): /analytics route shell — date-range toolbar, trust header, degradation banner Implements #1986 per docs/plans/implementation-plan-analytics-page-shell.md: - New /analytics route (PageLayout, Operations nav item) - Date-range toolbar: 7d/30d/90d/Custom presets (apply immediately) + From/To fields with a draft-buffered Apply action (Decision 1) - Trust header (per-connection freshness + "Connected since" + status, Decision 3 — real "data from" coverage deferred to #2083/#1985) with a click-triggered info popover (touch-safe, unlike a hover-only Tooltip) - Degradation banner on stalled/disconnected connections — status-only for v1 (Decision 4); the mockup's range-gated "sold in this selected range" refinement is deferred until #1990 makes that fact honest rather than an approximation - Fresh-instance / still-arriving / loading / error states - New analyticsTrust API-client namespace consuming the already-shipped GET /analytics/trust (#1982) Post-review fixes (tech-review pass): - Order-date disclaimer is now a static span (chip+dagger, matches the design mockup verbatim) instead of the interactive Chip primitive, which rendered a toggle button with no effect - Banner timestamp uses the shared formatDateTime helper instead of a hand-rolled toLocaleString(), matching AnalyticsTrustHeader - Added a page-level loading-state test Ref #1986 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 review — style-guide entries, mockup refs, cleanup - Namespace .gap-mark/.info-popover-trigger to .analytics-* and document .trust-header__row in docs/frontend-ui-style-guide.md § Density & Row Heights, per the tech-lead review's documentation-obligation findings. - Drop code-comment claims of verbatim conformance to docs/plans/mockups/analytics-ledger-2003.html (not yet merged via #2018). - Replace inline style on analytics-trust-header.tsx with a real CSS class; drop the phantom trailing grid column. - Remove the dead toUtcRangeInstants export (no consumer yet). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): address PR #2115 re-review — failing tests, honest ingestion copy - Fix two failing tests: the 90d preset test asserted an off-by-one date (implementation was correct), and the disclaimer-chip test failed to match the tooltip-split text node. Also fixes a third, previously undetected failure in the degradation-banner "renders nothing" test, which asserted an empty DOM even though renderWithProviders always mounts a toast region. - Stop leaking schema jargon ("placedAt is not a column") into operator-facing aria-label/tooltip copy; move the rationale into a code comment and replace the bare `title` with a keyboard-reachable Tooltip. - Relabel the trust-header "Current to" row and the degradation banner's "has not ingested since" copy, both of which asserted data currency from `lastPollAt` — a pipe-liveness signal, not proof any order data arrived. Now "Last polled" / "has not been polled since". - Drop the stale "UTC-widening math" file-header claim in date-range.lib.ts (the file only does local-time formatting). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): render the real earliestOrderDate now that #2083 shipped #2083 (real per-connection earliest-order-date read) landed as PR #2121 on this stack's base (1985-order-analytics-read-model), which Decision 3 in the plan flagged as making the "Connected since" coverage row's connectionCreatedAt swap a trivial follow-up rather than a rewrite. - Add earliestOrderDate to the FE ConnectionIngestionTrust type, mirroring the now-shipped ConnectionIngestionTrustResponseDto field. - Trust header: "Connected since"/connectionCreatedAt -> "Data from"/ earliestOrderDate (falls back to "No orders yet" when null), matching the mockup's actual coverage-window semantics instead of the connection-configured-since approximation. - Update the info popover copy and file header comment accordingly. - Add earliestOrderDate to every existing fixture; the never-ingested fixture in analytics-page.test.tsx gets null (no orders, consistent with its status), the rest get a fixed date. Add a "No orders yet" render test. - Plan doc: mark Decision 3 and its risk-register entry resolved rather than rewriting the historical record. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> --------- Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com> * docs(analytics): implementation plan for /analytics needs-attention section Plans issue #1989 — three actionable categories (coverage gaps, stock at risk, failed-sync value) consuming the already-shipped GET /analytics/needs-attention (#1983), mounted into the #1986 shell. No backend changes; resolves link targets, the mixedCurrency interim (tracked against #2049), and the ambiguous multi-connection copy case. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(web,analytics): /analytics needs-attention section (#1989) Renders the three needs-attention categories — coverage gaps, stock at risk, value stuck in failed syncs — mounted into the #1986 shell. Consumes the already-shipped GET /analytics/needs-attention (#1983) as-is; no backend changes. Either the open rows render or a single all-clear line does, never both, per the design mockup's rule. Each open row deep-links into the flow that resolves it: the unified publish wizard, the product detail page, or the orders list filtered to the needs_attention health bucket. Ambiguous multi-connection cases fall back to a connection-agnostic headline; the failed-sync total renders currency-neutral since the DTO carries no currency field in either the mixed or non-mixed case (interim pending #2049). Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): match needs-attention section to the #2003 mockup The plan (implementation-plan-analytics-needs-attention.md) required a client-side "checked HH:MM" timestamp in the panel header and a neutral-tone Clear badge, mirroring frame 02 of the design mockup (docs/plans/mockups/analytics-ledger-2003.html on the still-open #2018 branch). Both were dropped in the original implementation. Adds the checked-at timestamp (TimeDisplay driven by the query's own dataUpdatedAt, since the DTO carries no such field) and switches the all-clear badge from success to neutral, per spec. Signed-off-by: jakubret Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): add missing earliestOrderDate to a needs-attention fixture Rebase fallout from the earliestOrderDate swap (#2083): the #1989-cherry-picked "keep the trust header rendered when needs-attention fails" test fixture predates that field and failed type-check. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): scope top-products revenue to the current reporting currency (#1988) getTopProductRanking/getProductChannelBreakdown summed every stamped order's reportingTotalAmount regardless of which reporting-currency era it was pinned to, and labeled the mixed sum with an arbitrary array_agg[1] pick. Since a settings change is forward-only (older orders keep their original stamp), switching the reporting currency mixed two real currencies into one number under a wrong label instead of surfacing the older era as unconverted evidence like an unstamped order. OrderRecordService now resolves the current reporting currency and both queries filter revenue to reportingCurrency = current, folding any other era into unconvertedRevenue/unconvertedOrderCount alongside never-stamped orders. (cherry picked from commit 5a39290a44878d1f6a45d405f75a2ad8cc9fbe9f) Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(orders,analytics): scope top-products revenue to the current reporting currency (#1991)" This reverts commit 5a39290a44878d1f6a45d405f75a2ad8cc9fbe9f. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(orders,analytics): disclose the native currency behind unconverted top-products evidence (#1988) getTopProductRanking already folded a prior reporting-currency era (or a never-stamped order) into unconvertedRevenue/unconvertedOrderCount, but gave the frontend no way to label that figure — unlike the #1987 by-channel read, which already carries unconvertedCurrency for the identical situation. Adds unconvertedCurrency end to end (repository SQL, ProductRankingRow, TopProductView, TopProductRowDto): the one native currency shared by every order contributing to unconvertedRevenue, or null when that set mixes currencies, mirroring DailyOrderAggregateRow's existing rule. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web,analytics): show the native-currency evidence behind an unstamped top-products row (#1991) A product whose only orders in range were stamped under a PREVIOUS reporting-currency setting (or never stamped at all) rendered a bare "No FX-stamped order" empty value, even though the backend already exposed the native-currency figure as unconvertedRevenue/unconvertedCurrency (#1988). The Revenue column now falls back to that evidence when there is no current-era stamp, marked informational via a title tooltip — mirroring ChannelSalesTable's identical fallback for the #1987 by-channel read. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): guard mixed-currency labels + UTC day buckets (#1987 review) IMPORTANT 1: getDailyOrderAggregates labelled a (day, connection) bucket's revenue with (array_agg(reportingCurrency))[1] — the first value happened to sort first — even though reportingCurrency isn't guaranteed single-valued within a bucket (an in-flight #2096 restatement can leave two live at once). Guarded it with the same COUNT(DISTINCT ...) <= 1 pattern unconvertedCurrency already uses, and gave the domain-layer pickCurrency the matching cross-row disagreement check (resolveUniformReportingCurrency) rather than "first non-null wins". IMPORTANT 2: date_trunc('day', placedAt) truncates at local midnight per the Postgres session TimeZone GUC, since placedAt is timestamptz — on a non-UTC server every bucket would land on the wrong calendar day and silently mismatch enumerateDayKeys's UTC keys, zeroing every trend point beneath a correct headline. Made the boundary explicit: date_trunc('day', placedAt AT TIME ZONE 'UTC') AT TIME ZONE 'UTC'. SUGGESTIONS: medianOrderValue no longer flattens "no stamped order in range" to the same 0 as a genuine zero median (now number | null, plumbed through the DTO); documented the units-vs-orderCount scoping mismatch on OrderLineItemRepositoryPort; added sales-analytics-aggregates.int-spec.ts against Testcontainers Postgres to pin both IMPORTANT fixes against a real server (the reviewer's own root-cause note: the mocked query builder could never have caught either). Also merges in the latest 1985-order-analytics-read-model (this PR's base branch), which had picked up its own review fixes since this branch last merged from it. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(web): bump the lazy-route contract count to 52 for /settings/mcp-tokens An earlier merge (feat(mcp): Resource-Server auth via user-issued Personal Access Tokens, #1486/#1912) added the /settings/mcp-tokens page as a lazy route, but the parameterized route-lazy contract test's expected count was never bumped, failing CI on this branch with "expected 52 to be 51". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics,products): address #2172 review findings on top-products ranking Two IMPORTANT correctness issues and three SUGGESTIONS from the #2172 tech review, all still open on this branch: - IMPORTANT 1: ORDER BY revenue/units had no tiebreaker, so pagination over a non-unique sort was non-deterministic in Postgres (ties could repeat on one page and be skipped on the next). Add addOrderBy('product_id', 'ASC'). - IMPORTANT 2: a stamped order with totalAmount = 0 (fully discounted/free) silently vanished from both revenue and unconvertedRevenue, since the FX multiplier (reportingTotalAmount / totalAmount) is NULL via NULLIF(totalAmount, 0). It now folds into the unconverted bucket instead, same as a never-stamped order, in both getTopProductRanking and getProductChannelBreakdown. - SUGGESTION 3: documented, in the endpoint's @ApiOperation description, that ranking by revenue is blind to unconverted revenue for a product whose orders are all unstamped. - SUGGESTION 4: resolveCoverageGaps fired up to `limit` concurrent getVariantsByProductId calls. Added a batch getVariantsByProductIds (ProductVariantRepositoryPort -> IProductsService) so the page's variant ids resolve in one query instead of one per product. - SUGGESTION 5: a coverage-gap enrichment failure degraded every row to missingFromConnectionIds: [], indistinguishable from "listed everywhere". Added TopProductsResponseDto.coverageGapAvailable so the FE can tell the two apart. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders): make the UTC day-bucket int-spec actually guard the regression Testcontainers Postgres boots with session TimeZone = UTC, so the existing assertion passed identically with or without the AT TIME ZONE 'UTC' pair in getDailyOrderAggregates — it documented intent but couldn't fail on a regression (#2151 review, SUGGESTION). Force the session TimeZone to Europe/Warsaw for this one read (and restore it afterward), so a regression to a bare date_trunc('day', placedAt) actually flips the bucket to the following day and fails the test. SET TIME ZONE is session-scoped; dataSource.query and the repository read run back-to-back with nothing else contending for the pool, so the same just-released client is reused. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(orders,analytics): label unconvertedCurrency per channel on top-products (#2172 review) The ranking row's unconvertedRevenue gained a currency label in an earlier fix, but the per-channel breakdown row didn't, so ProductChannelBreakdownDto.unconvertedRevenue stayed a bare number with no unit. Inheriting the parent's label isn't sound either: the parent goes null on a mixed set, but an individual channel's own subset is routinely single-currency even then — a channel is strictly more labelable than the product as a whole, never less. Lifts the same MAX(currency) FILTER (...) / COUNT(DISTINCT ...) <= 1 shape getTopProductRanking already uses, computed per (product, connection) in getProductChannelBreakdown, threaded through ProductChannelBreakdownRow and ProductChannelBreakdownDto. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2098 tech review + trust-header single-line layout - Sync docs/plans/implementation-plan-analytics-page-shell.md with the now-resolved Decision 3 (real earliestOrderDate coverage row) and Decision 4 (hasSalesInRange dropped), and note the Reusable Components divergences. - Replace the analytics-date-range-toolbar's Tooltip-based "Order date" caveat with a Popover on a real <button>, matching AnalyticsTrustHeader's pattern — Radix Tooltip ignores pointerType === 'touch', making the old trigger unreachable on mobile. - Trust header renders a single-line "data from X · synced Y" fact string with a per-channel colored dot, replacing the prior two-column label/value layout; adds TimeDisplay's 'time' format and formatAbsoluteTime helper it depends on. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): address #2120 tech review — sample-vs-total headline defect - BLOCKING: deriveCoverageHeadline/deriveStockHeadline only name a connection when the preview sample IS the total (items.length === totalCount); otherwise fall through to the connection-agnostic headline, so a headline never asserts something only a 20-item sample verified. - "Publish now" sub now discloses when it only seeds the sampled variants ("showing the first N of M"). - Fix the "1 variant have a listing gap" grammar bug to a verb-free form, updating the test that had locked it in. - Thread a BCP 47 locale into deriveFailedSyncHeadline instead of hardcoding toLocaleString('en-US'). - Drop the unreachable MAX_WIZARD_IDS cap; derive productIds/variantIds from the same item list instead of two independently sliced arrays. - Render AnalyticsNeedsAttention regardless of order-ingestion status — coverage gaps and stock-at-risk are listing facts, not order facts. - Render .attention-list as <ul>/<li> for list semantics. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * fix(analytics): drop dangling "data from" prefix on the no-orders-yet fact The "data from" prefix was rendered unconditionally, so a connection with no earliestOrderDate read "data from no orders yet" instead of just "no orders yet". Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * chore(tax): open the per-line tax rate epic branch Tracking branch for epic #2245. Children merge here; this branch merges to main only when every child has landed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * docs(tax): ADR-052 per-line tax-rate resolution, provenance and rounding ownership Records the rule the #2245 epic implements: the rate arrives from the ProductMaster with the product, the marketplace is a fallback when the master does not know, and when neither knows the document is held rather than guessed. OpenLinker never computes a rate and never computes an amount excluding tax. Seven decisions: the shop-then-channel resolution chain, three answer states (0 is an answer, 'not yet checked' is a fourth read state that suggests a sync rather than blocking), percent-as-string representation with provenance-only country, projection-at-sync storage with the order snapshot as the only place a rate is settled, adapter-owned rounding, gate semantics (a missing rate blocks and also refuses the manual paths; a shop-versus-channel mismatch does not block and is not a SalesDocumentGateBlockReason at all), and the non-goals. Numbered 052, not the 050 the issue names: 050 and 051 are reserved by the ADR README for the #2162 async-work-layer epic and the index directs the next new ADR to 052. Also settles the two edits ADR-014's amendment owed: its 'proposal, not a recorded refinement' preamble is dropped and its Proposed-while-its-decisions-shipped status resolves to Accepted. Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * fix(invoicing): settle the tax-rate notation on percent-as-string InvoiceLine.taxRate had no single reading. Core divided by 100 unconditionally, so '0.23' meant 0.23%; the inFakt adapter switched on n > 1, so '23' and '0.23' both resolved to 23% while a genuine 1% rate resolved to 100%. On a 123 PLN invoice the two readings diverge by 22.72 PLN. The blast radius is narrow only because the mapper still emits an empty taxRate and each adapter substitutes its own default. Once #2054 lands, every invoice line travels through this field, so the notation is pinned first and on its own. A guess is the wrong shape here: the writer knows which notation it used, so an ambiguous value is a defect upstream and must surface. A new pure module, tax-rate-notation.types, states the contract once and every reader goes through it. Fractional notation (numeric, strictly between 0 and 1) raises FractionalTaxRateNotationError rather than being multiplied by 100 - '0.23' is indistinguishable from a genuine 0.23% rate, so normalising it would invent a value nobody stated. '0' is deliberately not fractional: a zero rate is a real answer, and PrestaShop already distinguishes it from unknown. Readers aligned: core rateFraction, the inFakt tax_symbol map and gross-to-net split, the Subiekt stawkaVAT passthrough. KSeF already rejected a fractional code, since FA3_TAX_RATE_MAP has no such key - that is now pinned by a test rather than left incidental. The empty-string path is untouched on every adapter; #2257 removes those defaults. Closes #2247 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * feat(web): shared-UI primitives for the tax-rate states Three additions the per-line tax-rate surfaces need, and nothing else. StatusBadgeTone gains 'conflict' - two sources disagreeing about the same fact, which needs attention but is not an error because the document still issued. The family has no -fg member, so the rule reads --status-conflict-strong; the ramp base gives roughly 2.5:1 and fails contrast, and nothing would have caught it since the token checker is one-directional and a missing token resolves to nothing silently. The family already had a consumer through a className override (.status-badge.delivery-rider-chip--not-connected), so that override is migrated onto the tone in the same change rather than left as a second owner with a second text token. The className survives as a layout hook, so the existing delivery-chip assertions still hold. AlertTone gains the same member. Alert picks role=alert only for 'error', so a conflict alert lands on role=status - the right politeness level for a non-blocking advisory, now following from the tone rather than from a per-call choice. SalesDocumentBlockCopy['tone'] widens to match, since its value is passed straight into Alert. AbsentValue moves out of listings-list-page into shared/ui. Absence versus zero is the central claim of this epic - a rate of 0 is a real answer and 'no rate' holds the document - so it needs one implementation. It renders the wording visually hidden rather than as an aria-label, because aria-label on a bare span is prohibited and commonly dropped. Adding the tone member compile-forced BLOCK_TONE_FOR_BADGE and TONE_CLASS, the timeline's two exhaustive records; both gain the member together with the TimelineEvent tone and the .order-activity__dot--conflict rule. Closes #2253 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * feat(products): per-line tax rate on the order contract and the master reads Core had nothing to carry a tax rate in. OrderItem and IncomingOrderItem have no tax field, and the only signals on an order are one aggregate OrderTotals.tax and an order-wide taxTreatment - neither of which can describe a mixed-rate basket. So the mapper emits an empty rate and each provider adapter guesses. This gives core the field, the vocabulary, a way to ask the two masters, and a place to keep the answer. The rate is a string code (23, 8, 5, 0, zw, np, oo), not a number: 0, exempt, reverse charge and intra-EU zero are four different things on a document and all look like zero. Notation is percent-as-string, settled in #2247. Storage is a projection pulled at product sync onto products and product_variants, exactly as price and currency already are. Issuance must not depend on the shop being reachable, and 'which products lack a rate' has to be a query rather than a crawl - both partial indexes exist for that. Three distinctions are load-bearing and each has a test. Zero is an answer, never an absence. A read that establishes nothing reports kind: 'unknown' and is stored as a null code, never as '0'. Never-checked is not no-rate. taxRateReadAt separates them: null timestamp means nobody has asked, a timestamp with a null code means the master answered and has none. Without that split, the day this ships the whole catalogue reads as incomplete and the pre-rollout coverage count measures nothing. A variant override always wins where the shop carries one - the open question the epic left for this child. It is not a conflict to arbitrate: a variant value is the more specific statement of the same fact, and the shop had to be edited deliberately for the two to differ. An absent override means 'no opinion', so a product-keyed master resolves through the product row unchanged. A third resolution arm, 'inherited', exists for a WooCommerce variation whose tax_class is 'parent': storing nothing is honest, where recording unknown would show the variant as rate-less and copying the product's code down would leave a duplicate that goes stale. PrestaShop delegates to the existing PrestashopTaxRateResolver rather than re-walking the three-hop chain, so the sync path and the order-create path cannot disagree about one shop. Its transport unknown is re-raised rather than reported as unknown - a failed call says nothing about the shop's configuration, and recording it would freeze a false 'no rate' onto the row. WooCommerce resolves class name to the store's rate table for the store's own country; tax_status 'none' is a resolved zero, no row is not-configured, and several different rates is ambiguous rather than a pick, because picking would be OpenLinker computing tax. recordTaxRate is a separate writer from upsert on both repositories, and the columns are deliberately absent from toOrm - the sync upsert carries no rate, so round-tripping them would blank a value the tax read just wrote, and a blanked rate holds documents. Same single-writer rule as order_records.cancelledAt. Order ingestion settles the rate onto the stored snapshot, shop first and channel second, and carries taxSource plus taxRateReadAt alongside it so a reader can tell no rate, never read and pre-rollout apart (#2245 F3). One additive migration, nullable, no backfill. Closes #2054 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * fix(analytics): address #1990/PR #2171 tech review — KPI strip UTC boundary, aria-label, style guide - toExclusiveEndInstant now anchors on UTC midnight instead of local midnight, matching the controller's UTC-parsed `from` (was silently dropping/adding hours off UTC). - Sparkline aria-labels derive from the actual selected range instead of a hardcoded "last 7 days". - Register the analytics KPI card's 152px/3-col geometry as a documented carve-out in the style guide (Density table + parity matrix), per the "never introduce an undocumented row height" rule. - Fix "Data order" planned-tag typo -> "Planned"; section-infotip font-size to the rem token equivalent. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(invoicing): carry the tax rate onto the document and hold when it is absent The mapper stops emitting an empty taxRate and carries the code the order line was settled with. It stays a passthrough - no derivation, no default - and an empty value still reaches the adapter unchanged, because a mapper that threw would turn an operator-fixable data gap into a failed job. The gate is what refuses. missing-tax-rate joins SalesDocumentGateBlockReasonValues on both sides of the mirror. It is the first reason for which 'this cannot be issued' is literally true: every other one means 'auto-issue did not happen', and issuing by hand past those is a legitimate operator action. Issuing past this one means a provider substituting a guessed rate onto a real fiscal document, so it closes the manual paths too - InvoiceService.issueInvoice refuses before the lock and before any persisted state is touched, POST /invoices answers 422 with the reason and retryable:false, and bulk issue reports a named ineligibility rather than attempting it. The check runs on the COMMAND rather than on the order, so no caller can bypass it by composing lines itself, and the correction path - which composes its lines from an already-issued document - is unaffected. It runs BEFORE the trigger-model gate, because on a manual connection both apply and reporting the weaker reason would leave an operator clicking a button that refuses. A zero rate passes everywhere. Export, intra-EU and exempt goods are legitimately zero, and blocking on them would hold documents for a correctly configured catalogue. Shipping now splits across the rates in a mixed basket, in proportion to line gross, with the rounding remainder on the largest part so the parts sum exactly to what the buyer paid. A single-rate basket still yields one line. This is division, not tax computation: core groups an amount it was given and cuts it into parts that add back up to it. A single line with no rate makes the mix unknowable, so the split refuses and the whole document waits. Two instants record when a hold started and ended. The reason column is level-triggered and nulled the moment it clears, so without them the operator-facing age has no clock and the 'the rate arrived, the invoice issued' timeline entry has no instant to hang on. They are derived from the TRANSITION inside the same UPDATE, because only that statement knows both the old and the new value; blockedAt is stamped on none-to-blocked alone so a change of reason inside one episode does not reset an age somebody is watching. Closes #2248 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * Revert "fix(web): remove unused vi import breaking tsc build" This reverts commit b915a030ac81bac74c483b45472cb613cec194c8. * fix(web): remove unused vi import breaking tsc build CI (Docker Build Smoke Test) failed with TS6133 on an unused `vi` import in sales-analytics.api.test.ts, blocking `pnpm build`. Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(products): append-only tax-rate provenance journal A mutable 'rate source' field only says how things stand now. It cannot answer when the shop changed the rate, what OpenLinker last wrote onto a channel, or whether somebody overwrote it afterwards - and that last question is what makes a shop-versus-channel disagreement attributable rather than mysterious. So provenance is a journal: one row per CHANGE, never one per read. The catalogue sweep runs every twenty minutes and most rates never move, so writing unconditionally would grow the table by the size of the catalogue per tick and bury the handful of rows that matter. isNewTaxRateObservation owns that rule in one pure place. The dedup compares the value, the origin AND the frozen flag. A seller freezing a field without changing its value is a real change in what the value means - it is now something a person set - and losing it would leave the disagreement surface unable to say so. Append-only by construction, not by convention: the port declares append, findLatest and findLatestPerConnection, and no update, upsert or delete. A journal whose rows can be edited cannot answer the question it exists for, so adding a mutating method is not a refactor. Same discipline as ExchangeRateRepositoryPort. Origin distinguishes shop, channel and written-by-us. The third is the reason the journal exists at all: it records OpenLinker's own write onto a channel, so a later channel observation carrying a different value proves somebody changed it after we did. Master product sync records every rate it observes. The write is best-effort and separate from the catalogue write - the journal is provenance, so losing an entry costs an audit trail rather than a rate, and failing the sync over it would trade the thing that matters for the thing that explains it. One index serves both reads, since the latest-for-one-connection lookup and the latest-per-connection listing walk the same prefix. Note on scope: taxSource and taxRateReadAt already reach the ORDER SNAPSHOT line (#2054, epic F3). The order_line_items half of this issue is not implemented here because that table does not exist on main - it is defined in #2014, which is still open. Closes #2250 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * feat(integrations): read the channel's tax rate and propagate the shop's onto offers The channel half of the resolution chain, and the write back. READS. Erli reports a required per-line taxRate on every order line and OL's own type already modelled it while the mapper discarded it - it now reaches the order contract. Allegro's lineItems[].tax has been live since March 2024 and the OL type had no field for it at all; it is modelled and read. Both map their platform vocabulary to the neutral code inside the adapter, tested in both directions, with a round-trip test over every value the Erli mapper claims to support. An unreadable value maps to absent, never to '0'. A rate OL cannot read is not a zero-rated sale, and Erli's enum is category-dependent and may gain values. WRITES. The shop's rate is stamped onto CreateOfferCommand by OfferBuilderService in the same pass that already carries price and stock, read from OL's own catalogue projection so publishing does not depend on the shop being reachable and the offer carries the same rate an invoice for it would. There is no OL-side rate field to type into, deliberately: a rate entered in OL would be a fourth source no master or channel could be corrected from. Nothing is published with the rate omitted. That is precisely how the rate-less offers this epic exists to fix were produced, and the failure surfaces months later on somebody's invoice rather than at publish time. Allegro refuses on no rate, on an exemption code (its rates array carries numbers), and on a rate the category does not allow - the last naming the permitted values, because when Allegro says the category allows 23% and OL sent 5% the shop record is almost certainly the wrong one. Erli refuses on no rate and on 'oo', which its enum cannot express; omitting would publish a product Erli then marks not-buyable with missingTaxRate, which nobody sees. The permitted-values read is best-effort. A failure to LIST is not a failure to publish, so it warns and proceeds with the shop's value; Allegro validates the body itself, and refusing because a secondary discovery call was unavailable would be worse than the check. The update path propagates too, so an offer's rate follows the catalogue instead of freezing at first publish. There an unmappable code is dropped rather than raised: an update that cannot state its tax is a partial update of an offer that already sells, and raising would take a title or price fix down with it. A frozen Erli taxRate is skipped, force is never sent, and it is reported once per connection at info level rather than as a recurring publish error - a seller freezing the field is a deliberate decision, and it is exactly the signal that makes a later disagreement attributable to a person. Closes #2249 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * feat(orders): mark pre-rollout orders and measure catalogue rate coverage Two rollout chores that keep the first day honest. HISTORICAL ORDERS. An order ingested before per-line rates existed carries none on any line, and the document issued for it used whatever the provider adapter defaulted to. It is MARKED rather than blocked: blocking would stop history nobody is going to retrofit, and nothing about it can be corrected after the fact. The marker's only job is to keep a net-revenue figure honest - such an order is excluded from one rather than presented as a confirmed rate, because there is nothing to back-compute from. Recorded per RECORD, not per line. The lines live in a jsonb snapshot, so a per-line marker would rewrite every snapshot in the table for a value that is uniform across an order and that no surface renders per line. The frontend deliberately shows nothing for it - it appeared in one place with no action attached, so it is analytics data rather than a badge. This backfill is not the one the epic forbids. What must never be invented is a tax RATE; recording that an order predates the feature is a fact about OpenLinker's own history, and it is exactly what stops a later reader mistaking a defaulted rate for a stated one. The migration is idempotent by construction: it marks only rows where no line has ever carried a rate, so an order ingested between two runs is not retroactively called historical. There is no cutover instant to get wrong. COVERAGE. Counts are per shop connection, because that is the unit an operator fixes - 'the catalogue has no rates' is not actionable when three shops feed it and only one is incomplete. A product mapped on two connections counts under both, which is the honest answer since both shops would have to carry the rate. The grouping joins identifier_mappings by table name, the read-model posture the stock aggregation in findMany already uses, rather than importing another context's ORM entity. docs/operations/tax-rate-coverage.md carries the query, what the three states mean, how to read the answer, and why this gates #2257: until the defaults come out a rate-less product still produces a document with a guessed rate, and after it produces nothing at all. Running the two in the wrong order turns a slow, visible data problem into an immediate outage. The 2026-08-21 baseline measured zero coverage and is recorded on the issue. Closes #2256 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * feat(fiscalization): hold a receipt when a line has no tax rate The same rule as the invoice, on the fiscalization path. FiscalRegistrationService.register refuses before the read gate and before any row is written, so a held sale leaves no pending record to reconcile. The order-to-command mapper stops emitting an empty rate and carries the line's own, and shipping splits across a mixed-rate basket exactly as it does on an invoice - a receipt has to state a rate per line too. The accepted cost is LATE registration, and it is chosen deliberately. The alternative is a receipt carrying a tax letter nobody confirmed, which reaches the buyer and the daily report and cannot be recalled. A late registration can be completed; a wrong one has to be corrected. THE REVERSAL POINT IS ONE BRANCH: the assertEveryLineHasATaxRate call in register. Nothing else in this context consults the rate, and the exception's docblock says so, so reversing this is a one-line change rather than a redesign. The eparagony adapter's own empty-rate arm is kept for the same reason. The per-connection tax letter stays supported but stops being a fallback. Its docs no longer describe it as "what we use when we do not know": core refuses one step earlier now, so that arm is unreachable while the gate stands, and presenting it as a safety net would describe a trade OpenLinker no longer makes. splitShippingAcrossRates moves from invoicing into sales-documents. Both document contexts need it and a fiscal receipt is not an invoice, so neither could own it for the other - sales-documents is the dependency-free leaf that exists for exactly this case, and the barrel-purity spec already enforces that it stays one. The module imports nothing, so the property holds. On the elapsed-time signal: a held sale has no fiscal record to hang a clock on, and it does not need one. The block is recorded on the ORDER as missing-tax-rate with salesDocumentBlockedAt (#2248), and that reason is document-kind agnostic - it says the order has no fiscal document, whichever kind was due. A second clock would be a second answer to one question. Closes #2252 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * fix(web,analytics): address #2191 tech review — units total, Publish gating, touch a11y, ESLint slug - Units column now reads row.units (server-ranked figure) instead of re-summing row.channels[], which could silently disagree with the sort order the header arrow claims. - The Publish action is gated on listings:write via useWriteAccess + ReadOnlyLock: hidden for an unauthorized non-demo session, rendered disabled with the read-only tooltip for a demo viewer. - Swapped the Chip (aria-pressed toggle) for a real Link styled as a button, so the one-shot publish navigation carries link semantics (middle-click, open-in-new-tab) instead of misrepresenting itself as a permanently-unpressed toggle to assistive tech. - @media (hover: none) now stacks the "Not listed" label and the Publish action, both visible, instead of hiding the label on touch — the #1991 AC's label-vs-action distinction was desktop-only before. - Added the analytics feature slug to both no-restricted-imports pattern groups in .eslintrc.js. Closes review findings on https://github.com/openlinker-project/openlinker/pull/2191 Signed-off-by: jakubret <jakub.retajczyk@blockydevs.com> * feat(invoicing): copy the per-line net back from the issued document OpenLinker computes no net amount (ADR-052), so a stored per-line net has to be the document's own figure rather than a recomputation. Otherwise the record disagrees with the paper by a grosz here and there and no reader can tell which is right. Nothing carried a provider-computed net before this. documentContent held core's own recomputation, marked NON-AUTHORITATIVE in the code, and issuedLineSnapshot carried only unitPriceGross plus taxRate. So this is mostly an adapter-contract change: IssueInvoiceResult gains an optional documentLines, matched to the command's lines by 1-based line number. The fallback is per LINE, not per document, so a provider that reports some lines and not others still contributes what it has. Shipping lines are part of the numbering because they are real document lines; what "skip shipping" means is that they have no ORDER line to transcribe onto, not that they shift the mapping. A correction reports its own amounts and they overwrite the stored ones, so the record follows the latest effective document rather than keeping pre-correction figures the paper no longer states. inFakt reads the created invoice's own services[] - it is the calculator on that path - converting integer groszy back to PLN on the adapter side where that wire detail belongs. KSeF has nothing external to copy, so the adapter reports what it wrote. The figures come from the same lineNet the XML uses, so the reported net cannot drift from P_11, and the offline pending-submission path reports them too: that window is about transmission, not about what the document says. The KSeF rounding bug is fixed and the rule is stated once. P_9A is TKwotowy2, which permits EIGHT fraction digits, and the builder was rendering it through the 2dp money(). On 100 x 1.99 at 23% the line net is 161.79, but a unit net rounded to 1.62 multiplies back to 162.00 - the document contradicted itself by 21 grosze and a reader checking P_9A x P_8B == P_11 was right to complain. The rule: the LINE is the unit of rounding and the unit price is derived from it at the schema's full precision, never the other way round. The buyer paid a gross line amount, so the line's net is what anchors to a real figure; a unit net is a derived display value that only sometimes has an exact 2dp form. Closes #2251 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * feat(web): tax-rate states on the orders list, order detail and invoice panel Every tax-rate state on the orders surfaces, plus the backend contract two of them needed. BACKEND. A rate conflict gets its OWN field, its own count and its own filter, not a gate reason (epic F1). invoicingBlockedBadge returns null whenever an invoice plausibly exists, and a conflict does not stop the invoice, so routing it through the block machinery would make the badge unreachable on exactly the rows it describes - and SalesDocumentAttentionReasonValues would have counted it inside salesDocumentBlocked, against its own chip. The evidence is taxRateChannel on the order line, written ONLY when the channel disagreed with the shop. Its presence is the conflict, so no reader compares two fields and nothing goes wrong when only one system answered. The summary also reports the oldest still-held instant, so the blocked chip can carry an age. ORDERS LIST. A Rate conflict chip driven by its own count, mounting on filterActive || count for the nine-line reason the invoicing chip already documents: gating on the count alone unmounts the only way to clear the filter the moment remediation succeeds. No tone on it - .chip.chip--active overrides every .chip--{tone}, so an inactive conflict chip would read as pressed beside an active accent one. The age folds into the blocked chip's own label rather than becoming a third dotted badge in a row that already carries two SLA badges. The conflict badge uses the listings page's RowBadge shape - visible label plus the wording in a visually-hidden span - because the hint is the only statement of the fact on this surface and aria-label on a bare span is prohibited and commonly dropped. A new empty arm sits ABOVE both single-filter arms: with two filters active and no rows, "nothing is blocked from invoicing" would be a statement about a set the other filter narrowed. liveRegion stays polite, like the neighbour it sits beside. ORDER DETAIL. A tax-rate column on the line-items panel, following the epic's central claim: an answer is text, only an exception is a badge. A rate, a zero and an exemption all read the way the money beside them reads, with a provenance caption; only no-rate and conflict get colour. No hideBelow - this panel passes no cardView, so the class would simply delete the blocking state on a phone, on the one screen that diagnoses it. Only flagged and Jump to next flagged are borrowed from the bulk review step for long orders. The totals panel's Tax row keeps its snapshot value and gains a caption naming whose number it is, because Allegro and Erli report zero there and it will visibly disagree with the line rates. INVOICE PANEL. Three remedy branches, not one sentence: a blank rate on a mapped product, an item in no catalogue (fixing the offer will not release this order - the marketplace stamped the rate at purchase), and an ambiguous shop tax class. Plural-safe with a count, because a forty-line order with six rate-less lines cannot be told about one product. The Issue invoice button is disabled with the reason ON the control (epic F2). It renders on invoiceSettled && not-issued independently of the block copy, so until now a red "will not be issued" alert sat above a live button that issues it - and the backend now answers 422. The conflict alert is informational and lands on role="status" via the conflict tone. The shipping split preview lives here rather than beside the line items, because shipping has no order line: it exists only once a document is composed. One unknown line rate collapses it to a single waiting row rather than showing a proportion OpenLinker cannot compute. Fix and re-check names the latency and links to the products list rather than opening a sync dialog here: the connection to sync is the SHOP that owns the product, which this panel does not know. TIMELINE. The block entry is dated from the persisted instant instead of timestamp: null, and a release entry exists at all - by the time an order is released the reason is gone, so nothing else records that it was ever held. Closes #2254 Refs #2245 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: norbert-kulus-blockydevs <norbert.kulus@blockydevs.com> * feat(web): tax-rate states on products, publish wizar…
Summary
/analytics"needs attention" section ([IMPL] Frontend — /analytics "needs attention" section (coverage gaps, stock at risk, stuck value) #1989): coverage gaps, stock at risk, and value stuck in failed syncs, mounted into the#1986shell directly under the trust header.GET /analytics/needs-attention([IMPL] Backend — "needs attention" aggregates: coverage gaps, stock at risk, value stuck in failed syncs #1983) as-is — no backend changes in this PR.docs/plans/mockups/analytics-ledger-2003.html, frame 02).needs_attentionhealth bucket.Branch basis
This branch is stacked on
1986-analytics-page-shell(draft PR #2115, itself based on1985-order-analytics-read-model), notmain— it mountsAnalyticsNeedsAttentioninto theAnalyticsPageshell #1986 ships, which doesn't exist onmainyet. Merge order: #1985 → #1986 → this PR.Docs
docs/plans/implementation-plan-analytics-needs-attention.mddocs/plans/analysis/ANALYSIS-analytics-needs-attention.mdTest plan
pnpm type-check(web) — cleanpnpm lint(web) — 0 errors (pre-existing warnings elsewhere, untouched)pnpm test— left to CI per this session's conventionAlso included: #1990 tech-review fixes (PR #2171, already merged to main)
This branch merges
origin/1990-sales-analytics-trend-plan, so the KPI-strip/by-channel-table code from the now-merged #2171 lives here too. Since #2171 can no longer be amended, its outstanding tech-review findings are fixed in this PR instead:toExclusiveEndInstantanchored on UTC midnight instead of local midnight — matches the controller's UTC-parsedfrom, avoids an off-by-hours window depending on the client's timezone. Added a non-UTC-timezone spec.aria-labels now derive from the actual selected date range instead of a hardcoded "last 7 days".docs/frontend-ui-style-guide.md(Density table + parity matrix) — previously undocumented, against the guide's own "never introduce a row height that isn't on this list" rule..section-infotipfont-size -> the rem token equivalent.Closes #1989