惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
L
LangChain Blog
C
Check Point Blog
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
美团技术团队
博客园 - 司徒正美
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog
G
Google Developers Blog
The Cloudflare Blog
P
Proofpoint News Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
A CSV checkpoint before leaving Stocky purchase orders
王磊 · 2026-06-19 · via DEV Community

王磊

Stocky migration is not just an app selection problem. Before choosing a replacement, it is worth getting the purchase-order data into a flat file that humans can audit.

The risky part is that Stocky and Shopify native purchase orders do not model every detail the same way. A purchase order is not only a list of SKUs. It often carries supplier defaults, received quantities, pack sizes, tax assumptions, foreign-currency costs, destination locations, and notes that explain why a buyer ordered a certain amount.

A practical pre-migration checkpoint looks like this:

  1. Export purchase orders while Stocky access is still available.
  2. Keep PO-level fields beside every line item: PO number, supplier, status, location, and receipt state.
  3. Check each item row for SKU, title, ordered quantity, received quantity, cost, and any missing supplier reference.
  4. Mark rows where receipt status is inferred rather than explicit. Those rows need manual review before you trust a new workflow.
  5. Rebuild supplier defaults outside the import step: default tax rate, pack size, currency, vendor grouping, and reorder rules.
  6. Only after the worksheet looks clean should you test one small PO or transfer in the new process.

The main goal is to separate rescue from migration. First rescue and flatten the old PO data. Then decide what belongs in Shopify native POs, what belongs in a supplier planning worksheet, and what needs a paid inventory or forecasting system.

For a narrow first pass, I use a browser-side Stocky purchase-order JSON to CSV rescue checker: https://shopify-csv.aivismonitor.com/stocky-purchase-order-api-csv-exporter

It does not call the Stocky API, does not create Shopify POs, and does not replace purchasing software. It only turns a Stocky purchase-order JSON export into a reviewable CSV so missing SKUs, costs, quantities, receipt states, and possible pagination problems are visible before the migration work starts.