← back to Sanderson Onboard
TK-10873: Zoffany Option-A sample-add + price draft artifacts (read-only, no live writes)
a910c50ebe55faa5d7da48c9954e14739769e4d9 · 2026-08-30 09:22:56 -0700 · Steve Abrams
Read-only draft/staging prep for Stage S3 of EPIC TK-10874 (SDG family onboard).
build_zoffany_optionA_draft.mjs pulls all 331 ACTIVE Zoffany products, LEFT JOINs
zoffany_catalog on mfr_sku, and classifies each into REPRICE (328) / SELLABLE_ADD (0)
/ HELD_NEEDS_PRICE (3). Emits draft JSON+CSV+summary. lib.mjs holds pure pricing
(retail=trade/0.65/0.85) + classification. test_optionA.mjs (28 tests) + validate_draft.mjs
(the gate) both pass. Contrarian panel: SHIP IT; the our_price 2-row fork escalated
to CLARIFY, not folded in silently. No Shopify/dw_unified writes; live publish is
Steve-gated (scripts/create_sdg.mjs).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
A tk10873/README.mdA tk10873/build_zoffany_optionA_draft.mjsA tk10873/lib.mjsA tk10873/test_optionA.mjsA tk10873/validate_draft.mjsA tk10873/zoffany_optionA_draft.csvA tk10873/zoffany_optionA_draft.jsonA tk10873/zoffany_optionA_summary.json
Diff
commit a910c50ebe55faa5d7da48c9954e14739769e4d9
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Sun Aug 30 09:22:56 2026 -0700
TK-10873: Zoffany Option-A sample-add + price draft artifacts (read-only, no live writes)
Read-only draft/staging prep for Stage S3 of EPIC TK-10874 (SDG family onboard).
build_zoffany_optionA_draft.mjs pulls all 331 ACTIVE Zoffany products, LEFT JOINs
zoffany_catalog on mfr_sku, and classifies each into REPRICE (328) / SELLABLE_ADD (0)
/ HELD_NEEDS_PRICE (3). Emits draft JSON+CSV+summary. lib.mjs holds pure pricing
(retail=trade/0.65/0.85) + classification. test_optionA.mjs (28 tests) + validate_draft.mjs
(the gate) both pass. Contrarian panel: SHIP IT; the our_price 2-row fork escalated
to CLARIFY, not folded in silently. No Shopify/dw_unified writes; live publish is
Steve-gated (scripts/create_sdg.mjs).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
tk10873/README.md | 97 +
tk10873/build_zoffany_optionA_draft.mjs | 138 +
tk10873/lib.mjs | 107 +
tk10873/test_optionA.mjs | 60 +
tk10873/validate_draft.mjs | 76 +
tk10873/zoffany_optionA_draft.csv | 332 ++
tk10873/zoffany_optionA_draft.json | 5629 +++++++++++++++++++++++++++++++
tk10873/zoffany_optionA_summary.json | 23 +
8 files changed, 6462 insertions(+)
diff --git a/tk10873/README.md b/tk10873/README.md
new file mode 100644
index 0000000..4f8cb56
--- /dev/null
+++ b/tk10873/README.md
@@ -0,0 +1,97 @@
+# TK-10873 — Zoffany Option-A Sample-Add + Price Draft (Stage S3 of EPIC TK-10874)
+
+DRAFT / staging / local-artifact prep ONLY. **No Shopify production writes, no
+`dw_unified` writes, no Kamatera writes.** All scripts here are READ-ONLY against
+the local `dw_unified` mirror (host=`/tmp` socket) and write only local files in
+this directory. The live-publish is a **separate, Steve-gated step** performed by
+`scripts/create_sdg.mjs` (or a sellable-variant add) — NOT run here.
+
+## Option A (the contract)
+
+Each product = TWO variants (proven `create_sdg.mjs` pipeline):
+- **sellable** — option1 `Sold Per {unit}`, price = the staged retail
+- **sample** — option1 `Sample`, sku `{dw}-Sample`, price `4.25`
+
+Retail rule = `trade / 0.65 / 0.85` (rounded to the cent). Verified on real rows:
+trade 191→345.70, 208→376.47, 177→320.36. Rows with no trade got `price_retail`
+from a direct retail harvest.
+
+## Sample-add is a documented NO-OP
+
+All 331 ACTIVE Zoffany products already carry a `$4.25` Sample variant, so the
+"sample-add" half of Option A is a no-op. The one product missing a **sellable**
+variant is `DWWC-502880` (mfr `313114`) — a SELLABLE-ADD candidate, not a sample-add.
+
+## Join-key rationale
+
+- **JOIN KEY = `mfr_sku`.** A `dw_sku` join is 0 matches (the live `shopify_products`
+ mirror carries NULL `dw_sku` for ACTIVE Zoffany; the staging `dw_sku` is a
+ different `DWZF-*` series). Joining on `mfr_sku` gives 330/331.
+- `shopify_products` is per-product aggregated; its `price`/`retail_price`/`cost_price`
+ are NULL (the mirror does not carry the live sellable price). We therefore source
+ the proposed price from `zoffany_catalog.price_retail` (staging), NOT from the mirror.
+
+## The 3 action buckets
+
+| action | condition | proposed_sellable_price |
+|---|---|---|
+| `REPRICE` | has sellable variant AND `price_retail>0` in staging | = staged `price_retail` |
+| `SELLABLE_ADD` | missing sellable variant AND a usable staged price | = staged `price_retail` |
+| `HELD_NEEDS_PRICE` | joins but `price_retail` null/0, OR no staging join, OR the outlier w/o a usable price | none (held for a price harvest) |
+
+Current draft: **328 REPRICE · 0 SELLABLE_ADD · 3 HELD_NEEDS_PRICE**.
+- The 3 HELD: `313114`/DWWC-502880 (no staging join, also missing sellable),
+ `ZFOW312941` and `ZFOW312943` (join but `price_retail` null — note: `our_price`
+ 309.50 exists but is NOT used as the retail source in this draft; a price harvest
+ should populate `price_retail`).
+- `SELLABLE_ADD` is 0 because the sole missing-sellable product (`313114`) has no
+ staged price → per the contract it falls back to `HELD_NEEDS_PRICE`.
+
+## Files
+
+- `lib.mjs` — pure pricing/classification helpers (no DB, testable).
+- `build_zoffany_optionA_draft.mjs` — READ-ONLY builder. Emits:
+ - `zoffany_optionA_draft.json` (full plan)
+ - `zoffany_optionA_draft.csv` (mfr_sku, dw_sku, action, live_has_sellable,
+ live_has_sample, staged_trade, proposed_sellable_price, sample_price, note)
+ - `zoffany_optionA_summary.json` (counts per action + totals)
+- `validate_draft.mjs` — the GATE: asserts every pricing invariant on the generated
+ draft; exits nonzero on any violation.
+- `test_optionA.mjs` — zero-dependency unit tests for the pure functions.
+
+## Regenerate + validate + test
+
+```sh
+cd ~/Projects/sanderson-onboard
+node tk10873/build_zoffany_optionA_draft.mjs # regenerate the draft artifacts
+node tk10873/test_optionA.mjs # unit tests (exit 0 = pass)
+node tk10873/validate_draft.mjs # the gate (exit 0 = pass)
+```
+
+## Live-publish (Steve-GATED — NOT run here)
+
+The reprice + sellable-add is a customer-facing Shopify write and stays gated. The
+command that WOULD run later, per the proven pipeline:
+
+```sh
+# DRY-RUN first (default), then --apply once Steve approves:
+node scripts/create_sdg.mjs --manifest=tk10873/<option-a-manifest>.json # dry-run
+node scripts/create_sdg.mjs --manifest=tk10873/<option-a-manifest>.json --apply --limit=N
+```
+
+- REPRICE rows update the existing sellable variant's price to `proposed_sellable_price`.
+- The single SELLABLE_ADD candidate (once priced) gets a `Sold Per {unit}` sellable
+ variant added alongside its existing sample.
+- Daily variant cap 1k/day; ≥90s gap between bulk batches.
+- HELD rows do NOT publish — they wait for a price harvest.
+
+## Open CLARIFY for Steve (contrarian panel, SHIP IT + 1 fork)
+
+`ZFOW312941` and `ZFOW312943` join staging with `price_retail` NULL but carry
+`our_price` = 309.50, which is *exactly* `trade(171)/0.65/0.85`. The draft HELDs them
+(conservative/reversible default) rather than silently repricing off a second column.
+**Decision Steve owns:** is `our_price` an authoritative retail source we should
+promote these 2 to REPRICE on, or do they wait for a `price_retail` harvest? The
+draft does NOT assume — it holds and flags (see the `CLARIFY` note on those rows).
+
+This draft NEVER touches Shopify or `dw_unified`; it only prepares the plan.
diff --git a/tk10873/build_zoffany_optionA_draft.mjs b/tk10873/build_zoffany_optionA_draft.mjs
new file mode 100644
index 0000000..45675a7
--- /dev/null
+++ b/tk10873/build_zoffany_optionA_draft.mjs
@@ -0,0 +1,138 @@
+#!/usr/bin/env node
+// build_zoffany_optionA_draft.mjs — TK-10873 Stage S3, EPIC TK-10874 (SDG family onboard).
+// READ-ONLY; NO SHOPIFY/DB WRITES. Only SELECTs against the local dw_unified mirror
+// (host=/tmp socket) + writes LOCAL artifact files under tk10873/. It NEVER issues an
+// UPDATE/INSERT/DELETE or any Shopify call. The live-publish is a SEPARATE, Steve-gated step.
+//
+// Emits the Option-A draft plan for all 331 ACTIVE Zoffany products:
+// REPRICE — has sellable variant + staged price_retail>0 -> proposed = price_retail
+// SELLABLE_ADD — missing sellable variant (DWWC-502880 outlier) + usable staged price
+// HELD_NEEDS_PRICE — joins but price null/0, OR no staging join, OR outlier w/o usable price
+// Sample variant stays 4.25 on every product (Option-A contract).
+import fs from 'node:fs';
+import { execFileSync } from 'node:child_process';
+import { buildPlanRow, SAMPLE_PRICE } from './lib.mjs';
+
+const DIR = new URL('.', import.meta.url).pathname;
+const JSON_OUT = `${DIR}zoffany_optionA_draft.json`;
+const CSV_OUT = `${DIR}zoffany_optionA_draft.csv`;
+const SUMMARY_OUT = `${DIR}zoffany_optionA_summary.json`;
+
+// READ-ONLY select. Same psql idiom as scripts/load_feed_pricing.mjs.
+// LEFT JOIN keeps all 331 active rows even when staging has no mfr_sku match (join=0).
+const SQL = `
+COPY (
+ SELECT
+ l.mfr_sku,
+ l.dw_sku AS live_dw_sku,
+ (z.mfr_sku IS NOT NULL) AS joined,
+ l.has_product_variant,
+ l.has_sample_variant,
+ l.variant_count,
+ z.dw_sku AS staged_dw_sku,
+ z.price_trade,
+ z.price_retail,
+ z.our_price,
+ z.tariff_amount_per_roll AS tariff
+ FROM shopify_products l
+ LEFT JOIN zoffany_catalog z ON z.mfr_sku = l.mfr_sku
+ WHERE l.vendor ILIKE 'zoffany%' AND l.status = 'ACTIVE'
+) TO STDOUT WITH (FORMAT csv, HEADER true);
+`;
+
+function query() {
+ const out = execFileSync('psql', ['-h', '/tmp', '-d', 'dw_unified', '-tAc', SQL], { encoding: 'utf8' });
+ const lines = out.split('\n').filter(Boolean);
+ const header = lines.shift().split(',');
+ return lines.map(line => {
+ // simple CSV parse — SAFE ONLY because every SELECTed column here is a sku /
+ // boolean / numeric with ZERO embedded commas or quotes (verified against the
+ // live data). If you ever add a text column (pattern/color/note) to the SELECT,
+ // replace this with a real CSV parser — psql COPY quotes such fields and the
+ // naive split would misalign.
+ const cells = line.split(',');
+ const rec = {};
+ header.forEach((h, i) => { rec[h] = cells[i] === '' ? null : cells[i]; });
+ return {
+ mfr_sku: rec.mfr_sku,
+ live_dw_sku: rec.live_dw_sku,
+ joined: rec.joined === 't' || rec.joined === 'true',
+ has_product_variant: rec.has_product_variant === 't' || rec.has_product_variant === 'true',
+ has_sample_variant: rec.has_sample_variant === 't' || rec.has_sample_variant === 'true',
+ variant_count: rec.variant_count == null ? null : Number(rec.variant_count),
+ staged_dw_sku: rec.staged_dw_sku,
+ price_trade: rec.price_trade,
+ price_retail: rec.price_retail,
+ our_price: rec.our_price,
+ tariff: rec.tariff,
+ };
+ });
+}
+
+function csvField(v) {
+ if (v == null) return '';
+ const s = String(v);
+ return /[",\n]/.test(s) ? `"${s.replace(/"/g, '""')}"` : s;
+}
+
+function main() {
+ const recs = query();
+ const plan = recs.map(buildPlanRow);
+
+ // JSON (full plan)
+ fs.writeFileSync(JSON_OUT, JSON.stringify(plan, null, 2));
+
+ // CSV
+ const cols = ['mfr_sku', 'dw_sku', 'action', 'live_has_sellable', 'live_has_sample',
+ 'staged_trade', 'proposed_sellable_price', 'sample_price', 'note'];
+ const csvLines = [cols.join(',')];
+ for (const p of plan) {
+ csvLines.push([
+ csvField(p.mfr_sku),
+ csvField(p.live_dw_sku || p.staged_dw_sku),
+ csvField(p.action),
+ csvField(p.has_product_variant),
+ csvField(p.has_sample_variant),
+ csvField(p.price_trade),
+ csvField(p.proposed_sellable_price),
+ csvField(p.sample_price),
+ csvField(p.note),
+ ].join(','));
+ }
+ fs.writeFileSync(CSV_OUT, csvLines.join('\n') + '\n');
+
+ // Summary
+ const counts = { REPRICE: 0, SELLABLE_ADD: 0, HELD_NEEDS_PRICE: 0 };
+ let joined = 0, priced = 0, missingSellable = 0;
+ for (const p of plan) {
+ counts[p.action] = (counts[p.action] || 0) + 1;
+ if (p.joined) joined++;
+ if (Number(p.price_retail) > 0) priced++;
+ if (!p.has_product_variant) missingSellable++;
+ }
+ const summary = {
+ ticket: 'TK-10873',
+ epic: 'TK-10874',
+ generated_at: new Date().toISOString(),
+ read_only: true,
+ vendor: 'Zoffany',
+ active_total: plan.length,
+ joined_staging: joined,
+ priced_from_staging: priced,
+ missing_sellable_variant: missingSellable,
+ sample_price: SAMPLE_PRICE,
+ counts,
+ expected: { active: 331, joined: 330, priced: 328, missing_sellable: 1 },
+ };
+ fs.writeFileSync(SUMMARY_OUT, JSON.stringify(summary, null, 2));
+
+ // stdout table
+ console.log('=== Zoffany Option-A Draft (READ-ONLY, no writes) ===');
+ console.log(`active_total=${plan.length} joined=${joined} priced=${priced} missing_sellable=${missingSellable}`);
+ console.log('action count');
+ console.log('------------------ -----');
+ for (const [k, v] of Object.entries(counts)) console.log(`${k.padEnd(18)} ${v}`);
+ console.log(`\nartifacts:\n ${JSON_OUT}\n ${CSV_OUT}\n ${SUMMARY_OUT}`);
+}
+
+main();
diff --git a/tk10873/lib.mjs b/tk10873/lib.mjs
new file mode 100644
index 0000000..2a432e0
--- /dev/null
+++ b/tk10873/lib.mjs
@@ -0,0 +1,107 @@
+// lib.mjs — pure pricing + classification helpers for the Zoffany Option-A draft.
+// READ-ONLY logic; NO SHOPIFY/DB WRITES. Extracted so test_optionA.mjs can exercise
+// them without a DB. Every function here is deterministic and side-effect-free.
+
+export const SAMPLE_PRICE = 4.25;
+
+// Retail rule (Option-A contract, verified on real zoffany_catalog rows):
+// retail = trade / 0.65 / 0.85, rounded to the cent.
+// trade 191 -> 345.70, 208 -> 376.47, 177 -> 320.36 (exact).
+export function retailFromTrade(trade) {
+ const t = Number(trade);
+ if (!Number.isFinite(t) || t <= 0) return null;
+ return Math.round((t / 0.65 / 0.85) * 100) / 100;
+}
+
+// Round any numeric to cents; null-safe.
+export function toCents(v) {
+ const n = Number(v);
+ if (!Number.isFinite(n)) return null;
+ return Math.round(n * 100) / 100;
+}
+
+// A staged retail is "usable" only if it is a positive number.
+export function hasStagedPrice(row) {
+ const r = Number(row && row.price_retail);
+ return Number.isFinite(r) && r > 0;
+}
+
+// Classify a joined live+staging plan row into exactly one action bucket.
+// REPRICE — live product HAS a sellable variant AND staging has price_retail>0.
+// SELLABLE_ADD — live product MISSING a sellable variant AND staging has a usable price.
+// HELD_NEEDS_PRICE — cannot price (no staging join, or joined but price_retail null/0),
+// OR the missing-sellable outlier with no usable staged price.
+// `row` fields expected: has_product_variant (bool), joined (bool), price_retail (num|null).
+export function classify(row) {
+ const priced = hasStagedPrice(row);
+ const hasSellable = !!row.has_product_variant;
+ if (!hasSellable) {
+ // The DWWC-502880 outlier: needs a sellable variant added.
+ return priced ? 'SELLABLE_ADD' : 'HELD_NEEDS_PRICE';
+ }
+ // Has a sellable variant already -> this is a REPRICE candidate, IF we can price it.
+ return priced ? 'REPRICE' : 'HELD_NEEDS_PRICE';
+}
+
+// Compute the proposed sellable price for a plan row given its action.
+// REPRICE / SELLABLE_ADD -> the staged price_retail (the authoritative retail).
+// HELD_NEEDS_PRICE -> null (cannot price).
+export function proposedSellablePrice(row, action) {
+ if (action === 'REPRICE' || action === 'SELLABLE_ADD') {
+ return hasStagedPrice(row) ? toCents(row.price_retail) : null;
+ }
+ return null;
+}
+
+// Build the full per-product plan row from a joined DB record.
+export function buildPlanRow(rec) {
+ const row = {
+ mfr_sku: rec.mfr_sku,
+ live_dw_sku: rec.live_dw_sku ?? null,
+ staged_dw_sku: rec.staged_dw_sku ?? null,
+ joined: rec.joined,
+ has_product_variant: !!rec.has_product_variant,
+ has_sample_variant: !!rec.has_sample_variant,
+ variant_count: rec.variant_count ?? null,
+ price_trade: rec.price_trade == null ? null : Number(rec.price_trade),
+ price_retail: rec.price_retail == null ? null : Number(rec.price_retail),
+ our_price: rec.our_price == null ? null : Number(rec.our_price),
+ tariff: rec.tariff == null ? null : Number(rec.tariff),
+ };
+ const action = classify(row);
+ const proposed = proposedSellablePrice(row, action);
+ let note = '';
+ if (action === 'HELD_NEEDS_PRICE') {
+ if (!row.joined) {
+ note = 'no staging join — held for price harvest';
+ } else if (row.our_price > 0) {
+ // Joined, price_retail null, but our_price is populated. On these rows our_price
+ // == trade/0.65/0.85 exactly. HELD is the conservative default; whether our_price
+ // is an authoritative retail source is a Steve CLARIFY (do NOT auto-price off it).
+ note = `joins staging, price_retail null but our_price=${toCents(row.our_price)} present — HELD (CLARIFY: use our_price as retail?)`;
+ } else {
+ note = 'joins staging but price_retail null/0 — held for price harvest';
+ }
+ } else if (action === 'SELLABLE_ADD') {
+ note = 'live product missing sellable variant — add sellable at staged retail';
+ } else {
+ // REPRICE — note when reconcile vs trade/0.65/0.85 is off (informational)
+ if (row.price_trade > 0) {
+ const calc = retailFromTrade(row.price_trade);
+ if (calc != null && Math.abs(calc - toCents(row.price_retail)) > 0.02) {
+ note = `retail ${toCents(row.price_retail)} deviates from trade/0.65/0.85=${calc}`;
+ } else {
+ note = 'reprice to staged retail';
+ }
+ } else {
+ note = 'reprice to staged retail (retail-harvested, no trade)';
+ }
+ }
+ return {
+ ...row,
+ action,
+ proposed_sellable_price: proposed,
+ sample_price: SAMPLE_PRICE,
+ note,
+ };
+}
diff --git a/tk10873/test_optionA.mjs b/tk10873/test_optionA.mjs
new file mode 100644
index 0000000..215d520
--- /dev/null
+++ b/tk10873/test_optionA.mjs
@@ -0,0 +1,60 @@
+#!/usr/bin/env node
+// test_optionA.mjs — zero-dependency unit tests for the pure pricing/classification
+// functions in lib.mjs. No DB, no network. Exit nonzero on any failure.
+import { retailFromTrade, classify, proposedSellablePrice, buildPlanRow, SAMPLE_PRICE } from './lib.mjs';
+
+let pass = 0, fail = 0;
+function ok(cond, msg) { if (cond) { pass++; } else { fail++; console.error(`FAIL: ${msg}`); } }
+function near(a, b, eps = 0.01) { return a != null && Math.abs(a - b) <= eps; }
+
+// --- retailFromTrade: the three verified anchors ---
+ok(near(retailFromTrade(191), 345.70), `retailFromTrade(191)=${retailFromTrade(191)} expect 345.70`);
+ok(near(retailFromTrade(208), 376.47), `retailFromTrade(208)=${retailFromTrade(208)} expect 376.47`);
+ok(near(retailFromTrade(177), 320.36), `retailFromTrade(177)=${retailFromTrade(177)} expect 320.36`);
+ok(retailFromTrade(0) === null, 'retailFromTrade(0) -> null');
+ok(retailFromTrade(null) === null, 'retailFromTrade(null) -> null');
+ok(retailFromTrade('abc') === null, 'retailFromTrade(non-numeric) -> null');
+
+// --- classify: the three buckets on synthetic rows ---
+// REPRICE: has sellable + staged price
+ok(classify({ has_product_variant: true, joined: true, price_retail: 345.70 }) === 'REPRICE', 'REPRICE row');
+// SELLABLE_ADD: missing sellable + usable staged price
+ok(classify({ has_product_variant: false, joined: true, price_retail: 200 }) === 'SELLABLE_ADD', 'SELLABLE_ADD row');
+// HELD: missing sellable + no usable price
+ok(classify({ has_product_variant: false, joined: true, price_retail: 0 }) === 'HELD_NEEDS_PRICE', 'HELD outlier no-price');
+ok(classify({ has_product_variant: false, joined: false, price_retail: null }) === 'HELD_NEEDS_PRICE', 'HELD outlier no-join');
+// HELD: has sellable but joins with null/0 price (cannot reprice)
+ok(classify({ has_product_variant: true, joined: true, price_retail: null }) === 'HELD_NEEDS_PRICE', 'HELD priced-null');
+ok(classify({ has_product_variant: true, joined: true, price_retail: 0 }) === 'HELD_NEEDS_PRICE', 'HELD price-0');
+// HELD: has sellable but NO staging join at all
+ok(classify({ has_product_variant: true, joined: false, price_retail: null }) === 'HELD_NEEDS_PRICE', 'HELD no-join sellable');
+
+// --- proposedSellablePrice ---
+ok(proposedSellablePrice({ price_retail: 345.70 }, 'REPRICE') === 345.70, 'proposed REPRICE = staged retail');
+ok(proposedSellablePrice({ price_retail: 200 }, 'SELLABLE_ADD') === 200, 'proposed SELLABLE_ADD = staged retail');
+ok(proposedSellablePrice({ price_retail: null }, 'HELD_NEEDS_PRICE') === null, 'proposed HELD = null');
+
+// --- buildPlanRow end-to-end + sample invariant ---
+const rp = buildPlanRow({ mfr_sku: 'X1', joined: true, has_product_variant: true, has_sample_variant: true, variant_count: 2, price_trade: 208, price_retail: 376.47 });
+ok(rp.action === 'REPRICE', 'buildPlanRow REPRICE action');
+ok(rp.proposed_sellable_price === 376.47, 'buildPlanRow REPRICE proposed');
+ok(rp.sample_price === SAMPLE_PRICE && rp.sample_price === 4.25, 'buildPlanRow sample invariant 4.25');
+ok(rp.proposed_sellable_price > rp.sample_price, 'buildPlanRow proposed > sample');
+
+const held = buildPlanRow({ mfr_sku: 'X2', joined: false, has_product_variant: true, has_sample_variant: true, variant_count: 2, price_trade: null, price_retail: null });
+ok(held.action === 'HELD_NEEDS_PRICE', 'buildPlanRow HELD action');
+ok(held.proposed_sellable_price === null, 'buildPlanRow HELD proposed null');
+ok(held.sample_price === 4.25, 'buildPlanRow HELD sample still 4.25');
+
+// SELLABLE_ADD outlier (DWWC-502880 shape): missing sellable, joined w/ price
+const add = buildPlanRow({ mfr_sku: '313114', joined: true, has_product_variant: false, has_sample_variant: true, variant_count: 1, price_trade: 177, price_retail: 320.36 });
+ok(add.action === 'SELLABLE_ADD', 'buildPlanRow SELLABLE_ADD action');
+ok(add.proposed_sellable_price === 320.36, 'buildPlanRow SELLABLE_ADD proposed');
+ok(add.proposed_sellable_price > add.sample_price, 'buildPlanRow SELLABLE_ADD proposed > sample');
+
+// margin guard: proposed retail must exceed trade (never below cost)
+ok(rp.proposed_sellable_price > rp.price_trade, 'buildPlanRow proposed > trade (margin)');
+ok(add.proposed_sellable_price > add.price_trade, 'buildPlanRow SELLABLE_ADD proposed > trade (margin)');
+
+console.log(`\ntest_optionA: ${pass} passed, ${fail} failed`);
+process.exit(fail === 0 ? 0 : 1);
diff --git a/tk10873/validate_draft.mjs b/tk10873/validate_draft.mjs
new file mode 100644
index 0000000..fa96468
--- /dev/null
+++ b/tk10873/validate_draft.mjs
@@ -0,0 +1,76 @@
+#!/usr/bin/env node
+// validate_draft.mjs — THE GATE. Asserts pricing invariants on the generated draft JSON.
+// Exits nonzero on any violation. READ-ONLY (reads the generated artifact only; no DB/Shopify).
+import fs from 'node:fs';
+import { retailFromTrade, SAMPLE_PRICE } from './lib.mjs';
+
+const DIR = new URL('.', import.meta.url).pathname;
+const JSON_OUT = `${DIR}zoffany_optionA_draft.json`;
+
+const EXPECT = { active: 331, joined: 330, priced: 328, missing_sellable: 1 };
+
+function main() {
+ if (!fs.existsSync(JSON_OUT)) {
+ console.error(`FAIL: draft not found — run build_zoffany_optionA_draft.mjs first (${JSON_OUT})`);
+ process.exit(1);
+ }
+ const plan = JSON.parse(fs.readFileSync(JSON_OUT, 'utf8'));
+ const violations = [];
+
+ let joined = 0, priced = 0, missingSellable = 0;
+ const counts = { REPRICE: 0, SELLABLE_ADD: 0, HELD_NEEDS_PRICE: 0 };
+
+ for (const p of plan) {
+ counts[p.action] = (counts[p.action] || 0) + 1;
+ if (p.joined) joined++;
+ if (Number(p.price_retail) > 0) priced++;
+ if (!p.has_product_variant) missingSellable++;
+
+ // 1. sample_price always 4.25
+ if (p.sample_price !== SAMPLE_PRICE) violations.push(`${p.mfr_sku}: sample_price ${p.sample_price} != 4.25`);
+
+ if (p.action === 'REPRICE' || p.action === 'SELLABLE_ADD') {
+ // 2. proposed > 0 AND > sample
+ if (!(Number(p.proposed_sellable_price) > 0)) violations.push(`${p.mfr_sku}: ${p.action} proposed not >0 (${p.proposed_sellable_price})`);
+ if (!(Number(p.proposed_sellable_price) > p.sample_price)) violations.push(`${p.mfr_sku}: ${p.action} proposed !> sample`);
+ // 3a. must have a real staged price to be in this bucket (no REPRICE without a staged price)
+ if (!(Number(p.price_retail) > 0)) violations.push(`${p.mfr_sku}: ${p.action} has no staged price_retail>0`);
+ // 3b. proposed must equal staged price_retail (Option-A: proposed = staged retail)
+ if (Number(p.proposed_sellable_price) !== Math.round(Number(p.price_retail) * 100) / 100)
+ violations.push(`${p.mfr_sku}: ${p.action} proposed ${p.proposed_sellable_price} != staged retail ${p.price_retail}`);
+ // 3c. MARGIN GUARD — where trade present, proposed > trade AND retail≈trade/0.65/0.85 within ±0.02
+ if (Number(p.price_trade) > 0) {
+ if (!(Number(p.proposed_sellable_price) > Number(p.price_trade)))
+ violations.push(`${p.mfr_sku}: MARGIN proposed ${p.proposed_sellable_price} <= trade ${p.price_trade}`);
+ const calc = retailFromTrade(p.price_trade);
+ if (calc == null || Math.abs(calc - Math.round(Number(p.price_retail) * 100) / 100) > 0.02)
+ violations.push(`${p.mfr_sku}: MARGIN retail ${p.price_retail} not ≈ trade/0.65/0.85=${calc} (±0.02)`);
+ }
+ } else if (p.action === 'HELD_NEEDS_PRICE') {
+ // held rows carry NO proposed price
+ if (p.proposed_sellable_price != null) violations.push(`${p.mfr_sku}: HELD carries a proposed price ${p.proposed_sellable_price}`);
+ } else {
+ violations.push(`${p.mfr_sku}: unknown action ${p.action}`);
+ }
+ }
+
+ // 4. counts reconcile to expected
+ if (plan.length !== EXPECT.active) violations.push(`active ${plan.length} != ${EXPECT.active}`);
+ if (joined !== EXPECT.joined) violations.push(`joined ${joined} != ${EXPECT.joined}`);
+ if (priced !== EXPECT.priced) violations.push(`priced ${priced} != ${EXPECT.priced}`);
+ if (missingSellable !== EXPECT.missing_sellable) violations.push(`missing_sellable ${missingSellable} != ${EXPECT.missing_sellable}`);
+
+ console.log('=== validate_draft (GATE) ===');
+ console.log(`active=${plan.length} joined=${joined} priced=${priced} missing_sellable=${missingSellable}`);
+ console.log(`counts: REPRICE=${counts.REPRICE} SELLABLE_ADD=${counts.SELLABLE_ADD} HELD_NEEDS_PRICE=${counts.HELD_NEEDS_PRICE}`);
+
+ if (violations.length) {
+ console.error(`\nVALIDATION FAILED — ${violations.length} violation(s):`);
+ for (const v of violations.slice(0, 50)) console.error(` - ${v}`);
+ process.exit(1);
+ }
+ console.log('\nVALIDATION PASSED — all invariants hold.');
+ process.exit(0);
+}
+
+main();
diff --git a/tk10873/zoffany_optionA_draft.csv b/tk10873/zoffany_optionA_draft.csv
new file mode 100644
index 0000000..2af4a69
--- /dev/null
+++ b/tk10873/zoffany_optionA_draft.csv
@@ -0,0 +1,332 @@
+mfr_sku,dw_sku,action,live_has_sellable,live_has_sample,staged_trade,proposed_sellable_price,sample_price,note
+ZOW0075-02,DWZF-187133,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0134-03,DWZF-187166,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0113-01,DWZF-187278,REPRICE,true,true,,382,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-01,DWZF-187334,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-04,DWZF-187267,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZPAW05001,DWZF-187050,REPRICE,true,true,135,244.34,4.25,reprice to staged retail
+ZOW0117-02,DWZF-187374,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0119-02,DWZF-187378,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZPHA312622,DWZF-187013,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZWOO311338,DWZF-187054,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZAMW310430,DWZF-187051,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZWOO311346,DWZF-187008,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZDAR312861,DWZF-187039,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312857,DWZF-187026,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZGUV08002,DWZF-187047,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZIND313111,DWZF-187033,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0120-01,DWZF-187379,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZPHA312595,DWZF-187007,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZRHW312890,DWZF-187011,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZRHW312897,DWZF-187014,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZKEM312648,DWZF-187016,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZRHW312903,DWZF-187017,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZHIW312994,DWZF-187019,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZRHW312914,DWZF-187023,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0020-02,DWZF-187073,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0050-02,DWZF-187256,REPRICE,true,true,593,1073.3,4.25,reprice to staged retail
+ZOW0132-08,DWZF-187286,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZQUA310993,DWZF-187024,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZHIW313004,DWZF-187027,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312889,DWZF-187029,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZRHW312907,DWZF-187000,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZOW0080-01,DWZF-187151,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZRHW312899,DWZF-187004,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312910,DWZF-187006,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZFOW312941,DWZF-187041,HELD_NEEDS_PRICE,true,true,171,,4.25,"joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+ZOW0036-05,DWZF-187310,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZOW0134-01,DWZF-187164,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0129-01,DWZF-187063,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-04,DWZF-187185,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0129-03,DWZF-187065,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0076-02,DWZF-187136,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0033-01,DWZF-187254,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-05,DWZF-187181,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-03,DWZF-187184,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-01,DWZF-187182,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-02,DWZF-187183,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0094-06,DWZF-187216,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0094-03,DWZF-187213,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-07,DWZF-187210,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0094-01,DWZF-187211,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-02,DWZF-187147,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0083-02,DWZF-187157,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-03,DWZF-187148,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0083-03,DWZF-187158,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0083-04,DWZF-187159,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0133-01,DWZF-187160,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0084-02,DWZF-187318,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0133-02,DWZF-187161,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-01,DWZF-187177,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-02,DWZF-187178,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-03,DWZF-187179,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-04,DWZF-187180,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0126-01,DWZF-187055,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZAQF322696,DWZF-187045,REPRICE,true,true,,132,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0116-01,DWZF-187372,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0117-01,DWZF-187373,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0118-02,DWZF-187376,REPRICE,true,true,,418,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0119-01,DWZF-187377,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0121-01,DWZF-187380,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0121-03,DWZF-187382,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0122-02,DWZF-187384,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZCOT313015,DWZF-187037,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZHIW312997,DWZF-187034,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZWOO311333,DWZF-187053,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZAMW310431,DWZF-187052,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-11,DWZF-187289,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZHIW312995,DWZF-187015,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZHIW313003,DWZF-187021,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZOW0083-01,DWZF-187156,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0091-03,DWZF-187196,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-03,DWZF-187140,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0097-01,DWZF-187290,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0098-03,DWZF-187293,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0128-01,DWZF-187060,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-07,DWZF-187285,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0086-01,DWZF-187331,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0089-01,DWZF-187348,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0047-01,DWZF-187228,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0128-03,DWZF-187062,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0129-02,DWZF-187064,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0078-04,DWZF-187145,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-01,DWZF-187146,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0130-01,DWZF-187066,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0131-01,DWZF-187068,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0131-03,DWZF-187070,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0080-03,DWZF-187153,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0082-01,DWZF-187155,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0131-04,DWZF-187071,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0133-03,DWZF-187162,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0020-05,DWZF-187074,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0134-02,DWZF-187165,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0023-02,DWZF-187077,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0023-03,DWZF-187078,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0025-01,DWZF-187080,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0007-01,DWZF-187083,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0014-03,DWZF-187087,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0016-02,DWZF-187089,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0041-01,DWZF-187091,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0134-04,DWZF-187167,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-03,DWZF-187170,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0043-01,DWZF-187096,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0114-02,DWZF-187098,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-04,DWZF-187171,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-05,DWZF-187172,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0115-01,DWZF-187099,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0124-01,DWZF-187116,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-06,DWZF-187173,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0125-01,DWZF-187117,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0052-01,DWZF-187118,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0054-02,DWZF-187120,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0136-01,DWZF-187174,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0054-03,DWZF-187121,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0055-02,DWZF-187123,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0136-03,DWZF-187176,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0092-01,DWZF-187199,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0057-01,DWZF-187124,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0057-02,DWZF-187125,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0092-03,DWZF-187201,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0057-03,DWZF-187126,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0092-04,DWZF-187202,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0127-02,DWZF-187058,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0043-02,DWZF-187226,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-02,DWZF-187205,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0058-02,DWZF-187128,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0095-01,DWZF-187217,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0044-04,DWZF-187227,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0048-03,DWZF-187230,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0048-04,DWZF-187231,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0074-02,DWZF-187130,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0139-02,DWZF-187233,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0095-02,DWZF-187218,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0074-03,DWZF-187131,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0096-01,DWZF-187222,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0096-02,DWZF-187223,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0140-01,DWZF-187234,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0142-01,DWZF-187237,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0142-02,DWZF-187238,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0075-01,DWZF-187132,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0075-03,DWZF-187134,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0019-01,DWZF-187224,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0076-01,DWZF-187135,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0019-02,DWZF-187225,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0100-01,DWZF-187295,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0100-03,DWZF-187297,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0076-03,DWZF-187137,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0144-01,DWZF-187240,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0145-01,DWZF-187241,REPRICE,true,true,,402,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0078-03,DWZF-187144,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+313114,DWWC-502880,HELD_NEEDS_PRICE,false,true,,,4.25,no staging join — held for price harvest
+ZOW0146-01,DWZF-187242,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0146-02,DWZF-187243,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0146-03,DWZF-187244,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0148-01,DWZF-187246,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0148-02,DWZF-187247,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0027-01,DWZF-187249,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0027-02,DWZF-187250,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0031-01,DWZF-187252,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0032-01,DWZF-187253,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0050-01,DWZF-187255,REPRICE,true,true,593,1073.3,4.25,reprice to staged retail
+ZOW0080-04,DWZF-187257,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0104-02,DWZF-187259,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0105-01,DWZF-187260,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0107-01,DWZF-187262,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0108-01,DWZF-187263,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-03,DWZF-187266,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-06,DWZF-187269,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0111-03,DWZF-187272,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0111-04,DWZF-187273,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0112-01,DWZF-187274,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0112-04,DWZF-187277,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-01,DWZF-187279,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-02,DWZF-187280,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-04,DWZF-187282,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-05,DWZF-187283,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-09,DWZF-187287,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0098-01,DWZF-187291,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0098-02,DWZF-187292,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0101-01,DWZF-187298,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0101-02,DWZF-187299,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0102-02,DWZF-187301,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0102-03,DWZF-187302,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0103-02,DWZF-187304,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0103-03,DWZF-187305,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0036-04,DWZF-187309,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZOW0037-01,DWZF-187311,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0084-01,DWZF-187317,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0084-03,DWZF-187319,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0084-04,DWZF-187320,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-04,DWZF-187324,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-05,DWZF-187325,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-08,DWZF-187328,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-09,DWZF-187329,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0086-03,DWZF-187333,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-02,DWZF-187335,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-06,DWZF-187339,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-07,DWZF-187340,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-02,DWZF-187342,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-03,DWZF-187343,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-05,DWZF-187345,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-06,DWZF-187346,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-07,DWZF-187347,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0089-02,DWZF-187349,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0090-01,DWZF-187351,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0059-01,DWZF-187353,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0059-03,DWZF-187355,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0067-01,DWZF-187364,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0072-01,DWZF-187370,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-03,DWZF-187323,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0007-02,DWZF-187084,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0123-02,DWZF-187386,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZCON311996,DWZF-187031,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZCOT313026,DWZF-187036,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0118-01,DWZF-187375,REPRICE,true,true,,418,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0121-02,DWZF-187381,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0122-01,DWZF-187383,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312884,DWZF-187020,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312865,DWZF-187038,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312864,DWZF-187022,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312873,DWZF-187002,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312869,DWZF-187025,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZEND313098,DWZF-187030,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0096-03,DWZF-187387,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZGUV08003,DWZF-187048,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZJAI311727,DWZF-187010,REPRICE,true,true,171,309.5,4.25,reprice to staged retail
+ZWOO311336,DWZF-187009,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0126-02,DWZF-187056,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0127-01,DWZF-187057,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0127-03,DWZF-187059,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0128-02,DWZF-187061,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0130-02,DWZF-187067,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZHIW312996,DWZF-187001,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZOW0131-02,DWZF-187069,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZTOT312747,DWZF-187003,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0020-01,DWZF-187072,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0081-01,DWZF-187154,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0133-04,DWZF-187163,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-01,DWZF-187168,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-02,DWZF-187169,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZKEM312641,DWZF-187005,REPRICE,true,true,171,309.5,4.25,reprice to staged retail
+ZOW0023-01,DWZF-187076,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0023-04,DWZF-187079,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0040-01,DWZF-187314,REPRICE,true,true,191,345.7,4.25,reprice to staged retail
+ZOW0040-04,DWZF-187316,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0136-02,DWZF-187175,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-06,DWZF-187187,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0091-01,DWZF-187194,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0091-02,DWZF-187195,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZRHW312906,DWZF-187012,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZOW0085-01,DWZF-187321,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-03,DWZF-187206,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-02,DWZF-187322,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-05,DWZF-187208,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0014-01,DWZF-187085,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0095-03,DWZF-187219,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0048-02,DWZF-187229,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0139-01,DWZF-187232,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-06,DWZF-187326,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-07,DWZF-187327,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-10,DWZF-187330,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0086-02,DWZF-187332,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-04,DWZF-187337,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-05,DWZF-187338,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-01,DWZF-187341,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZRHW312916,DWZF-187032,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0014-02,DWZF-187086,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0042-01,DWZF-187093,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-04,DWZF-187344,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0140-02,DWZF-187235,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0016-01,DWZF-187088,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0143-01,DWZF-187239,REPRICE,true,true,,250,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0089-03,DWZF-187350,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-05,DWZF-187186,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0041-02,DWZF-187092,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0147-01,DWZF-187245,REPRICE,true,true,,486,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0026-01,DWZF-187248,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0059-02,DWZF-187354,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0059-04,DWZF-187356,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0060-01,DWZF-187357,REPRICE,true,true,162,293.21,4.25,reprice to staged retail
+ZOW0042-03,DWZF-187095,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0067-03,DWZF-187366,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0027-03,DWZF-187251,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0114-01,DWZF-187097,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0072-02,DWZF-187371,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0123-03,DWZF-187115,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0104-01,DWZF-187258,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0053-02,DWZF-187119,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0106-01,DWZF-187261,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-01,DWZF-187264,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-02,DWZF-187265,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0058-01,DWZF-187127,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0110-05,DWZF-187268,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0074-01,DWZF-187129,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0111-01,DWZF-187270,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0111-02,DWZF-187271,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0112-02,DWZF-187275,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0112-03,DWZF-187276,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-01,DWZF-187138,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-03,DWZF-187281,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-02,DWZF-187139,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-06,DWZF-187284,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-10,DWZF-187288,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-04,DWZF-187141,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0100-02,DWZF-187296,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0102-01,DWZF-187300,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0103-01,DWZF-187303,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0078-01,DWZF-187142,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZFOW312943,DWZF-187042,HELD_NEEDS_PRICE,true,true,171,,4.25,"joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+ZOW0036-01,DWZF-187307,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0078-02,DWZF-187143,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0036-02,DWZF-187308,REPRICE,true,true,257,465.16,4.25,reprice to staged retail
+ZGUV08004,DWZF-187049,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0079-05,DWZF-187150,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0080-02,DWZF-187152,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0016-03,DWZF-187090,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0095-05,DWZF-187221,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-04,DWZF-187149,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0092-05,DWZF-187203,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0141-01,DWZF-187236,REPRICE,true,true,,452,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0090-02,DWZF-187352,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-03,DWZF-187336,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0042-02,DWZF-187094,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
diff --git a/tk10873/zoffany_optionA_draft.json b/tk10873/zoffany_optionA_draft.json
new file mode 100644
index 0000000..bce543a
--- /dev/null
+++ b/tk10873/zoffany_optionA_draft.json
@@ -0,0 +1,5629 @@
+[
+ {
+ "mfr_sku": "ZOW0075-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187133",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0134-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187166",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0113-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187278",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 382,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 382,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0087-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187334",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0110-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187267",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZPAW05001",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187050",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 135,
+ "price_retail": 244.34,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 244.34,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0117-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187374",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0119-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187378",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZPHA312622",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187013",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZWOO311338",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187054",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 247,
+ "price_retail": 447.06,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 447.06,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZAMW310430",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187051",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 200,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 200,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZWOO311346",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187008",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZDAR312861",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187039",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZDAR312857",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187026",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZGUV08002",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187047",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZIND313111",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187033",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 136,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 136,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0120-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187379",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZPHA312595",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187007",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 281,
+ "price_retail": 508.6,
+ "our_price": 508.6,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 508.6,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZRHW312890",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187011",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 281,
+ "price_retail": 508.6,
+ "our_price": 508.6,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 508.6,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZRHW312897",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187014",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZKEM312648",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187016",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": 376.47,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZRHW312903",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187017",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZHIW312994",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187019",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": 376.47,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZRHW312914",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187023",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": 320.36,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0020-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187073",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0050-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187256",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 593,
+ "price_retail": 1073.3,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 1073.3,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0132-08",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187286",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZQUA310993",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187024",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 140,
+ "price_retail": 253.39,
+ "our_price": 253.39,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 253.39,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZHIW313004",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187027",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZRHW312889",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187029",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 281,
+ "price_retail": 508.6,
+ "our_price": 508.6,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 508.6,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZRHW312907",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187000",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0080-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187151",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZRHW312899",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187004",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZRHW312910",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187006",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZFOW312941",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187041",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 171,
+ "price_retail": null,
+ "our_price": 309.5,
+ "tariff": null,
+ "action": "HELD_NEEDS_PRICE",
+ "proposed_sellable_price": null,
+ "sample_price": 4.25,
+ "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+ },
+ {
+ "mfr_sku": "ZOW0036-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187310",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 281,
+ "price_retail": 508.6,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 508.6,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0134-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187164",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0129-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187063",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 116,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 116,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0138-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187185",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0129-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187065",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 116,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 116,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0076-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187136",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0033-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187254",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0137-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187181",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0138-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187184",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0138-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187182",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0138-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187183",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0094-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187216",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0094-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187213",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0093-07",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187210",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0094-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187211",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0079-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187147",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0083-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187157",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0079-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187148",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0083-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187158",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0083-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187159",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0133-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187160",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0084-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187318",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 200,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 200,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0133-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187161",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0137-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187177",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0137-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187178",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0137-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187179",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0137-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187180",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0126-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187055",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 422,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 422,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZAQF322696",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187045",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 132,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 132,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0116-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187372",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 136,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 136,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0117-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187373",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0118-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187376",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 418,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 418,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0119-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187377",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0121-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187380",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0121-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187382",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0122-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187384",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZCOT313015",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187037",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZHIW312997",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187034",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 140,
+ "price_retail": 253.39,
+ "our_price": 253.39,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 253.39,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZWOO311333",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187053",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 247,
+ "price_retail": 447.06,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 447.06,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZAMW310431",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187052",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 200,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 200,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-11",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187289",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZHIW312995",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187015",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 140,
+ "price_retail": 253.39,
+ "our_price": 253.39,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 253.39,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZHIW313003",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187021",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0083-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187156",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0091-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187196",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0077-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187140",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0097-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187290",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 158,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 158,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0098-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187293",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0128-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187060",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-07",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187285",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0086-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187331",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 180,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 180,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0089-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187348",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 180,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 180,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0047-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187228",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0128-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187062",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0129-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187064",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 116,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 116,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0078-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187145",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0079-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187146",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0130-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187066",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 244,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 244,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0131-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187068",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 116,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 116,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0131-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187070",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 116,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 116,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0080-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187153",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0082-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187155",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0131-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187071",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 116,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 116,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0133-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187162",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0020-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187074",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0134-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187165",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0023-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187077",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0023-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187078",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0025-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187080",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0007-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187083",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0014-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187087",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0016-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187089",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0041-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187091",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0134-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187167",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0135-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187170",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0043-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187096",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0114-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187098",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 158,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 158,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0135-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187171",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0135-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187172",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0115-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187099",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0124-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187116",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 244,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 244,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0135-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187173",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0125-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187117",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0052-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187118",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0054-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187120",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0136-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187174",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0054-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187121",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0055-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187123",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0136-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187176",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0092-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187199",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0057-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187124",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0057-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187125",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0092-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187201",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0057-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187126",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0092-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187202",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0127-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187058",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0043-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187226",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0093-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187205",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0058-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187128",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0095-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187217",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0044-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187227",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0048-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187230",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0048-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187231",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0074-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187130",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0139-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187233",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 136,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 136,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0095-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187218",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0074-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187131",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0096-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187222",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0096-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187223",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0140-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187234",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0142-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187237",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0142-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187238",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0075-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187132",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0075-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187134",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0019-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187224",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0076-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187135",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0019-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187225",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0100-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187295",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0100-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187297",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0076-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187137",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0144-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187240",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0145-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187241",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 402,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 402,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0078-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187144",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "313114",
+ "live_dw_sku": "DWWC-502880",
+ "staged_dw_sku": null,
+ "joined": false,
+ "has_product_variant": false,
+ "has_sample_variant": true,
+ "variant_count": 1,
+ "price_trade": null,
+ "price_retail": null,
+ "our_price": null,
+ "tariff": null,
+ "action": "HELD_NEEDS_PRICE",
+ "proposed_sellable_price": null,
+ "sample_price": 4.25,
+ "note": "no staging join — held for price harvest"
+ },
+ {
+ "mfr_sku": "ZOW0146-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187242",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0146-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187243",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0146-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187244",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0148-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187246",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0148-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187247",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0027-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187249",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 106,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 106,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0027-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187250",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 106,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 106,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0031-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187252",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 106,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 106,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0032-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187253",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 158,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 158,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0050-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187255",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 593,
+ "price_retail": 1073.3,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 1073.3,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0080-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187257",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0104-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187259",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0105-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187260",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0107-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187262",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0108-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187263",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0110-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187266",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0110-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187269",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0111-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187272",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0111-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187273",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0112-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187274",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 100,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 100,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0112-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187277",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 100,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 100,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187279",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187280",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187282",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187283",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-09",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187287",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0098-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187291",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0098-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187292",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0101-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187298",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0101-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187299",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0102-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187301",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0102-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187302",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0103-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187304",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0103-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187305",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0036-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187309",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 281,
+ "price_retail": 508.6,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 508.6,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0037-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187311",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0084-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187317",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 200,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 200,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0084-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187319",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 200,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 200,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0084-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187320",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 200,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 200,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187324",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187325",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-08",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187328",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-09",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187329",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0086-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187333",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 180,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 180,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0087-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187335",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0087-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187339",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0087-07",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187340",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0088-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187342",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0088-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187343",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0088-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187345",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0088-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187346",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0088-07",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187347",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0089-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187349",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 180,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 180,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0090-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187351",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0059-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187353",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 247,
+ "price_retail": 447.06,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 447.06,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0059-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187355",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 247,
+ "price_retail": 447.06,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 447.06,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0067-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187364",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0072-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187370",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 422,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 422,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187323",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0007-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187084",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0123-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187386",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZCON311996",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187031",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZCOT313026",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187036",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0118-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187375",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 418,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 418,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0121-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187381",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0122-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187383",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZDAR312884",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187020",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZDAR312865",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187038",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZDAR312864",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187022",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZDAR312873",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187002",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZDAR312869",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187025",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZEND313098",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187030",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0096-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187387",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZGUV08003",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187048",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZJAI311727",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187010",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 171,
+ "price_retail": 309.5,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 309.5,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZWOO311336",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187009",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 247,
+ "price_retail": 447.06,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 447.06,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0126-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187056",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 422,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 422,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0127-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187057",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0127-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187059",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0128-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187061",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0130-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187067",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 244,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 244,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZHIW312996",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187001",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 140,
+ "price_retail": 253.39,
+ "our_price": 253.39,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 253.39,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0131-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187069",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 116,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 116,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZTOT312747",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187003",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 247,
+ "price_retail": 447.06,
+ "our_price": 447.06,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 447.06,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0020-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187072",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0081-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187154",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0133-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187163",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0135-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187168",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0135-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187169",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZKEM312641",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187005",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 171,
+ "price_retail": 309.5,
+ "our_price": 309.5,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 309.5,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0023-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187076",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0023-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187079",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0040-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187314",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 191,
+ "price_retail": 345.7,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 345.7,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0040-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187316",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0136-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187175",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0138-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187187",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0091-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187194",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0091-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187195",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZRHW312906",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187012",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 216,
+ "price_retail": 390.95,
+ "our_price": 390.95,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 390.95,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0085-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187321",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0093-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187206",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187322",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0093-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187208",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0014-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187085",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0095-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187219",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0048-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187229",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0139-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187232",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 136,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 136,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187326",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-07",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187327",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0085-10",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187330",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0086-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187332",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 180,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 180,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0087-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187337",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0087-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187338",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0088-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187341",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZRHW312916",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187032",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 177,
+ "price_retail": 320.36,
+ "our_price": 320.36,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 320.36,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0014-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187086",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0042-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187093",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0088-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187344",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0140-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187235",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0016-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187088",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0143-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187239",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 250,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 250,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0089-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187350",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 180,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 180,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0138-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187186",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0041-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187092",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0147-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187245",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 486,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 486,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0026-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187248",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 158,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 158,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0059-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187354",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 247,
+ "price_retail": 447.06,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 447.06,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0059-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187356",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0060-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187357",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 162,
+ "price_retail": 293.21,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 293.21,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0042-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187095",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0067-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187366",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0027-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187251",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 106,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 106,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0114-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187097",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 158,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 158,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0072-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187371",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 422,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 422,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0123-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187115",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 210,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 210,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0104-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187258",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0053-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187119",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0106-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187261",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0110-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187264",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0110-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187265",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0058-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187127",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0110-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187268",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0074-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187129",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0111-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187270",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0111-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187271",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0112-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187275",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 100,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 100,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0112-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187276",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 100,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 100,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0077-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187138",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187281",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0077-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187139",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-06",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187284",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0132-10",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187288",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 186,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 186,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0077-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187141",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0100-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187296",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0102-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187300",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 196,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 196,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0103-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187303",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 176,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 176,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0078-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187142",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZFOW312943",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187042",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 171,
+ "price_retail": null,
+ "our_price": 309.5,
+ "tariff": null,
+ "action": "HELD_NEEDS_PRICE",
+ "proposed_sellable_price": null,
+ "sample_price": 4.25,
+ "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+ },
+ {
+ "mfr_sku": "ZOW0036-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187307",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 200,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 200,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0078-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187143",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 148,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 148,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0036-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187308",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 257,
+ "price_retail": 465.16,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 465.16,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZGUV08004",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187049",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": 376.47,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0079-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187150",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0080-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187152",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 164,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 164,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0016-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187090",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ },
+ {
+ "mfr_sku": "ZOW0095-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187221",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0079-04",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187149",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0092-05",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187203",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 122,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 122,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0141-01",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187236",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 452,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 452,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0090-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187352",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 126,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 126,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0087-03",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187336",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": null,
+ "price_retail": 154,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 154,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail (retail-harvested, no trade)"
+ },
+ {
+ "mfr_sku": "ZOW0042-02",
+ "live_dw_sku": null,
+ "staged_dw_sku": "DWZF-187094",
+ "joined": true,
+ "has_product_variant": true,
+ "has_sample_variant": true,
+ "variant_count": 2,
+ "price_trade": 208,
+ "price_retail": 376.47,
+ "our_price": null,
+ "tariff": null,
+ "action": "REPRICE",
+ "proposed_sellable_price": 376.47,
+ "sample_price": 4.25,
+ "note": "reprice to staged retail"
+ }
+]
\ No newline at end of file
diff --git a/tk10873/zoffany_optionA_summary.json b/tk10873/zoffany_optionA_summary.json
new file mode 100644
index 0000000..121ca25
--- /dev/null
+++ b/tk10873/zoffany_optionA_summary.json
@@ -0,0 +1,23 @@
+{
+ "ticket": "TK-10873",
+ "epic": "TK-10874",
+ "generated_at": "2026-08-30T16:22:38.411Z",
+ "read_only": true,
+ "vendor": "Zoffany",
+ "active_total": 331,
+ "joined_staging": 330,
+ "priced_from_staging": 328,
+ "missing_sellable_variant": 1,
+ "sample_price": 4.25,
+ "counts": {
+ "REPRICE": 328,
+ "SELLABLE_ADD": 0,
+ "HELD_NEEDS_PRICE": 3
+ },
+ "expected": {
+ "active": 331,
+ "joined": 330,
+ "priced": 328,
+ "missing_sellable": 1
+ }
+}
\ No newline at end of file
← 87c64c1 SDG: wire settlement image-vision gate into cadence; batch-1
·
back to Sanderson Onboard
·
TK-10873 cycle1: HELD price-recovery findings (3 rows stay h 98e4c8e →