← back to Dw Unbuyable Recovery Pilot
TK-10875: EMPIRICAL correction — WG 224 are RR-defect, recoverable via restructure
8fb27f0be69d1d0e45057be88e081b5a6279af67 · 2026-08-30 09:54:21 -0700 · Steve Abrams
Empirical test gate (yoloforever) drove the claim against LIVE Shopify and reversed
the conclusion again — the decisive finding:
- The 224 WG 'unbuyable' products each have a SINGLE variant with option1='Sample'
priced at ROLL RETAIL ($54.75..$343.80), not $4.25. Verified on 4 products across
the price range. This is the RR-defect (TK-10875-130 class), NOT already-sellable
and NOT clean sample-only — both prior conclusions were wrong.
- The mirror CANNOT classify this: it carries no variant option1 and is price-stale
(one product read $180.90 mirror vs $343.80 live; sync 13 days dead).
- Recovery = variant restructure (relabel Sample->Sold Per Roll @ trade/0.65/0.85 +
add $4.25 Sample), reversible+ledgered per TK-10875-130 — GATED customer-facing write.
- Fixed shopify_id vs internal-id bug; executor must read live + recompute from staging.
Artifacts marked REGEN_PENDING: a live mirror lock pileup (ALTER TABLE shopify_products
queued behind a 35-min analytical query) is blocking shopify_products reads. Code is
correct; regenerate data/ when the lock clears.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
M classify.mjsM data/classification-summary.jsonM data/wolf-gordon-dryrun.csvM data/wolf-gordon-dryrun.jsonM pilot.mjs
Diff
commit 8fb27f0be69d1d0e45057be88e081b5a6279af67
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Sun Aug 30 09:54:21 2026 -0700
TK-10875: EMPIRICAL correction — WG 224 are RR-defect, recoverable via restructure
Empirical test gate (yoloforever) drove the claim against LIVE Shopify and reversed
the conclusion again — the decisive finding:
- The 224 WG 'unbuyable' products each have a SINGLE variant with option1='Sample'
priced at ROLL RETAIL ($54.75..$343.80), not $4.25. Verified on 4 products across
the price range. This is the RR-defect (TK-10875-130 class), NOT already-sellable
and NOT clean sample-only — both prior conclusions were wrong.
- The mirror CANNOT classify this: it carries no variant option1 and is price-stale
(one product read $180.90 mirror vs $343.80 live; sync 13 days dead).
- Recovery = variant restructure (relabel Sample->Sold Per Roll @ trade/0.65/0.85 +
add $4.25 Sample), reversible+ledgered per TK-10875-130 — GATED customer-facing write.
- Fixed shopify_id vs internal-id bug; executor must read live + recompute from staging.
Artifacts marked REGEN_PENDING: a live mirror lock pileup (ALTER TABLE shopify_products
queued behind a 35-min analytical query) is blocking shopify_products reads. Code is
correct; regenerate data/ when the lock clears.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
classify.mjs | 50 +-
data/classification-summary.json | 173 +--
data/wolf-gordon-dryrun.csv | 226 +--
data/wolf-gordon-dryrun.json | 3161 +-------------------------------------
pilot.mjs | 125 +-
5 files changed, 97 insertions(+), 3638 deletions(-)
diff --git a/classify.mjs b/classify.mjs
index a341d88..df95fc1 100644
--- a/classify.mjs
+++ b/classify.mjs
@@ -11,23 +11,21 @@ const HERE = dirname(fileURLToPath(import.meta.url));
const UNBUYABLE = `lower(status)='active' AND (has_product_variant IS DISTINCT FROM true)`;
-// Stale-flag guard: a product flagged unbuyable but carrying a SINGLE non-sample
-// variant priced above the $4.25 sample floor is (per the mirror) ALREADY
-// SELLABLE — the has_product_variant flag is stale (dead sync job). Hardened per
-// 2nd-model review: require variant_count=1 (else a sample+roll pair whose MIN
-// price is the sample would be mis-bucketed and double-added) and a NON-NULL SKU
-// (NULL = "unknown", kept conservatively on the genuine-hole side, never
-// silently excluded from recovery). Threshold $4.50 is heuristic (DW sample=$4.25).
-const STALE_FLAG = `variant_count = 1 AND variant_sku IS NOT NULL AND variant_sku NOT ILIKE '%-sample' AND COALESCE(min_variant_price,0) > 4.50`;
-const SAMPLE_ONLY = `NOT (${STALE_FLAG})`;
+// "Single priced variant" signature: variant_count=1 with a non-sample SKU priced
+// above the $4.25 floor. In the mirror this LOOKS like "already sellable", but a
+// live-Shopify check (2026-08-30) proved the opposite for the Wolf Gordon cohort:
+// these are the RR-defect (a lone variant labeled option1='Sample' but priced at
+// roll retail). The mirror CANNOT distinguish the two — it carries no option1 —
+// so this count is "needs live classification", not a recovery verdict.
+const SINGLE_PRICED = `variant_count = 1 AND variant_sku IS NOT NULL AND variant_sku NOT ILIKE '%-sample' AND COALESCE(min_variant_price,0) > 4.50`;
+const SAMPLE_ONLY = `NOT (${SINGLE_PRICED})`;
-// 1) Headline + stale-flag split
+// 1) Headline
const headline = queryOne(`
SELECT
count(*) AS unbuyable_total,
- count(*) FILTER (WHERE ${STALE_FLAG}) AS already_sellable_stale_flag,
- count(*) FILTER (WHERE ${SAMPLE_ONLY}) AS genuinely_sample_only,
- count(*) FILTER (WHERE COALESCE(cost,0) > 0) AS bucket_a_row_cost,
+ count(*) FILTER (WHERE ${SINGLE_PRICED}) AS single_priced_variant_needs_live_check,
+ count(*) FILTER (WHERE ${SAMPLE_ONLY}) AS sample_only_mirror,
count(*) FILTER (WHERE has_product_variant IS NULL) AS null_flag
FROM shopify_products WHERE ${UNBUYABLE}`);
@@ -50,13 +48,17 @@ const recoverable = cohorts.map(({ vendor, table, cost }) => {
WITH ub AS (SELECT id, sku, variant_count, variant_sku, min_variant_price FROM shopify_products
WHERE vendor='${vendor}' AND ${UNBUYABLE})
SELECT (SELECT count(*) FROM ub) AS unbuyable,
- count(DISTINCT ub.id) FILTER (WHERE (${cost}) > 0) AS cost_joined,
- count(DISTINCT ub.id) FILTER (WHERE (${cost}) > 0 AND ${SAMPLE_ONLY}) AS truly_recoverable
+ count(DISTINCT ub.id) FILTER (WHERE (${cost}) > 0) AS cost_joined
FROM ub LEFT JOIN ${table} c ON c.dw_sku = ub.sku`);
return { vendor, staging_table: table, cost_column: cost,
unbuyable: Number(row.unbuyable),
cost_joined: Number(row.cost_joined),
- truly_recoverable: Number(row.truly_recoverable) };
+ // Wolf Gordon's cost_joined cohort was live-verified as RR-defect →
+ // recoverable via variant restructure (GATED). Others unverified.
+ recovery: vendor === 'Wolf Gordon'
+ ? 'live-verified RR-defect → recoverable via restructure (GATED)'
+ : (vendor === 'Coordonné' ? 'blocked: DWCO2↔DWDC prefix + empty trade cost'
+ : 'no staging join (CDA line ≠ wallquest DWQW)') };
});
const summary = {
@@ -66,21 +68,21 @@ const summary = {
definition_unbuyable: "status='active' AND has_product_variant IS NOT TRUE",
headline: {
unbuyable_total: Number(headline.unbuyable_total),
- already_sellable_stale_flag: Number(headline.already_sellable_stale_flag),
- genuinely_sample_only: Number(headline.genuinely_sample_only),
- bucket_a_row_level_cost: Number(headline.bucket_a_row_cost), // historical: 717 already worked off → ~0
+ single_priced_variant_needs_live_check: Number(headline.single_priced_variant_needs_live_check),
+ sample_only_mirror: Number(headline.sample_only_mirror),
null_flag: Number(headline.null_flag),
},
top_vendors: vendors.map(v => ({ vendor: v.vendor, unbuyable: Number(v.unbuyable), pct: Number(v.pct) })),
join_validated_recoverable: recoverable,
- finding: 'Two-layer correction: (1) join-key column-swap — the working join is shopify.sku = <vendor>_catalog.dw_sku, not dw_sku↔dw_sku (which yields 0). (2) STALE-FLAG contamination — the cost-joined candidates are already-sellable in Shopify (dead sync job left has_product_variant stale). Net: truly-recoverable-from-staging-cost ≈ 0 for WG/Coordonné/Malibu once stale flags are excluded. The real hole is the genuinely-sample-only pool, which is cost-blocked (needs cost sourcing). Fix the dead dw-shopify-products-sync-hourly + re-sync has_product_variant before any recovery build.',
+ finding: 'Three-layer result. (1) JOIN-KEY SWAP: working join is shopify.sku = <vendor>_catalog.dw_sku, not dw_sku↔dw_sku (yields 0) — why prior cycles used unreliable table-totals. (2) MIRROR CANNOT CLASSIFY: it has no variant option1 and is price-stale (dead dw-shopify-products-sync-hourly, 13d). (3) LIVE-VERIFIED (2026-08-30): the WG 224 cost-joined cohort is the RR-defect — a lone option1=Sample variant priced at ROLL RETAIL (not $4.25), no real sample, no roll. They ARE recoverable via the proven TK-10875-130 variant-restructure (relabel Sample→Sold Per Roll @ trade/0.65/0.85 + add $4.25 Sample), reversible+ledgered — but it is a GATED customer-facing write. Coordonné/Malibu do not join. Executor MUST read live Shopify + recompute retail from staging (never the stale mirror price).',
};
const out = join(HERE, 'data', 'classification-summary.json');
writeFileSync(out, JSON.stringify(summary, null, 2));
console.log(`[classify] unbuyable=${summary.headline.unbuyable_total} ` +
- `stale-flag(already-sellable)=${summary.headline.already_sellable_stale_flag} ` +
- `genuinely-sample-only=${summary.headline.genuinely_sample_only}`);
-console.log(`[classify] cohorts (cost_joined / truly_recoverable / unbuyable): ` +
- recoverable.map(r=>`${r.vendor}:${r.cost_joined}/${r.truly_recoverable}/${r.unbuyable}`).join(' '));
+ `single-priced(needs-live-check)=${summary.headline.single_priced_variant_needs_live_check} ` +
+ `sample-only(mirror)=${summary.headline.sample_only_mirror}`);
+console.log(`[classify] cohorts (cost_joined / unbuyable): ` +
+ recoverable.map(r=>`${r.vendor}:${r.cost_joined}/${r.unbuyable}`).join(' '));
+console.log(`[classify] WG 224 = live-verified RR-defect → recoverable via restructure (GATED)`);
console.log(`[classify] wrote ${out}`);
diff --git a/data/classification-summary.json b/data/classification-summary.json
index 4f224e9..d2c7669 100644
--- a/data/classification-summary.json
+++ b/data/classification-summary.json
@@ -1,167 +1,10 @@
{
- "ticket": "TK-10875",
- "generated_at": "2026-08-30T16:35:32.959Z",
- "source": "dw_unified mirror (local /tmp socket) — READ-ONLY",
- "definition_unbuyable": "status='active' AND has_product_variant IS NOT TRUE",
- "headline": {
+ "status": "REGEN_PENDING",
+ "reason": "shopify_products reads blocked by a mirror lock pileup — 2026-08-30 (mirror lock pileup: ALTER TABLE shopify_products pid 26862 queued behind 35-min query pid 90359). The classify.mjs/pilot.mjs CODE is corrected + verified; regenerate this artifact once the lock clears.",
+ "verified_findings": {
"unbuyable_total": 25214,
- "already_sellable_stale_flag": 224,
- "genuinely_sample_only": 24990,
- "bucket_a_row_level_cost": 0,
- "null_flag": 151
- },
- "top_vendors": [
- {
- "vendor": "Phillipe Romano",
- "unbuyable": 8274,
- "pct": 32.8
- },
- {
- "vendor": "Koroseal",
- "unbuyable": 2448,
- "pct": 9.7
- },
- {
- "vendor": "Phillip Jeffries",
- "unbuyable": 2338,
- "pct": 9.3
- },
- {
- "vendor": "China Seas",
- "unbuyable": 1776,
- "pct": 7
- },
- {
- "vendor": "Coordonné",
- "unbuyable": 1299,
- "pct": 5.2
- },
- {
- "vendor": "Pierre Frey",
- "unbuyable": 659,
- "pct": 2.6
- },
- {
- "vendor": "Maya Romanoff",
- "unbuyable": 620,
- "pct": 2.5
- },
- {
- "vendor": "Rebel Walls",
- "unbuyable": 494,
- "pct": 2
- },
- {
- "vendor": "Arte International",
- "unbuyable": 489,
- "pct": 1.9
- },
- {
- "vendor": "Scalamandre Wallpaper",
- "unbuyable": 474,
- "pct": 1.9
- },
- {
- "vendor": "Quadrille",
- "unbuyable": 443,
- "pct": 1.8
- },
- {
- "vendor": "Alan Campbell",
- "unbuyable": 434,
- "pct": 1.7
- },
- {
- "vendor": "Vahallan",
- "unbuyable": 390,
- "pct": 1.5
- },
- {
- "vendor": "CMO Paris",
- "unbuyable": 344,
- "pct": 1.4
- },
- {
- "vendor": "Malibu Wallpaper",
- "unbuyable": 339,
- "pct": 1.3
- },
- {
- "vendor": "Architectural Fabrics",
- "unbuyable": 328,
- "pct": 1.3
- },
- {
- "vendor": "AS Creation",
- "unbuyable": 327,
- "pct": 1.3
- },
- {
- "vendor": "Wolf Gordon",
- "unbuyable": 269,
- "pct": 1.1
- },
- {
- "vendor": "Suncloth",
- "unbuyable": 254,
- "pct": 1
- },
- {
- "vendor": "Home Couture",
- "unbuyable": 229,
- "pct": 0.9
- },
- {
- "vendor": "Thibaut",
- "unbuyable": 203,
- "pct": 0.8
- },
- {
- "vendor": "Mind the Gap",
- "unbuyable": 183,
- "pct": 0.7
- },
- {
- "vendor": "Plains",
- "unbuyable": 181,
- "pct": 0.7
- },
- {
- "vendor": "De Gournay",
- "unbuyable": 172,
- "pct": 0.7
- },
- {
- "vendor": "Designer Wallcoverings",
- "unbuyable": 170,
- "pct": 0.7
- }
- ],
- "join_validated_recoverable": [
- {
- "vendor": "Wolf Gordon",
- "staging_table": "wolf_gordon_catalog",
- "cost_column": "price_trade",
- "unbuyable": 269,
- "cost_joined": 224,
- "truly_recoverable": 0
- },
- {
- "vendor": "Coordonné",
- "staging_table": "coordonne_catalog",
- "cost_column": "price_trade",
- "unbuyable": 1299,
- "cost_joined": 0,
- "truly_recoverable": 0
- },
- {
- "vendor": "Malibu Wallpaper",
- "staging_table": "wallquest_catalog",
- "cost_column": "COALESCE(net_cost,price_trade)",
- "unbuyable": 339,
- "cost_joined": 1,
- "truly_recoverable": 1
- }
- ],
- "finding": "Two-layer correction: (1) join-key column-swap — the working join is shopify.sku = <vendor>_catalog.dw_sku, not dw_sku↔dw_sku (which yields 0). (2) STALE-FLAG contamination — the cost-joined candidates are already-sellable in Shopify (dead sync job left has_product_variant stale). Net: truly-recoverable-from-staging-cost ≈ 0 for WG/Coordonné/Malibu once stale flags are excluded. The real hole is the genuinely-sample-only pool, which is cost-blocked (needs cost sourcing). Fix the dead dw-shopify-products-sync-hourly + re-sync has_product_variant before any recovery build."
-}
\ No newline at end of file
+ "wolf_gordon_cost_joined": 224,
+ "wolf_gordon_class": "RR-defect (lone option1=Sample variant priced at roll retail) — live-verified against Shopify 2026-08-30",
+ "recovery": "variant restructure per TK-10875-130 (relabel Sample->Sold Per Roll @ trade/0.65/0.85 + add $4.25 Sample); GATED"
+ }
+}
diff --git a/data/wolf-gordon-dryrun.csv b/data/wolf-gordon-dryrun.csv
index 4ed1c60..5b9ed6d 100644
--- a/data/wolf-gordon-dryrun.csv
+++ b/data/wolf-gordon-dryrun.csv
@@ -1,225 +1 @@
-product_id,roll_variant_sku,mfr_sku,title,pattern,trade_cost,proposed_roll_retail,existing_variant_count,existing_min_variant_price,existing_variant_sku,action
-"46488","DWWG-535357","ACT-5067","Acute - Beige | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535357","ALREADY_SELLABLE_STALE_FLAG"
-"46490","DWWG-535354","ACT-5070","Acute - Copper | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535354","ALREADY_SELLABLE_STALE_FLAG"
-"46500","DWWG-535344","ACT-5080","Acute - Corten | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535344","ALREADY_SELLABLE_STALE_FLAG"
-"46487","DWWG-535358","ACT-5066","Acute - Electrum | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535358","ALREADY_SELLABLE_STALE_FLAG"
-"46499","DWWG-535345","ACT-5079","Acute - Emerald | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535345","ALREADY_SELLABLE_STALE_FLAG"
-"46491","DWWG-535353","ACT-5071","Acute - Gold | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535353","ALREADY_SELLABLE_STALE_FLAG"
-"46495","DWWG-535349","ACT-5075","Acute - Ice | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535349","ALREADY_SELLABLE_STALE_FLAG"
-"46494","DWWG-535350","ACT-5074","Acute - Ivory | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535350","ALREADY_SELLABLE_STALE_FLAG"
-"46486","DWWG-535359","ACT-5065","Acute - Olivine | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535359","ALREADY_SELLABLE_STALE_FLAG"
-"46489","DWWG-535356","ACT-5068","Acute - Penny | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535356","ALREADY_SELLABLE_STALE_FLAG"
-"46496","DWWG-535348","ACT-5076","Acute - Platinum | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535348","ALREADY_SELLABLE_STALE_FLAG"
-"46501","DWWG-535343","ACT-5081","Acute - Prussian | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535343","ALREADY_SELLABLE_STALE_FLAG"
-"46492","DWWG-535352","ACT-5072","Acute - Sienna | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535352","ALREADY_SELLABLE_STALE_FLAG"
-"46498","DWWG-535346","ACT-5078","Acute - Tungsten | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535346","ALREADY_SELLABLE_STALE_FLAG"
-"46497","DWWG-535347","ACT-5077","Acute - Turquoise | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535347","ALREADY_SELLABLE_STALE_FLAG"
-"46493","DWWG-535351","ACT-5073","Acute - Umber | Wolf Gordon Wallcoverings","Acute","30.25","54.75","1","54.75","DWWG-535351","ALREADY_SELLABLE_STALE_FLAG"
-"46551","DWWG-535339","ALC-4816","Alchemy - Antique Gold | Wolf Gordon Wallcoverings","Alchemy","31.25","56.56","1","56.56","DWWG-535339","ALREADY_SELLABLE_STALE_FLAG"
-"46552","DWWG-535335","ALC-4820","Alchemy - Steel | Wolf Gordon Wallcoverings","Alchemy","31.25","56.56","1","56.56","DWWG-535335","ALREADY_SELLABLE_STALE_FLAG"
-"46553","DWWG-535331","ALC-4824","Alchemy - Zinc | Wolf Gordon Wallcoverings","Alchemy","31.25","56.56","1","56.56","DWWG-535331","ALREADY_SELLABLE_STALE_FLAG"
-"46678","DWWG-535267","ATP-4701","Allotrope - Limestone | Wolf Gordon Wallcoverings","Allotrope","32.5","58.82","1","58.82","DWWG-535267","ALREADY_SELLABLE_STALE_FLAG"
-"46705","DWWG-534930","BLR-5024","Ballari - Chrome | Wolf Gordon Wallcoverings","Ballari","34.5","62.44","1","62.44","DWWG-534930","ALREADY_SELLABLE_STALE_FLAG"
-"46697","DWWG-534935","BLR-5016","Ballari - Fallow | Wolf Gordon Wallcoverings","Ballari","34.5","62.44","1","62.44","DWWG-534935","ALREADY_SELLABLE_STALE_FLAG"
-"46703","DWWG-534932","BLR-5022","Ballari - Ivory | Wolf Gordon Wallcoverings","Ballari","34.5","62.44","1","62.44","DWWG-534932","ALREADY_SELLABLE_STALE_FLAG"
-"46698","DWWG-534934","BLR-5017","Ballari - Parchment | Wolf Gordon Wallcoverings","Ballari","34.5","62.44","1","62.44","DWWG-534934","ALREADY_SELLABLE_STALE_FLAG"
-"46699","DWWG-534933","BLR-5018","Ballari - Sepia | Wolf Gordon Wallcoverings","Ballari","34.5","62.44","1","62.44","DWWG-534933","ALREADY_SELLABLE_STALE_FLAG"
-"46704","DWWG-534931","BLR-5023","Ballari - Zinc | Wolf Gordon Wallcoverings","Ballari","34.5","62.44","1","62.44","DWWG-534931","ALREADY_SELLABLE_STALE_FLAG"
-"46701","DWWG-531723","BLR-5020M","Ballari Mylar - Bronze | Wolf Gordon Wallcoverings","Ballari Mylar","42.75","77.38","1","77.38","DWWG-531723","ALREADY_SELLABLE_STALE_FLAG"
-"46696","DWWG-532303","BLR-5015M","Ballari Mylar - Buff | Wolf Gordon Wallcoverings","Ballari Mylar","42.75","77.38","1","77.38","DWWG-532303","ALREADY_SELLABLE_STALE_FLAG"
-"46702","DWWG-532301","BLR-5021M","Ballari Mylar - Copper | Wolf Gordon Wallcoverings","Ballari Mylar","42.75","77.38","1","77.38","DWWG-532301","ALREADY_SELLABLE_STALE_FLAG"
-"46700","DWWG-532302","BLR-5019M","Ballari Mylar - Gold Luster | Wolf Gordon Wallcoverings","Ballari Mylar","42.75","77.38","1","77.38","DWWG-532302","ALREADY_SELLABLE_STALE_FLAG"
-"46708","DWWG-532307","BLR-5027M","Ballari Mylar - Silver Glint | Wolf Gordon Wallcoverings","Ballari Mylar","42.75","77.38","1","77.38","DWWG-532307","ALREADY_SELLABLE_STALE_FLAG"
-"46707","DWWG-532299","BLR-5026M","Ballari Mylar - Stardust | Wolf Gordon Wallcoverings","Ballari Mylar","42.75","77.38","1","77.38","DWWG-532299","ALREADY_SELLABLE_STALE_FLAG"
-"46706","DWWG-532300","BLR-5025M","Ballari Mylar - Turquoise | Wolf Gordon Wallcoverings","Ballari Mylar","42.75","77.38","1","77.38","DWWG-532300","ALREADY_SELLABLE_STALE_FLAG"
-"46682","DWWG-534966","BBO-4955","Bilbao - Platinum | Wolf Gordon Wallcoverings","Bilbao","32.5","58.82","1","58.82","DWWG-534966","ALREADY_SELLABLE_STALE_FLAG"
-"46681","DWWG-534967","BBO-4954","Bilbao - Yellow Gold | Wolf Gordon Wallcoverings","Bilbao","32.5","58.82","1","58.82","DWWG-534967","ALREADY_SELLABLE_STALE_FLAG"
-"46710","DWWG-534875","BOD-3438_8","Bode - Grotto | Wolf Gordon Wallcoverings","Bode","42","76.02","1","76.02","DWWG-534875","ALREADY_SELLABLE_STALE_FLAG"
-"46711","DWWG-534863","BOS-4399_8","Boscage - Gray Sycamore | Wolf Gordon Wallcoverings","Boscage","32.5","58.82","1","58.82","DWWG-534863","ALREADY_SELLABLE_STALE_FLAG"
-"46683","DWWG-534938","BDC-4022","Broadcloth - Illustrious Blue | Wolf Gordon Wallcoverings","Broadcloth","41.5","75.11","1","75.11","DWWG-534938","ALREADY_SELLABLE_STALE_FLAG"
-"46790","DWWG-534736","CSD-4853","Cascade - Honey | Wolf Gordon Wallcoverings","Cascade","31.25","56.56","1","56.56","DWWG-534736","ALREADY_SELLABLE_STALE_FLAG"
-"46787","DWWG-530235","COC2474","Concourse - Gunmetal | Wolf Gordon Wallcoverings","Concourse","31.25","56.56","1","56.56","DWWG-530235","ALREADY_SELLABLE_STALE_FLAG"
-"46768","DWWG-534810","CCT-2678","Connections - Asphalt | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534810","ALREADY_SELLABLE_STALE_FLAG"
-"46762","DWWG-534816","CCT-2672","Connections - Camel | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534816","ALREADY_SELLABLE_STALE_FLAG"
-"46769","DWWG-534809","CCT-2679","Connections - Charcoal | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534809","ALREADY_SELLABLE_STALE_FLAG"
-"46767","DWWG-534811","CCT-2677","Connections - Concrete | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534811","ALREADY_SELLABLE_STALE_FLAG"
-"46764","DWWG-534814","CCT-2674","Connections - Cream | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534814","ALREADY_SELLABLE_STALE_FLAG"
-"46766","DWWG-534812","CCT-2676","Connections - Light Gray | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534812","ALREADY_SELLABLE_STALE_FLAG"
-"46761","DWWG-534817","CCT-2671","Connections - Mustard | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534817","ALREADY_SELLABLE_STALE_FLAG"
-"46770","DWWG-534808","CCT-2680","Connections - Pale Blue | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534808","ALREADY_SELLABLE_STALE_FLAG"
-"46765","DWWG-534813","CCT-2675","Connections - Silver | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534813","ALREADY_SELLABLE_STALE_FLAG"
-"46763","DWWG-534815","CCT-2673","Connections - Tan | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534815","ALREADY_SELLABLE_STALE_FLAG"
-"46771","DWWG-534807","CCT-2681","Connections - Teal | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-534807","ALREADY_SELLABLE_STALE_FLAG"
-"46760","DWWG-532306","CCT-2670","Connections - Wine | Wolf Gordon Wallcoverings","Connections","36","65.16","1","65.16","DWWG-532306","ALREADY_SELLABLE_STALE_FLAG"
-"46827","DWWG-534692","DSM-5049","Dasma - Aquamarine | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534692","ALREADY_SELLABLE_STALE_FLAG"
-"46823","DWWG-534696","DSM-5045","Dasma - Bronze | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534696","ALREADY_SELLABLE_STALE_FLAG"
-"46816","DWWG-534703","DSM-5038","Dasma - Buff | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534703","ALREADY_SELLABLE_STALE_FLAG"
-"46820","DWWG-534699","DSM-5042","Dasma - Copper | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534699","ALREADY_SELLABLE_STALE_FLAG"
-"46822","DWWG-534697","DSM-5044","Dasma - Cordovan | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534697","ALREADY_SELLABLE_STALE_FLAG"
-"46818","DWWG-534701","DSM-5040","Dasma - Fawn | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534701","ALREADY_SELLABLE_STALE_FLAG"
-"46824","DWWG-534695","DSM-5046","Dasma - Glacier | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534695","ALREADY_SELLABLE_STALE_FLAG"
-"46815","DWWG-534704","DSM-5037","Dasma - Gold | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534704","ALREADY_SELLABLE_STALE_FLAG"
-"46817","DWWG-534702","DSM-5039","Dasma - Ivory | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534702","ALREADY_SELLABLE_STALE_FLAG"
-"46831","DWWG-534688","DSM-5053","Dasma - Midnight | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534688","ALREADY_SELLABLE_STALE_FLAG"
-"46826","DWWG-534693","DSM-5048","Dasma - Nickel | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534693","ALREADY_SELLABLE_STALE_FLAG"
-"46819","DWWG-534700","DSM-5041","Dasma - Parchment | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534700","ALREADY_SELLABLE_STALE_FLAG"
-"46829","DWWG-534690","DSM-5051","Dasma - Sapphire | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534690","ALREADY_SELLABLE_STALE_FLAG"
-"46825","DWWG-534694","DSM-5047","Dasma - Silver | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534694","ALREADY_SELLABLE_STALE_FLAG"
-"46828","DWWG-534691","DSM-5050","Dasma - Slate | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534691","ALREADY_SELLABLE_STALE_FLAG"
-"46821","DWWG-534698","DSM-5043","Dasma - Taupe | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534698","ALREADY_SELLABLE_STALE_FLAG"
-"46830","DWWG-534689","DSM-5052","Dasma - Umber | Wolf Gordon Wallcoverings","Dasma","31.25","56.56","1","56.56","DWWG-534689","ALREADY_SELLABLE_STALE_FLAG"
-"46798","DWWG-532777","DECH-491","Digital Echo - Gray Blush | Wolf Gordon Wallcoverings","Digital Echo","74.95","135.66","1","135.66","DWWG-532777","ALREADY_SELLABLE_STALE_FLAG"
-"46797","DWWG-532778","DECH-490","Digital Echo - Soft Gray | Wolf Gordon Wallcoverings","Digital Echo","74.95","135.66","1","135.66","DWWG-532778","ALREADY_SELLABLE_STALE_FLAG"
-"46805","DWWG-532772","DNUV-512","Digital Nouveau - Gunmetal | Wolf Gordon Wallcoverings","Digital Nouveau","74.95","135.66","1","135.66","DWWG-532772","ALREADY_SELLABLE_STALE_FLAG"
-"46804","DWWG-532773","DNUV-511","Digital Nouveau - Silver Sand | Wolf Gordon Wallcoverings","Digital Nouveau","74.95","135.66","1","135.66","DWWG-532773","ALREADY_SELLABLE_STALE_FLAG"
-"46985","DWWG-534403","GSG9-5387","Glasgow - Birch | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534403","ALREADY_SELLABLE_STALE_FLAG"
-"46989","DWWG-534398","GSG9-5393","Glasgow - Bluebird | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534398","ALREADY_SELLABLE_STALE_FLAG"
-"46991","DWWG-534396","GSG9-5395","Glasgow - Brandy | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534396","ALREADY_SELLABLE_STALE_FLAG"
-"46982","DWWG-534406","GSG9-5383","Glasgow - Copper | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534406","ALREADY_SELLABLE_STALE_FLAG"
-"46983","DWWG-534405","GSG9-5384","Glasgow - Gold | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534405","ALREADY_SELLABLE_STALE_FLAG"
-"46990","DWWG-534397","GSG9-5394","Glasgow - Graphite | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534397","ALREADY_SELLABLE_STALE_FLAG"
-"46986","DWWG-534401","GSG9-5389","Glasgow - Gray | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534401","ALREADY_SELLABLE_STALE_FLAG"
-"46988","DWWG-534399","GSG9-5392","Glasgow - Hunter Green | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534399","ALREADY_SELLABLE_STALE_FLAG"
-"46984","DWWG-534404","GSG9-5385","Glasgow - Sand | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534404","ALREADY_SELLABLE_STALE_FLAG"
-"46992","DWWG-534395","GSG9-5396","Glasgow - Umber | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534395","ALREADY_SELLABLE_STALE_FLAG"
-"46987","DWWG-534400","GSG9-5391","Glasgow - Verdigris | Wolf Gordon Wallcoverings","Glasgow","37","66.97","1","66.97","DWWG-534400","ALREADY_SELLABLE_STALE_FLAG"
-"46993","DWWG-532762","GSQ-8-3628_8","Granary Square - Chestnut | Wolf Gordon Wallcoverings","Granary Square","32.75","59.28","1","59.28","DWWG-532762","ALREADY_SELLABLE_STALE_FLAG"
-"46994","DWWG-532755","GSQ-8-3635_8","Granary Square - Prussian | Wolf Gordon Wallcoverings","Granary Square","32.75","59.28","1","59.28","DWWG-532755","ALREADY_SELLABLE_STALE_FLAG"
-"46961","DWWG-534432","GRG2111","Grange - Cherry | Wolf Gordon Wallcoverings","Grange","28.95","52.4","1","52.4","DWWG-534432","ALREADY_SELLABLE_STALE_FLAG"
-"46975","DWWG-534413","GRV-2898_8","Grove - Bone | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534413","ALREADY_SELLABLE_STALE_FLAG"
-"46972","DWWG-534416","GRV-2895_8","Grove - Cafe | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534416","ALREADY_SELLABLE_STALE_FLAG"
-"46974","DWWG-534414","GRV-2897_8","Grove - Chocolate | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534414","ALREADY_SELLABLE_STALE_FLAG"
-"46966","DWWG-534422","GRV-2889_8","Grove - Ecru | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534422","ALREADY_SELLABLE_STALE_FLAG"
-"46963","DWWG-534425","GRV-2886_8","Grove - Eggshell | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534425","ALREADY_SELLABLE_STALE_FLAG"
-"46981","DWWG-534407","GRV-2904_8","Grove - Evergreen | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534407","ALREADY_SELLABLE_STALE_FLAG"
-"46964","DWWG-534424","GRV-2887_8","Grove - Fawn | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534424","ALREADY_SELLABLE_STALE_FLAG"
-"46971","DWWG-534417","GRV-2894_8","Grove - Hazelnut | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534417","ALREADY_SELLABLE_STALE_FLAG"
-"46969","DWWG-534419","GRV-2892_8","Grove - Khaki | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534419","ALREADY_SELLABLE_STALE_FLAG"
-"46965","DWWG-534423","GRV-2888_8","Grove - Latte | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534423","ALREADY_SELLABLE_STALE_FLAG"
-"46980","DWWG-534408","GRV-2903_8","Grove - Licorice | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534408","ALREADY_SELLABLE_STALE_FLAG"
-"46978","DWWG-534410","GRV-2901_8","Grove - Midnight | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534410","ALREADY_SELLABLE_STALE_FLAG"
-"46979","DWWG-534409","GRV-2902_8","Grove - Nickel | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534409","ALREADY_SELLABLE_STALE_FLAG"
-"46967","DWWG-534421","GRV-2890_8","Grove - Sienna | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534421","ALREADY_SELLABLE_STALE_FLAG"
-"46962","DWWG-534426","GRV-2885_8","Grove - Silver | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534426","ALREADY_SELLABLE_STALE_FLAG"
-"46977","DWWG-534411","GRV-2900_8","Grove - Taupe | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534411","ALREADY_SELLABLE_STALE_FLAG"
-"46970","DWWG-534418","GRV-2893_8","Grove - Timber | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534418","ALREADY_SELLABLE_STALE_FLAG"
-"46973","DWWG-534415","GRV-2896_8","Grove - Umber | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534415","ALREADY_SELLABLE_STALE_FLAG"
-"46968","DWWG-534420","GRV-2891_8","Grove - Walnut | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534420","ALREADY_SELLABLE_STALE_FLAG"
-"46976","DWWG-534412","GRV-2899_8","Grove - Wisteria | Wolf Gordon Wallcoverings","Grove","36","65.16","1","65.16","DWWG-534412","ALREADY_SELLABLE_STALE_FLAG"
-"46996","DWWG-534380","HOM-3388","Holmes - Sienna | Wolf Gordon Wallcoverings","Holmes","36.75","66.52","1","66.52","DWWG-534380","ALREADY_SELLABLE_STALE_FLAG"
-"47012","DWWG-534334","HUG-3328_8","Hugo - Aqua | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534334","ALREADY_SELLABLE_STALE_FLAG"
-"47006","DWWG-534340","HUG-3322_8","Hugo - Charcoal | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534340","ALREADY_SELLABLE_STALE_FLAG"
-"47003","DWWG-534343","HUG-3319_8","Hugo - Cloud | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534343","ALREADY_SELLABLE_STALE_FLAG"
-"47008","DWWG-534338","HUG-3324_8","Hugo - Iris | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534338","ALREADY_SELLABLE_STALE_FLAG"
-"47004","DWWG-534342","HUG-3320_8","Hugo - Iron | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534342","ALREADY_SELLABLE_STALE_FLAG"
-"46997","DWWG-534349","HUG-3313_8","Hugo - Jet | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534349","ALREADY_SELLABLE_STALE_FLAG"
-"47007","DWWG-534339","HUG-3323_8","Hugo - Khaki | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534339","ALREADY_SELLABLE_STALE_FLAG"
-"47000","DWWG-534346","HUG-3316_8","Hugo - Oat | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534346","ALREADY_SELLABLE_STALE_FLAG"
-"47011","DWWG-534335","HUG-3327_8","Hugo - Pebble | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534335","ALREADY_SELLABLE_STALE_FLAG"
-"46999","DWWG-534347","HUG-3315_8","Hugo - Pumpkin | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534347","ALREADY_SELLABLE_STALE_FLAG"
-"46998","DWWG-534348","HUG-3314_8","Hugo - Rose | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534348","ALREADY_SELLABLE_STALE_FLAG"
-"47005","DWWG-534341","HUG-3321_8","Hugo - Seashell | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534341","ALREADY_SELLABLE_STALE_FLAG"
-"47010","DWWG-534336","HUG-3326_8","Hugo - Snow | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534336","ALREADY_SELLABLE_STALE_FLAG"
-"47009","DWWG-534337","HUG-3325_8","Hugo - Steel | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534337","ALREADY_SELLABLE_STALE_FLAG"
-"47001","DWWG-534345","HUG-3317_8","Hugo - Tawny | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534345","ALREADY_SELLABLE_STALE_FLAG"
-"47002","DWWG-534344","HUG-3318_8","Hugo - Wheat | Wolf Gordon Wallcoverings","Hugo","42","76.02","1","76.02","DWWG-534344","ALREADY_SELLABLE_STALE_FLAG"
-"47013","DWWG-532718","ISN-8-3432","Islington Station - Horizon | Wolf Gordon Wallcoverings","Islington Station","32.75","59.28","1","59.28","DWWG-532718","ALREADY_SELLABLE_STALE_FLAG"
-"47016","DWWG-534287","JAI9-5366","Jaipur - Bronze | Wolf Gordon Wallcoverings","Jaipur","36","65.16","1","65.16","DWWG-534287","ALREADY_SELLABLE_STALE_FLAG"
-"47020","DWWG-534283","JAI9-5370","Jaipur - Cement | Wolf Gordon Wallcoverings","Jaipur","36","65.16","1","65.16","DWWG-534283","ALREADY_SELLABLE_STALE_FLAG"
-"47021","DWWG-534282","JAI9-5371","Jaipur - Charcoal | Wolf Gordon Wallcoverings","Jaipur","36","65.16","1","65.16","DWWG-534282","ALREADY_SELLABLE_STALE_FLAG"
-"47018","DWWG-534285","JAI9-5368","Jaipur - Golden | Wolf Gordon Wallcoverings","Jaipur","36","65.16","1","65.16","DWWG-534285","ALREADY_SELLABLE_STALE_FLAG"
-"47022","DWWG-534281","JAI9-5372","Jaipur - Red | Wolf Gordon Wallcoverings","Jaipur","36","65.16","1","65.16","DWWG-534281","ALREADY_SELLABLE_STALE_FLAG"
-"47017","DWWG-534286","JAI9-5367","Jaipur - Saffron | Wolf Gordon Wallcoverings","Jaipur","36","65.16","1","65.16","DWWG-534286","ALREADY_SELLABLE_STALE_FLAG"
-"47019","DWWG-534284","JAI9-5369","Jaipur - Silver | Wolf Gordon Wallcoverings","Jaipur","36","65.16","1","65.16","DWWG-534284","ALREADY_SELLABLE_STALE_FLAG"
-"47041","DWWG-534246","KBT-5122","Kabuto - Abalone | Wolf Gordon Wallcoverings","Kabuto","41.75","75.57","1","75.57","DWWG-534246","ALREADY_SELLABLE_STALE_FLAG"
-"47046","DWWG-534241","KBT-5127","Kabuto - Amazonite | Wolf Gordon Wallcoverings","Kabuto","41.75","75.57","1","75.57","DWWG-534241","ALREADY_SELLABLE_STALE_FLAG"
-"47042","DWWG-534245","KBT-5123","Kabuto - Buff | Wolf Gordon Wallcoverings","Kabuto","41.75","75.57","1","75.57","DWWG-534245","ALREADY_SELLABLE_STALE_FLAG"
-"47040","DWWG-534247","KBT-5121","Kabuto - Corten | Wolf Gordon Wallcoverings","Kabuto","41.75","75.57","1","75.57","DWWG-534247","ALREADY_SELLABLE_STALE_FLAG"
-"47045","DWWG-534242","KBT-5126","Kabuto - Silver | Wolf Gordon Wallcoverings","Kabuto","41.75","75.57","1","75.57","DWWG-534242","ALREADY_SELLABLE_STALE_FLAG"
-"47043","DWWG-534244","KBT-5124","Kabuto - Steel | Wolf Gordon Wallcoverings","Kabuto","41.75","75.57","1","75.57","DWWG-534244","ALREADY_SELLABLE_STALE_FLAG"
-"47044","DWWG-534243","KBT-5125","Kabuto - Tungsten | Wolf Gordon Wallcoverings","Kabuto","41.75","75.57","1","75.57","DWWG-534243","ALREADY_SELLABLE_STALE_FLAG"
-"47038","DWWG-534249","KAM-5110","Kami - Azurite | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534249","ALREADY_SELLABLE_STALE_FLAG"
-"47028","DWWG-534259","KAM-5100","Kami - Bronze | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534259","ALREADY_SELLABLE_STALE_FLAG"
-"47032","DWWG-534255","KAM-5104","Kami - Chalk | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534255","ALREADY_SELLABLE_STALE_FLAG"
-"47030","DWWG-534257","KAM-5102","Kami - Champagne | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534257","ALREADY_SELLABLE_STALE_FLAG"
-"47026","DWWG-534261","KAM-5098","Kami - Copper | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534261","ALREADY_SELLABLE_STALE_FLAG"
-"47025","DWWG-534262","KAM-5097","Kami - Feldspar | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534262","ALREADY_SELLABLE_STALE_FLAG"
-"47039","DWWG-534248","KAM-5111","Kami - Frost | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534248","ALREADY_SELLABLE_STALE_FLAG"
-"47029","DWWG-534258","KAM-5101","Kami - Gold Leaf | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534258","ALREADY_SELLABLE_STALE_FLAG"
-"47035","DWWG-534252","KAM-5107","Kami - Iron | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534252","ALREADY_SELLABLE_STALE_FLAG"
-"47024","DWWG-534263","KAM-5096","Kami - Morganite | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534263","ALREADY_SELLABLE_STALE_FLAG"
-"47034","DWWG-534253","KAM-5106","Kami - Nickel | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534253","ALREADY_SELLABLE_STALE_FLAG"
-"47036","DWWG-534251","KAM-5108","Kami - Onyx | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534251","ALREADY_SELLABLE_STALE_FLAG"
-"47031","DWWG-534256","KAM-5103","Kami - Pearl | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534256","ALREADY_SELLABLE_STALE_FLAG"
-"47033","DWWG-534254","KAM-5105","Kami - Platinum | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534254","ALREADY_SELLABLE_STALE_FLAG"
-"47027","DWWG-534260","KAM-5099","Kami - Sepia | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534260","ALREADY_SELLABLE_STALE_FLAG"
-"47037","DWWG-534250","KAM-5109","Kami - Slate | Wolf Gordon Wallcoverings","Kami","29.95","54.21","1","54.21","DWWG-534250","ALREADY_SELLABLE_STALE_FLAG"
-"47074","DWWG-534132","LYR-3380_8","Lyra - Aluminum | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534132","ALREADY_SELLABLE_STALE_FLAG"
-"47077","DWWG-534129","LYR-3383_8","Lyra - Carbon | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534129","ALREADY_SELLABLE_STALE_FLAG"
-"47061","DWWG-534145","LYR-3367_8","Lyra - Cotton | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534145","ALREADY_SELLABLE_STALE_FLAG"
-"47064","DWWG-534142","LYR-3370_8","Lyra - Ecru | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534142","ALREADY_SELLABLE_STALE_FLAG"
-"47078","DWWG-534128","LYR-3384_8","Lyra - Glacier | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534128","ALREADY_SELLABLE_STALE_FLAG"
-"47063","DWWG-534143","LYR-3369_8","Lyra - Honeycomb | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534143","ALREADY_SELLABLE_STALE_FLAG"
-"47076","DWWG-534130","LYR-3382_8","Lyra - Linen | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534130","ALREADY_SELLABLE_STALE_FLAG"
-"47060","DWWG-534146","LYR-3366_8","Lyra - Mauve | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534146","ALREADY_SELLABLE_STALE_FLAG"
-"47071","DWWG-534135","LYR-3377_8","Lyra - Mist | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534135","ALREADY_SELLABLE_STALE_FLAG"
-"47068","DWWG-534138","LYR-3374_8","Lyra - Orchid | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534138","ALREADY_SELLABLE_STALE_FLAG"
-"47072","DWWG-534134","LYR-3378_8","Lyra - Peacock | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534134","ALREADY_SELLABLE_STALE_FLAG"
-"47070","DWWG-534136","LYR-3376_8","Lyra - Pear | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534136","ALREADY_SELLABLE_STALE_FLAG"
-"47067","DWWG-534139","LYR-3373_8","Lyra - Sable | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534139","ALREADY_SELLABLE_STALE_FLAG"
-"47075","DWWG-534131","LYR-3381_8","Lyra - Slate | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534131","ALREADY_SELLABLE_STALE_FLAG"
-"47062","DWWG-534144","LYR-3368_8","Lyra - Smoke | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534144","ALREADY_SELLABLE_STALE_FLAG"
-"47073","DWWG-534133","LYR-3379_8","Lyra - Stone | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534133","ALREADY_SELLABLE_STALE_FLAG"
-"47066","DWWG-534140","LYR-3372_8","Lyra - Tangerine | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534140","ALREADY_SELLABLE_STALE_FLAG"
-"47069","DWWG-534137","LYR-3375_8","Lyra - Tea Rose | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534137","ALREADY_SELLABLE_STALE_FLAG"
-"47065","DWWG-534141","LYR-3371_8","Lyra - Umber | Wolf Gordon Wallcoverings","Lyra","42","76.02","1","76.02","DWWG-534141","ALREADY_SELLABLE_STALE_FLAG"
-"47079","DWWG-530165","MAO-7-4160","Macao - Raspberry | Wolf Gordon Wallcoverings","Macao","31.25","56.56","1","56.56","DWWG-530165","ALREADY_SELLABLE_STALE_FLAG"
-"47131","DWWG-534020","MRY-3173","Mantaray - Coral | Wolf Gordon Wallcoverings","Mantaray","32.5","58.82","1","58.82","DWWG-534020","ALREADY_SELLABLE_STALE_FLAG"
-"47114","DWWG-534040","MRU-3286_8","Marlu - Alabaster | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534040","ALREADY_SELLABLE_STALE_FLAG"
-"47116","DWWG-534038","MRU-3288_8","Marlu - Blush | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534038","ALREADY_SELLABLE_STALE_FLAG"
-"47118","DWWG-534036","MRU-3290_8","Marlu - Cinnamon | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534036","ALREADY_SELLABLE_STALE_FLAG"
-"47123","DWWG-534031","MRU-3295_8","Marlu - Cocoa | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534031","ALREADY_SELLABLE_STALE_FLAG"
-"47113","DWWG-534041","MRU-3285_8","Marlu - Cornsilk | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534041","ALREADY_SELLABLE_STALE_FLAG"
-"47130","DWWG-534024","MRU-3302_8","Marlu - Denim | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534024","ALREADY_SELLABLE_STALE_FLAG"
-"47112","DWWG-534042","MRU-3284_8","Marlu - Grapefruit | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534042","ALREADY_SELLABLE_STALE_FLAG"
-"47129","DWWG-534025","MRU-3301_8","Marlu - Gunmetal | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534025","ALREADY_SELLABLE_STALE_FLAG"
-"47117","DWWG-534037","MRU-3289_8","Marlu - Hibiscus | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534037","ALREADY_SELLABLE_STALE_FLAG"
-"47125","DWWG-534029","MRU-3297_8","Marlu - Pearl | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534029","ALREADY_SELLABLE_STALE_FLAG"
-"47120","DWWG-534034","MRU-3292_8","Marlu - Platinum | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534034","ALREADY_SELLABLE_STALE_FLAG"
-"47121","DWWG-534033","MRU-3293_8","Marlu - Sand | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534033","ALREADY_SELLABLE_STALE_FLAG"
-"47124","DWWG-534030","MRU-3296_8","Marlu - Silver | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534030","ALREADY_SELLABLE_STALE_FLAG"
-"47126","DWWG-534028","MRU-3298_8","Marlu - Slate | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534028","ALREADY_SELLABLE_STALE_FLAG"
-"47127","DWWG-534027","MRU-3299_8","Marlu - Smoke | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534027","ALREADY_SELLABLE_STALE_FLAG"
-"47119","DWWG-534035","MRU-3291_8","Marlu - Stone | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534035","ALREADY_SELLABLE_STALE_FLAG"
-"47115","DWWG-534039","MRU-3287_8","Marlu - Straw | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534039","ALREADY_SELLABLE_STALE_FLAG"
-"47128","DWWG-534026","MRU-3300_8","Marlu - Teal | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534026","ALREADY_SELLABLE_STALE_FLAG"
-"47122","DWWG-534032","MRU-3294_8","Marlu - Zinc | Wolf Gordon Wallcoverings","Marlu","42","76.02","1","76.02","DWWG-534032","ALREADY_SELLABLE_STALE_FLAG"
-"47105","DWWG-534124","METM-571","Metamorphosis - Antique Gold | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534124","ALREADY_SELLABLE_STALE_FLAG"
-"47106","DWWG-534123","METM-572","Metamorphosis - Canary Yellow | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534123","ALREADY_SELLABLE_STALE_FLAG"
-"47108","DWWG-534121","METM-574","Metamorphosis - Cream | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534121","ALREADY_SELLABLE_STALE_FLAG"
-"47104","DWWG-534125","METM-570","Metamorphosis - Gypsum | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534125","ALREADY_SELLABLE_STALE_FLAG"
-"47109","DWWG-534120","METM-575","Metamorphosis - Light Gray | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534120","ALREADY_SELLABLE_STALE_FLAG"
-"47102","DWWG-534127","METM-568","Metamorphosis - Lilac Shine | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534127","ALREADY_SELLABLE_STALE_FLAG"
-"47103","DWWG-534126","METM-569","Metamorphosis - Rust | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534126","ALREADY_SELLABLE_STALE_FLAG"
-"47110","DWWG-534119","METM-576","Metamorphosis - Silver | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534119","ALREADY_SELLABLE_STALE_FLAG"
-"47107","DWWG-534122","METM-573","Metamorphosis - Soft Rose | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534122","ALREADY_SELLABLE_STALE_FLAG"
-"47111","DWWG-534118","METM-577","Metamorphosis - Tungsten | Wolf Gordon Wallcoverings","Metamorphosis","48.95","88.6","1","88.6","DWWG-534118","ALREADY_SELLABLE_STALE_FLAG"
-"47149","DWWG-533985","NES-3799","Neso - Aristocrat | Wolf Gordon Wallcoverings","Neso","45.35","82.08","1","82.08","DWWG-533985","ALREADY_SELLABLE_STALE_FLAG"
-"47163","DWWG-533923","OLS-3561","Olsen - Illusion | Wolf Gordon Wallcoverings","Olsen","36.75","66.52","1","66.52","DWWG-533923","ALREADY_SELLABLE_STALE_FLAG"
-"47164","DWWG-533921","OLS-3563","Olsen - Paradise | Wolf Gordon Wallcoverings","Olsen","36.75","66.52","1","66.52","DWWG-533921","ALREADY_SELLABLE_STALE_FLAG"
-"47165","DWWG-533907","OSM-2650","Osmosis - Bordeaux | Wolf Gordon Wallcoverings","Osmosis","41.5","75.11","1","75.11","DWWG-533907","ALREADY_SELLABLE_STALE_FLAG"
-"46812","DWWG-534707","DPRH-500","Perch - Blush | Wolf Gordon Wallcoverings","Perch","74.95","135.66","1","135.66","DWWG-534707","ALREADY_SELLABLE_STALE_FLAG"
-"46813","DWWG-534706","DPRH-501","Perch - Dusk | Wolf Gordon Wallcoverings","Perch","74.95","135.66","1","135.66","DWWG-534706","ALREADY_SELLABLE_STALE_FLAG"
-"46814","DWWG-534705","DPRH-502","Perch - Smokey | Wolf Gordon Wallcoverings","Perch","74.95","135.66","1","135.66","DWWG-534705","ALREADY_SELLABLE_STALE_FLAG"
-"47167","DWWG-533878","PHO-3761","Phaeo - Cove | Wolf Gordon Wallcoverings","Phaeo","36.75","66.52","1","66.52","DWWG-533878","ALREADY_SELLABLE_STALE_FLAG"
-"47225","DWWG-533827","RON-3345","Ronan - Glint | Wolf Gordon Wallcoverings","Ronan","48.33","87.48","1","87.48","DWWG-533827","ALREADY_SELLABLE_STALE_FLAG"
-"47226","DWWG-533809","ROS-4146","Rossana - True Silver | Wolf Gordon Wallcoverings","Rossana","32.5","58.82","1","58.82","DWWG-533809","ALREADY_SELLABLE_STALE_FLAG"
-"47241","DWWG-533752","SDY-3346_8","Sadeya - Iris | Wolf Gordon Wallcoverings","Sadeya","36.75","66.52","1","66.52","DWWG-533752","ALREADY_SELLABLE_STALE_FLAG"
-"47242","DWWG-533749","SDY-3349_8","Sadeya - Marigold | Wolf Gordon Wallcoverings","Sadeya","36.75","66.52","1","66.52","DWWG-533749","ALREADY_SELLABLE_STALE_FLAG"
-"47240","DWWG-533753","SDY-3345_8","Sadeya - Turquoise | Wolf Gordon Wallcoverings","Sadeya","36.75","66.52","1","66.52","DWWG-533753","ALREADY_SELLABLE_STALE_FLAG"
-"47243","DWWG-533746","SDY-3352_8","Sadeya - Wheat | Wolf Gordon Wallcoverings","Sadeya","36.75","66.52","1","66.52","DWWG-533746","ALREADY_SELLABLE_STALE_FLAG"
-"46840","DWWG-533139","DTON-401","Tone | Wolf Gordon Wallcoverings","DTON 401","189.95","343.8","1","343.8","DWWG-533139","ALREADY_SELLABLE_STALE_FLAG"
-"47502","DWWG-533644","VAX-8-3496","Vauxhall - Neutron | Wolf Gordon Wallcoverings","Vauxhall","32.75","59.28","1","59.28","DWWG-533644","ALREADY_SELLABLE_STALE_FLAG"
-"46856","DWWG-534660","DVTS-521","Vista - Midnight | Wolf Gordon Wallcoverings","Vista","99.95","180.9","1","180.9","DWWG-534660","ALREADY_SELLABLE_STALE_FLAG"
-"46857","DWWG-534659","DVTS-522","Vista - Snow | Wolf Gordon Wallcoverings","Vista","99.95","180.9","1","180.9","DWWG-534659","ALREADY_SELLABLE_STALE_FLAG"
-"46855","DWWG-534661","DVTS-520","Vista - Steel | Wolf Gordon Wallcoverings","Vista","99.95","180.9","1","180.9","DWWG-534661","ALREADY_SELLABLE_STALE_FLAG"
+REGEN_PENDING — blocked by mirror lock pileup (2026-08-30 (mirror lock pileup: ALTER TABLE shopify_products pid 26862 queued behind 35-min query pid 90359)). Regenerate via: node pilot.mjs
diff --git a/data/wolf-gordon-dryrun.json b/data/wolf-gordon-dryrun.json
index 49c314e..d2c7669 100644
--- a/data/wolf-gordon-dryrun.json
+++ b/data/wolf-gordon-dryrun.json
@@ -1,3153 +1,10 @@
{
- "ticket": "TK-10875",
- "cohort": "Wolf Gordon",
- "mode": "DRY-RUN — no Shopify or dw_unified writes performed",
- "generated_at": "2026-08-30T16:35:33.093Z",
- "retail_formula": "trade_cost / 0.65 / 0.85",
- "pricing_note": "computed_retail == catalog_retail is tautological (same formula); NOT price validation. Real validation needs a vendor-authoritative source (e.g. Wolf Gordon invoice/portal).",
- "counts": {
- "cost_joined_candidates": 224,
- "truly_buildable": 0,
- "already_sellable_stale_flag": 224
- },
- "finding": "ALL cost-joined WG candidates are (per the mirror) already-sellable — single non-sample variant priced far above the $4.25 sample floor. Recovery here is a NO-OP / double-add risk. Because the sync job is dead, the mirror itself cannot be trusted as ground truth: re-sync has_product_variant and CONFIRM against live Shopify before any build — do not build variants.",
- "buildable_plan": [],
- "stale_flag_products": [
- {
- "product_id": 46488,
- "title": "Acute - Beige | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5067",
- "roll_variant_sku": "DWWG-535357",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535357",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46490,
- "title": "Acute - Copper | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5070",
- "roll_variant_sku": "DWWG-535354",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535354",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46500,
- "title": "Acute - Corten | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5080",
- "roll_variant_sku": "DWWG-535344",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535344",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46487,
- "title": "Acute - Electrum | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5066",
- "roll_variant_sku": "DWWG-535358",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535358",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46499,
- "title": "Acute - Emerald | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5079",
- "roll_variant_sku": "DWWG-535345",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535345",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46491,
- "title": "Acute - Gold | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5071",
- "roll_variant_sku": "DWWG-535353",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535353",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46495,
- "title": "Acute - Ice | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5075",
- "roll_variant_sku": "DWWG-535349",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535349",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46494,
- "title": "Acute - Ivory | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5074",
- "roll_variant_sku": "DWWG-535350",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535350",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46486,
- "title": "Acute - Olivine | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5065",
- "roll_variant_sku": "DWWG-535359",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535359",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46489,
- "title": "Acute - Penny | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5068",
- "roll_variant_sku": "DWWG-535356",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535356",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46496,
- "title": "Acute - Platinum | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5076",
- "roll_variant_sku": "DWWG-535348",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535348",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46501,
- "title": "Acute - Prussian | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5081",
- "roll_variant_sku": "DWWG-535343",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535343",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46492,
- "title": "Acute - Sienna | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5072",
- "roll_variant_sku": "DWWG-535352",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535352",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46498,
- "title": "Acute - Tungsten | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5078",
- "roll_variant_sku": "DWWG-535346",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535346",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46497,
- "title": "Acute - Turquoise | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5077",
- "roll_variant_sku": "DWWG-535347",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535347",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46493,
- "title": "Acute - Umber | Wolf Gordon Wallcoverings",
- "pattern": "Acute",
- "mfr_sku": "ACT-5073",
- "roll_variant_sku": "DWWG-535351",
- "trade_cost": 30.25,
- "proposed_roll_retail": 54.75,
- "catalog_retail": 54.75,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.75,
- "existing_variant_sku": "DWWG-535351",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46551,
- "title": "Alchemy - Antique Gold | Wolf Gordon Wallcoverings",
- "pattern": "Alchemy",
- "mfr_sku": "ALC-4816",
- "roll_variant_sku": "DWWG-535339",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-535339",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46552,
- "title": "Alchemy - Steel | Wolf Gordon Wallcoverings",
- "pattern": "Alchemy",
- "mfr_sku": "ALC-4820",
- "roll_variant_sku": "DWWG-535335",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-535335",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46553,
- "title": "Alchemy - Zinc | Wolf Gordon Wallcoverings",
- "pattern": "Alchemy",
- "mfr_sku": "ALC-4824",
- "roll_variant_sku": "DWWG-535331",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-535331",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46678,
- "title": "Allotrope - Limestone | Wolf Gordon Wallcoverings",
- "pattern": "Allotrope",
- "mfr_sku": "ATP-4701",
- "roll_variant_sku": "DWWG-535267",
- "trade_cost": 32.5,
- "proposed_roll_retail": 58.82,
- "catalog_retail": 58.82,
- "existing_variant_count": 1,
- "existing_min_variant_price": 58.82,
- "existing_variant_sku": "DWWG-535267",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46705,
- "title": "Ballari - Chrome | Wolf Gordon Wallcoverings",
- "pattern": "Ballari",
- "mfr_sku": "BLR-5024",
- "roll_variant_sku": "DWWG-534930",
- "trade_cost": 34.5,
- "proposed_roll_retail": 62.44,
- "catalog_retail": 62.44,
- "existing_variant_count": 1,
- "existing_min_variant_price": 62.44,
- "existing_variant_sku": "DWWG-534930",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46697,
- "title": "Ballari - Fallow | Wolf Gordon Wallcoverings",
- "pattern": "Ballari",
- "mfr_sku": "BLR-5016",
- "roll_variant_sku": "DWWG-534935",
- "trade_cost": 34.5,
- "proposed_roll_retail": 62.44,
- "catalog_retail": 62.44,
- "existing_variant_count": 1,
- "existing_min_variant_price": 62.44,
- "existing_variant_sku": "DWWG-534935",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46703,
- "title": "Ballari - Ivory | Wolf Gordon Wallcoverings",
- "pattern": "Ballari",
- "mfr_sku": "BLR-5022",
- "roll_variant_sku": "DWWG-534932",
- "trade_cost": 34.5,
- "proposed_roll_retail": 62.44,
- "catalog_retail": 62.44,
- "existing_variant_count": 1,
- "existing_min_variant_price": 62.44,
- "existing_variant_sku": "DWWG-534932",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46698,
- "title": "Ballari - Parchment | Wolf Gordon Wallcoverings",
- "pattern": "Ballari",
- "mfr_sku": "BLR-5017",
- "roll_variant_sku": "DWWG-534934",
- "trade_cost": 34.5,
- "proposed_roll_retail": 62.44,
- "catalog_retail": 62.44,
- "existing_variant_count": 1,
- "existing_min_variant_price": 62.44,
- "existing_variant_sku": "DWWG-534934",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46699,
- "title": "Ballari - Sepia | Wolf Gordon Wallcoverings",
- "pattern": "Ballari",
- "mfr_sku": "BLR-5018",
- "roll_variant_sku": "DWWG-534933",
- "trade_cost": 34.5,
- "proposed_roll_retail": 62.44,
- "catalog_retail": 62.44,
- "existing_variant_count": 1,
- "existing_min_variant_price": 62.44,
- "existing_variant_sku": "DWWG-534933",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46704,
- "title": "Ballari - Zinc | Wolf Gordon Wallcoverings",
- "pattern": "Ballari",
- "mfr_sku": "BLR-5023",
- "roll_variant_sku": "DWWG-534931",
- "trade_cost": 34.5,
- "proposed_roll_retail": 62.44,
- "catalog_retail": 62.44,
- "existing_variant_count": 1,
- "existing_min_variant_price": 62.44,
- "existing_variant_sku": "DWWG-534931",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46701,
- "title": "Ballari Mylar - Bronze | Wolf Gordon Wallcoverings",
- "pattern": "Ballari Mylar",
- "mfr_sku": "BLR-5020M",
- "roll_variant_sku": "DWWG-531723",
- "trade_cost": 42.75,
- "proposed_roll_retail": 77.38,
- "catalog_retail": 77.38,
- "existing_variant_count": 1,
- "existing_min_variant_price": 77.38,
- "existing_variant_sku": "DWWG-531723",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46696,
- "title": "Ballari Mylar - Buff | Wolf Gordon Wallcoverings",
- "pattern": "Ballari Mylar",
- "mfr_sku": "BLR-5015M",
- "roll_variant_sku": "DWWG-532303",
- "trade_cost": 42.75,
- "proposed_roll_retail": 77.38,
- "catalog_retail": 77.38,
- "existing_variant_count": 1,
- "existing_min_variant_price": 77.38,
- "existing_variant_sku": "DWWG-532303",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46702,
- "title": "Ballari Mylar - Copper | Wolf Gordon Wallcoverings",
- "pattern": "Ballari Mylar",
- "mfr_sku": "BLR-5021M",
- "roll_variant_sku": "DWWG-532301",
- "trade_cost": 42.75,
- "proposed_roll_retail": 77.38,
- "catalog_retail": 77.38,
- "existing_variant_count": 1,
- "existing_min_variant_price": 77.38,
- "existing_variant_sku": "DWWG-532301",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46700,
- "title": "Ballari Mylar - Gold Luster | Wolf Gordon Wallcoverings",
- "pattern": "Ballari Mylar",
- "mfr_sku": "BLR-5019M",
- "roll_variant_sku": "DWWG-532302",
- "trade_cost": 42.75,
- "proposed_roll_retail": 77.38,
- "catalog_retail": 77.38,
- "existing_variant_count": 1,
- "existing_min_variant_price": 77.38,
- "existing_variant_sku": "DWWG-532302",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46708,
- "title": "Ballari Mylar - Silver Glint | Wolf Gordon Wallcoverings",
- "pattern": "Ballari Mylar",
- "mfr_sku": "BLR-5027M",
- "roll_variant_sku": "DWWG-532307",
- "trade_cost": 42.75,
- "proposed_roll_retail": 77.38,
- "catalog_retail": 77.38,
- "existing_variant_count": 1,
- "existing_min_variant_price": 77.38,
- "existing_variant_sku": "DWWG-532307",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46707,
- "title": "Ballari Mylar - Stardust | Wolf Gordon Wallcoverings",
- "pattern": "Ballari Mylar",
- "mfr_sku": "BLR-5026M",
- "roll_variant_sku": "DWWG-532299",
- "trade_cost": 42.75,
- "proposed_roll_retail": 77.38,
- "catalog_retail": 77.38,
- "existing_variant_count": 1,
- "existing_min_variant_price": 77.38,
- "existing_variant_sku": "DWWG-532299",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46706,
- "title": "Ballari Mylar - Turquoise | Wolf Gordon Wallcoverings",
- "pattern": "Ballari Mylar",
- "mfr_sku": "BLR-5025M",
- "roll_variant_sku": "DWWG-532300",
- "trade_cost": 42.75,
- "proposed_roll_retail": 77.38,
- "catalog_retail": 77.38,
- "existing_variant_count": 1,
- "existing_min_variant_price": 77.38,
- "existing_variant_sku": "DWWG-532300",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46682,
- "title": "Bilbao - Platinum | Wolf Gordon Wallcoverings",
- "pattern": "Bilbao",
- "mfr_sku": "BBO-4955",
- "roll_variant_sku": "DWWG-534966",
- "trade_cost": 32.5,
- "proposed_roll_retail": 58.82,
- "catalog_retail": 58.82,
- "existing_variant_count": 1,
- "existing_min_variant_price": 58.82,
- "existing_variant_sku": "DWWG-534966",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46681,
- "title": "Bilbao - Yellow Gold | Wolf Gordon Wallcoverings",
- "pattern": "Bilbao",
- "mfr_sku": "BBO-4954",
- "roll_variant_sku": "DWWG-534967",
- "trade_cost": 32.5,
- "proposed_roll_retail": 58.82,
- "catalog_retail": 58.82,
- "existing_variant_count": 1,
- "existing_min_variant_price": 58.82,
- "existing_variant_sku": "DWWG-534967",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46710,
- "title": "Bode - Grotto | Wolf Gordon Wallcoverings",
- "pattern": "Bode",
- "mfr_sku": "BOD-3438_8",
- "roll_variant_sku": "DWWG-534875",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534875",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46711,
- "title": "Boscage - Gray Sycamore | Wolf Gordon Wallcoverings",
- "pattern": "Boscage",
- "mfr_sku": "BOS-4399_8",
- "roll_variant_sku": "DWWG-534863",
- "trade_cost": 32.5,
- "proposed_roll_retail": 58.82,
- "catalog_retail": 58.82,
- "existing_variant_count": 1,
- "existing_min_variant_price": 58.82,
- "existing_variant_sku": "DWWG-534863",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46683,
- "title": "Broadcloth - Illustrious Blue | Wolf Gordon Wallcoverings",
- "pattern": "Broadcloth",
- "mfr_sku": "BDC-4022",
- "roll_variant_sku": "DWWG-534938",
- "trade_cost": 41.5,
- "proposed_roll_retail": 75.11,
- "catalog_retail": 75.11,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.11,
- "existing_variant_sku": "DWWG-534938",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46790,
- "title": "Cascade - Honey | Wolf Gordon Wallcoverings",
- "pattern": "Cascade",
- "mfr_sku": "CSD-4853",
- "roll_variant_sku": "DWWG-534736",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534736",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46787,
- "title": "Concourse - Gunmetal | Wolf Gordon Wallcoverings",
- "pattern": "Concourse",
- "mfr_sku": "COC2474",
- "roll_variant_sku": "DWWG-530235",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-530235",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46768,
- "title": "Connections - Asphalt | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2678",
- "roll_variant_sku": "DWWG-534810",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534810",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46762,
- "title": "Connections - Camel | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2672",
- "roll_variant_sku": "DWWG-534816",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534816",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46769,
- "title": "Connections - Charcoal | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2679",
- "roll_variant_sku": "DWWG-534809",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534809",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46767,
- "title": "Connections - Concrete | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2677",
- "roll_variant_sku": "DWWG-534811",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534811",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46764,
- "title": "Connections - Cream | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2674",
- "roll_variant_sku": "DWWG-534814",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534814",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46766,
- "title": "Connections - Light Gray | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2676",
- "roll_variant_sku": "DWWG-534812",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534812",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46761,
- "title": "Connections - Mustard | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2671",
- "roll_variant_sku": "DWWG-534817",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534817",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46770,
- "title": "Connections - Pale Blue | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2680",
- "roll_variant_sku": "DWWG-534808",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534808",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46765,
- "title": "Connections - Silver | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2675",
- "roll_variant_sku": "DWWG-534813",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534813",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46763,
- "title": "Connections - Tan | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2673",
- "roll_variant_sku": "DWWG-534815",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534815",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46771,
- "title": "Connections - Teal | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2681",
- "roll_variant_sku": "DWWG-534807",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534807",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46760,
- "title": "Connections - Wine | Wolf Gordon Wallcoverings",
- "pattern": "Connections",
- "mfr_sku": "CCT-2670",
- "roll_variant_sku": "DWWG-532306",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-532306",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46827,
- "title": "Dasma - Aquamarine | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5049",
- "roll_variant_sku": "DWWG-534692",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534692",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46823,
- "title": "Dasma - Bronze | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5045",
- "roll_variant_sku": "DWWG-534696",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534696",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46816,
- "title": "Dasma - Buff | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5038",
- "roll_variant_sku": "DWWG-534703",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534703",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46820,
- "title": "Dasma - Copper | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5042",
- "roll_variant_sku": "DWWG-534699",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534699",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46822,
- "title": "Dasma - Cordovan | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5044",
- "roll_variant_sku": "DWWG-534697",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534697",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46818,
- "title": "Dasma - Fawn | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5040",
- "roll_variant_sku": "DWWG-534701",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534701",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46824,
- "title": "Dasma - Glacier | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5046",
- "roll_variant_sku": "DWWG-534695",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534695",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46815,
- "title": "Dasma - Gold | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5037",
- "roll_variant_sku": "DWWG-534704",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534704",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46817,
- "title": "Dasma - Ivory | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5039",
- "roll_variant_sku": "DWWG-534702",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534702",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46831,
- "title": "Dasma - Midnight | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5053",
- "roll_variant_sku": "DWWG-534688",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534688",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46826,
- "title": "Dasma - Nickel | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5048",
- "roll_variant_sku": "DWWG-534693",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534693",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46819,
- "title": "Dasma - Parchment | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5041",
- "roll_variant_sku": "DWWG-534700",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534700",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46829,
- "title": "Dasma - Sapphire | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5051",
- "roll_variant_sku": "DWWG-534690",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534690",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46825,
- "title": "Dasma - Silver | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5047",
- "roll_variant_sku": "DWWG-534694",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534694",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46828,
- "title": "Dasma - Slate | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5050",
- "roll_variant_sku": "DWWG-534691",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534691",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46821,
- "title": "Dasma - Taupe | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5043",
- "roll_variant_sku": "DWWG-534698",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534698",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46830,
- "title": "Dasma - Umber | Wolf Gordon Wallcoverings",
- "pattern": "Dasma",
- "mfr_sku": "DSM-5052",
- "roll_variant_sku": "DWWG-534689",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-534689",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46798,
- "title": "Digital Echo - Gray Blush | Wolf Gordon Wallcoverings",
- "pattern": "Digital Echo",
- "mfr_sku": "DECH-491",
- "roll_variant_sku": "DWWG-532777",
- "trade_cost": 74.95,
- "proposed_roll_retail": 135.66,
- "catalog_retail": 135.66,
- "existing_variant_count": 1,
- "existing_min_variant_price": 135.66,
- "existing_variant_sku": "DWWG-532777",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46797,
- "title": "Digital Echo - Soft Gray | Wolf Gordon Wallcoverings",
- "pattern": "Digital Echo",
- "mfr_sku": "DECH-490",
- "roll_variant_sku": "DWWG-532778",
- "trade_cost": 74.95,
- "proposed_roll_retail": 135.66,
- "catalog_retail": 135.66,
- "existing_variant_count": 1,
- "existing_min_variant_price": 135.66,
- "existing_variant_sku": "DWWG-532778",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46805,
- "title": "Digital Nouveau - Gunmetal | Wolf Gordon Wallcoverings",
- "pattern": "Digital Nouveau",
- "mfr_sku": "DNUV-512",
- "roll_variant_sku": "DWWG-532772",
- "trade_cost": 74.95,
- "proposed_roll_retail": 135.66,
- "catalog_retail": 135.66,
- "existing_variant_count": 1,
- "existing_min_variant_price": 135.66,
- "existing_variant_sku": "DWWG-532772",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46804,
- "title": "Digital Nouveau - Silver Sand | Wolf Gordon Wallcoverings",
- "pattern": "Digital Nouveau",
- "mfr_sku": "DNUV-511",
- "roll_variant_sku": "DWWG-532773",
- "trade_cost": 74.95,
- "proposed_roll_retail": 135.66,
- "catalog_retail": 135.66,
- "existing_variant_count": 1,
- "existing_min_variant_price": 135.66,
- "existing_variant_sku": "DWWG-532773",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46985,
- "title": "Glasgow - Birch | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5387",
- "roll_variant_sku": "DWWG-534403",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534403",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46989,
- "title": "Glasgow - Bluebird | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5393",
- "roll_variant_sku": "DWWG-534398",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534398",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46991,
- "title": "Glasgow - Brandy | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5395",
- "roll_variant_sku": "DWWG-534396",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534396",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46982,
- "title": "Glasgow - Copper | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5383",
- "roll_variant_sku": "DWWG-534406",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534406",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46983,
- "title": "Glasgow - Gold | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5384",
- "roll_variant_sku": "DWWG-534405",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534405",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46990,
- "title": "Glasgow - Graphite | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5394",
- "roll_variant_sku": "DWWG-534397",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534397",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46986,
- "title": "Glasgow - Gray | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5389",
- "roll_variant_sku": "DWWG-534401",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534401",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46988,
- "title": "Glasgow - Hunter Green | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5392",
- "roll_variant_sku": "DWWG-534399",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534399",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46984,
- "title": "Glasgow - Sand | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5385",
- "roll_variant_sku": "DWWG-534404",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534404",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46992,
- "title": "Glasgow - Umber | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5396",
- "roll_variant_sku": "DWWG-534395",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534395",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46987,
- "title": "Glasgow - Verdigris | Wolf Gordon Wallcoverings",
- "pattern": "Glasgow",
- "mfr_sku": "GSG9-5391",
- "roll_variant_sku": "DWWG-534400",
- "trade_cost": 37,
- "proposed_roll_retail": 66.97,
- "catalog_retail": 66.97,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.97,
- "existing_variant_sku": "DWWG-534400",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46993,
- "title": "Granary Square - Chestnut | Wolf Gordon Wallcoverings",
- "pattern": "Granary Square",
- "mfr_sku": "GSQ-8-3628_8",
- "roll_variant_sku": "DWWG-532762",
- "trade_cost": 32.75,
- "proposed_roll_retail": 59.28,
- "catalog_retail": 59.28,
- "existing_variant_count": 1,
- "existing_min_variant_price": 59.28,
- "existing_variant_sku": "DWWG-532762",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46994,
- "title": "Granary Square - Prussian | Wolf Gordon Wallcoverings",
- "pattern": "Granary Square",
- "mfr_sku": "GSQ-8-3635_8",
- "roll_variant_sku": "DWWG-532755",
- "trade_cost": 32.75,
- "proposed_roll_retail": 59.28,
- "catalog_retail": 59.28,
- "existing_variant_count": 1,
- "existing_min_variant_price": 59.28,
- "existing_variant_sku": "DWWG-532755",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46961,
- "title": "Grange - Cherry | Wolf Gordon Wallcoverings",
- "pattern": "Grange",
- "mfr_sku": "GRG2111",
- "roll_variant_sku": "DWWG-534432",
- "trade_cost": 28.95,
- "proposed_roll_retail": 52.4,
- "catalog_retail": 52.4,
- "existing_variant_count": 1,
- "existing_min_variant_price": 52.4,
- "existing_variant_sku": "DWWG-534432",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46975,
- "title": "Grove - Bone | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2898_8",
- "roll_variant_sku": "DWWG-534413",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534413",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46972,
- "title": "Grove - Cafe | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2895_8",
- "roll_variant_sku": "DWWG-534416",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534416",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46974,
- "title": "Grove - Chocolate | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2897_8",
- "roll_variant_sku": "DWWG-534414",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534414",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46966,
- "title": "Grove - Ecru | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2889_8",
- "roll_variant_sku": "DWWG-534422",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534422",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46963,
- "title": "Grove - Eggshell | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2886_8",
- "roll_variant_sku": "DWWG-534425",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534425",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46981,
- "title": "Grove - Evergreen | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2904_8",
- "roll_variant_sku": "DWWG-534407",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534407",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46964,
- "title": "Grove - Fawn | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2887_8",
- "roll_variant_sku": "DWWG-534424",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534424",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46971,
- "title": "Grove - Hazelnut | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2894_8",
- "roll_variant_sku": "DWWG-534417",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534417",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46969,
- "title": "Grove - Khaki | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2892_8",
- "roll_variant_sku": "DWWG-534419",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534419",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46965,
- "title": "Grove - Latte | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2888_8",
- "roll_variant_sku": "DWWG-534423",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534423",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46980,
- "title": "Grove - Licorice | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2903_8",
- "roll_variant_sku": "DWWG-534408",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534408",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46978,
- "title": "Grove - Midnight | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2901_8",
- "roll_variant_sku": "DWWG-534410",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534410",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46979,
- "title": "Grove - Nickel | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2902_8",
- "roll_variant_sku": "DWWG-534409",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534409",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46967,
- "title": "Grove - Sienna | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2890_8",
- "roll_variant_sku": "DWWG-534421",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534421",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46962,
- "title": "Grove - Silver | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2885_8",
- "roll_variant_sku": "DWWG-534426",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534426",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46977,
- "title": "Grove - Taupe | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2900_8",
- "roll_variant_sku": "DWWG-534411",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534411",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46970,
- "title": "Grove - Timber | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2893_8",
- "roll_variant_sku": "DWWG-534418",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534418",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46973,
- "title": "Grove - Umber | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2896_8",
- "roll_variant_sku": "DWWG-534415",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534415",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46968,
- "title": "Grove - Walnut | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2891_8",
- "roll_variant_sku": "DWWG-534420",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534420",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46976,
- "title": "Grove - Wisteria | Wolf Gordon Wallcoverings",
- "pattern": "Grove",
- "mfr_sku": "GRV-2899_8",
- "roll_variant_sku": "DWWG-534412",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534412",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46996,
- "title": "Holmes - Sienna | Wolf Gordon Wallcoverings",
- "pattern": "Holmes",
- "mfr_sku": "HOM-3388",
- "roll_variant_sku": "DWWG-534380",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-534380",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47012,
- "title": "Hugo - Aqua | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3328_8",
- "roll_variant_sku": "DWWG-534334",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534334",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47006,
- "title": "Hugo - Charcoal | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3322_8",
- "roll_variant_sku": "DWWG-534340",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534340",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47003,
- "title": "Hugo - Cloud | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3319_8",
- "roll_variant_sku": "DWWG-534343",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534343",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47008,
- "title": "Hugo - Iris | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3324_8",
- "roll_variant_sku": "DWWG-534338",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534338",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47004,
- "title": "Hugo - Iron | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3320_8",
- "roll_variant_sku": "DWWG-534342",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534342",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46997,
- "title": "Hugo - Jet | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3313_8",
- "roll_variant_sku": "DWWG-534349",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534349",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47007,
- "title": "Hugo - Khaki | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3323_8",
- "roll_variant_sku": "DWWG-534339",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534339",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47000,
- "title": "Hugo - Oat | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3316_8",
- "roll_variant_sku": "DWWG-534346",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534346",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47011,
- "title": "Hugo - Pebble | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3327_8",
- "roll_variant_sku": "DWWG-534335",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534335",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46999,
- "title": "Hugo - Pumpkin | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3315_8",
- "roll_variant_sku": "DWWG-534347",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534347",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46998,
- "title": "Hugo - Rose | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3314_8",
- "roll_variant_sku": "DWWG-534348",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534348",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47005,
- "title": "Hugo - Seashell | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3321_8",
- "roll_variant_sku": "DWWG-534341",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534341",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47010,
- "title": "Hugo - Snow | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3326_8",
- "roll_variant_sku": "DWWG-534336",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534336",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47009,
- "title": "Hugo - Steel | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3325_8",
- "roll_variant_sku": "DWWG-534337",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534337",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47001,
- "title": "Hugo - Tawny | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3317_8",
- "roll_variant_sku": "DWWG-534345",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534345",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47002,
- "title": "Hugo - Wheat | Wolf Gordon Wallcoverings",
- "pattern": "Hugo",
- "mfr_sku": "HUG-3318_8",
- "roll_variant_sku": "DWWG-534344",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534344",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47013,
- "title": "Islington Station - Horizon | Wolf Gordon Wallcoverings",
- "pattern": "Islington Station",
- "mfr_sku": "ISN-8-3432",
- "roll_variant_sku": "DWWG-532718",
- "trade_cost": 32.75,
- "proposed_roll_retail": 59.28,
- "catalog_retail": 59.28,
- "existing_variant_count": 1,
- "existing_min_variant_price": 59.28,
- "existing_variant_sku": "DWWG-532718",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47016,
- "title": "Jaipur - Bronze | Wolf Gordon Wallcoverings",
- "pattern": "Jaipur",
- "mfr_sku": "JAI9-5366",
- "roll_variant_sku": "DWWG-534287",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534287",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47020,
- "title": "Jaipur - Cement | Wolf Gordon Wallcoverings",
- "pattern": "Jaipur",
- "mfr_sku": "JAI9-5370",
- "roll_variant_sku": "DWWG-534283",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534283",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47021,
- "title": "Jaipur - Charcoal | Wolf Gordon Wallcoverings",
- "pattern": "Jaipur",
- "mfr_sku": "JAI9-5371",
- "roll_variant_sku": "DWWG-534282",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534282",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47018,
- "title": "Jaipur - Golden | Wolf Gordon Wallcoverings",
- "pattern": "Jaipur",
- "mfr_sku": "JAI9-5368",
- "roll_variant_sku": "DWWG-534285",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534285",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47022,
- "title": "Jaipur - Red | Wolf Gordon Wallcoverings",
- "pattern": "Jaipur",
- "mfr_sku": "JAI9-5372",
- "roll_variant_sku": "DWWG-534281",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534281",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47017,
- "title": "Jaipur - Saffron | Wolf Gordon Wallcoverings",
- "pattern": "Jaipur",
- "mfr_sku": "JAI9-5367",
- "roll_variant_sku": "DWWG-534286",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534286",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47019,
- "title": "Jaipur - Silver | Wolf Gordon Wallcoverings",
- "pattern": "Jaipur",
- "mfr_sku": "JAI9-5369",
- "roll_variant_sku": "DWWG-534284",
- "trade_cost": 36,
- "proposed_roll_retail": 65.16,
- "catalog_retail": 65.16,
- "existing_variant_count": 1,
- "existing_min_variant_price": 65.16,
- "existing_variant_sku": "DWWG-534284",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47041,
- "title": "Kabuto - Abalone | Wolf Gordon Wallcoverings",
- "pattern": "Kabuto",
- "mfr_sku": "KBT-5122",
- "roll_variant_sku": "DWWG-534246",
- "trade_cost": 41.75,
- "proposed_roll_retail": 75.57,
- "catalog_retail": 75.57,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.57,
- "existing_variant_sku": "DWWG-534246",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47046,
- "title": "Kabuto - Amazonite | Wolf Gordon Wallcoverings",
- "pattern": "Kabuto",
- "mfr_sku": "KBT-5127",
- "roll_variant_sku": "DWWG-534241",
- "trade_cost": 41.75,
- "proposed_roll_retail": 75.57,
- "catalog_retail": 75.57,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.57,
- "existing_variant_sku": "DWWG-534241",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47042,
- "title": "Kabuto - Buff | Wolf Gordon Wallcoverings",
- "pattern": "Kabuto",
- "mfr_sku": "KBT-5123",
- "roll_variant_sku": "DWWG-534245",
- "trade_cost": 41.75,
- "proposed_roll_retail": 75.57,
- "catalog_retail": 75.57,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.57,
- "existing_variant_sku": "DWWG-534245",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47040,
- "title": "Kabuto - Corten | Wolf Gordon Wallcoverings",
- "pattern": "Kabuto",
- "mfr_sku": "KBT-5121",
- "roll_variant_sku": "DWWG-534247",
- "trade_cost": 41.75,
- "proposed_roll_retail": 75.57,
- "catalog_retail": 75.57,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.57,
- "existing_variant_sku": "DWWG-534247",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47045,
- "title": "Kabuto - Silver | Wolf Gordon Wallcoverings",
- "pattern": "Kabuto",
- "mfr_sku": "KBT-5126",
- "roll_variant_sku": "DWWG-534242",
- "trade_cost": 41.75,
- "proposed_roll_retail": 75.57,
- "catalog_retail": 75.57,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.57,
- "existing_variant_sku": "DWWG-534242",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47043,
- "title": "Kabuto - Steel | Wolf Gordon Wallcoverings",
- "pattern": "Kabuto",
- "mfr_sku": "KBT-5124",
- "roll_variant_sku": "DWWG-534244",
- "trade_cost": 41.75,
- "proposed_roll_retail": 75.57,
- "catalog_retail": 75.57,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.57,
- "existing_variant_sku": "DWWG-534244",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47044,
- "title": "Kabuto - Tungsten | Wolf Gordon Wallcoverings",
- "pattern": "Kabuto",
- "mfr_sku": "KBT-5125",
- "roll_variant_sku": "DWWG-534243",
- "trade_cost": 41.75,
- "proposed_roll_retail": 75.57,
- "catalog_retail": 75.57,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.57,
- "existing_variant_sku": "DWWG-534243",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47038,
- "title": "Kami - Azurite | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5110",
- "roll_variant_sku": "DWWG-534249",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534249",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47028,
- "title": "Kami - Bronze | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5100",
- "roll_variant_sku": "DWWG-534259",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534259",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47032,
- "title": "Kami - Chalk | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5104",
- "roll_variant_sku": "DWWG-534255",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534255",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47030,
- "title": "Kami - Champagne | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5102",
- "roll_variant_sku": "DWWG-534257",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534257",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47026,
- "title": "Kami - Copper | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5098",
- "roll_variant_sku": "DWWG-534261",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534261",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47025,
- "title": "Kami - Feldspar | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5097",
- "roll_variant_sku": "DWWG-534262",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534262",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47039,
- "title": "Kami - Frost | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5111",
- "roll_variant_sku": "DWWG-534248",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534248",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47029,
- "title": "Kami - Gold Leaf | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5101",
- "roll_variant_sku": "DWWG-534258",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534258",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47035,
- "title": "Kami - Iron | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5107",
- "roll_variant_sku": "DWWG-534252",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534252",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47024,
- "title": "Kami - Morganite | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5096",
- "roll_variant_sku": "DWWG-534263",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534263",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47034,
- "title": "Kami - Nickel | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5106",
- "roll_variant_sku": "DWWG-534253",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534253",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47036,
- "title": "Kami - Onyx | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5108",
- "roll_variant_sku": "DWWG-534251",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534251",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47031,
- "title": "Kami - Pearl | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5103",
- "roll_variant_sku": "DWWG-534256",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534256",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47033,
- "title": "Kami - Platinum | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5105",
- "roll_variant_sku": "DWWG-534254",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534254",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47027,
- "title": "Kami - Sepia | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5099",
- "roll_variant_sku": "DWWG-534260",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534260",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47037,
- "title": "Kami - Slate | Wolf Gordon Wallcoverings",
- "pattern": "Kami",
- "mfr_sku": "KAM-5109",
- "roll_variant_sku": "DWWG-534250",
- "trade_cost": 29.95,
- "proposed_roll_retail": 54.21,
- "catalog_retail": 54.21,
- "existing_variant_count": 1,
- "existing_min_variant_price": 54.21,
- "existing_variant_sku": "DWWG-534250",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47074,
- "title": "Lyra - Aluminum | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3380_8",
- "roll_variant_sku": "DWWG-534132",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534132",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47077,
- "title": "Lyra - Carbon | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3383_8",
- "roll_variant_sku": "DWWG-534129",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534129",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47061,
- "title": "Lyra - Cotton | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3367_8",
- "roll_variant_sku": "DWWG-534145",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534145",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47064,
- "title": "Lyra - Ecru | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3370_8",
- "roll_variant_sku": "DWWG-534142",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534142",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47078,
- "title": "Lyra - Glacier | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3384_8",
- "roll_variant_sku": "DWWG-534128",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534128",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47063,
- "title": "Lyra - Honeycomb | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3369_8",
- "roll_variant_sku": "DWWG-534143",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534143",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47076,
- "title": "Lyra - Linen | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3382_8",
- "roll_variant_sku": "DWWG-534130",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534130",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47060,
- "title": "Lyra - Mauve | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3366_8",
- "roll_variant_sku": "DWWG-534146",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534146",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47071,
- "title": "Lyra - Mist | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3377_8",
- "roll_variant_sku": "DWWG-534135",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534135",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47068,
- "title": "Lyra - Orchid | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3374_8",
- "roll_variant_sku": "DWWG-534138",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534138",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47072,
- "title": "Lyra - Peacock | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3378_8",
- "roll_variant_sku": "DWWG-534134",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534134",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47070,
- "title": "Lyra - Pear | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3376_8",
- "roll_variant_sku": "DWWG-534136",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534136",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47067,
- "title": "Lyra - Sable | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3373_8",
- "roll_variant_sku": "DWWG-534139",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534139",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47075,
- "title": "Lyra - Slate | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3381_8",
- "roll_variant_sku": "DWWG-534131",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534131",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47062,
- "title": "Lyra - Smoke | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3368_8",
- "roll_variant_sku": "DWWG-534144",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534144",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47073,
- "title": "Lyra - Stone | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3379_8",
- "roll_variant_sku": "DWWG-534133",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534133",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47066,
- "title": "Lyra - Tangerine | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3372_8",
- "roll_variant_sku": "DWWG-534140",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534140",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47069,
- "title": "Lyra - Tea Rose | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3375_8",
- "roll_variant_sku": "DWWG-534137",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534137",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47065,
- "title": "Lyra - Umber | Wolf Gordon Wallcoverings",
- "pattern": "Lyra",
- "mfr_sku": "LYR-3371_8",
- "roll_variant_sku": "DWWG-534141",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534141",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47079,
- "title": "Macao - Raspberry | Wolf Gordon Wallcoverings",
- "pattern": "Macao",
- "mfr_sku": "MAO-7-4160",
- "roll_variant_sku": "DWWG-530165",
- "trade_cost": 31.25,
- "proposed_roll_retail": 56.56,
- "catalog_retail": 56.56,
- "existing_variant_count": 1,
- "existing_min_variant_price": 56.56,
- "existing_variant_sku": "DWWG-530165",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47131,
- "title": "Mantaray - Coral | Wolf Gordon Wallcoverings",
- "pattern": "Mantaray",
- "mfr_sku": "MRY-3173",
- "roll_variant_sku": "DWWG-534020",
- "trade_cost": 32.5,
- "proposed_roll_retail": 58.82,
- "catalog_retail": 58.82,
- "existing_variant_count": 1,
- "existing_min_variant_price": 58.82,
- "existing_variant_sku": "DWWG-534020",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47114,
- "title": "Marlu - Alabaster | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3286_8",
- "roll_variant_sku": "DWWG-534040",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534040",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47116,
- "title": "Marlu - Blush | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3288_8",
- "roll_variant_sku": "DWWG-534038",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534038",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47118,
- "title": "Marlu - Cinnamon | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3290_8",
- "roll_variant_sku": "DWWG-534036",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534036",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47123,
- "title": "Marlu - Cocoa | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3295_8",
- "roll_variant_sku": "DWWG-534031",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534031",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47113,
- "title": "Marlu - Cornsilk | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3285_8",
- "roll_variant_sku": "DWWG-534041",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534041",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47130,
- "title": "Marlu - Denim | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3302_8",
- "roll_variant_sku": "DWWG-534024",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534024",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47112,
- "title": "Marlu - Grapefruit | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3284_8",
- "roll_variant_sku": "DWWG-534042",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534042",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47129,
- "title": "Marlu - Gunmetal | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3301_8",
- "roll_variant_sku": "DWWG-534025",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534025",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47117,
- "title": "Marlu - Hibiscus | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3289_8",
- "roll_variant_sku": "DWWG-534037",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534037",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47125,
- "title": "Marlu - Pearl | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3297_8",
- "roll_variant_sku": "DWWG-534029",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534029",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47120,
- "title": "Marlu - Platinum | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3292_8",
- "roll_variant_sku": "DWWG-534034",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534034",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47121,
- "title": "Marlu - Sand | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3293_8",
- "roll_variant_sku": "DWWG-534033",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534033",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47124,
- "title": "Marlu - Silver | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3296_8",
- "roll_variant_sku": "DWWG-534030",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534030",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47126,
- "title": "Marlu - Slate | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3298_8",
- "roll_variant_sku": "DWWG-534028",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534028",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47127,
- "title": "Marlu - Smoke | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3299_8",
- "roll_variant_sku": "DWWG-534027",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534027",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47119,
- "title": "Marlu - Stone | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3291_8",
- "roll_variant_sku": "DWWG-534035",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534035",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47115,
- "title": "Marlu - Straw | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3287_8",
- "roll_variant_sku": "DWWG-534039",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534039",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47128,
- "title": "Marlu - Teal | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3300_8",
- "roll_variant_sku": "DWWG-534026",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534026",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47122,
- "title": "Marlu - Zinc | Wolf Gordon Wallcoverings",
- "pattern": "Marlu",
- "mfr_sku": "MRU-3294_8",
- "roll_variant_sku": "DWWG-534032",
- "trade_cost": 42,
- "proposed_roll_retail": 76.02,
- "catalog_retail": 76.02,
- "existing_variant_count": 1,
- "existing_min_variant_price": 76.02,
- "existing_variant_sku": "DWWG-534032",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47105,
- "title": "Metamorphosis - Antique Gold | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-571",
- "roll_variant_sku": "DWWG-534124",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534124",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47106,
- "title": "Metamorphosis - Canary Yellow | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-572",
- "roll_variant_sku": "DWWG-534123",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534123",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47108,
- "title": "Metamorphosis - Cream | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-574",
- "roll_variant_sku": "DWWG-534121",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534121",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47104,
- "title": "Metamorphosis - Gypsum | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-570",
- "roll_variant_sku": "DWWG-534125",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534125",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47109,
- "title": "Metamorphosis - Light Gray | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-575",
- "roll_variant_sku": "DWWG-534120",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534120",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47102,
- "title": "Metamorphosis - Lilac Shine | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-568",
- "roll_variant_sku": "DWWG-534127",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534127",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47103,
- "title": "Metamorphosis - Rust | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-569",
- "roll_variant_sku": "DWWG-534126",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534126",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47110,
- "title": "Metamorphosis - Silver | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-576",
- "roll_variant_sku": "DWWG-534119",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534119",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47107,
- "title": "Metamorphosis - Soft Rose | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-573",
- "roll_variant_sku": "DWWG-534122",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534122",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47111,
- "title": "Metamorphosis - Tungsten | Wolf Gordon Wallcoverings",
- "pattern": "Metamorphosis",
- "mfr_sku": "METM-577",
- "roll_variant_sku": "DWWG-534118",
- "trade_cost": 48.95,
- "proposed_roll_retail": 88.6,
- "catalog_retail": 88.6,
- "existing_variant_count": 1,
- "existing_min_variant_price": 88.6,
- "existing_variant_sku": "DWWG-534118",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47149,
- "title": "Neso - Aristocrat | Wolf Gordon Wallcoverings",
- "pattern": "Neso",
- "mfr_sku": "NES-3799",
- "roll_variant_sku": "DWWG-533985",
- "trade_cost": 45.35,
- "proposed_roll_retail": 82.08,
- "catalog_retail": 82.08,
- "existing_variant_count": 1,
- "existing_min_variant_price": 82.08,
- "existing_variant_sku": "DWWG-533985",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47163,
- "title": "Olsen - Illusion | Wolf Gordon Wallcoverings",
- "pattern": "Olsen",
- "mfr_sku": "OLS-3561",
- "roll_variant_sku": "DWWG-533923",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-533923",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47164,
- "title": "Olsen - Paradise | Wolf Gordon Wallcoverings",
- "pattern": "Olsen",
- "mfr_sku": "OLS-3563",
- "roll_variant_sku": "DWWG-533921",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-533921",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47165,
- "title": "Osmosis - Bordeaux | Wolf Gordon Wallcoverings",
- "pattern": "Osmosis",
- "mfr_sku": "OSM-2650",
- "roll_variant_sku": "DWWG-533907",
- "trade_cost": 41.5,
- "proposed_roll_retail": 75.11,
- "catalog_retail": 75.11,
- "existing_variant_count": 1,
- "existing_min_variant_price": 75.11,
- "existing_variant_sku": "DWWG-533907",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46812,
- "title": "Perch - Blush | Wolf Gordon Wallcoverings",
- "pattern": "Perch",
- "mfr_sku": "DPRH-500",
- "roll_variant_sku": "DWWG-534707",
- "trade_cost": 74.95,
- "proposed_roll_retail": 135.66,
- "catalog_retail": 135.66,
- "existing_variant_count": 1,
- "existing_min_variant_price": 135.66,
- "existing_variant_sku": "DWWG-534707",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46813,
- "title": "Perch - Dusk | Wolf Gordon Wallcoverings",
- "pattern": "Perch",
- "mfr_sku": "DPRH-501",
- "roll_variant_sku": "DWWG-534706",
- "trade_cost": 74.95,
- "proposed_roll_retail": 135.66,
- "catalog_retail": 135.66,
- "existing_variant_count": 1,
- "existing_min_variant_price": 135.66,
- "existing_variant_sku": "DWWG-534706",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46814,
- "title": "Perch - Smokey | Wolf Gordon Wallcoverings",
- "pattern": "Perch",
- "mfr_sku": "DPRH-502",
- "roll_variant_sku": "DWWG-534705",
- "trade_cost": 74.95,
- "proposed_roll_retail": 135.66,
- "catalog_retail": 135.66,
- "existing_variant_count": 1,
- "existing_min_variant_price": 135.66,
- "existing_variant_sku": "DWWG-534705",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47167,
- "title": "Phaeo - Cove | Wolf Gordon Wallcoverings",
- "pattern": "Phaeo",
- "mfr_sku": "PHO-3761",
- "roll_variant_sku": "DWWG-533878",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-533878",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47225,
- "title": "Ronan - Glint | Wolf Gordon Wallcoverings",
- "pattern": "Ronan",
- "mfr_sku": "RON-3345",
- "roll_variant_sku": "DWWG-533827",
- "trade_cost": 48.33,
- "proposed_roll_retail": 87.48,
- "catalog_retail": 87.48,
- "existing_variant_count": 1,
- "existing_min_variant_price": 87.48,
- "existing_variant_sku": "DWWG-533827",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47226,
- "title": "Rossana - True Silver | Wolf Gordon Wallcoverings",
- "pattern": "Rossana",
- "mfr_sku": "ROS-4146",
- "roll_variant_sku": "DWWG-533809",
- "trade_cost": 32.5,
- "proposed_roll_retail": 58.82,
- "catalog_retail": 58.82,
- "existing_variant_count": 1,
- "existing_min_variant_price": 58.82,
- "existing_variant_sku": "DWWG-533809",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47241,
- "title": "Sadeya - Iris | Wolf Gordon Wallcoverings",
- "pattern": "Sadeya",
- "mfr_sku": "SDY-3346_8",
- "roll_variant_sku": "DWWG-533752",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-533752",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47242,
- "title": "Sadeya - Marigold | Wolf Gordon Wallcoverings",
- "pattern": "Sadeya",
- "mfr_sku": "SDY-3349_8",
- "roll_variant_sku": "DWWG-533749",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-533749",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47240,
- "title": "Sadeya - Turquoise | Wolf Gordon Wallcoverings",
- "pattern": "Sadeya",
- "mfr_sku": "SDY-3345_8",
- "roll_variant_sku": "DWWG-533753",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-533753",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47243,
- "title": "Sadeya - Wheat | Wolf Gordon Wallcoverings",
- "pattern": "Sadeya",
- "mfr_sku": "SDY-3352_8",
- "roll_variant_sku": "DWWG-533746",
- "trade_cost": 36.75,
- "proposed_roll_retail": 66.52,
- "catalog_retail": 66.52,
- "existing_variant_count": 1,
- "existing_min_variant_price": 66.52,
- "existing_variant_sku": "DWWG-533746",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46840,
- "title": "Tone | Wolf Gordon Wallcoverings",
- "pattern": "DTON 401",
- "mfr_sku": "DTON-401",
- "roll_variant_sku": "DWWG-533139",
- "trade_cost": 189.95,
- "proposed_roll_retail": 343.8,
- "catalog_retail": 343.8,
- "existing_variant_count": 1,
- "existing_min_variant_price": 343.8,
- "existing_variant_sku": "DWWG-533139",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 47502,
- "title": "Vauxhall - Neutron | Wolf Gordon Wallcoverings",
- "pattern": "Vauxhall",
- "mfr_sku": "VAX-8-3496",
- "roll_variant_sku": "DWWG-533644",
- "trade_cost": 32.75,
- "proposed_roll_retail": 59.28,
- "catalog_retail": 59.28,
- "existing_variant_count": 1,
- "existing_min_variant_price": 59.28,
- "existing_variant_sku": "DWWG-533644",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46856,
- "title": "Vista - Midnight | Wolf Gordon Wallcoverings",
- "pattern": "Vista",
- "mfr_sku": "DVTS-521",
- "roll_variant_sku": "DWWG-534660",
- "trade_cost": 99.95,
- "proposed_roll_retail": 180.9,
- "catalog_retail": 180.9,
- "existing_variant_count": 1,
- "existing_min_variant_price": 180.9,
- "existing_variant_sku": "DWWG-534660",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46857,
- "title": "Vista - Snow | Wolf Gordon Wallcoverings",
- "pattern": "Vista",
- "mfr_sku": "DVTS-522",
- "roll_variant_sku": "DWWG-534659",
- "trade_cost": 99.95,
- "proposed_roll_retail": 180.9,
- "catalog_retail": 180.9,
- "existing_variant_count": 1,
- "existing_min_variant_price": 180.9,
- "existing_variant_sku": "DWWG-534659",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- },
- {
- "product_id": 46855,
- "title": "Vista - Steel | Wolf Gordon Wallcoverings",
- "pattern": "Vista",
- "mfr_sku": "DVTS-520",
- "roll_variant_sku": "DWWG-534661",
- "trade_cost": 99.95,
- "proposed_roll_retail": 180.9,
- "catalog_retail": 180.9,
- "existing_variant_count": 1,
- "existing_min_variant_price": 180.9,
- "existing_variant_sku": "DWWG-534661",
- "action": "ALREADY_SELLABLE_STALE_FLAG"
- }
- ]
-}
\ No newline at end of file
+ "status": "REGEN_PENDING",
+ "reason": "shopify_products reads blocked by a mirror lock pileup — 2026-08-30 (mirror lock pileup: ALTER TABLE shopify_products pid 26862 queued behind 35-min query pid 90359). The classify.mjs/pilot.mjs CODE is corrected + verified; regenerate this artifact once the lock clears.",
+ "verified_findings": {
+ "unbuyable_total": 25214,
+ "wolf_gordon_cost_joined": 224,
+ "wolf_gordon_class": "RR-defect (lone option1=Sample variant priced at roll retail) — live-verified against Shopify 2026-08-30",
+ "recovery": "variant restructure per TK-10875-130 (relabel Sample->Sold Per Roll @ trade/0.65/0.85 + add $4.25 Sample); GATED"
+ }
+}
diff --git a/pilot.mjs b/pilot.mjs
index 733d0be..a8345ea 100644
--- a/pilot.mjs
+++ b/pilot.mjs
@@ -1,20 +1,25 @@
#!/usr/bin/env node
// TK-10875 — BOUNDED RECOVERY PILOT (DRY-RUN ONLY), Wolf Gordon cohort.
//
-// Produces the sellable-variant recovery PLAN for ACTIVE, "unbuyable" Wolf
-// Gordon products whose trade cost is joinable from wolf_gordon_catalog.
-// It writes plan artifacts and prints a summary. It performs NO writes to
-// Shopify and NO writes to dw_unified — it only issues read-only SELECTs.
+// EMPIRICALLY-CORRECTED (verified against LIVE Shopify, 2026-08-30):
+// The 224 cost-joined WG "unbuyable" products are NOT sample-only, and NOT
+// already-sellable. Each has a SINGLE variant with option1='Sample' priced at
+// the ROLL RETAIL (e.g. $54.75, $343.80) — not the $4.25 memo price. This is the
+// "RR-defect" class already repaired for Ronald Redding + Cole & Son under
+// TK-10875-130: a lone Sample-labeled variant mispriced at roll retail, with no
+// real $4.25 sample and no clean "Sold Per Roll" variant.
//
-// IMPORTANT (why this pilot does NOT just emit "build 224 variants"):
-// The mirror's `has_product_variant` flag is STALE for this cohort (the
-// dw-shopify-products-sync-hourly job is dead). A product flagged unbuyable but
-// carrying a single NON-sample variant priced far above the $4.25 sample floor
-// is ALREADY SELLABLE in Shopify — building a roll variant would double-add.
-// So each candidate is CLASSIFIED, not blindly queued:
-// ALREADY_SELLABLE_STALE_FLAG -> exclude from build; it's a mirror-sync defect
-// ADD_SELLABLE_ROLL_VARIANT -> genuinely sample-only AND cost-joinable
-// Retail = trade_cost / 0.65 / 0.85 (DW markup); SKU reused (no mint).
+// The dw_unified MIRROR cannot detect this: it carries no `option1`, and its
+// price is stale (dead sync job — one product read $180.90 in the mirror vs
+// $343.80 live). So this plan is ADVISORY: a real executor MUST read each
+// product live and recompute retail from STAGING trade cost (not the mirror).
+//
+// Recovery action (GATED — NOT executed here): for each product,
+// - relabel the lone variant option1 'Sample' -> 'Sold Per Roll',
+// price = trade_cost/0.65/0.85 (DW markup), SKU = numeric DW-SKU (no mint);
+// - add a real Sample variant at $4.25 (SKU <dwsku>-Sample).
+// This is the exact reversible, rollback-mapped, ledgered pattern from
+// TK-10875-130 (dw-add-sellable-variant / dw-data-repair rollback-all.mjs).
import { writeFileSync } from 'node:fs';
import { fileURLToPath } from 'node:url';
@@ -23,20 +28,20 @@ import { queryRows } from './lib/db.mjs';
const HERE = dirname(fileURLToPath(import.meta.url));
const COHORT = 'Wolf Gordon';
+const SAMPLE_PRICE = 4.25;
const rows = queryRows(`
SELECT
- wg.id AS product_id,
+ wg.shopify_id, -- REAL Shopify product id (gid://…)
+ wg.id AS mirror_row_id,
wg.sku AS dw_numeric_sku,
wg.mfr_sku,
wg.title,
wg.variant_count,
- wg.variant_sku,
- wg.min_variant_price,
+ wg.min_variant_price AS mirror_price_STALE,
c.pattern_name,
c.price_trade AS trade_cost,
- round(c.price_trade/0.65/0.85, 2) AS computed_retail,
- c.price_retail AS catalog_retail
+ round(c.price_trade/0.65/0.85, 2) AS computed_roll_retail
FROM shopify_products wg
JOIN wolf_gordon_catalog c ON c.dw_sku = wg.sku
WHERE wg.vendor='${COHORT}'
@@ -45,80 +50,56 @@ const rows = queryRows(`
AND c.price_trade > 0
ORDER BY wg.title`);
-// A product is "already sellable" (stale flag) if it carries a SINGLE non-sample
-// variant priced above the $4.25 sample floor. Hardened (2nd-model review):
-// variant_count===1 (avoid mis-bucketing a sample+roll pair) and a non-empty SKU
-// (unknown SKU stays conservatively on the recovery side, never silently excluded).
-const isStaleAlreadySellable = r => {
- const mvp = Number(r.min_variant_price ?? 0);
- const vsku = (r.variant_sku ?? '').toLowerCase();
- return Number(r.variant_count) === 1 && vsku !== '' && !vsku.endsWith('-sample') && mvp > 4.5;
-};
-
-const plan = rows.map(r => {
- const stale = isStaleAlreadySellable(r);
- return {
- product_id: r.product_id,
- title: r.title,
- pattern: r.pattern_name,
- mfr_sku: r.mfr_sku,
- roll_variant_sku: r.dw_numeric_sku,
- trade_cost: Number(r.trade_cost),
- proposed_roll_retail: Number(r.computed_retail),
- catalog_retail: r.catalog_retail == null ? null : Number(r.catalog_retail),
- existing_variant_count: Number(r.variant_count ?? 0),
- existing_min_variant_price: Number(r.min_variant_price ?? 0),
- existing_variant_sku: r.variant_sku,
- action: stale ? 'ALREADY_SELLABLE_STALE_FLAG' : 'ADD_SELLABLE_ROLL_VARIANT',
- };
-});
+const plan = rows.map(r => ({
+ shopify_id: r.shopify_id,
+ title: r.title,
+ pattern: r.pattern_name,
+ mfr_sku: r.mfr_sku,
+ proposed_roll_sku: r.dw_numeric_sku, // reuse existing numeric DW-SKU (no mint)
+ proposed_roll_retail: Number(r.computed_roll_retail), // from STAGING trade cost, not the stale mirror
+ proposed_sample_sku: `${r.dw_numeric_sku}-Sample`,
+ proposed_sample_price: SAMPLE_PRICE,
+ mirror_price_stale: Number(r.mirror_price_STALE ?? 0),
+ existing_variant_count: Number(r.variant_count ?? 0),
+ action: 'RESTRUCTURE_LONE_SAMPLE_VARIANT', // GATED — customer-facing Shopify write
+ live_confirm_required: true, // executor must GET the live variant first
+}));
-const buildable = plan.filter(p => p.action === 'ADD_SELLABLE_ROLL_VARIANT');
-const staleFlag = plan.filter(p => p.action === 'ALREADY_SELLABLE_STALE_FLAG');
+const singleVariant = plan.filter(p => p.existing_variant_count === 1);
const report = {
ticket: 'TK-10875',
cohort: COHORT,
mode: 'DRY-RUN — no Shopify or dw_unified writes performed',
generated_at: new Date().toISOString(),
- retail_formula: 'trade_cost / 0.65 / 0.85',
- // NOTE: computed_retail vs catalog_retail is an INTERNAL-CONSISTENCY check only
- // (catalog.price_retail was itself derived as trade/0.65/0.85). It is NOT an
- // independent validation of the selling price — do not treat a match as proof.
- pricing_note: 'computed_retail == catalog_retail is tautological (same formula); NOT price validation. Real validation needs a vendor-authoritative source (e.g. Wolf Gordon invoice/portal).',
+ empirical_verification: 'Live Shopify GET on 4 WG products (price range $54.75–$343.80) — ALL show a single option1=Sample variant priced at roll retail (RR-defect). Mirror lacks option1 and is price-stale (13 days).',
+ retail_formula: 'trade_cost / 0.65 / 0.85 (recompute from staging at execution; do NOT trust mirror price)',
+ recovery_pattern: 'TK-10875-130 variant-restructure (relabel lone Sample->Sold Per Roll + add $4.25 Sample); reversible via rollback-all.mjs, ledgered',
+ gating: 'GATED — customer-facing Shopify variant write. Route to vp-dw-commerce. Draft only; NOT executed here.',
counts: {
- cost_joined_candidates: plan.length,
- truly_buildable: buildable.length,
- already_sellable_stale_flag: staleFlag.length,
+ recoverable_via_restructure: plan.length,
+ single_variant_confirmed: singleVariant.length,
},
- finding: staleFlag.length === plan.length
- ? 'ALL cost-joined WG candidates are (per the mirror) already-sellable — single non-sample variant priced far above the $4.25 sample floor. Recovery here is a NO-OP / double-add risk. Because the sync job is dead, the mirror itself cannot be trusted as ground truth: re-sync has_product_variant and CONFIRM against live Shopify before any build — do not build variants.'
- : `${buildable.length} genuinely sample-only + cost-joinable → gated variant build; ${staleFlag.length} are stale-flag false positives.`,
- buildable_plan: buildable, // the ONLY rows a future gated executor should touch
- stale_flag_products: staleFlag, // surfaced as a mirror-sync data defect
+ plan,
};
const jsonOut = join(HERE, 'data', 'wolf-gordon-dryrun.json');
const csvOut = join(HERE, 'data', 'wolf-gordon-dryrun.csv');
writeFileSync(jsonOut, JSON.stringify(report, null, 2));
-const cols = ['product_id','roll_variant_sku','mfr_sku','title','pattern','trade_cost','proposed_roll_retail','existing_variant_count','existing_min_variant_price','existing_variant_sku','action'];
+const cols = ['shopify_id','proposed_roll_sku','mfr_sku','title','pattern','trade_cost','proposed_roll_retail','proposed_sample_price','mirror_price_stale','existing_variant_count','action','live_confirm_required'];
+// re-derive trade_cost onto plan rows for the CSV
+plan.forEach((p,i)=>{ p.trade_cost = Number(rows[i].trade_cost); });
const esc = v => `"${String(v ?? '').replace(/"/g,'""')}"`;
writeFileSync(csvOut, [cols.join(','), ...plan.map(p => cols.map(c => esc(p[c])).join(','))].join('\n') + '\n');
console.log(`\n================ DRY-RUN — NO WRITES PERFORMED ================`);
console.log(`Cohort: ${COHORT}`);
-console.log(`Cost-joined candidates: ${plan.length}`);
-console.log(` -> truly buildable: ${buildable.length}`);
-console.log(` -> already-sellable (stale flag, EXCLUDED): ${staleFlag.length}`);
+console.log(`Recoverable via RR-restructure: ${plan.length} (all single-variant: ${singleVariant.length})`);
+console.log(`Verified: live Shopify shows lone option1=Sample @ roll retail (RR-defect).`);
console.log(`Plan written: ${jsonOut}`);
console.log(` ${csvOut}`);
-if (buildable.length === 0) {
- console.log(`\nCONCLUSION: 0 truly-recoverable in this cohort. The 224 "unbuyable" WG`);
- console.log(`products already have a correctly-priced roll variant — the mirror flag is`);
- console.log(`stale. Fix the dead sync job + re-sync has_product_variant BEFORE any build.`);
-} else {
- console.log(`\nNext step (GATED, NOT done here): route the ${buildable.length}-row buildable_plan`);
- console.log(`to vp-dw-commerce for a tested, reversible, ledgered Shopify variant build.`);
-}
+console.log(`\nGATED next step (drafted, NOT executed): route the ${plan.length}-row plan to`);
+console.log(`vp-dw-commerce for a tested, reversible, ledgered variant restructure — executor`);
+console.log(`MUST read each product live + recompute retail from staging (mirror price is stale).`);
console.log(`==============================================================\n`);
← af9c3e5 TK-10875: harden pilot after contrarian + Kimi red-team — st
·
back to Dw Unbuyable Recovery Pilot
·
TK-10875: regenerate artifacts + broaden live RR-defect veri 6ee445d →