diff --git a/client/src/App.tsx b/client/src/App.tsx index 9c5c06e..cbb3dfd 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -46,6 +46,7 @@ import { ProductLifecyclePage } from './pages/ProductLifecyclePage' import { DataImportPage } from './pages/DataImportPage' import { EnterprisePage } from './pages/EnterprisePage' import { IntelligencePage } from './pages/IntelligencePage' +import { PromotionPage } from './pages/PromotionPage' import { RoleRoute } from './components/RoleRoute' const queryClient = new QueryClient({ @@ -133,6 +134,7 @@ export default function App() { } /> } /> } /> + } /> } /> diff --git a/client/src/components/Layout.tsx b/client/src/components/Layout.tsx index b765f32..520c857 100644 --- a/client/src/components/Layout.tsx +++ b/client/src/components/Layout.tsx @@ -1,6 +1,6 @@ import { ReactNode, useState } from 'react' import { Link, useLocation } from 'react-router-dom' -import { LayoutDashboard, Store, ClipboardList, TrendingUp, Settings, LogOut, Menu, X, Package, DollarSign, ShoppingBag, Users, AlertTriangle, Clock, Database, MapPin, PieChart, Wallet, CalendarClock, Activity, Crown, BarChart3, Receipt, Utensils, Landmark, ChefHat, Truck, Network, TrendingUp as TrendingUpIcon, Building2, Target, Bell, Timer, TrafficCone, Boxes, Download, Briefcase, Cpu } from 'lucide-react' +import { LayoutDashboard, Store, ClipboardList, TrendingUp, Settings, LogOut, Menu, X, Package, DollarSign, ShoppingBag, Users, AlertTriangle, Clock, Database, MapPin, PieChart, Wallet, CalendarClock, Activity, Crown, BarChart3, Receipt, Utensils, Landmark, ChefHat, Truck, Network, TrendingUp as TrendingUpIcon, Building2, Target, Bell, Timer, TrafficCone, Boxes, Download, Briefcase, Cpu, Tag } from 'lucide-react' import { cn } from '@/lib/utils' import { StatusBanner } from '@/components/StatusBanner' @@ -69,6 +69,7 @@ const menuGroups: MenuGroup[] = [ items: [ { path: '/sku', label: '商品SKU', icon: Package, roles: ['hq', 'dept'] }, { path: '/menu-engineering', label: '菜单工程', icon: Package, roles: ['hq', 'dept'] }, + { path: '/promotion', label: '促销增量', icon: Tag, roles: ['hq', 'dept'] }, { path: '/time', label: '时间分析', icon: Clock, roles: ['hq', 'dept'] }, { path: '/smart-scheduling', label: '智能排班', icon: CalendarClock, roles: ['hq', 'dept', 'regional', 'store'] }, { path: '/employee-performance', label: '员工绩效', icon: CalendarClock, roles: ['hq', 'dept'] }, diff --git a/client/src/pages/BossPage.tsx b/client/src/pages/BossPage.tsx index d0c4586..c3994fc 100644 --- a/client/src/pages/BossPage.tsx +++ b/client/src/pages/BossPage.tsx @@ -73,42 +73,52 @@ export function BossPage() { const { data: overview, isLoading: odLoading } = useQuery({ queryKey: ['overview', month], queryFn: () => api.get('/overview', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: daily, isLoading: dailyLoading } = useQuery({ queryKey: ['overview/daily', month], queryFn: () => api.get('/overview/daily', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: expenseData, isLoading: exLoading } = useQuery({ queryKey: ['store-expense/overview', month], queryFn: () => api.get('/store-expense/overview', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: waterfallData, isLoading: wfLoading } = useQuery({ queryKey: ['overview/profit-waterfall', month], queryFn: () => api.get('/overview/profit-waterfall', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: riskData, isLoading: riskLoading } = useQuery({ queryKey: ['stores/risk', month], queryFn: () => api.get('/stores/risk', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: priorityData, isLoading: priorityLoading } = useQuery({ queryKey: ['stores/priority', month], queryFn: () => api.get('/stores/priority', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: costOverview, isLoading: costLoading } = useQuery({ queryKey: ['cost-analysis/store-overview', month], queryFn: () => api.get('/cost-analysis/store-overview', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: expenseStructure, isLoading: structLoading } = useQuery({ queryKey: ['store-expense/expense-structure', month], queryFn: () => api.get('/store-expense/expense-structure', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: profitRankingData } = useQuery({ queryKey: ['overview/store-profit-ranking', month], queryFn: () => api.get('/overview/store-profit-ranking', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const { data: profitOppData } = useQuery({ queryKey: ['overview/profit-opportunity', month], queryFn: () => api.get('/overview/profit-opportunity', { params: { month } }), + staleTime: 5 * 60 * 1000, }) const pageLoading = odLoading || dailyLoading || exLoading || wfLoading || riskLoading || priorityLoading @@ -123,7 +133,7 @@ export function BossPage() { const structRows = (expenseStructure as any)?.data || [] const profitRanking = (profitRankingData as any)?.data || [] const profitOpp = (profitOppData as any)?.data?.items || [] - const totalOpportunity = profitOpp.reduce((s: number, o: any) => s + Number(o.opportunity || 0), 0) + const totalOpportunity = profitOpp.reduce((s: number, o: any) => s + Math.max(Number(o.opportunity || 0), 0), 0) // 风险分布 const riskSummary = riskRows.reduce((acc: any, r: any) => { @@ -235,7 +245,7 @@ export function BossPage() { {/* ① 核心经营指标 */}
- + 0 ? '↑' : '↓'} ${Math.abs(trendReceived)}%`} /> diff --git a/client/src/pages/EnterprisePage.tsx b/client/src/pages/EnterprisePage.tsx index 0363824..31b67e6 100644 --- a/client/src/pages/EnterprisePage.tsx +++ b/client/src/pages/EnterprisePage.tsx @@ -87,6 +87,12 @@ export function EnterprisePage() { enabled: tab === 'audit', }) + const { data: benchmarkData, isLoading: benchmarkLoading } = useQuery({ + queryKey: ['enterprise/supplier-benchmark'], + queryFn: () => api.get('/enterprise/supplier-benchmark'), + enabled: tab === 'benchmark', + }) + const approveMutation = useMutation({ mutationFn: ({ id, result, comment }: { id: number; result: string; comment?: string }) => api.post(`/enterprise/approvals/${id}/approve`, { result, comment }), @@ -98,7 +104,7 @@ export function EnterprisePage() { onSuccess: () => queryClient.invalidateQueries({ queryKey: ['enterprise/notifications'] }), }) - if ((tab === 'supplier' && supplierLoading) || (tab === 'approval' && approvalLoading) || (tab === 'notification' && notifLoading) || (tab === 'hr' && talentLoading) || (tab === 'lms' && courseLoading) || (tab === 'marketing' && campaignLoading) || (tab === 'finance' && budgetLoading) || (tab === 'loop' && loopLoading) || (tab === 'audit' && auditLoading)) { + if ((tab === 'supplier' && supplierLoading) || (tab === 'approval' && approvalLoading) || (tab === 'notification' && notifLoading) || (tab === 'hr' && talentLoading) || (tab === 'lms' && courseLoading) || (tab === 'marketing' && campaignLoading) || (tab === 'finance' && budgetLoading) || (tab === 'loop' && loopLoading) || (tab === 'audit' && auditLoading) || (tab === 'benchmark' && benchmarkLoading)) { return } @@ -114,6 +120,9 @@ export function EnterprisePage() { const budgets = (budgetData as any)?.data || [] const loops = (loopData as any)?.data || [] const auditLogs = (auditData as any)?.data || [] + const benchmark = (benchmarkData as any)?.data || {} + const benchmarkSummary = benchmark.summary || {} + const benchmarks = benchmark.benchmarks || [] const gradeDist = suppliers.reduce((acc: Record, r: any) => { acc[r.grade] = (acc[r.grade] || 0) + 1 @@ -138,6 +147,7 @@ export function EnterprisePage() { )} + {tab === 'benchmark' && ( + <> +
+ + + + +
+ + + formatNumber(r.supplier_count) }, + { key: 'min_price', label: '最低价', align: 'right', render: (r) => {formatCurrency(r.min_price)} }, + { key: 'max_price', label: '最高价', align: 'right', render: (r) => {formatCurrency(r.max_price)} }, + { key: 'avg_price', label: '均价', align: 'right', render: (r) => formatCurrency(r.avg_price) }, + { key: 'price_variance_pct', label: '价差%', align: 'right', render: (r) => { + const v = Number(r.price_variance_pct || 0) + return 20 ? 'text-red-600 font-bold' : v > 10 ? 'text-yellow-600' : 'text-green-600'}>{v.toFixed(1)}% + }}, + { key: 'best_supplier_name', label: '最优供应商' }, + { key: 'best_price', label: '最优价', align: 'right', render: (r) => {formatCurrency(r.best_price)} }, + { key: 'potential_savings_per_unit', label: '单件节约', align: 'right', render: (r) => formatCurrency(r.potential_savings_per_unit) }, + { key: 'benchmark_status', label: '状态', align: 'center', render: (r) => { + const colors: Record = { '价格差异大': 'bg-red-500 text-white', '有优化空间': 'bg-yellow-500 text-white', '价格稳定': 'bg-green-500 text-white' } + return {r.benchmark_status} + }}, + ]} + /> + + + )} + {tab === 'approval' && ( <>
diff --git a/client/src/pages/InventoryTurnoverPage.tsx b/client/src/pages/InventoryTurnoverPage.tsx index e47567a..b8b3476 100644 --- a/client/src/pages/InventoryTurnoverPage.tsx +++ b/client/src/pages/InventoryTurnoverPage.tsx @@ -5,20 +5,31 @@ import { FilterableTable } from '@/components/FilterableTable' import { LoadingSpinner } from '@/components/LoadingSpinner' import { CollapsibleSection } from '@/components/CollapsibleSection' import { MetricCard } from '@/components/MetricCard' -import { formatCurrency, formatNumber } from '@/lib/utils' +import { Tabs } from '@/components/Tabs' +import { formatCurrency, formatNumber, formatPercent } from '@/lib/utils' import { MonthPicker } from '@/components/MonthPicker' -import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts' +import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer, PieChart, Pie, Cell } from 'recharts' + +const URGENCY_COLORS: Record = { '紧急': '#ef4444', '预警': '#eab308', '关注': '#3b82f6', '正常': '#22c55e' } export function InventoryTurnoverPage() { const [month, setMonth] = useState('2026-04') + const [tab, setTab] = useState('turnover') const { data, isLoading } = useQuery({ queryKey: ['analytics-enhanced/inventory/turnover', month], queryFn: () => api.get('/analytics-enhanced/inventory/turnover', { params: { month } }), + enabled: tab === 'turnover', }) - if (isLoading) { - return + const { data: expiryData, isLoading: expiryLoading } = useQuery({ + queryKey: ['analytics-enhanced/inventory/near-expiry', month], + queryFn: () => api.get('/analytics-enhanced/inventory/near-expiry', { params: { month } }), + enabled: tab === 'expiry', + }) + + if ((tab === 'turnover' && isLoading) || (tab === 'expiry' && expiryLoading)) { + return } const turnover = (data as any)?.data?.turnover || [] @@ -43,16 +54,120 @@ export function InventoryTurnoverPage() { 损耗金额: Number(r.waste_value || 0), })) + const expiry = (expiryData as any)?.data || {} + const nearExpiry = expiry.near_expiry || [] + const storeRisk = expiry.store_risk || [] + const expirySummary = expiry.summary || {} + + const urgencyPieData = [ + { name: '紧急', value: expirySummary.urgent || 0 }, + { name: '预警', value: expirySummary.warning || 0 }, + { name: '关注', value: expirySummary.watch || 0 }, + ].filter(d => d.value > 0) + return (

库存周转与损耗

-

周转天数 · 损耗TOP · 门店对比 · {month}

+

周转天数 · 损耗TOP · 临期预警 · {month}

+ + + {tab === 'expiry' && ( + <> +
+ + + + +
+ + {urgencyPieData.length > 0 && ( + + + + {`${name}: ${value}`}}> + {urgencyPieData.map((e, i) => )} + + [formatNumber(v), '商品数']} /> + + + + + )} + + + { + const v = Number(r.urgent_items || 0) + return 0 ? 'text-red-600 font-bold' : ''}>{formatNumber(v)} + }}, + { key: 'warning_items', label: '预警(≤7天)', align: 'right', render: (r) => { + const v = Number(r.warning_items || 0) + return 0 ? 'text-yellow-600 font-medium' : ''}>{formatNumber(v)} + }}, + { key: 'at_risk_value', label: '风险金额', align: 'right', render: (r) => {formatCurrency(r.at_risk_value)} }, + { key: 'total_waste', label: '当月损耗', align: 'right', render: (r) => formatCurrency(r.total_waste) }, + ]} + /> + + + + formatNumber(r.stock_qty) }, + { key: 'stock_value', label: '库存金额', align: 'right', render: (r) => formatCurrency(r.stock_value) }, + { key: 'estimated_days_to_consume', label: '预计天数', align: 'right', render: (r) => { + const v = Number(r.estimated_days_to_consume || 0) + return v ? {v.toFixed(1)}天 : '-' + }}, + { key: 'urgency_level', label: '紧急度', align: 'center', render: (r) => { + const colors: Record = { '紧急': 'bg-red-500 text-white', '预警': 'bg-yellow-500 text-white', '关注': 'bg-blue-500 text-white', '正常': 'bg-green-500 text-white' } + return {r.urgency_level} + }}, + { key: 'suggested_action', label: '建议措施' }, + ]} + /> + + + )} + + {tab === 'turnover' && ( + <> {/* 概览指标 */}
@@ -154,6 +269,8 @@ export function InventoryTurnoverPage() { ]} /> + + )}
) } diff --git a/client/src/pages/LoginPage.tsx b/client/src/pages/LoginPage.tsx index bd0dcf6..b3feb82 100644 --- a/client/src/pages/LoginPage.tsx +++ b/client/src/pages/LoginPage.tsx @@ -8,8 +8,8 @@ interface LoginPageProps { export function LoginPage({ onLogin }: LoginPageProps) { const navigate = useNavigate() - const [username, setUsername] = useState('') - const [password, setPassword] = useState('') + const [username, setUsername] = useState('平台管理员') + const [password, setPassword] = useState('123') const [error, setError] = useState('') const handleLogin = async () => { diff --git a/client/src/pages/PromotionPage.tsx b/client/src/pages/PromotionPage.tsx new file mode 100644 index 0000000..56ab465 --- /dev/null +++ b/client/src/pages/PromotionPage.tsx @@ -0,0 +1,199 @@ +import { useQuery } from '@tanstack/react-query' +import { useState } from 'react' +import api from '@/lib/api' +import { FilterableTable } from '@/components/FilterableTable' +import { LoadingSpinner } from '@/components/LoadingSpinner' +import { CollapsibleSection } from '@/components/CollapsibleSection' +import { MetricCard } from '@/components/MetricCard' +import { formatCurrency, formatNumber, formatPercent } from '@/lib/utils' +import { MonthPicker } from '@/components/MonthPicker' +import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer, LineChart, Line } from 'recharts' + +export function PromotionPage() { + const [month, setMonth] = useState('2026-04') + + const { data: overviewData, isLoading: overviewLoading } = useQuery({ + queryKey: ['promotion/overview', month], + queryFn: () => api.get('/promotion/overview', { params: { month } }), + }) + + const { data: planData, isLoading: planLoading } = useQuery({ + queryKey: ['promotion/by-plan', month], + queryFn: () => api.get('/promotion/by-plan', { params: { month } }), + }) + + const { data: storeData, isLoading: storeLoading } = useQuery({ + queryKey: ['promotion/by-store', month], + queryFn: () => api.get('/promotion/by-store', { params: { month } }), + }) + + const { data: trendData, isLoading: trendLoading } = useQuery({ + queryKey: ['promotion/daily-trend', month], + queryFn: () => api.get('/promotion/daily-trend', { params: { month } }), + }) + + const pageLoading = overviewLoading || planLoading || storeLoading || trendLoading + + if (pageLoading) { + return + } + + const overview = (overviewData as any)?.data || {} + const plans = (planData as any)?.data || [] + const stores = (storeData as any)?.data || [] + const trends = (trendData as any)?.data || [] + + const trendChartData = trends.map((t: any) => ({ + date: t.date.substring(8, 10), + 促销客单: Math.round(Number(t.promo_avg_bill) * 100) / 100, + 非促销客单: Math.round(Number(t.baseline_avg_bill) * 100) / 100, + 增量: Math.round(Number(t.uplift) * 100) / 100, + })) + + const planChartData = plans.slice(0, 10).map((p: any) => ({ + name: p.marketing_plan?.length > 8 ? p.marketing_plan.substring(0, 8) + '...' : p.marketing_plan, + 增量收入: Math.round(Number(p.incremental_revenue || 0)), + 促销成本: Math.round(Number(p.promotion_cost || 0)), + 净增量利润: Math.round(Number(p.net_incremental_profit || 0)), + })) + + return ( +
+
+
+

促销增量利润分析

+

促销vs非促销对比 · 增量收入 · ROI · {month}

+
+ +
+ + {/* 概览指标 */} + +
+ + + 0 ? 'good' : 'bad'} /> + 1 ? 'good' : 'warn'} /> +
+
+ 0 ? 'good' : 'bad'} /> + + 0 ? 'good' : 'bad'} /> + +
+
+ + {/* 图表 */} +
+ + + + + + v >= 100 ? `${v}` : v} /> + formatCurrency(v)} /> + + + + + + + + + + + + + + v >= 10000 ? `${(v / 10000).toFixed(0)}万` : v} /> + formatCurrency(v)} /> + + + + + + + +
+ + {/* 按方案明细 */} + + formatNumber(r.bill_count) }, + { key: 'store_count', label: '覆盖门店', align: 'right', render: (r) => formatNumber(r.store_count) }, + { key: 'avg_bill_value', label: '客单价', align: 'right', render: (r) => formatCurrency(r.avg_bill_value) }, + { key: 'bill_uplift_pct', label: '客单提升', align: 'right', render: (r) => { + const v = Number(r.bill_uplift_pct || 0) + return 0 ? 'text-green-600' : 'text-red-600'}>{v > 0 ? '+' : ''}{v.toFixed(1)}% + }}, + { key: 'total_revenue', label: '促销收入', align: 'right', render: (r) => formatCurrency(r.total_revenue) }, + { key: 'total_discount', label: '优惠总额', align: 'right', render: (r) => {formatCurrency(r.total_discount)} }, + { key: 'incremental_revenue', label: '增量收入', align: 'right', render: (r) => formatCurrency(r.incremental_revenue) }, + { key: 'net_incremental_profit', label: '净增量利润', align: 'right', render: (r) => { + const v = Number(r.net_incremental_profit || 0) + return = 0 ? 'text-green-600 font-medium' : 'text-red-600 font-medium'}>{formatCurrency(v)} + }}, + { key: 'promo_roi', label: 'ROI', align: 'right', render: (r) => { + const v = Number(r.promo_roi || 0) + return 1 ? 'text-green-600 font-bold' : v > 0 ? 'text-yellow-600' : 'text-red-600'}>{v.toFixed(2)}x + }}, + { key: 'member_share_pct', label: '会员占比', align: 'right', render: (r) => `${Number(r.member_share_pct || 0).toFixed(1)}%` }, + ]} + /> + + + {/* 按门店明细 */} + + formatNumber(r.promo_bills) }, + { key: 'promo_avg_bill', label: '促销客单', align: 'right', render: (r) => formatCurrency(r.promo_avg_bill) }, + { key: 'baseline_avg_bill', label: '基准客单', align: 'right', render: (r) => formatCurrency(r.baseline_avg_bill) }, + { key: 'uplift_pct', label: '客单提升', align: 'right', render: (r) => { + const v = Number(r.uplift_pct || 0) + return v ? 0 ? 'text-green-600' : 'text-red-600'}>{v > 0 ? '+' : ''}{v.toFixed(1)}% : '-' + }}, + { key: 'incremental_revenue', label: '增量收入', align: 'right', render: (r) => formatCurrency(r.incremental_revenue) }, + { key: 'promotion_cost', label: '促销成本', align: 'right', render: (r) => {formatCurrency(r.promotion_cost)} }, + { key: 'net_incremental_profit', label: '净增量利润', align: 'right', render: (r) => { + const v = Number(r.net_incremental_profit || 0) + return = 0 ? 'text-green-600 font-medium' : 'text-red-600 font-medium'}>{formatCurrency(v)} + }}, + { key: 'promo_roi', label: 'ROI', align: 'right', render: (r) => { + const v = Number(r.promo_roi || 0) + return v ? 1 ? 'text-green-600 font-bold' : v > 0 ? 'text-yellow-600' : 'text-red-600'}>{v.toFixed(2)}x : '-' + }}, + ]} + /> + +
+ ) +} diff --git a/client/src/pages/RiskPage.tsx b/client/src/pages/RiskPage.tsx index 2b6488e..6fa1d1a 100644 --- a/client/src/pages/RiskPage.tsx +++ b/client/src/pages/RiskPage.tsx @@ -21,13 +21,17 @@ function SectionLoading({ text }: { text: string }) { } export function RiskPage() { - const [riskTab, setRiskTab] = useState<'anomaly' | 'zero' | 'cashier'>('anomaly') + const [riskTab, setRiskTab] = useState<'anomaly' | 'full_discount' | 'empty_bill' | 'cashier'>('anomaly') const [month, setMonth] = useState('2026-04') const [anomalyPage, setAnomalyPage] = useState(1) const [anomalyStore, setAnomalyStore] = useState('') const [anomalyReason, setAnomalyReason] = useState('') const [anomalyCashier, setAnomalyCashier] = useState('') const [debouncedCashier, setDebouncedCashier] = useState('') + const [anomalySort, setAnomalySort] = useState('consumption') + const [anomalyOrder, setAnomalyOrder] = useState<'asc' | 'desc'>('desc') + const [zeroPage, setZeroPage] = useState(1) + const [zeroType, setZeroType] = useState<'全额优惠' | '无消费无优惠'>('全额优惠') useEffect(() => { const t = setTimeout(() => setDebouncedCashier(anomalyCashier), 400) @@ -35,15 +39,14 @@ export function RiskPage() { }, [anomalyCashier]) const { data: anomalyData, isLoading: anomalyLoading, isFetching: anomalyFetching } = useQuery({ - queryKey: ['risk/anomaly', month, anomalyPage, anomalyStore, anomalyReason, debouncedCashier], - queryFn: () => api.get('/risk/anomaly', { params: { month, page: anomalyPage, page_size: ANOMALY_PAGE_SIZE, ...(anomalyStore ? { store: anomalyStore } : {}), ...(anomalyReason ? { reason: anomalyReason } : {}), ...(debouncedCashier ? { cashier: debouncedCashier } : {}) } }), + queryKey: ['risk/anomaly', month, anomalyPage, anomalyStore, anomalyReason, debouncedCashier, anomalySort, anomalyOrder], + queryFn: () => api.get('/risk/anomaly', { params: { month, page: anomalyPage, page_size: ANOMALY_PAGE_SIZE, sort: anomalySort, order: anomalyOrder, ...(anomalyStore ? { store: anomalyStore } : {}), ...(anomalyReason ? { reason: anomalyReason } : {}), ...(debouncedCashier ? { cashier: debouncedCashier } : {}) } }), placeholderData: keepPreviousData, }) const { data: zeroData, isLoading: zeroLoading, isFetching: zeroFetching } = useQuery({ - queryKey: ['risk/zero-received', month], - queryFn: () => api.get('/risk/zero-received', { params: { month } }), - staleTime: 5 * 60 * 1000, + queryKey: ['risk/zero-received', month, zeroType, zeroPage], + queryFn: () => api.get('/risk/zero-received', { params: { month, type: zeroType, page: zeroPage, page_size: ANOMALY_PAGE_SIZE } }), placeholderData: keepPreviousData, }) @@ -57,13 +60,14 @@ export function RiskPage() { const anomalyRows = (anomalyData as any)?.data || [] const anomalyMeta = (anomalyData as any)?.meta || { total: 0 } const zeroRows = (zeroData as any)?.data || [] + const zeroMeta = (zeroData as any)?.meta || { total: 0, full_discount: 0, empty_bill: 0 } const cashierRows = (cashierData as any)?.data || [] const storeNames: string[] = Array.from(new Set(cashierRows.map((r: any) => r.store_name as string).filter(Boolean))).sort() const initialLoading = !anomalyData && !zeroData && !cashierData const totalAnomaly = anomalyMeta.total || anomalyRows.length - const totalZero = zeroRows.length + const totalZero = zeroMeta.total || zeroRows.length const highRiskCashiers = cashierRows.filter((r: any) => Number(r.anomaly_rate_pct || 0) >= 10).length const avgAnomalyRate = cashierRows.length > 0 ? cashierRows.reduce((s: number, r: any) => s + Number(r.anomaly_rate_pct || 0), 0) / cashierRows.length @@ -87,9 +91,10 @@ export function RiskPage() { {/* 概览指标 */} -
+
- + +
@@ -118,8 +123,11 @@ export function RiskPage() { - + + {tab === 'grade' && ( + + )}
+ + + {tab === 'closure' && ( + <> +
+ + + + +
+
+ + +
+ + {closurePieData.length > 0 && ( + + + + {`${name}: ${value}`}}> + {closurePieData.map((e, i) => )} + + [formatNumber(v), '门店数']} /> + + + + + )} + + + { + const colors: Record = { A: 'text-green-600', B: 'text-blue-600', C: 'text-yellow-600', D: 'text-red-600' } + return {r.grade} + }}, + { key: 'monthly_revenue', label: '月收入', align: 'right', render: (r) => formatCurrency(r.monthly_revenue) }, + { key: 'monthly_profit', label: '月利润', align: 'right', render: (r) => { + const v = Number(r.monthly_profit || 0) + return {formatCurrency(v)} + }}, + { key: 'monthly_rent', label: '月租', align: 'right', render: (r) => formatCurrency(r.monthly_rent) }, + { key: 'monthly_wage', label: '月人工', align: 'right', render: (r) => formatCurrency(r.monthly_wage) }, + { key: 'total_closure_cost', label: '关停成本', align: 'right', render: (r) => {formatCurrency(r.total_closure_cost)} }, + { key: 'projected_12m_loss', label: '12月亏损', align: 'right', render: (r) => { + const v = Number(r.projected_12m_loss || 0) + return v ? {formatCurrency(v)} : '-' + }}, + { key: 'monthly_savings_if_closed', label: '月节省', align: 'right', render: (r) => { + const v = Number(r.monthly_savings_if_closed || 0) + return v ? {formatCurrency(v)} : '-' + }}, + { key: 'payback_months', label: '回本(月)', align: 'right', render: (r) => r.payback_months ? `${Number(r.payback_months).toFixed(1)}月` : '-' }, + { key: 'recommendation', label: '建议', align: 'center', render: (r) => { + const colors: Record = { '建议关停': 'bg-red-500 text-white', '整改观察3个月': 'bg-yellow-500 text-white', '重点整改': 'bg-blue-500 text-white', '持续经营': 'bg-green-500 text-white' } + return {r.recommendation} + }}, + { key: 'reason', label: '原因' }, + ]} + /> + + + )} + + {tab === 'grade' && ( + <> +
= 75 ? 'good' : avgScore >= 60 ? 'warn' : 'bad'} /> @@ -152,6 +263,8 @@ export function StoreGradePage() { {selectedStore && setSelectedStore(null)} />} + + )}
) } diff --git a/docs/玄谋智脑_连锁企业e1.0.pptx b/docs/玄谋智脑_连锁企业e1.0.pptx new file mode 100644 index 0000000..3f9fdaf Binary files /dev/null and b/docs/玄谋智脑_连锁企业e1.0.pptx differ diff --git a/server/src/index.ts b/server/src/index.ts index 13a0865..46a3783 100644 --- a/server/src/index.ts +++ b/server/src/index.ts @@ -21,6 +21,7 @@ import storeGradeRoutes from './routes/store-grade.js' import productRoutes from './routes/product.js' import enterpriseRoutes from './routes/enterprise.js' import intelligenceRoutes from './routes/intelligence.js' +import promotionRoutes from './routes/promotion.js' import { startScheduler } from './scheduler/index.js' import { registerAllTaskHandlers } from './scheduler/task-handlers.js' @@ -77,6 +78,7 @@ app.use('/api/store-grade', storeGradeRoutes) app.use('/api/product', productRoutes) app.use('/api/enterprise', enterpriseRoutes) app.use('/api/intelligence', intelligenceRoutes) +app.use('/api/promotion', promotionRoutes) app.use(notFoundHandler) app.use(errorHandler) diff --git a/server/src/routes/analytics-enhanced.ts b/server/src/routes/analytics-enhanced.ts index b6e86cd..a1f2b33 100644 --- a/server/src/routes/analytics-enhanced.ts +++ b/server/src/routes/analytics-enhanced.ts @@ -599,6 +599,127 @@ router.get('/inventory/turnover', async (req: AuthRequest, res) => { } }) +// ============================================================ +// 9.5 临期商品预警与优化 +// ============================================================ +router.get('/inventory/near-expiry', async (req: AuthRequest, res) => { + try { + const month = parseMonth(req) + const storeCode = (req.query.store_code as string) || '' + + let storeFilter = '' + const params: any[] = [month] + if (storeCode) { + params.push(storeCode) + storeFilter = `AND fis.store_code = $${params.length}` + } + + // 临期商品明细(按门店+物料) + const nearExpiryResult = await query(` + SELECT + fis.store_code, + ds.store_name, + dm.material_name, + dm.material_code, + dm.category, + round(fis.ending_quantity::numeric, 2) as stock_qty, + round(fis.ending_amount::numeric, 2) as stock_value, + round(fis.consumption_amount::numeric, 2) as monthly_consumption, + round(fis.waste_amount::numeric, 2) as waste_value, + CASE + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + THEN round((fis.ending_amount / fis.consumption_amount * 30)::numeric, 1) + ELSE NULL + END as estimated_days_to_consume, + CASE + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 3 THEN '紧急' + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 7 THEN '预警' + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 14 THEN '关注' + ELSE '正常' + END as urgency_level, + CASE + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 3 THEN '立即促销出清或报损' + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 7 THEN '加入临期套餐或打折' + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 14 THEN '减少采购量,优先消耗' + ELSE '正常周转' + END as suggested_action + FROM analytics.fact_inventory_snapshot fis + LEFT JOIN analytics.dim_store ds ON fis.store_code = ds.store_code + LEFT JOIN analytics.dim_material dm ON fis.material_code = dm.material_code + WHERE fis.snapshot_date >= $1 AND fis.snapshot_date < $1::date + interval '1 month' + AND fis.ending_amount > 0 + ${storeFilter} + ORDER BY + CASE + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 3 THEN 1 + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 7 THEN 2 + WHEN fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 14 THEN 3 + ELSE 4 + END, + fis.ending_amount DESC + LIMIT 200 + `, params) + + // 临期汇总 + const summary = { + total_items: nearExpiryResult.rows.length, + urgent: nearExpiryResult.rows.filter((r: any) => r.urgency_level === '紧急').length, + warning: nearExpiryResult.rows.filter((r: any) => r.urgency_level === '预警').length, + watch: nearExpiryResult.rows.filter((r: any) => r.urgency_level === '关注').length, + urgent_value: nearExpiryResult.rows + .filter((r: any) => r.urgency_level === '紧急') + .reduce((s: number, r: any) => s + Number(r.stock_value || 0), 0), + warning_value: nearExpiryResult.rows + .filter((r: any) => r.urgency_level === '预警') + .reduce((s: number, r: any) => s + Number(r.stock_value || 0), 0), + potential_loss: nearExpiryResult.rows + .filter((r: any) => r.urgency_level === '紧急' || r.urgency_level === '预警') + .reduce((s: number, r: any) => s + Number(r.stock_value || 0) * 0.5, 0), + } + + // 按门店汇总临期风险 + const storeRisk = await query(` + SELECT + fis.store_code, + ds.store_name, + count(*) FILTER (WHERE fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 3) as urgent_items, + count(*) FILTER (WHERE fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 7 + AND (fis.ending_amount / fis.consumption_amount * 30) > 3) as warning_items, + round(sum(fis.ending_amount) FILTER (WHERE fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 7)::numeric, 2) as at_risk_value, + round(sum(fis.waste_amount)::numeric, 2) as total_waste + FROM analytics.fact_inventory_snapshot fis + LEFT JOIN analytics.dim_store ds ON fis.store_code = ds.store_code + WHERE fis.snapshot_date >= $1 AND fis.snapshot_date < $1::date + interval '1 month' + AND fis.ending_amount > 0 + ${storeFilter} + GROUP BY fis.store_code, ds.store_name + HAVING count(*) FILTER (WHERE fis.consumption_amount > 0 AND fis.ending_amount > 0 + AND (fis.ending_amount / fis.consumption_amount * 30) <= 7) > 0 + ORDER BY at_risk_value DESC + `, params) + + sendSuccess(res, { + summary, + near_expiry: nearExpiryResult.rows, + store_risk: storeRisk.rows, + }) + } catch (err: any) { + sendError(res, err.message) + } +}) + // ============================================================ // 10. 营销ROI基础版 // ============================================================ diff --git a/server/src/routes/data.ts b/server/src/routes/data.ts index 12abdb1..cb779cf 100644 --- a/server/src/routes/data.ts +++ b/server/src/routes/data.ts @@ -409,6 +409,10 @@ router.get('/risk/anomaly', async (req: AuthRequest, res) => { const storeName = req.query.store as string const reason = req.query.reason as string const cashier = req.query.cashier as string + const sort = (req.query.sort as string) || 'closed_at' + const order = (req.query.order as string) === 'asc' ? 'ASC' : 'DESC' + const allowedSort = ['consumption', 'discount_total', 'received_total', 'closed_at'] + const sortCol = allowedSort.includes(sort) ? sort : 'closed_at' const conditions: string[] = [`month = to_char($1::date, 'YYYY-MM')`] const params: any[] = [month] @@ -435,7 +439,7 @@ router.get('/risk/anomaly', async (req: AuthRequest, res) => { SELECT store_name, bill_no, meal_period, consumption, discount_total, received_total, cashier, closed_at, anomaly_reason FROM mv_risk_anomaly WHERE ${whereClause} - ORDER BY closed_at DESC + ORDER BY ${sortCol} ${order} LIMIT $${paramIdx} OFFSET $${paramIdx + 1} `, [...params, pageSize, offset]) sendSuccess(res, result.rows, { total: parseInt(countResult.rows[0].total), page, page_size: pageSize, sum_consumption: countResult.rows[0].sum_consumption, sum_discount: countResult.rows[0].sum_discount, sum_received: countResult.rows[0].sum_received }) @@ -446,22 +450,43 @@ router.get('/risk/anomaly', async (req: AuthRequest, res) => { router.get('/risk/zero-received', async (req: AuthRequest, res) => { try { + const { page, pageSize, offset } = parsePagination(req) const month = parseMonth(req) const storeName = req.query.store as string - let sql = ` + const type = req.query.type as string + const conditions: string[] = [`month = to_char($1::date, 'YYYY-MM')`] + const params: any[] = [month] + let paramIdx = 2 + if (storeName) { + conditions.push(`store_name = $${paramIdx}`) + params.push(storeName) + paramIdx++ + } + if (type) { + conditions.push(`zero_received_type = $${paramIdx}`) + params.push(type) + paramIdx++ + } + const whereClause = conditions.join(' AND ') + + const baseConditions = [`month = to_char($1::date, 'YYYY-MM')`] + const baseParams: any[] = [month] + if (storeName) { + baseConditions.push(`store_name = $2`) + baseParams.push(storeName) + } + const baseWhere = baseConditions.join(' AND ') + const countResult = await query(`SELECT count(*) FILTER (WHERE zero_received_type = '全额优惠') AS full_discount, count(*) FILTER (WHERE zero_received_type = '无消费无优惠') AS empty_bill FROM mv_risk_zero WHERE ${baseWhere}`, baseParams) + const totalResult = await query(`SELECT count(*) AS total FROM mv_risk_zero WHERE ${whereClause}`, params) + const result = await query(` SELECT store_name, bill_no, meal_period, consumption, discount_total, 0 AS received_total, cashier, closed_at, zero_received_type FROM mv_risk_zero - WHERE month = to_char($1::date, 'YYYY-MM') - ` - const params: any[] = [month] - if (storeName) { - sql += ` AND store_name = $2` - params.push(storeName) - } - sql += ` ORDER BY consumption DESC LIMIT 200` - const result = await query(sql, params) - sendSuccess(res, result.rows) + WHERE ${whereClause} + ORDER BY consumption DESC + LIMIT $${paramIdx} OFFSET $${paramIdx + 1} + `, [...params, pageSize, offset]) + sendSuccess(res, result.rows, { total: parseInt(totalResult.rows[0].total), full_discount: parseInt(countResult.rows[0].full_discount), empty_bill: parseInt(countResult.rows[0].empty_bill), page, page_size: pageSize }) } catch (err: any) { sendError(res, err.message) } @@ -1007,8 +1032,9 @@ router.get('/overview/profit-waterfall', async (req: AuthRequest, res) => { try { const month = parseMonth(req) const result = await query(` - WITH bill_discount AS ( + WITH bill_consumption AS ( SELECT store_code, + round(sum(consumption)::numeric, 2) AS consumption, round(sum(discount_total)::numeric, 2) AS discount FROM analytics.bill_fact WHERE closed_at >= $1::date AND closed_at < ($1::date + interval '1 month') @@ -1017,23 +1043,23 @@ router.get('/overview/profit-waterfall', async (req: AuthRequest, res) => { full_scope AS ( SELECT r.received, - e.consumption, - COALESCE(bd.discount, e.consumption - e.received) AS discount, - e.actual_food_cost, - e.wage_expense, - e.rent_expense, - e.utility_expense, - e.dorm_expense, - e.delivery_commission_expense, - e.card_fee_expense, - e.repair_clean_expense, - e.operating_expense, + COALESCE(e.consumption, bc.consumption) AS consumption, + COALESCE(bc.discount, e.consumption - e.received, 0) AS discount, + COALESCE(e.actual_food_cost, 0) AS actual_food_cost, + COALESCE(e.wage_expense, 0) AS wage_expense, + COALESCE(e.rent_expense, 0) AS rent_expense, + COALESCE(e.utility_expense, 0) AS utility_expense, + COALESCE(e.dorm_expense, 0) AS dorm_expense, + COALESCE(e.delivery_commission_expense, 0) AS delivery_commission_expense, + COALESCE(e.card_fee_expense, 0) AS card_fee_expense, + COALESCE(e.repair_clean_expense, 0) AS repair_clean_expense, + COALESCE(e.operating_expense, 0) AS operating_expense, CASE WHEN e.operating_expense IS NOT NULL THEN true ELSE false END AS has_expense FROM analytics.mv_store_risk_rating_monthly r LEFT JOIN analytics.mv_store_operating_expense_monthly e ON r.store_code = e.sales_store_code AND e.report_month = $1::date - LEFT JOIN bill_discount bd ON bd.store_code = r.store_code - WHERE r.month_start = $1 AND r.received IS NOT NULL AND e.operating_expense IS NOT NULL + LEFT JOIN bill_consumption bc ON bc.store_code = r.store_code + WHERE r.month_start = $1 AND r.received IS NOT NULL ) SELECT round(sum(consumption)::numeric, 2) AS consumption, @@ -1048,7 +1074,8 @@ router.get('/overview/profit-waterfall', async (req: AuthRequest, res) => { round(sum(card_fee_expense + repair_clean_expense)::numeric, 2) AS other_expense, round(sum(operating_expense)::numeric, 2) AS total_expense, round(sum(received) - sum(actual_food_cost) - sum(operating_expense), 2) AS store_contribution, - count(*) AS covered_stores + count(*) AS covered_stores, + count(*) FILTER (WHERE has_expense) AS stores_with_expense FROM full_scope `, [month]) sendSuccess(res, result.rows[0]) @@ -1204,7 +1231,7 @@ router.get('/overview/profit-opportunity', async (req: AuthRequest, res) => { 'category', '食材成本差异回收', 'baseline', (SELECT round((actual_cost - theoretical_cost)::numeric, 2) FROM cost_diff), 'target_pct', 30, - 'opportunity', round((SELECT (actual_cost - theoretical_cost) FROM cost_diff) * 0.30, 2), + 'opportunity', GREATEST(round((SELECT (actual_cost - theoretical_cost) FROM cost_diff) * 0.30, 2), 0), 'confidence', '中高', 'owner', '商品/供应链/门店', 'evidence', '采购价差、用量差、盘点差、报损差', @@ -1551,22 +1578,25 @@ router.get('/bank/report', async (req: AuthRequest, res) => { query(`SELECT bill_count, received, avg_bill_value, discount_rate_pct, theoretical_margin_pct, member_bills, member_share_pct FROM analytics.mv_overview_monthly WHERE month = $1::date`, [month]), query(`SELECT business_date, bill_count, received, avg_bill_value, discount_rate_pct FROM analytics.mv_overview_daily WHERE month = $1::date ORDER BY business_date`, [month]), query(` - WITH bill_discount AS ( + WITH bill_consumption AS ( SELECT store_code, + round(sum(consumption)::numeric, 2) AS consumption, round(sum(discount_total)::numeric, 2) AS discount FROM analytics.bill_fact WHERE closed_at >= $1::date AND closed_at < ($1::date + interval '1 month') GROUP BY store_code ), full_scope AS ( - SELECT r.received, e.consumption, COALESCE(bd.discount, e.consumption - e.received) AS discount, - e.actual_food_cost AS food_cost, e.wage_expense AS wage, e.rent_expense AS rent, - e.utility_expense AS utility, e.dorm_expense AS dorm, e.delivery_commission_expense AS commission, - e.card_fee_expense AS card_fee, e.repair_clean_expense AS repair, e.operating_expense AS operating_expense + SELECT r.received, + COALESCE(e.consumption, bc.consumption) AS consumption, + COALESCE(bc.discount, e.consumption - e.received, 0) AS discount, + COALESCE(e.actual_food_cost, 0) AS food_cost, COALESCE(e.wage_expense, 0) AS wage, COALESCE(e.rent_expense, 0) AS rent, + COALESCE(e.utility_expense, 0) AS utility, COALESCE(e.dorm_expense, 0) AS dorm, COALESCE(e.delivery_commission_expense, 0) AS commission, + COALESCE(e.card_fee_expense, 0) AS card_fee, COALESCE(e.repair_clean_expense, 0) AS repair, COALESCE(e.operating_expense, 0) AS operating_expense FROM analytics.mv_store_risk_rating_monthly r LEFT JOIN analytics.mv_store_operating_expense_monthly e ON r.store_code = e.sales_store_code AND e.report_month = $1::date - LEFT JOIN bill_discount bd ON bd.store_code = r.store_code - WHERE r.received IS NOT NULL AND e.operating_expense IS NOT NULL + LEFT JOIN bill_consumption bc ON bc.store_code = r.store_code + WHERE r.received IS NOT NULL ) SELECT round(sum(consumption)::numeric,2) AS consumption, round(sum(discount)::numeric,2) AS discount, round(sum(received)::numeric,2) AS received, round(sum(food_cost)::numeric,2) AS food_cost, round(sum(wage)::numeric,2) AS wage, diff --git a/server/src/routes/enterprise.ts b/server/src/routes/enterprise.ts index f8381f2..43b593e 100644 --- a/server/src/routes/enterprise.ts +++ b/server/src/routes/enterprise.ts @@ -443,4 +443,125 @@ router.get('/anonymous-ranking', async (req: AuthRequest, res) => { } catch (err: any) { sendError(res, err.message) } }) +// ============================================================ +// 供应商价格对标 (T-206) +// ============================================================ + +// 同SKU跨供应商价格对比 +router.get('/supplier-benchmark', async (req: AuthRequest, res) => { + try { + const result = await query(` + WITH sku_prices AS ( + SELECT + poi.sku_code, + poi.sku_name, + po.supplier_code, + sm.supplier_name, + sm.grade AS supplier_grade, + poi.unit_price, + po.order_date, + po.po_number + FROM analytics.v3_purchase_order_item poi + JOIN analytics.v3_purchase_order po ON poi.po_id = po.id + LEFT JOIN analytics.v3_supplier_master sm ON po.supplier_code = sm.supplier_code + WHERE po.status IN ('delivered', 'settled') + ), + sku_stats AS ( + SELECT + sku_code, + sku_name, + count(DISTINCT supplier_code) AS supplier_count, + round(min(unit_price)::numeric, 2) AS min_price, + round(max(unit_price)::numeric, 2) AS max_price, + round(avg(unit_price)::numeric, 2) AS avg_price, + round((max(unit_price) - min(unit_price))::numeric, 2) AS price_spread, + round(CASE + WHEN avg(unit_price) > 0 + THEN (max(unit_price) - min(unit_price)) / avg(unit_price) * 100 + ELSE 0 + END::numeric, 1) AS price_variance_pct + FROM sku_prices + GROUP BY sku_code, sku_name + HAVING count(DISTINCT supplier_code) >= 2 + ), + best_price AS ( + SELECT DISTINCT ON (sku_code) + sku_code, supplier_code AS best_supplier_code, supplier_name AS best_supplier_name, unit_price AS best_price + FROM sku_prices + ORDER BY sku_code, unit_price ASC + ), + worst_price AS ( + SELECT DISTINCT ON (sku_code) + sku_code, supplier_code AS worst_supplier_code, supplier_name AS worst_supplier_name, unit_price AS worst_price + FROM sku_prices + ORDER BY sku_code, unit_price DESC + ) + SELECT + ss.sku_code, + ss.sku_name, + ss.supplier_count, + ss.min_price, + ss.max_price, + ss.avg_price, + ss.price_spread, + ss.price_variance_pct, + bp.best_supplier_name, + bp.best_price, + wp.worst_supplier_name, + wp.worst_price, + round((ss.max_price - ss.min_price)::numeric, 2) AS potential_savings_per_unit, + round(CASE + WHEN ss.avg_price > 0 + THEN (ss.max_price - ss.min_price) / ss.avg_price * 100 + ELSE 0 + END::numeric, 1) AS savings_pct, + CASE + WHEN ss.price_variance_pct > 20 THEN '价格差异大' + WHEN ss.price_variance_pct > 10 THEN '有优化空间' + ELSE '价格稳定' + END AS benchmark_status + FROM sku_stats ss + LEFT JOIN best_price bp ON ss.sku_code = bp.sku_code + LEFT JOIN worst_price wp ON ss.sku_code = wp.sku_code + ORDER BY ss.price_variance_pct DESC NULLS LAST + `) + + const summary = { + total_skus: result.rows.length, + high_variance: result.rows.filter((r: any) => r.benchmark_status === '价格差异大').length, + optimizable: result.rows.filter((r: any) => r.benchmark_status === '有优化空间').length, + stable: result.rows.filter((r: any) => r.benchmark_status === '价格稳定').length, + total_potential_savings: result.rows.reduce((s: number, r: any) => s + Number(r.potential_savings_per_unit || 0), 0), + } + + sendSuccess(res, { summary, benchmarks: result.rows }) + } catch (err: any) { sendError(res, err.message) } +}) + +// 单SKU供应商价格历史趋势 +router.get('/supplier-benchmark/:skuCode', async (req: AuthRequest, res) => { + try { + const { skuCode } = req.params + const result = await query(` + SELECT + poi.sku_code, + poi.sku_name, + po.supplier_code, + sm.supplier_name, + sm.grade AS supplier_grade, + poi.unit_price, + po.order_date, + po.po_number + FROM analytics.v3_purchase_order_item poi + JOIN analytics.v3_purchase_order po ON poi.po_id = po.id + LEFT JOIN analytics.v3_supplier_master sm ON po.supplier_code = sm.supplier_code + WHERE poi.sku_code = $1 AND po.status IN ('delivered', 'settled') + ORDER BY po.order_date DESC + LIMIT 50 + `, [skuCode]) + + sendSuccess(res, result.rows) + } catch (err: any) { sendError(res, err.message) } +}) + export default router diff --git a/server/src/routes/promotion.ts b/server/src/routes/promotion.ts new file mode 100644 index 0000000..bf89fb4 --- /dev/null +++ b/server/src/routes/promotion.ts @@ -0,0 +1,275 @@ +import { Router } from 'express' +import { query } from '../config/database.js' +import { sendSuccess, sendError, parseMonth, parsePagination } from '../middleware/error.js' +import type { AuthRequest } from '../middleware/auth.js' + +const router = Router() + +// ============================================================ +// 1. 促销增量利润总览 +// ============================================================ +router.get('/overview', async (req: AuthRequest, res) => { + try { + const month = parseMonth(req) + + const result = await query(` + WITH plan_stats AS ( + SELECT + count(*) as bill_count, + round(sum(received_total)::numeric, 2) as total_revenue, + round(sum(discount_total)::numeric, 2) as total_discount, + round(sum(theoretical_profit)::numeric, 2) as total_profit, + round(avg(received_total)::numeric, 2) as avg_bill_value, + round(avg(theoretical_margin) * 100, 2) as avg_margin_pct, + count(DISTINCT member_id) FILTER (WHERE member_id IS NOT NULL AND member_id != '') as member_bills + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + AND marketing_plan IS NOT NULL AND marketing_plan != '' + ), + no_plan_stats AS ( + SELECT + count(*) as bill_count, + round(sum(received_total)::numeric, 2) as total_revenue, + round(sum(discount_total)::numeric, 2) as total_discount, + round(sum(theoretical_profit)::numeric, 2) as total_profit, + round(avg(received_total)::numeric, 2) as avg_bill_value, + round(avg(theoretical_margin) * 100, 2) as avg_margin_pct + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + AND (marketing_plan IS NULL OR marketing_plan = '') + ) + SELECT + ps.bill_count as promo_bills, + ps.total_revenue as promo_revenue, + ps.total_discount as promo_discount, + ps.total_profit as promo_profit, + ps.avg_bill_value as promo_avg_bill, + ps.avg_margin_pct as promo_margin_pct, + ps.member_bills as promo_member_bills, + nps.bill_count as baseline_bills, + nps.total_revenue as baseline_revenue, + nps.total_discount as baseline_discount, + nps.total_profit as baseline_profit, + nps.avg_bill_value as baseline_avg_bill, + nps.avg_margin_pct as baseline_margin_pct, + round(((ps.avg_bill_value - nps.avg_bill_value) / NULLIF(nps.avg_bill_value, 0) * 100)::numeric, 1) as bill_uplift_pct, + round((ps.avg_bill_value - nps.avg_bill_value)::numeric, 2) as bill_uplift_amount, + round(((ps.bill_count::numeric / NULLIF(ps.bill_count + nps.bill_count, 0)) * 100)::numeric, 1) as promo_share_pct, + round((ps.total_profit - ps.total_discount)::numeric, 2) as promo_net_profit, + round((nps.total_profit - nps.total_discount)::numeric, 2) as baseline_net_profit, + round(((ps.total_profit - ps.total_discount) - (nps.total_profit - nps.total_discount))::numeric, 2) as incremental_net_profit, + round(((ps.avg_bill_value - nps.avg_bill_value) * ps.bill_count)::numeric, 2) as incremental_revenue, + round(ps.total_discount::numeric, 2) as promotion_cost, + round(((ps.avg_bill_value - nps.avg_bill_value) * ps.bill_count - ps.total_discount)::numeric, 2) as net_incremental_profit, + round(CASE + WHEN ps.total_discount > 0 + THEN ((ps.avg_bill_value - nps.avg_bill_value) * ps.bill_count - ps.total_discount) / ps.total_discount + ELSE NULL + END::numeric, 2) as promo_roi + FROM plan_stats ps + CROSS JOIN no_plan_stats nps + `, [month]) + + sendSuccess(res, result.rows[0]) + } catch (err: any) { + sendError(res, err.message) + } +}) + +// ============================================================ +// 2. 按促销方案对比 +// ============================================================ +router.get('/by-plan', async (req: AuthRequest, res) => { + try { + const month = parseMonth(req) + + const result = await query(` + WITH plan_stats AS ( + SELECT + marketing_plan, + count(*) as bill_count, + round(sum(received_total)::numeric, 2) as total_revenue, + round(sum(discount_total)::numeric, 2) as total_discount, + round(sum(theoretical_profit)::numeric, 2) as total_profit, + round(avg(received_total)::numeric, 2) as avg_bill_value, + round(avg(theoretical_margin) * 100, 2) as avg_margin_pct, + round(avg(discount_total)::numeric, 2) as avg_discount, + count(DISTINCT member_id) FILTER (WHERE member_id IS NOT NULL AND member_id != '') as member_bills, + count(DISTINCT store_code) as store_count + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + AND marketing_plan IS NOT NULL AND marketing_plan != '' + GROUP BY marketing_plan + ), + no_plan_stats AS ( + SELECT + round(avg(received_total)::numeric, 2) as avg_bill_value, + round(avg(theoretical_margin) * 100, 2) as avg_margin_pct + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + AND (marketing_plan IS NULL OR marketing_plan = '') + ) + SELECT + ps.marketing_plan, + ps.bill_count, + ps.total_revenue, + ps.total_discount, + ps.total_profit, + ps.avg_bill_value, + ps.avg_margin_pct, + ps.avg_discount, + ps.member_bills, + ps.store_count, + round((ps.member_bills::numeric / NULLIF(ps.bill_count, 0) * 100)::numeric, 1) as member_share_pct, + round(((ps.avg_bill_value - nps.avg_bill_value) / NULLIF(nps.avg_bill_value, 0) * 100)::numeric, 1) as bill_uplift_pct, + round((ps.avg_bill_value - nps.avg_bill_value)::numeric, 2) as bill_uplift_amount, + round(((ps.avg_bill_value - nps.avg_bill_value) * ps.bill_count)::numeric, 2) as incremental_revenue, + round(ps.total_discount::numeric, 2) as promotion_cost, + round(((ps.avg_bill_value - nps.avg_bill_value) * ps.bill_count - ps.total_discount)::numeric, 2) as net_incremental_profit, + round(CASE + WHEN ps.total_discount > 0 + THEN ((ps.avg_bill_value - nps.avg_bill_value) * ps.bill_count - ps.total_discount) / ps.total_discount + ELSE NULL + END::numeric, 2) as promo_roi, + round((ps.total_profit - ps.total_discount)::numeric, 2) as net_profit + FROM plan_stats ps + CROSS JOIN no_plan_stats nps + ORDER BY ps.total_revenue DESC + `, [month]) + + sendSuccess(res, result.rows) + } catch (err: any) { + sendError(res, err.message) + } +}) + +// ============================================================ +// 3. 按门店促销效果 +// ============================================================ +router.get('/by-store', async (req: AuthRequest, res) => { + try { + const month = parseMonth(req) + const { page, pageSize, offset } = parsePagination(req) + + const countResult = await query(` + SELECT count(DISTINCT store_code) as total + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + AND marketing_plan IS NOT NULL AND marketing_plan != '' + `, [month]) + const total = countResult.rows[0].count + + const result = await query(` + WITH store_plan AS ( + SELECT + store_code, + count(*) as promo_bills, + round(sum(received_total)::numeric, 2) as promo_revenue, + round(sum(discount_total)::numeric, 2) as promo_discount, + round(sum(theoretical_profit)::numeric, 2) as promo_profit, + round(avg(received_total)::numeric, 2) as promo_avg_bill, + count(DISTINCT marketing_plan) as plan_count + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + AND marketing_plan IS NOT NULL AND marketing_plan != '' + GROUP BY store_code + ), + store_baseline AS ( + SELECT + store_code, + round(avg(received_total)::numeric, 2) as baseline_avg_bill, + count(*) as baseline_bills + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + AND (marketing_plan IS NULL OR marketing_plan = '') + GROUP BY store_code + ) + SELECT + COALESCE(ds.store_name, sp.store_code) as store_name, + sp.store_code, + sp.promo_bills, + sp.promo_revenue, + sp.promo_discount, + sp.promo_profit, + sp.promo_avg_bill, + sp.plan_count, + COALESCE(sb.baseline_avg_bill, 0) as baseline_avg_bill, + sb.baseline_bills, + round((sp.promo_avg_bill - COALESCE(sb.baseline_avg_bill, sp.promo_avg_bill))::numeric, 2) as bill_uplift, + round(CASE + WHEN sb.baseline_avg_bill > 0 + THEN (sp.promo_avg_bill - sb.baseline_avg_bill) / sb.baseline_avg_bill * 100 + ELSE NULL + END::numeric, 1) as uplift_pct, + round(((sp.promo_avg_bill - COALESCE(sb.baseline_avg_bill, sp.promo_avg_bill)) * sp.promo_bills)::numeric, 2) as incremental_revenue, + round((sp.promo_discount)::numeric, 2) as promotion_cost, + round(((sp.promo_avg_bill - COALESCE(sb.baseline_avg_bill, sp.promo_avg_bill)) * sp.promo_bills - sp.promo_discount)::numeric, 2) as net_incremental_profit, + round(CASE + WHEN sp.promo_discount > 0 + THEN ((sp.promo_avg_bill - COALESCE(sb.baseline_avg_bill, sp.promo_avg_bill)) * sp.promo_bills - sp.promo_discount) / sp.promo_discount + ELSE NULL + END::numeric, 2) as promo_roi + FROM store_plan sp + LEFT JOIN store_baseline sb ON sp.store_code = sb.store_code + LEFT JOIN analytics.dim_store ds ON sp.store_code = ds.store_code + ORDER BY net_incremental_profit DESC NULLS LAST + LIMIT $2 OFFSET $3 + `, [month, pageSize, offset]) + + sendSuccess(res, result.rows, { page, pageSize, total }) + } catch (err: any) { + sendError(res, err.message) + } +}) + +// ============================================================ +// 4. 促销日趋势 +// ============================================================ +router.get('/daily-trend', async (req: AuthRequest, res) => { + try { + const month = parseMonth(req) + + const result = await query(` + SELECT + opened_at::date as business_date, + CASE WHEN marketing_plan IS NOT NULL AND marketing_plan != '' THEN '促销' ELSE '非促销' END as day_type, + count(*) as bill_count, + round(sum(received_total)::numeric, 2) as revenue, + round(avg(received_total)::numeric, 2) as avg_bill_value, + round(sum(discount_total)::numeric, 2) as discount + FROM analytics.bill_fact + WHERE opened_at >= $1 AND opened_at < $1::date + interval '1 month' + GROUP BY opened_at::date, CASE WHEN marketing_plan IS NOT NULL AND marketing_plan != '' THEN '促销' ELSE '非促销' END + ORDER BY business_date, day_type + `, [month]) + + const grouped: Record = {} + for (const row of result.rows) { + const date = String(row.business_date).substring(0, 10) + if (!grouped[date]) grouped[date] = { date, promo: null, baseline: null } + if (row.day_type === '促销') { + grouped[date].promo = row + } else { + grouped[date].baseline = row + } + } + + const trend = Object.values(grouped).map((d: any) => ({ + date: d.date, + promo_bills: d.promo?.bill_count || 0, + promo_revenue: d.promo?.revenue || 0, + promo_avg_bill: d.promo?.avg_bill_value || 0, + promo_discount: d.promo?.discount || 0, + baseline_bills: d.baseline?.bill_count || 0, + baseline_revenue: d.baseline?.revenue || 0, + baseline_avg_bill: d.baseline?.avg_bill_value || 0, + uplift: d.promo && d.baseline ? Math.round((d.promo.avg_bill_value - d.baseline.avg_bill_value) * 100) / 100 : 0, + })) + + sendSuccess(res, trend) + } catch (err: any) { + sendError(res, err.message) + } +}) + +export default router diff --git a/server/src/routes/situational-awareness.ts b/server/src/routes/situational-awareness.ts index 9ceba25..a53281d 100644 --- a/server/src/routes/situational-awareness.ts +++ b/server/src/routes/situational-awareness.ts @@ -115,29 +115,78 @@ router.get('/alerts', async (req: AuthRequest, res) => { const month = parseMonth(req) const alerts: any[] = [] - // 1. 营收异动预警:日营收连续低于月均70% - const revenueAlerts = await query(` - WITH daily_stats AS ( - SELECT closed_at::date AS business_date, - count(*) AS bill_count, - sum(received_total) AS received - FROM analytics.bill_fact - WHERE closed_at >= (SELECT max(closed_at)::date - interval '30 days' FROM analytics.bill_fact) - AND closed_at IS NOT NULL - GROUP BY closed_at::date - ORDER BY business_date - ), - monthly_avg AS ( - SELECT avg(received) AS avg_received - FROM daily_stats - ) - SELECT d.business_date::text, d.received, m.avg_received, - round(d.received / nullif(m.avg_received, 0) * 100, 1) AS ratio - FROM daily_stats d, monthly_avg m - WHERE d.received < m.avg_received * 0.7 - ORDER BY d.business_date DESC - LIMIT 10 - `, [], { skipScope: true }) + // 1-5. 并行查询所有预警类型 + const [revenueAlerts, costAlerts, hrAlerts, platformAlerts, taskAlerts] = await Promise.all([ + // 1. 营收异动预警:日营收连续低于月均70% + query(` + WITH daily_stats AS ( + SELECT business_date, bill_count, received + FROM analytics.mv_daily_revenue + WHERE business_date >= (SELECT max(business_date) - interval '30 days' FROM analytics.mv_daily_revenue) + ORDER BY business_date + ), + monthly_avg AS ( + SELECT avg(received) AS avg_received + FROM daily_stats + ) + SELECT d.business_date::text, d.received, m.avg_received, + round(d.received / nullif(m.avg_received, 0) * 100, 1) AS ratio + FROM daily_stats d, monthly_avg m + WHERE d.received < m.avg_received * 0.7 + ORDER BY d.business_date DESC + LIMIT 10 + `, [], { skipScope: true }), + // 2. 成本异动预警:成本差异>30%的菜品 + query(` + SELECT dish_name, dish_code, category_level1, + round(cost_variance_amount::numeric, 2) AS variance, + round((cost_variance_amount / nullif(theoretical_cost, 0) * 100)::numeric, 2) AS variance_pct, + round(sales_amount::numeric, 2) AS sales_amount + FROM public.dish_cost_analysis_summary + WHERE cost_variance_amount > 0 + AND theoretical_cost > 0 + AND (cost_variance_amount / theoretical_cost) > 0.3 + ORDER BY variance_pct DESC + LIMIT 10 + `, [], { skipScope: true }), + // 3. 人力异动预警:考勤异常员工 + query(` + SELECT s.org_level5 AS store_name, count(*) AS alert_count, + count(*) FILTER (WHERE s.absent_days > 0) AS absent_count, + count(*) FILTER (WHERE s.late_deduction > 0 OR s.no_punch_deduction > 0) AS punch_issue_count + FROM salary_detail_records s + WHERE s.org_level2 = '西部马华品牌门店' AND s.org_level5 IS NOT NULL AND s.org_level5 != '' + AND (s.absent_days > 0 OR s.late_deduction > 0 OR s.no_punch_deduction > 0) + GROUP BY s.org_level5 + HAVING count(*) > 3 + ORDER BY alert_count DESC + LIMIT 10 + `), + // 4. 平台依赖预警:外卖佣金占比>40% + query(` + SELECT p.store_code, p.store_name, + round(p.meituan_cost_rate_pct::numeric, 1) AS meituan_rate, + round(p.taobao_cost_rate_pct::numeric, 1) AS taobao_rate, + round(p.jd_cost_rate_pct::numeric, 1) AS jd_rate, + round((COALESCE(p.meituan_received, 0) + COALESCE(p.taobao_received, 0) + COALESCE(p.jd_received, 0)) / nullif(sc.received, 0) * 100, 1) AS platform_share + FROM analytics.mv_store_platform_economics_monthly p + JOIN analytics.v_store_scorecard sc ON p.store_code = sc.store_code + WHERE p.month_start = $1 AND (COALESCE(p.meituan_received, 0) + COALESCE(p.taobao_received, 0) + COALESCE(p.jd_received, 0)) / nullif(sc.received, 0) > 0.4 + ORDER BY platform_share DESC + LIMIT 10 + `, [month]), + // 5. 任务逾期预警 + query(` + SELECT store_code, store_name, priority, problem_indicator, deadline::text AS deadline, + current_date - deadline::date AS overdue_days + FROM analytics.store_task + WHERE status NOT IN ('已验收', '已回滚') + AND deadline < current_date + ORDER BY overdue_days DESC + LIMIT 10 + `), + ]) + revenueAlerts.rows.forEach((r: any) => { alerts.push({ type: 'revenue', @@ -149,19 +198,6 @@ router.get('/alerts', async (req: AuthRequest, res) => { }) }) - // 2. 成本异动预警:成本差异>30%的菜品 - const costAlerts = await query(` - SELECT dish_name, dish_code, category_level1, - round(cost_variance_amount::numeric, 2) AS variance, - round((cost_variance_amount / nullif(theoretical_cost, 0) * 100)::numeric, 2) AS variance_pct, - round(sales_amount::numeric, 2) AS sales_amount - FROM public.dish_cost_analysis_summary - WHERE cost_variance_amount > 0 - AND theoretical_cost > 0 - AND (cost_variance_amount / theoretical_cost) > 0.3 - ORDER BY variance_pct DESC - LIMIT 10 - `, [], { skipScope: true }) costAlerts.rows.forEach((r: any) => { alerts.push({ type: 'cost', @@ -173,19 +209,6 @@ router.get('/alerts', async (req: AuthRequest, res) => { }) }) - // 3. 人力异动预警:考勤异常员工 - const hrAlerts = await query(` - SELECT s.org_level5 AS store_name, count(*) AS alert_count, - count(*) FILTER (WHERE s.absent_days > 0) AS absent_count, - count(*) FILTER (WHERE s.late_deduction > 0 OR s.no_punch_deduction > 0) AS punch_issue_count - FROM salary_detail_records s - WHERE s.org_level2 = '西部马华品牌门店' AND s.org_level5 IS NOT NULL AND s.org_level5 != '' - AND (s.absent_days > 0 OR s.late_deduction > 0 OR s.no_punch_deduction > 0) - GROUP BY s.org_level5 - HAVING count(*) > 3 - ORDER BY alert_count DESC - LIMIT 10 - `) hrAlerts.rows.forEach((r: any) => { alerts.push({ type: 'hr', @@ -197,19 +220,6 @@ router.get('/alerts', async (req: AuthRequest, res) => { }) }) - // 4. 平台依赖预警:外卖佣金占比>40% - const platformAlerts = await query(` - SELECT p.store_code, p.store_name, - round(p.meituan_cost_rate_pct::numeric, 1) AS meituan_rate, - round(p.taobao_cost_rate_pct::numeric, 1) AS taobao_rate, - round(p.jd_cost_rate_pct::numeric, 1) AS jd_rate, - round((COALESCE(p.meituan_received, 0) + COALESCE(p.taobao_received, 0) + COALESCE(p.jd_received, 0)) / nullif(sc.received, 0) * 100, 1) AS platform_share - FROM analytics.mv_store_platform_economics_monthly p - JOIN analytics.v_store_scorecard sc ON p.store_code = sc.store_code - WHERE p.month_start = $1 AND (COALESCE(p.meituan_received, 0) + COALESCE(p.taobao_received, 0) + COALESCE(p.jd_received, 0)) / nullif(sc.received, 0) > 0.4 - ORDER BY platform_share DESC - LIMIT 10 - `, [month]) platformAlerts.rows.forEach((r: any) => { alerts.push({ type: 'platform', @@ -221,16 +231,6 @@ router.get('/alerts', async (req: AuthRequest, res) => { }) }) - // 5. 任务逾期预警 - const taskAlerts = await query(` - SELECT store_code, store_name, priority, problem_indicator, deadline::text AS deadline, - current_date - deadline::date AS overdue_days - FROM analytics.store_task - WHERE status NOT IN ('已验收', '已回滚') - AND deadline < current_date - ORDER BY overdue_days DESC - LIMIT 10 - `) taskAlerts.rows.forEach((r: any) => { alerts.push({ type: 'task', diff --git a/server/src/routes/store-expense.ts b/server/src/routes/store-expense.ts index 04e75fc..924bc44 100644 --- a/server/src/routes/store-expense.ts +++ b/server/src/routes/store-expense.ts @@ -12,8 +12,9 @@ router.get('/overview', async (req: AuthRequest, res) => { try { const month = parseMonth(req) const result = await query(` - WITH bill_discount AS ( + WITH bill_consumption AS ( SELECT store_code, + round(sum(consumption)::numeric, 2) AS consumption, round(sum(discount_total)::numeric, 2) AS discount FROM analytics.bill_fact WHERE closed_at >= $1::date AND closed_at < ($1::date + interval '1 month') @@ -24,8 +25,8 @@ router.get('/overview', async (req: AuthRequest, res) => { r.store_code, r.store_name, r.received, - e.consumption, - COALESCE(bd.discount, e.consumption - e.received) AS discount, + COALESCE(e.consumption, bc.consumption) AS consumption, + COALESCE(bc.discount, e.consumption - e.received, 0) AS discount, r.bill_count, r.theoretical_margin_pct, e.operating_expense, @@ -44,7 +45,7 @@ router.get('/overview', async (req: AuthRequest, res) => { FROM analytics.mv_store_risk_rating_monthly r LEFT JOIN analytics.mv_store_operating_expense_monthly e ON r.store_code = e.sales_store_code AND e.report_month = $1::date - LEFT JOIN bill_discount bd ON bd.store_code = r.store_code + LEFT JOIN bill_consumption bc ON bc.store_code = r.store_code WHERE r.month_start = $1 AND r.received IS NOT NULL ) SELECT diff --git a/server/src/routes/store-grade.ts b/server/src/routes/store-grade.ts index 2a8cbd5..d41c7ea 100644 --- a/server/src/routes/store-grade.ts +++ b/server/src/routes/store-grade.ts @@ -142,4 +142,122 @@ router.get('/traffic-light', async (req: AuthRequest, res) => { } }) +// ============================================================ +// 门店关停测算 +// ============================================================ +router.get('/closure-analysis', async (req: AuthRequest, res) => { + try { + const month = (req.query.month as string) || new Date().toISOString().slice(0, 8) + '01' + + const result = await query(` + WITH store_financials AS ( + SELECT + g.store_code, + g.store_name, + g.region, + g.grade, + g.overall_score, + g.revenue_achievement_pct, + COALESCE(r.received, 0) AS monthly_revenue, + COALESCE(r.bill_count, 0) AS bill_count, + COALESCE(r.theoretical_margin_pct, 0) AS margin_pct, + COALESCE(e.actual_store_contribution, 0) AS monthly_profit, + COALESCE(e.rent_expense, 0) AS monthly_rent, + COALESCE(e.wage_expense, 0) AS monthly_wage, + COALESCE(e.utility_expense, 0) AS monthly_utility, + COALESCE(e.operating_expense, 0) AS monthly_opex, + COALESCE(a.area_sqm, 0) AS area_sqm, + COALESCE(a.lease_expiry_date, NULL) AS lease_expiry_date + FROM analytics.v3_store_grade g + LEFT JOIN analytics.mv_store_risk_rating r + ON r.store_code = g.store_code AND r.month_start = $1::date + LEFT JOIN analytics.mv_store_operating_expense_monthly e + ON e.sales_store_code = g.store_code AND e.report_month = $1::date + LEFT JOIN analytics.mv_store_area_efficiency_monthly a + ON a.store_code = g.store_code AND a.month_start = $1::date + WHERE date_trunc('month', g.grade_month) = date_trunc('month', $1::date) + ) + SELECT + store_code, + store_name, + region, + grade, + overall_score, + revenue_achievement_pct, + round(monthly_revenue::numeric, 2) AS monthly_revenue, + bill_count, + round(margin_pct::numeric, 2) AS margin_pct, + round(monthly_profit::numeric, 2) AS monthly_profit, + round(monthly_rent::numeric, 2) AS monthly_rent, + round(monthly_wage::numeric, 2) AS monthly_wage, + round(monthly_utility::numeric, 2) AS monthly_utility, + round(monthly_opex::numeric, 2) AS monthly_opex, + area_sqm, + lease_expiry_date, + -- 关停成本估算 + round((monthly_wage * 1.5)::numeric, 2) AS severance_cost, + round((monthly_rent * 2)::numeric, 2) AS lease_termination_cost, + round((monthly_revenue * 0.05)::numeric, 2) AS asset_disposal_cost, + round((monthly_wage * 1.5 + monthly_rent * 2 + monthly_revenue * 0.05)::numeric, 2) AS total_closure_cost, + -- 继续经营12个月亏损 + round(CASE + WHEN monthly_profit < 0 THEN monthly_profit * 12 + ELSE 0 + END::numeric, 2) AS projected_12m_loss, + -- 关停后月节省 + round(CASE + WHEN monthly_profit < 0 THEN ABS(monthly_profit) + ELSE 0 + END::numeric, 2) AS monthly_savings_if_closed, + -- 关停回本月数 + CASE + WHEN monthly_profit < 0 AND (monthly_wage * 1.5 + monthly_rent * 2 + monthly_revenue * 0.05) > 0 + THEN round((monthly_wage * 1.5 + monthly_rent * 2 + monthly_revenue * 0.05) / ABS(monthly_profit)::numeric, 1) + ELSE NULL + END AS payback_months, + -- 建议 + CASE + WHEN monthly_profit < 0 AND overall_score < 50 THEN '建议关停' + WHEN monthly_profit < 0 AND overall_score >= 50 AND overall_score < 70 THEN '整改观察3个月' + WHEN monthly_profit >= 0 AND overall_score < 70 THEN '重点整改' + ELSE '持续经营' + END AS recommendation, + CASE + WHEN monthly_profit < 0 AND overall_score < 50 THEN '持续亏损且综合评分D级,关停可止损' + WHEN monthly_profit < 0 AND overall_score >= 50 AND overall_score < 70 THEN '亏损但有一定基础,限期整改后评估' + WHEN monthly_profit >= 0 AND overall_score < 70 THEN '微利但评分偏低,需提升运营效率' + ELSE '经营正常,维持现状' + END AS reason + FROM store_financials + ORDER BY + CASE + WHEN monthly_profit < 0 AND overall_score < 50 THEN 1 + WHEN monthly_profit < 0 AND overall_score >= 50 AND overall_score < 70 THEN 2 + WHEN monthly_profit >= 0 AND overall_score < 70 THEN 3 + ELSE 4 + END, + monthly_profit ASC + `, [month]) + + const summary = { + total_stores: result.rows.length, + recommend_close: result.rows.filter((r: any) => r.recommendation === '建议关停').length, + recommend_rectify: result.rows.filter((r: any) => r.recommendation === '整改观察3个月').length, + total_closure_cost: result.rows + .filter((r: any) => r.recommendation === '建议关停') + .reduce((s: number, r: any) => s + Number(r.total_closure_cost || 0), 0), + total_projected_loss: result.rows + .filter((r: any) => r.recommendation === '建议关停') + .reduce((s: number, r: any) => s + Number(r.projected_12m_loss || 0), 0), + total_monthly_savings: result.rows + .filter((r: any) => r.recommendation === '建议关停') + .reduce((s: number, r: any) => s + Number(r.monthly_savings_if_closed || 0), 0), + } + + sendSuccess(res, { summary, stores: result.rows }) + } catch (err: any) { + sendError(res, err.message) + } +}) + export default router diff --git a/企业智脑建设蓝图.md b/企业智脑建设蓝图.md index 9440657..0bcb9e5 100644 --- a/企业智脑建设蓝图.md +++ b/企业智脑建设蓝图.md @@ -1,6 +1,10 @@ -# 企业智脑:让数据产生决策力 +# 玄谋智脑:让数据产生决策力 -> **一句话定位**:把散落在各系统和Excel里的数据,变成能自动发现问题、驱动执行、预测未来的企业大脑。 +> **品牌名称**:玄谋智脑 +> +> **品牌定位**:面向企业经营与管理决策的行业数字本体与 AI 智脑。 +> +> **一句话定位**:整合散落在现有系统和 Excel 中的数据,将行业知识、企业数据与管理经验沉淀为能自动发现问题、驱动执行、预测未来的决策能力。 > > **编制日期**:2026-08-09 @@ -17,7 +21,7 @@ | **执行断裂** | 战略目标制定后,无法穿透到一线行动 | 有目标、无落地 | | **知识断裂** | 最佳实践留在个人脑中,组织能力无法积累 | 有经验、无沉淀 | -**企业智脑的本质**:用 AI 把这四个断裂接上,让数据从"被动查看"变成"主动驱动"。 +**玄谋智脑的本质**:用 AI 把这四个断裂接上,让数据从"被动查看"变成"主动驱动"。 --- @@ -325,4 +329,4 @@ --- -> **总结**:企业智脑不是一个IT项目,而是一次管理升级。它让数据从"被动查看"变成"主动驱动",让管理从"事后救火"变成"事前预防",让组织能力从"依赖个人"变成"沉淀系统"。**最终目标:让每一个团队、每一个员工,每天都在做正确的事。** +> **总结**:玄谋智脑不是新建一套孤立的 IT 系统,而是基于企业现有数据的管理升级。它让数据从"被动查看"变成"主动驱动",让管理从"事后救火"变成"事前预防",让组织能力从"依赖个人"变成"沉淀系统"。**最终目标:让每一个团队、每一个员工,每天都在做正确的事。** diff --git a/玄谋智脑_系统销售和服务合同.md b/玄谋智脑_系统销售和服务合同.md new file mode 100644 index 0000000..9ec9fad --- /dev/null +++ b/玄谋智脑_系统销售和服务合同.md @@ -0,0 +1,585 @@ +# 玄谋智脑系统销售和服务合同 + +> **合同编号**:[XMZN-YYYY-XXXX] +> **签订地点**:[省/市] +> **签订日期**:[年]年[月]月[日]日 +> **版本**:V1.0(商务及法务评审稿) + +> **重要提示**:本文件为系统销售与服务合同通用范本,不构成针对任何具体交易的法律意见。正式签署前,双方应根据部署方式、数据类型、服务边界、费用、验收口径及适用法律,交由各自法务或外部律师审核。 + +--- + +## 一、合同主体 + +### 甲方(客户) + +- **单位名称**:[甲方全称] +- **统一社会信用代码**:[代码] +- **地址**:[地址] +- **法定代表人/授权代表**:[姓名] +- **项目负责人**:[姓名] +- **联系电话**:[电话] +- **电子邮箱**:[邮箱] + +### 乙方(供应商) + +- **单位名称**:[乙方全称] +- **统一社会信用代码**:[代码] +- **地址**:[地址] +- **法定代表人/授权代表**:[姓名] +- **项目负责人**:[姓名] +- **联系电话**:[电话] +- **电子邮箱**:[邮箱] + +甲乙双方根据《中华人民共和国民法典》《中华人民共和国网络安全法》《中华人民共和国数据安全法》《中华人民共和国个人信息保护法》及其他适用法律法规,本着平等、自愿、公平和诚实信用原则,就“玄谋智脑”系统许可、实施及持续服务事宜达成本合同。 + +--- + +## 二、定义 + +1. **玄谋智脑/本系统**:指乙方提供的面向连锁企业的行业数字本体与 AI 经营辅助决策系统,包括本合同及附件明确的软件功能、配置、接口、模型、报告与服务。 +2. **项目**:指乙方依本合同为甲方提供系统许可、数据接入、配置实施、试运行、培训、验收、维护和相关专业服务的整体工作。 +3. **业务数据**:指甲方或甲方授权的第三方系统提供的 POS、ERP、WMS、财务、会员、外卖、HR、Excel 及其他与经营相关的数据。 +4. **个人信息**:指以电子或其他方式记录的、与已识别或可识别的自然人有关的各种信息,不包括匿名化处理后的信息。 +5. **产品标准功能**:指乙方在签约时已形成、可重复向不同客户提供的通用功能。 +6. **定制成果**:指双方在附件中明确列为“定制开发”,且由乙方为甲方特定需求新建的代码、配置、报表或其他成果。 +7. **AI 建议**:指本系统基于数据、规则、统计方法、模型或大语言模型生成的异常识别、归因、预测、情景测算、经营建议或文本输出。 +8. **工作日**:除中国法定节假日及休息日以外的日期。 + +--- + +## 三、合同目标与合作原则 + +1. 本项目目标是整合甲方现有、合法可用的经营数据,建立统一业务语义、指标体系与经营分析闭环,辅助甲方发现经营问题、推动整改、验证结果并沉淀组织经验。 +2. 本系统原则上不取代甲方现有 POS、ERP、WMS、财务、HR 等生产或交易系统,除双方书面约定外,不直接改写甲方生产系统原始数据。 +3. 项目采取“先验证价值、再扩大范围”的原则。首期原则上以一至两个可量化经营专项为主,具体范围以《项目范围与交付清单》为准。 +4. 双方确认,经营结果受市场环境、季节、管理执行、人员、竞争、价格、供应链、政策及数据质量等多重因素影响。乙方不对营收、利润、毛利率、成本降幅、融资或其他经营成果作无条件保证。 + +--- + +## 四、系统销售、许可与使用范围 + +### 4.1 许可模式 + +双方选择以下第 [ ] 种模式: + +1. **SaaS 订阅**:乙方在云环境中向甲方提供有期限的访问和使用权。 +2. **甲方私有化部署**:系统部署于甲方或甲方指定的合规环境,乙方提供有期限或永久的软件使用许可。 +3. **混合部署**:部分数据、模型或服务在甲方环境内运行,部分能力由乙方云服务提供。 + +### 4.2 许可范围 + +| 项目 | 约定 | +|:---|:---| +| 授权主体 | [甲方及允许使用的关联公司清单] | +| 授权用户数 | [ ] 人/不限用户 | +| 授权门店数 | [ ] 家 | +| 授权区域 | [ ] | +| 许可期限 | 自[ ]年[ ]月[ ]日至[ ]年[ ]月[ ]日 | +| 部署环境 | [生产/测试/容灾]环境,数量[ ] | +| 使用目的 | 限甲方内部经营分析、管理与决策辅助 | + +### 4.3 使用限制 + +未经乙方书面同意,甲方不得: + +1. 向授权范围外的第三方转让、出租、分许可、销售或开放本系统。 +2. 对本系统进行反向工程、反编译、反汇编或尝试获取源代码,法律强制允许的情形除外。 +3. 删除或修改系统中的著作权、商标、技术保护或权利声明。 +4. 使用本系统从事违法活动,或处理甲方无权处理的数据。 + +--- + +## 五、项目范围与交付内容 + +### 5.1 首期建设范围 + +首期默认为八周价值验证项目,实际计划自项目启动条件全部具备之日起计算。 + +| 阶段 | 建议时间 | 主要工作 | 主要交付物 | +|:---|:---|:---|:---| +| 专项确认 | 第1周 | 选定1—2个经营专项,确认基线、口径、责任人 | 项目范围、指标基线、验收口径 | +| 数据接入 | 第1—2周 | 连接约定数据源,完成映射、清洗与质量检查 | 数据清单、映射关系、质量报告 | +| 分析建模 | 第3—4周 | 建立本体、指标、异常规则与分析模型 | 异常清单、影响测算、根因证据 | +| 整改执行 | 第5—6周 | 生成或配置整改任务,跟踪责任人与进度 | 整改清单、任务记录、进度报告 | +| 验证复盘 | 第7—8周 | 对比改善前后,识别外部影响,形成复制建议 | 专项报告、验收结论、最佳实践建议 | + +### 5.2 候选经营专项 + +双方可从以下场景中选择,最终以附件勾选内容为准: + +- [ ] SKU 组合、商品毛利与产品生命周期 +- [ ] 人员排班、工时利用与人效 +- [ ] 促销活动的增量贡献利润 +- [ ] 库存、损耗、临期商品与资金占用 +- [ ] 门店分级、低效门店整改与关停情景测算 +- [ ] 会员复购、流失预警与精准营销 +- [ ] 采购价格、供应商对标与异常识别 +- [ ] 其他:[ ] + +### 5.3 系统及管理交付物 + +在附件约定的范围内,可包括: + +1. 数据源清单、数据质量报告与映射规则。 +2. 业务本体、主数据及指标词典。 +3. 授权范围内的经营看板、分析页面和预警能力。 +4. 异常发现、归因、情景测算与 AI 辅助建议功能。 +5. 整改任务、责任人、期限、进度与验收记录。 +6. 项目配置文档、管理员手册和用户手册。 +7. 项目培训与试运行支持。 + +### 5.4 不在范围内的内容 + +除附件另有明确约定外,下列事项不在本合同价格与交付范围内: + +1. 替换或重建甲方原有生产、收银、财务、库存或人事系统。 +2. 甲方或第三方系统的源码修改及接口开发费。 +3. 云资源、网络专线、短信、邮件、第三方地图、大模型或其他外部服务费用,除非报价单已明确包含。 +4. 数据历史补录、线下盘点、人工采集或原始业务数据修复。 +5. 乙方代替甲方做出价格、人事、采购、关店、投资、融资或其他最终经营决策。 +6. 未在附件中列明的定制功能、报表或大规模数据迁移。 + +--- + +## 六、项目计划、启动条件与变更管理 + +### 6.1 项目启动条件 + +以下条件全部满足之日为项目正式启动日: + +1. 本合同及必要附件已生效。 +2. 甲方已按约定支付首期款。 +3. 双方已指定项目负责人与必要参与人员。 +4. 甲方已提供符合约定的数据、接口、账号、网络、环境和业务口径。 +5. 双方已书面确认首期经营专项、基线和验收方法。 + +### 6.2 延期 + +1. 因甲方未及时提供数据、环境、人员、确认或审批导致延期的,项目计划应相应顺延,乙方不承担违约责任。 +2. 因乙方原因导致关键里程碑延期的,乙方应及时告知甲方、提交纠偏计划并承担本合同约定的违约责任。 + +### 6.3 需求变更 + +1. 任何影响项目范围、数据源、接口、交付物、计划、费用或验收口径的变更,应以书面《变更申请单》确认。 +2. 乙方应对变更的工作量、费用、时间与风险进行评估。双方未书面确认前,乙方有权按原范围继续履行。 + +--- + +## 七、双方职责 + +### 7.1 甲方职责 + +1. 指定具有协调和决策权限的项目负责人,组织业务、IT、数据、财务、人力及门店相关人员参与。 +2. 保证向乙方提供数据、资料、接口和指令的合法性、准确性、完整性及授权充分性。 +3. 按时完成业务口径、规则、方案、账号、权限、交付物和验收结果的确认。 +4. 组织整改动作的实际执行。乙方提供分析、建议和工具支持,不代替甲方行使管理权限。 +5. 按合同约定支付费用,并为项目提供必要的办公、网络、环境与安全条件。 +6. 对自身用户账号、密码、设备及内部权限分配负责。 + +### 7.2 乙方职责 + +1. 按本合同及附件约定,组织具备相应技能的人员完成系统实施与服务。 +2. 建立项目计划、风险台账、问题清单和沟通机制,及时报告重大风险。 +3. 依据约定采取合理的技术与管理措施保护甲方数据。 +4. 不得超出甲方授权和本合同目的访问、处理、使用或对外提供甲方数据。 +5. 在约定范围内提供培训、试运行和保修支持。 +6. 发现可能影响数据安全、系统稳定或项目验收的重大问题时,应及时通知甲方。 + +--- + +## 八、数据保护、个人信息与安全 + +### 8.1 数据权属 + +1. 甲方业务数据及甲方依法享有权利的数据资产,其权利仍归甲方或相应权利人所有。 +2. 乙方仅在履行本合同所必需的范围、目的和期限内处理甲方数据。 +3. 未经甲方事先书面同意,乙方不得将甲方可识别业务数据用于向其他客户展示、对外宣传、训练通用模型或与本合同无关的目的。 + +### 8.2 个人信息 + +1. 甲方应确保个人信息的收集、使用、委托处理、提供与传输具有合法性基础,并按法律要求履行告知、同意、影响评估等义务。 +2. 乙方应按甲方的合法指令处理个人信息,不得擅自变更处理目的、方式或范围。 +3. 双方应另行签署《数据处理与个人信息保护附件》,明确信息种类、目的、期限、安全措施、再委托、跨境、安全事件及删除返还要求。 + +### 8.3 安全措施 + +乙方应根据部署方式和约定责任边界,采取与风险相适应的措施,可包括: + +1. 身份认证、最小权限、角色分权与特权账号管理。 +2. 传输加密、存储加密或等效保护。 +3. 敏感数据脱敏、屏蔽、分级分类与访问审计。 +4. 日志、监控、告警、备份与恢复措施。 +5. 漏洞管理、恶意代码防护、开发与变更管理。 +6. 对可接触甲方数据的人员进行权限限制、保密约束与安全培训。 + +### 8.4 数据安全事件 + +1. 乙方发现与甲方数据有关的未授权访问、泄露、篡改、丢失或其他安全事件后,应在[ ]小时内通知甲方。 +2. 乙方应及时采取止损、调查、修复和防止扩大措施,并配合甲方履行法定报告或通知义务。 +3. 因一方过错造成安全事件的,该方应依本合同及适用法律承担责任。 + +### 8.5 数据保留、返还与删除 + +1. 合同终止或甲方合法要求时,乙方应在[ ]日内按约定返还或删除甲方数据,但法律规定或备份周期必须保留的除外。 +2. 对必须保留的数据,乙方应停止主动处理并持续承担保密与安全义务。 + +--- + +## 九、AI 功能与决策边界 + +1. 双方确认,AI 建议属于经营辅助信息,可能存在误差、遗漏、时滞、不完整或不适用于特定情形的情况。 +2. 乙方应尽合理努力,使重要 AI 结论展示其数据时间、依据指标、分析路径或适用边界。 +3. 甲方应由具备相应专业能力和权限的人员审核 AI 建议。价格调整、人员处置、供应商更换、门店关停、投资、融资等重要决策必须由甲方人工审批。 +4. 除双方对具体场景另行进行风险评估并书面授权外,本系统不得直接执行不可逆或高影响经营动作。 +5. 如 AI 功能调用第三方模型服务,乙方应在附件中说明服务商、数据处理边界、部署地域、数据保留政策和费用承担方式。 +6. 未经甲方书面同意,乙方不得将甲方可识别数据用于训练或改进面向其他客户的通用模型。 + +--- + +## 十、交付、试运行与验收 + +### 10.1 验收原则 + +1. 验收以本合同、附件、经双方确认的需求、原型、变更单和测试用例为依据。 +2. 对系统功能、数据质量、性能、安全、文档、培训和经营专项采用分类验收。 +3. 经营收益的评估必须使用双方预先确认的基线、计算口径、数据周期和排除因素。 +4. 除附件明确将某项经营指标约定为付费或验收条件外,系统功能验收不以特定利润数值必然实现为前提。 + +### 10.2 建议验收维度 + +| 验收维度 | 指标示例 | 目标值/标准 | +|:---|:---|:---| +| 功能 | 约定功能可用、角色权限生效、关键流程可完成 | [ ] | +| 数据 | 完整率、准确率、及时率、口径一致率、可追溯率 | [ ] | +| 性能 | 页面响应、批处理时间、并发用户数 | [ ] | +| 问题发现 | 发现周期、有效异常率、影响金额覆盖率 | [ ] | +| 执行闭环 | 任务接收率、完成率、整改有效率 | [ ] | +| 交付物 | 文档、报告、培训、配置和管理员移交 | [ ] | + +### 10.3 验收流程 + +1. 乙方完成某一阶段或整体交付后,向甲方提交书面验收申请和交付清单。 +2. 甲方应在收到完整验收材料后[ ]个工作日内完成测试,并一次性书面提出不符合项。 +3. 乙方应在合理期限内完成不符合项修复并重新申请验收。 +4. 不影响系统主要目的和核心功能的轻微缺陷,可列入遗留问题清单,不作为拒绝验收的理由;乙方应在双方确认的期限内修复。 +5. 甲方在验收期限内未提出具体书面异议,且已将系统用于生产经营超过[ ]日的,可视为相应交付通过验收。如双方不接受默示验收,应在此处删除本款。 + +--- + +## 十一、培训、运维、保修与服务级别 + +### 11.1 培训 + +| 培训对象 | 次数/时长 | 形式 | 主要内容 | +|:---|:---|:---|:---| +| 系统管理员 | [ ] | [线上/现场] | 账号、权限、配置、日志和日常管理 | +| 总部/区域用户 | [ ] | [线上/现场] | 分析、预警、任务、验收和报告 | +| 店长/一线用户 | [ ] | [线上/现场] | 目标卡、整改任务、进度与反馈 | + +### 11.2 保修期 + +1. 项目最终验收通过之日起[ ]个月为免费保修期。 +2. 保修期内,乙方免费修复交付范围内的软件缺陷。 +3. 因甲方或第三方擅自修改系统、基础环境故障、违规操作、外部接口变更、不可抗力或非乙方原因产生的问题,不属于免费保修范围。 + +### 11.3 服务级别 + +| 故障级别 | 定义 | 响应时间 | 恢复/解决目标 | +|:---|:---|:---|:---| +| P1 紧急 | 系统整体不可用、重大安全事件或核心数据严重错误 | [ ]分钟 | [ ]小时恢复或提供绕行方案 | +| P2 高 | 核心功能受影响,但存在部分替代方式 | [ ]小时 | [ ]个工作日 | +| P3 中 | 一般功能异常,不阻断主要业务 | [ ]小时 | [ ]个工作日 | +| P4 低 | 优化建议、使用咨询或轻微问题 | [ ]个工作日 | 纳入计划处理 | + +> 具体服务时间、服务窗口、可用性指标、计划内维护时间及赔偿机制,以《服务级别协议(SLA)》为准。 + +--- + +## 十二、合同价款、税费与支付 + +### 12.1 费用构成 + +| 费用项目 | 未税金额(元) | 税率 | 含税金额(元) | 说明 | +|:---|---:|---:|---:|:---| +| 软件许可/SaaS订阅费 | [ ] | [ ]% | [ ] | [年/月/永久许可] | +| 实施与数据接入费 | [ ] | [ ]% | [ ] | [ ] | +| 八周经营专项服务费 | [ ] | [ ]% | [ ] | [ ] | +| 定制开发费 | [ ] | [ ]% | [ ] | [ ] | +| 年度运维与智脑服务费 | [ ] | [ ]% | [ ] | [ ] | +| 第三方服务及云资源 | [ ] | [ ]% | [ ] | [ ] | +| **合计** | **[ ]** | — | **[ ]** | 大写:人民币[ ] | + +### 12.2 支付计划 + +| 期次 | 支付条件 | 比例 | 金额(元) | +|:---|:---|---:|---:| +| 首期款 | 合同生效且乙方提供合法请款材料后[ ]个工作日 | [ ]% | [ ] | +| 进度款 | 完成[数据接入/中期里程碑]并经确认后[ ]个工作日 | [ ]% | [ ] | +| 验收款 | 项目最终验收后[ ]个工作日 | [ ]% | [ ] | +| 质保款/尾款 | 保修期满或[ ] | [ ]% | [ ] | + +### 12.3 发票与账户 + +1. 乙方应向甲方开具合法、有效、符合税法要求的[增值税专用/普通]发票。 +2. 甲方付款至乙方以下账户: + - 户名:[ ] + - 开户行:[ ] + - 账号:[ ] +3. 乙方收款账户变更应提前以加盖公章的书面文件通知甲方。 + +### 12.4 可选的经营成果服务费 + +如双方采用“固定服务费+经营结果服务费”模式,必须另行签署附件,至少明确: + +1. 收益指标的定义、基线、计算公式、数据来源和审核权。 +2. 季节、价格、市场、新店、关店、并购、管理动作等排除因素。 +3. 改善结果与乙方服务的归因方法。 +4. 计费比例、上限、下限、结算周期和争议处理。 + +--- + +## 十三、知识产权 + +### 13.1 乙方原有成果 + +1. 乙方在本合同签署前已拥有,或在项目中形成且具有通用性的软件平台、源代码、算法、模型、组件、工具、数据结构、行业本体方法、通用规则、技术文档及其改进,其知识产权归乙方或相应权利人所有。 +2. 乙方按本合同向甲方授予相应使用许可,但未明确转让的知识产权不因交付、部署或付款而转移。 + +### 13.2 甲方材料与企业知识 + +1. 甲方提供的商标、业务数据、管理制度、内部 SOP、原始文档及甲方原有知识产权仍归甲方或原权利人所有。 +2. 基于甲方数据形成、能够识别甲方经营状况的专属报告、异常清单、任务记录和决策记录,甲方在内部经营管理中享有永久使用权;其中的通用软件、模型与方法不因此转移。 + +### 13.3 定制成果 + +定制成果权属选择以下第[ ]种方式,并在附件逐项列明: + +1. 乙方保留知识产权,授予甲方永久、非独占、不可转让的内部使用权。 +2. 甲方在全额支付相应定制开发费后取得约定定制成果的财产性知识产权,但乙方原有平台、通用组件、开源软件和第三方成果除外。 + +### 13.4 第三方与开源软件 + +系统中包含的开源软件或第三方软件按其各自许可条款使用。乙方应向甲方提供需要告知的重要许可限制。 + +--- + +## 十四、保密义务 + +1. **保密信息**包括但不限于:业务数据、个人信息、财务信息、销售信息、门店经营信息、会员信息、薪酬、价格、供应商、商业计划、系统架构、源代码、算法、安全方案、合同价格及一方标明或依性质应视为保密的其他信息。 +2. 接收方仅可为履行本合同的目的使用保密信息,并仅向确有必要知悉且承担不低于本合同保密义务的员工、顾问或批准的分包商披露。 +3. 未经甲方事先书面同意,乙方不得在宣传片、PPT、官网、公众号、投标、展会、案例库或对外演示中使用甲方名称、商标、门店信息、系统截图或可识别数据。 +4. 经甲方书面同意使用案例时,乙方应按甲方批准的范围进行匿名化、汇总化或模拟化处理,并不得超出批准用途。 +5. 下列信息不属于保密信息:接收方能证明已合法知悉、非因违约已公开、从有权第三方合法获得、或未使用对方保密信息而独立开发的信息。 +6. 因法律、监管、司法或证券交易规则必须披露的,接收方应在法律允许的范围内提前通知披露方,并尽力限制披露范围。 +7. 保密义务自保密信息披露之日起持续[ ]年;商业秘密、个人信息及法律要求持续保护的信息,保密义务持续至其不再属于保护对象为止。 + +--- + +## 十五、声明、保证与合规 + +1. 双方声明其为依法成立并有效存续的主体,有权签署和履行本合同。 +2. 乙方保证在其所知且应尽合理注意的范围内,乙方提供的系统和服务不故意侵害第三方知识产权。 +3. 甲方保证其提供的数据、材料、商标、软件、接口和使用指令不侵害第三方合法权益,并已获得必要授权。 +4. 双方应遵守反商业贿赂、反不正当竞争、网络安全、数据保护、税务、劳动与其他适用法律。 +5. 本系统输出不构成法律、审计、税务、金融、医疗或其他需要特定职业资格的专业意见。 + +--- + +## 十六、违约责任 + +### 16.1 逾期付款 + +1. 甲方逾期支付且经乙方书面催告后仍未支付的,每逾期一日,应按逾期金额的[ ]% 支付违约金,累计不超过逾期金额的[ ]%。 +2. 逾期超过[ ]日的,乙方可在事先书面通知并采取必要的数据安全措施后,暂停尚未付费的服务或终止合同。 + +### 16.2 交付延误 + +因乙方原因导致经双方确认的关键里程碑逾期,且乙方在宽限期[ ]日内仍未纠正的,乙方每逾期一日按对应里程碑价款的[ ]% 支付违约金,累计不超过该里程碑价款的[ ]%。 + +### 16.3 数据与保密违约 + +1. 一方违反数据保护或保密义务的,应立即停止违约、采取补救措施,并赔偿对方因此遭受的实际直接损失及合理维权费用。 +2. 如双方约定固定违约金,金额为人民币[ ]元;如固定违约金不足以弥补损失,违约方仍应对不足部分负责。本款应由法务结合交易金额审核。 + +### 16.4 知识产权侵权 + +1. 如第三方主张乙方提供的系统侵害其知识产权,甲方应及时通知乙方,交由乙方在合理范围内负责处理。 +2. 乙方可选择为甲方取得继续使用的权利、进行不影响主要功能的替换或修改,或对无法继续使用的部分退还未履行期间的相应费用。 +3. 因甲方数据、材料、指定技术、擅自修改、未按文档使用或与非乙方提供的产品组合产生的侵权,乙方不承担责任。 + +--- + +## 十七、责任限制 + +1. 任何一方不对对方的间接损失、可得利益损失、商誉损失、预期节约损失或因第三方主张而导致的扩大损失承担责任,除非适用法律不允许排除。 +2. 除本条第3款情形外,任何一方因本合同承担的累计赔偿责任,以导致责任事件发生前12个月甲方已向乙方支付的相关合同费用为上限;合同履行不足12个月的,以已支付合同费用为上限。 +3. 对于故意或重大过失、人身伤害、欺诈、贿赂、侵犯知识产权、违反保密义务、违法处理个人信息或适用法律不允许限制的责任,不适用前述排除或限额,或由双方另行约定更高上限。 +4. 甲方基于 AI 建议做出重要经营决策前,应进行人工审核与必要的专业验证。因甲方未履行合理审核义务、违反系统警示或超出约定场景使用而造成的损失,乙方不承担相应责任。 + +--- + +## 十八、合同期限、续约、暂停与终止 + +### 18.1 合同期限 + +本合同自双方加盖公章或合同专用章之日起生效,有效期至[ ]年[ ]月[ ]日。合同到期前[ ]日,双方可就续约、许可范围与服务费用进行协商。 + +### 18.2 解除 + +1. 一方严重违反本合同,经对方书面催告后[ ]日内未纠正的,守约方有权解除合同并追究责任。 +2. 一方进入破产、清算、被吊销营业执照、停止经营或明显丧失履约能力的,对方可书面解除合同。 +3. 发生重大数据泄露、严重违法处理个人信息、故意侵害知识产权或重大商业贿赂行为的,守约方可立即解除合同。 + +### 18.3 终止后处理 + +1. 甲方应结清截至终止日已发生的费用。 +2. 乙方应按约定提供数据导出、返还或删除支持。如需额外迁移服务,双方另行约定工作量与费用。 +3. 许可到期或终止后,甲方应停止使用已到期的软件服务;甲方依约已取得永久许可的除外。 +4. 保密、数据保护、知识产权、应付款项、责任限制、争议解决及性质上应当持续有效的条款,不因合同终止而失效。 + +--- + +## 十九、不可抗力与第三方因素 + +1. 因地震、洪水、火灾、疫情、战争、政府行为、大范围通信或云服务中断等不能预见、不能避免且不能克服的事件导致无法履约的,受影响方在法律允许范围内免责。 +2. 受影响方应及时通知对方,提供合理证明,并尽力减轻损失。 +3. 第三方接口、系统、模型、云资源或平台规则变更,可能影响项目实施。双方应协商采取替代方案、调整计划或通过变更单处理。 + +--- + +## 二十、通知与送达 + +1. 双方的合同通知应通过专人递交、快递、挂号信或约定电子邮箱发送至本合同首部载明的地址或邮箱。 +2. 联系信息变更的,变更方应在[ ]个工作日内书面通知对方,否则原联系信息仍视为有效送达地址。 +3. 项目过程中的日常工作确认可通过约定项目管理工具、邮件或会议纪要完成;涉及价款、范围、工期、权利义务或合同变更的,应由授权代表书面确认。 + +--- + +## 二十一、适用法律与争议解决 + +1. 本合同的订立、效力、解释、履行与争议解决适用中华人民共和国大陆地区法律。 +2. 因本合同引起或与本合同有关的争议,双方应首先通过友好协商解决。 +3. 协商不成的,双方选择以下第[ ]种方式: + 1. 向[甲方住所地/乙方住所地/合同签订地]有管辖权的人民法院起诉。 + 2. 提交[ ]仲裁委员会,按其届时有效的仲裁规则仲裁。 +4. 争议期间,除争议事项外,双方应继续履行不受影响的其他条款。 + +--- + +## 二十二、其他 + +1. 本合同、附件、补充协议、经双方授权代表确认的变更单和验收文件,共同构成双方完整约定。 +2. 文件效力冲突时,原则上按以下顺序确定:后签署的补充协议/变更单 → 本合同正文 → 项目范围与交付清单 → 其他附件;但相关文件明确约定其优先级的除外。 +3. 本合同某条款被认定为无效或不可执行的,不影响其他条款的效力。双方应以合法、有效且最接近原商业目的的条款替代。 +4. 一方未立即行使某项权利,不构成对该权利的放弃。 +5. 未经对方书面同意,任何一方不得转让本合同主要权利义务;但因合并、分立、重组或资产转让而承继且不降低履约能力的除外,并应及时通知对方。 +6. 本合同一式[ ]份,甲乙双方各执[ ]份,具有同等法律效力。符合适用法律要求的可靠电子签名与纸质签章具有同等效力。 + +--- + +## 二十三、合同附件 + +下列附件应根据实际交易选择并作为本合同不可分割的组成部分: + +1. **附件一:项目范围与交付清单** +2. **附件二:报价单与支付计划** +3. **附件三:项目实施计划与里程碑** +4. **附件四:验收标准与测试用例** +5. **附件五:数据处理与个人信息保护附件** +6. **附件六:数据源、接口与责任边界清单** +7. **附件七:信息安全要求与安全事件处置流程** +8. **附件八:服务级别协议(SLA)** +9. **附件九:第三方软件、开源软件与 AI 模型服务清单** +10. **附件十:需求变更申请单模板** + +--- + +## 二十四、签署页 + +(以下无正文) + +| 甲方(盖章) | 乙方(盖章) | +|:---|:---| +| 单位名称:[ ] | 单位名称:[ ] | +| 法定代表人/授权代表:[ ] | 法定代表人/授权代表:[ ] | +| 签字:[ ] | 签字:[ ] | +| 日期:[ ]年[ ]月[ ]日 | 日期:[ ]年[ ]月[ ]日 | + +--- + +# 附件一:项目范围与交付清单(简表) + +## 1. 基本范围 + +| 类别 | 约定 | +|:---|:---| +| 项目名称 | 玄谋智脑[ ]专项 | +| 项目目标 | [ ] | +| 覆盖组织 | [总部/区域/门店] | +| 覆盖门店 | [ ]家 | +| 数据周期 | [ ] | +| 经营专项 | [ ] | +| 部署方式 | [SaaS/私有化/混合] | + +## 2. 数据源清单 + +| 数据源 | 系统/提供方 | 接入方式 | 频率 | 责任方 | 备注 | +|:---|:---|:---|:---|:---|:---| +| POS | [ ] | [API/文件/数据库视图] | [ ] | [ ] | [ ] | +| 外卖平台 | [ ] | [ ] | [ ] | [ ] | [ ] | +| 库存/WMS | [ ] | [ ] | [ ] | [ ] | [ ] | +| 财务 | [ ] | [ ] | [ ] | [ ] | [ ] | +| HR/考勤 | [ ] | [ ] | [ ] | [ ] | [ ] | +| 其他 | [ ] | [ ] | [ ] | [ ] | [ ] | + +## 3. 交付功能与成果 + +| 编号 | 功能/交付物 | 标准/定制 | 验收依据 | 计划日期 | +|:---|:---|:---|:---|:---| +| 1 | 数据接入与质量报告 | [ ] | [ ] | [ ] | +| 2 | 业务本体与指标词典 | [ ] | [ ] | [ ] | +| 3 | 经营看板与分析 | [ ] | [ ] | [ ] | +| 4 | 异常预警与归因 | [ ] | [ ] | [ ] | +| 5 | AI 经营建议 | [ ] | [ ] | [ ] | +| 6 | 整改任务与验收 | [ ] | [ ] | [ ] | +| 7 | 专项报告与复制建议 | [ ] | [ ] | [ ] | +| 8 | 培训与文档 | [ ] | [ ] | [ ] | + +--- + +# 附件二:费用与付款确认表 + +| 项目 | 约定 | +|:---|:---| +| 合同含税总额 | 人民币[ ]元(大写:[ ]) | +| 软件许可期 | [ ] | +| 首期款 | [ ]% / 人民币[ ]元 | +| 进度款 | [ ]% / 人民币[ ]元 | +| 验收款 | [ ]% / 人民币[ ]元 | +| 尾款 | [ ]% / 人民币[ ]元 | +| 年度运维/续订费 | 人民币[ ]元/年 | +| 差旅费 | [包含/实报实销/不发生] | +| 第三方费用 | [包含/甲方承担/按用量结算] | + +--- + +# 附件三:上线前必填商务与法务清单 + +> 以下项目不宜保留空白后直接签署。 + +- [ ] 甲乙双方工商主体、签署权限和送达信息 +- [ ] SaaS、私有化或混合部署方式 +- [ ] 许可用户、门店、关联公司和使用期限 +- [ ] 数据源、数据类型、数据周期和接入方式 +- [ ] 是否处理个人信息、敏感个人信息或重要数据 +- [ ] 是否调用第三方 AI 模型,数据是否离开甲方环境 +- [ ] 项目范围、排除项、里程碑和变更流程 +- [ ] 验收指标、基线、数据口径和外部排除因素 +- [ ] 费用、税率、付款条件、第三方费用与差旅费 +- [ ] 知识产权与定制成果权属 +- [ ] 数据安全事件通知时限、数据返还和删除期限 +- [ ] SLA、保修期、服务时间和赔偿机制 +- [ ] 违约金、责任上限、争议解决地点与方式 +- [ ] 案例宣传、商标使用和匿名数据使用是否授权 +- [ ] 双方法务、数据保护负责人和信息安全负责人已审核 diff --git a/玄谋智脑_老板版震撼宣传片剧本.md b/玄谋智脑_老板版震撼宣传片剧本.md new file mode 100644 index 0000000..d3c65a9 --- /dev/null +++ b/玄谋智脑_老板版震撼宣传片剧本.md @@ -0,0 +1,429 @@ +# 《看不见的利润》——玄谋智脑老板版宣传片剧本 + +> **品牌**:玄谋智脑 +> **副标题**:连锁企业行业数字本体与 AI 经营智脑 +> **目标观众**:连锁企业老板、董事长、总经理及投资决策者 +> **建议时长**:2 分 30 秒—2 分 45 秒 +> **风格**:冷峻、克制、高级,具有商业电影感和决策压迫感 +> **情绪曲线**:繁荣表象 → 利润危机 → 管理失控 → 看清问题 → 掌控全局 → 长期复利 + +## 一、核心创意 + +影片不从介绍产品功能开始,而是先向老板提出一个有压迫感的问题: + +> **你的企业可能每天都在增长,也可能每天都在漏掉利润。** + +用“营收上升但利润流失”形成第一次冲击,用“门店越多、管理越容易失控”形成第二次冲击,再让“玄谋智脑”以企业经营全局掌控者的形象出现。 + +影片的核心不是证明 AI 多么先进,而是让老板相信: + +> **玄谋智脑能让经营问题更早被发现、让整改真正落地,并把每一次改善复制到更多门店。** + +--- + +## 二、分镜剧本 + +### 0:00—0:12|老板以为企业正在增长 + +#### 画面 + +- 深夜城市航拍。 +- 一家家连锁门店在城市中依次亮起。 +- 地图上的门店节点不断增加。 +- 快速切换新店开业、顾客排队、外卖订单响起、收银数字增长、仓库繁忙运转。 +- 总部屏幕上的营收曲线持续上升。 + +#### 旁白 + +> 门店越来越多。 +> 订单越来越多。 +> 营收,也在增长。 + +#### 屏幕文字 + +> **企业正在增长。** + +画面停顿半秒,音乐突然切断。 + +文字瞬间碎裂,黑底上出现: + +> # 但利润呢? + +#### 声音 + +- 低沉心跳声逐渐增强。 +- 叠加订单提示音、收银声和货币流动声。 +- “但利润呢”出现时所有声音骤停。 + +--- + +### 0:12—0:30|看得见营收,看不见利润漏洞 + +#### 画面 + +- 刚才繁荣的画面迅速变暗。 +- 营收数字继续上升,利润数字却开始下降。 +- 红色资金流从不同经营环节向外流失。 +- 每个流失节点依次标记:低毛利 SKU、无效促销、人员闲置、高损耗库存、异常采购价格、持续亏损门店。 + +#### 旁白 + +> 订单增长了,促销却可能正在消耗利润。 +> 营收靠前的门店,可能没有创造相应的现金。 +> 畅销商品,可能只是制造了繁忙。 +> 每一家门店里,都可能存在老板看不见的利润漏洞。 + +#### 屏幕快闪文字 + +```text +低毛利 +高损耗 +无效工时 +库存占用 +促销替代 +门店亏损 +``` + +最后定格: + +> **不是企业没有数据。** +> **而是数据没有变成决策。** + +--- + +### 0:30—0:45|传统管理方式已经到达极限 + +#### 画面 + +- 总部会议室里,老板面对多块屏幕与大量报表。 +- POS、财务、外卖、库存、人力、Excel 和工作群消息不断涌现。 +- 不同报表上的数字互相矛盾。 +- 画面逐渐加速,数据、消息和预警几乎淹没老板。 + +#### 旁白 + +> POS、财务、库存、会员、外卖、人力…… +> 数据散落在不同系统里。 +> 开会先核对数字,出现问题再追问原因。 +> 当企业从 30 家店走向 300 家店,依靠人盯、表管、群里催,已经无法掌控全局。 + +#### 屏幕大字 + +> # 规模扩大,不应该意味着管理失控。 + +--- + +### 0:45—1:00|玄谋智脑登场 + +#### 画面 + +- 黑暗中出现一道蓝色光线。 +- 散落的数据节点被逐一连接。 +- “门店—商品—订单—会员—员工—供应商—库存—利润”形成立体的企业经营图谱。 +- 图谱从混乱逐渐转为清晰、稳定、可运行的经营系统。 +- 品牌名称缓慢出现。 + +#### 旁白 + +> 玄谋智脑。 +> 面向连锁企业的行业数字本体与 AI 经营智脑。 +> 它不替换企业现有系统,也不制造更多报表。 +> 它将散落的数据、行业知识和管理经验,连接成一套持续进化的经营决策能力。 + +#### 屏幕文字 + +```text +看清现在 +发现问题 +推动整改 +掌控未来 +``` + +#### 声音 + +- 音乐从压迫感转为低频、沉稳、具有力量的科技旋律。 +- 品牌出现时加入低频冲击音。 + +--- + +### 1:00—1:20|从异常到利润改善 + +#### 画面 + +- 企业经营图谱中出现一个红色异常点。 +- 镜头迅速向下穿透:企业 → 区域 → 门店 A-017 → 晚餐时段 → 人员排班。 +- 系统形成完整闭环链路。 + +```text +发现异常 +→ 穿透根因 +→ 测算影响 +→ 生成方案 +→ 推动执行 +→ 验证结果 +``` + +#### 旁白 + +> 玄谋智脑持续扫描企业经营状态。 +> 发现异常后,自动穿透到区域、门店、SKU、班次和订单。 +> 测算问题影响了多少利润,给出可以执行的整改方案。 +> 明确责任人和完成期限,并验证利润是否真正改善。 + +#### 屏幕大字 + +> **发现问题,不是终点。** +> **改善结果,才是。** + +--- + +### 1:20—1:35|案例一:SKU 利润优化 + +#### 画面 + +- 数百个 SKU 在数据空间中排列。 +- 低销量、低毛利、高损耗、原料重复、价格带重叠的商品逐步变红。 +- 低效 SKU 被重新组合,库存占用下降,利润曲线上升。 + +#### 旁白 + +> 某匿名连锁品牌,拥有数百个在售 SKU。 +> 玄谋智脑发现:部分商品只贡献极少销售额,却持续占用库存,增加报损和采购复杂度。 +> 下架低效 SKU,优化定价与配方,重构共享原料体系。 + +#### 屏幕模拟结果 + +```text +释放库存资金:约 80 万元 +年度减少报损:约 35 万元 +综合毛利率:提升约 0.6 个百分点 +``` + +> **角标**:匿名复合案例|模拟测算 + +--- + +### 1:35—1:50|案例二:人员排班 + +#### 画面 + +- 门店客流曲线与员工工时曲线同时出现。 +- 上午员工过剩区域变红;晚高峰人员不足区域变红。 +- AI 重新调整班次后,工时曲线与客流曲线逐渐匹配。 + +#### 旁白 + +> 某门店营收排名靠前,人效却位于区域末端。 +> 玄谋智脑按半小时预测客流和工作量,重新匹配正式工、小时工与备餐任务。 +> 不降低服务质量,减少无效工时。 + +#### 屏幕模拟结果 + +```text +单店每月节约:约 1.8 万元 +复制至 60 家门店 +年度改善空间:约 1,296 万元 +``` + +> **角标**:匿名复合案例|模拟测算 + +--- + +### 1:50—2:04|案例三:促销与关店决策 + +#### 画面 A:促销利润 + +- 订单量显示“+23%”。 +- 随后逐层扣除优惠补贴、平台佣金、低毛利商品、原价订单替代和新增人工。 +- 最后活动贡献利润从正数变为负数。 + +#### 旁白 A + +> 订单增长 23% 的活动,扣除补贴、佣金和订单替代后,贡献利润可能为负。 +> 玄谋智脑不只问活动带来了多少订单,而是问——每投入一元营销费用,最终增加了多少利润。 + +#### 画面 B:门店止损 + +- 一家长期亏损门店出现。 +- 四条决策路径同时展开:继续经营、投入整改、缩小面积、关停并迁移会员。 +- 每条路径后方出现未来 12 个月的利润、现金流与风险测算。 + +#### 旁白 B + +> 对于低效门店,它同时推演整改、缩店、迁址和关停方案。 +> 让一个困难的经验判断,变成有数据依据、有止损线、有退出预案的经营决策。 + +> **角标**:匿名复合案例|模拟测算 + +--- + +### 2:04—2:18|老板、总部、区域、店长共用一个经营闭环 + +#### 画面 + +四层组织结构依次亮起: + +```text +老板 +↓ +总部 +↓ +区域 +↓ +店长 +``` + +每一层出现自己的决策界面: + +- 老板:利润、风险、未来预测。 +- 总部:区域对标、资源配置。 +- 区域:异常门店、整改验收。 +- 店长:今日目标、执行动作。 + +#### 旁白 + +> 老板看结果。 +> 总部找原因。 +> 区域推动整改。 +> 店长执行动作。 +> 所有人使用同一套经营语言,所有动作回到同一个利润闭环。 + +#### 屏幕文字 + +> **一个企业** +> **一套经营认知** +> **一个执行闭环** + +--- + +### 2:18—2:30|从单店改善到企业长期复利 + +#### 画面 + +- 企业经营图谱不断扩大。 +- 30 家、100 家、300 家门店依次点亮。 +- 优秀门店的经营经验化为蓝色光流,快速复制到其他门店。 +- 依次出现:风险提前预警、经营趋势预测、现金流推演、数据资产沉淀、银行融资数据支持、企业最佳实践库。 + +#### 旁白 + +> 当每一次经营判断、整改动作和验证结果都被沉淀,企业获得的不再是一套软件。 +> 而是一项不依赖少数能人、能够支撑持续扩张、持续进化的经营能力。 + +--- + +### 2:30—2:42|结尾行动号召 + +#### 画面 + +- 画面切黑,停顿半秒。 +- 一条蓝色光线横向展开。 +- 主标题逐字出现。 + +> # 看清企业现在 +> # 掌控经营未来 + +随后品牌出现: + +> # 玄谋智脑 + +#### 旁白 + +> 不必从建设一套庞大的系统开始。 +> 先用八周,找到第一批可以验证的利润改善机会。 + +#### 最终屏幕 + +> **玄谋智脑** +> 让问题更早被发现 +> 让整改真正落地 +> 让每一次改善复制到更多门店 + +底部小字: + +> 行业数字本体与 AI 经营智脑 + +#### 声音 + +- 旁白语速放慢。 +- “八周”和“利润改善”重读。 +- 品牌出现时,音乐形成一次强烈、干净的收束。 + +--- + +## 三、开场钩子备选 + +### 首选 + +> **老板最危险的,不是看见亏损,而是看见营收,却没有看见利润正在消失。** + +### 备选一 + +> 你的企业,可能每天都在增长,也可能每天都在漏掉利润。 + +### 备选二 + +> 从 30 家店到 300 家店,最大的风险不是开得不够快,而是已经看不清每一家店。 + +--- + +## 四、配音要求 + +- **声线**:建议男声,40—50 岁质感,低沉、稳定、具有决策权威感。 +- **表达**:克制、有力,避免传统广告腔和过度煽情。 +- **开场**:语速较慢,使用停顿制造压力。 +- **危机段**:语速逐渐加快,叠加数据涌现的窒息感。 +- **品牌登场**:声音下沉,“玄谋智脑”逐字清晰发音。 +- **案例段**:加快节奏,强调“发现—动作—结果”。 +- **结尾**:再次放慢,重读“八周”、“可以验证”和“利润改善”。 + +--- + +## 五、视觉与音乐方向 + +### 视觉色彩 + +- 主背景:深黑、炭灰。 +- 品牌主色:冷蓝色光线。 +- 风险与利润流失:暗红色。 +- 经营改善:由红转蓝、由混乱转清晰。 + +### 画面风格 + +- 高端商业电影质感,避免廉价科技光效。 +- 数据图谱与企业经营场景结合,不制作密集仪表盘界面。 +- 字体简洁、粗壮,关键句使用黑底白字或黑底蓝字。 +- 案例不使用真实客户形象,可使用概念化门店、匿名编号与抽象数据。 + +### 音乐节奏 + +1. **0:00—0:12**:心跳与低频,表面繁荣,暗含不安。 +2. **0:12—0:45**:低音增强,金属与噪音逐渐累积,形成管理压力。 +3. **0:45—1:20**:品牌登场,出现有秩序的低频节拍。 +4. **1:20—2:04**:案例快节奏推进,重点数据出现时加入短促冲击音。 +5. **2:04—2:30**:音乐开始变得开阔,表现组织协同与规模扩张。 +6. **2:30—2:42**:减少音乐层次,将注意力交给旁白和品牌。 + +--- + +## 六、数据安全与宣传合规要求 + +1. 不展示任何真实客户名称、真实门店名称或品牌标识。 +2. 不使用生产系统截图、真实报表、订单明细或数据库结构。 +3. 不展示会员姓名、手机号、身份信息、薪酬或个人工号。 +4. 案例中的企业、门店和人员统一使用匿名编号。 +5. 所有金额与改善数据在画面中标注:**“匿名复合案例|模拟测算”**。 +6. 不使用“保证提升”、“必然增利”、“自动替代决策”等过度承诺。 +7. AI 的角色表达为“发现、归因、测算、建议和跟踪”,重要经营决策仍由管理者审批。 + +--- + +## 七、制作原则 + +- 前 3 秒必须出现利润危机钩子。 +- 前 30 秒完成“繁荣表象—利润危机—管理失控”的情绪推进。 +- 不堆砌技术名词,所有能力都落到利润、现金流、风险和执行结果。 +- 不将影片制作成功能界面录屏,应以企业经营决策故事为主线。 +- 案例不只呈现问题,必须呈现“发现—分析—动作—验证”。 +- 画面文字保持极简,每个镜头只传达一个重点。 +- 结尾不使用泛化的“谢谢观看”,而是推动老板接受“八周利润专项验证”。 diff --git a/玄谋智脑_连锁企业老板决策版.pptx b/玄谋智脑_连锁企业老板决策版.pptx new file mode 100644 index 0000000..b045a47 Binary files /dev/null and b/玄谋智脑_连锁企业老板决策版.pptx differ diff --git a/玄谋智脑_连锁企业老板决策版.pptx.inspect.ndjson b/玄谋智脑_连锁企业老板决策版.pptx.inspect.ndjson new file mode 100644 index 0000000..5f8be17 --- /dev/null +++ b/玄谋智脑_连锁企业老板决策版.pptx.inspect.ndjson @@ -0,0 +1,456 @@ +{"kind":"deck","id":"pr/b7j3z3","name":"Deck"} +{"kind":"layout","layoutId":"f673259f-cc37-4c44-adbc-61865f765d54","name":"Master","type":"master"} +{"kind":"layout","layoutId":"dca06ee3-56a1-466b-bef1-c810d243d6fc","name":"Title Slide","type":"title"} +{"kind":"slide","id":"sl/hj9qgi","slide":1,"title":"玄谋智脑","textShapes":4} +{"kind":"textbox","id":"sh/ehgji98z","slide":1,"text":"玄谋智脑","textPreview":"玄谋智脑","textChars":4,"textLines":1,"bbox":[42,34,360,36]} +{"kind":"textbox","id":"sh/1k72t47a","slide":1,"text":"让老板看清每一分利润\n管住每一家门店","textPreview":"让老板看清每一分利润 | 管住每一家门店","textChars":18,"textLines":2,"bbox":[42,180,990,180]} +{"kind":"textbox","id":"sh/gjy1kzq5","slide":1,"text":"面向连锁企业的行业数字本体与 AI 经营智脑","textPreview":"面向连锁企业的行业数字本体与 AI 经营智脑","textChars":22,"textLines":1,"bbox":[42,402,870,48]} +{"kind":"shape","id":"sh/n69kvepg","slide":1,"bbox":[42,615,1196,0]} +{"kind":"textbox","id":"sh/2lgjm98v","slide":1,"text":"对外保密版 · 案例与金额均为匿名示意","textPreview":"对外保密版 · 案例与金额均为匿名示意","textChars":19,"textLines":1,"bbox":[42,640,620,24]} +{"kind":"notes","id":"nt/hj9qgi","slide":1,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/qxqhfa","slide":2,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":13} +{"kind":"textbox","id":"sh/tcv6tcbq","slide":2,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/6947yxcz","slide":2,"text":"老板真正需要回答的,只有三个问题","textPreview":"老板真正需要回答的,只有三个问题","textChars":16,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/rador2tk","slide":2,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/k725wnut","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/58v6psbe","slide":2,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,190,80,48]} +{"kind":"shape","id":"sh/i5knuxc3","slide":2,"bbox":[42,248,350,0]} +{"kind":"textbox","id":"sh/j6tonito","slide":2,"text":"哪里在亏钱?","textPreview":"哪里在亏钱?","textChars":6,"textLines":1,"bbox":[42,278,350,52]} +{"kind":"textbox","id":"sh/wj25snux","slide":2,"text":"门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理?","textPreview":"门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理?","textChars":30,"textLines":1,"bbox":[42,352,350,140]} +{"kind":"textbox","id":"sh/xkb6lsbi","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[443,190,80,48]} +{"kind":"shape","id":"sh/9gr6h83m","slide":2,"bbox":[443,248,350,0]} +{"kind":"textbox","id":"sh/ofi5o321","slide":2,"text":"哪些动作能增利?","textPreview":"哪些动作能增利?","textChars":8,"textLines":1,"bbox":[443,278,350,52]} +{"kind":"textbox","id":"sh/ne9ofylg","slide":2,"text":"不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。","textPreview":"不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。","textChars":28,"textLines":1,"bbox":[443,352,350,140]} +{"kind":"textbox","id":"sh/md0nmdkv","slide":2,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[844,190,80,48]} +{"kind":"shape","id":"sh/1cr6d83a","slide":2,"bbox":[844,248,350,0]} +{"kind":"textbox","id":"sh/0bi5k325","slide":2,"text":"扩张后还能管住吗?","textPreview":"扩张后还能管住吗?","textChars":9,"textLines":1,"bbox":[844,278,350,52]} +{"kind":"textbox","id":"sh/zqpobylk","slide":2,"text":"从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制?","textPreview":"从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制?","textChars":34,"textLines":1,"bbox":[844,352,350,140]} +{"kind":"textbox","id":"sh/epgnitkz","slide":2,"text":"不是看更多报表,而是将数据转化为可验证的经营改善。","textPreview":"不是看更多报表,而是将数据转化为可验证的经营改善。","textChars":25,"textLines":1,"bbox":[42,590,1100,42]} +{"kind":"notes","id":"nt/qxqhfa","slide":2,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/1s4wob","slide":3,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/2pszedgz","slide":3,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/psjypsza","slide":3,"text":"连锁企业不缺数据,缺的是利润穿透力","textPreview":"连锁企业不缺数据,缺的是利润穿透力","textChars":17,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/orahgny5","slide":3,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/bu1gr2hg","slide":3,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/qtszixgv","slide":3,"bbox":[42,188,360,160]} +{"kind":"shape","id":"sh/dw3ytczm","slide":3,"bbox":[42,188,7,160]} +{"kind":"textbox","id":"sh/cvuhk7y1","slide":3,"text":"营收","textPreview":"营收","textChars":2,"textLines":1,"bbox":[66,210,314,40]} +{"kind":"textbox","id":"sh/ryhgfyhc","slide":3,"text":"营收增长,利润为何没有同步?","textPreview":"营收增长,利润为何没有同步?","textChars":14,"textLines":1,"bbox":[66,262,314,68]} +{"kind":"shape","id":"sh/6x8f6tgr","slide":3,"bbox":[443,188,360,160]} +{"kind":"shape","id":"sh/c32t0jyt","slide":3,"bbox":[443,188,7,160]} +{"kind":"textbox","id":"sh/d4ba9ofe","slide":3,"text":"门店","textPreview":"门店","textChars":2,"textLines":1,"bbox":[467,210,314,40]} +{"kind":"textbox","id":"sh/qh0bytgn","slide":3,"text":"哪些门店看似赚钱,实际占用资金?","textPreview":"哪些门店看似赚钱,实际占用资金?","textChars":16,"textLines":1,"bbox":[467,262,314,68]} +{"kind":"shape","id":"sh/r29s7yx8","slide":3,"bbox":[844,188,360,160]} +{"kind":"shape","id":"sh/072t43yp","slide":3,"bbox":[844,188,7,160]} +{"kind":"textbox","id":"sh/l8bad8fa","slide":3,"text":"促销","textPreview":"促销","textChars":2,"textLines":1,"bbox":[868,210,314,40]} +{"kind":"textbox","id":"sh/y5kb2tgz","slide":3,"text":"哪些活动增加订单,却消耗利润?","textPreview":"哪些活动增加订单,却消耗利润?","textChars":15,"textLines":1,"bbox":[868,262,314,68]} +{"kind":"shape","id":"sh/z6tsbyxk","slide":3,"bbox":[42,390,360,160]} +{"kind":"shape","id":"sh/gbi9szyl","slide":3,"bbox":[42,390,7,160]} +{"kind":"textbox","id":"sh/hcra14f6","slide":3,"text":"SKU","textPreview":"SKU","textChars":3,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/xwzi9wny","slide":3,"text":"哪些商品销量不低,却毛利不足?","textPreview":"哪些商品销量不低,却毛利不足?","textChars":15,"textLines":1,"bbox":[66,464,314,68]} +{"kind":"shape","id":"sh/wvqhgbmd","slide":3,"bbox":[443,390,360,160]} +{"kind":"shape","id":"sh/vuhg765s","slide":3,"bbox":[443,390,7,160]} +{"kind":"textbox","id":"sh/atoze147","slide":3,"text":"人力","textPreview":"人力","textChars":2,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/5kzidgnu","slide":3,"text":"哪些时段人员闲置,高峰又缺人?","textPreview":"哪些时段人员闲置,高峰又缺人?","textChars":15,"textLines":1,"bbox":[467,464,314,68]} +{"kind":"shape","id":"sh/kzqhkbm9","slide":3,"bbox":[844,390,360,160]} +{"kind":"shape","id":"sh/jyh0b65o","slide":3,"bbox":[844,390,7,160]} +{"kind":"textbox","id":"sh/ix8zi143","slide":3,"text":"止损","textPreview":"止损","textChars":2,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/tojih0nq","slide":3,"text":"哪些门店应整改、迁址、缩编或关停?","textPreview":"哪些门店应整改、迁址、缩编或关停?","textChars":17,"textLines":1,"bbox":[868,464,314,68]} +{"kind":"notes","id":"nt/1s4wob","slide":3,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/ikpsiw","slide":4,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":22} +{"kind":"textbox","id":"sh/h43mhg7q","slide":4,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/uhcn61of","slide":4,"text":"玄谋智脑将一个异常,变成经过验证的利润改善","textPreview":"玄谋智脑将一个异常,变成经过验证的利润改善","textChars":21,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/v2l4f6p0","slide":4,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/47e5cv6h","slide":4,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/58n6l072","slide":4,"bbox":[82,350,1090,0]} +{"kind":"shape","id":"sh/i5wnalob","slide":4,"bbox":[54,332,36,36]} +{"kind":"textbox","id":"sh/j65ojqpw","slide":4,"text":"1","textPreview":"1","textChars":1,"textLines":1,"bbox":[54,337,36,24]} +{"kind":"textbox","id":"sh/kba50r6d","slide":4,"text":"发现","textPreview":"发现","textChars":2,"textLines":1,"bbox":[44,235,150,40]} +{"kind":"textbox","id":"sh/lcjm9w7y","slide":4,"text":"利润异常","textPreview":"利润异常","textChars":4,"textLines":1,"bbox":[44,400,164,78]} +{"kind":"shape","id":"sh/tw32ts7i","slide":4,"bbox":[253,332,36,36]} +{"kind":"textbox","id":"sh/svul0nqx","slide":4,"text":"2","textPreview":"2","textChars":1,"textLines":1,"bbox":[253,337,36,24]} +{"kind":"textbox","id":"sh/rulkr2pc","slide":4,"text":"穿透","textPreview":"穿透","textChars":2,"textLines":1,"bbox":[243,235,150,40]} +{"kind":"textbox","id":"sh/6tc3yx8r","slide":4,"text":"区域·门店·SKU·班次","textPreview":"区域·门店·SKU·班次","textChars":12,"textLines":1,"bbox":[243,400,164,78]} +{"kind":"shape","id":"sh/10n2xc7e","slide":4,"bbox":[452,332,36,36]} +{"kind":"textbox","id":"sh/gzul47q9","slide":4,"text":"3","textPreview":"3","textChars":1,"textLines":1,"bbox":[452,337,36,24]} +{"kind":"textbox","id":"sh/fylkv2po","slide":4,"text":"测算","textPreview":"测算","textChars":2,"textLines":1,"bbox":[442,235,150,40]} +{"kind":"textbox","id":"sh/exc32x83","slide":4,"text":"影响金额与优先级","textPreview":"影响金额与优先级","textChars":8,"textLines":1,"bbox":[442,400,164,78]} +{"kind":"shape","id":"sh/p4n21c7q","slide":4,"bbox":[651,332,36,36]} +{"kind":"textbox","id":"sh/o3el8rq5","slide":4,"text":"4","textPreview":"4","textChars":1,"textLines":1,"bbox":[651,337,36,24]} +{"kind":"textbox","id":"sh/8j6dkf2d","slide":4,"text":"整改","textPreview":"整改","textChars":2,"textLines":1,"bbox":[641,235,150,40]} +{"kind":"textbox","id":"sh/9kfetkjy","slide":4,"text":"动作·责任人·期限","textPreview":"动作·责任人·期限","textChars":9,"textLines":1,"bbox":[641,400,164,78]} +{"kind":"shape","id":"sh/mhovipkn","slide":4,"bbox":[850,332,36,36]} +{"kind":"textbox","id":"sh/7ixwra18","slide":4,"text":"5","textPreview":"5","textChars":1,"textLines":1,"bbox":[850,337,36,24]} +{"kind":"textbox","id":"sh/w76dozip","slide":4,"text":"验证","textPreview":"验证","textChars":2,"textLines":1,"bbox":[840,235,150,40]} +{"kind":"textbox","id":"sh/h8fex4ja","slide":4,"text":"利润是否真正改善","textPreview":"利润是否真正改善","textChars":8,"textLines":1,"bbox":[840,400,164,78]} +{"kind":"shape","id":"sh/ulovmp0j","slide":4,"bbox":[1049,332,36,36]} +{"kind":"textbox","id":"sh/vmxwvu14","slide":4,"text":"6","textPreview":"6","textChars":1,"textLines":1,"bbox":[1049,337,36,24]} +{"kind":"textbox","id":"sh/cbmdcv2l","slide":4,"text":"沉淀","textPreview":"沉淀","textChars":2,"textLines":1,"bbox":[1039,235,150,40]} +{"kind":"textbox","id":"sh/dcvel0jq","slide":4,"text":"更新企业最佳实践","textPreview":"更新企业最佳实践","textChars":8,"textLines":1,"bbox":[1039,400,164,78]} +{"kind":"shape","id":"sh/f61gryl8","slide":4,"bbox":[42,552,1196,58]} +{"kind":"textbox","id":"sh/e5szitk3","slide":4,"text":"关键不是“发现问题”,而是“把问题变成可复制的利润改善”。","textPreview":"关键不是“发现问题”,而是“把问题变成可复制的利润改善”。","textChars":29,"textLines":1,"bbox":[66,568,1148,30]} +{"kind":"notes","id":"nt/ikpsiw","slide":4,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/73vtdw","slide":5,"title":"匿名复合案例 · SKU 组合决策","textShapes":15} +{"kind":"textbox","id":"sh/dsv6lgzq","slide":5,"text":"匿名复合案例 · SKU 组合决策","textPreview":"匿名复合案例 · SKU 组合决策","textChars":17,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/qp47algf","slide":5,"text":"SKU 更多不等于选择更多,可能只是成本更高","textPreview":"SKU 更多不等于选择更多,可能只是成本更高","textChars":22,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/rqdoj6h0","slide":5,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/4n2p8by9","slide":5,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/5ob6hgzu","slide":5,"text":"480","textPreview":"480","textChars":3,"textLines":1,"bbox":[42,182,190,72]} +{"kind":"textbox","id":"sh/ilkn61g3","slide":5,"text":"在售 SKU","textPreview":"在售 SKU","textChars":6,"textLines":1,"bbox":[42,256,190,30]} +{"kind":"textbox","id":"sh/3mtof6ho","slide":5,"text":"后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。","textPreview":"后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。","textChars":32,"textLines":1,"bbox":[262,190,800,76]} +{"kind":"shape","id":"sh/oj6pkvyd","slide":5,"bbox":[42,328,270,170]} +{"kind":"textbox","id":"sh/9kfqd0zy","slide":5,"text":"37 个","textPreview":"37 个","textChars":4,"textLines":1,"bbox":[66,354,222,64]} +{"kind":"textbox","id":"sh/1kr6d8zi","slide":5,"text":"低销量·低毛利·高损耗","textPreview":"低销量·低毛利·高损耗","textChars":11,"textLines":1,"bbox":[66,434,222,40]} +{"kind":"shape","id":"sh/gji543ix","slide":5,"bbox":[341,328,270,170]} +{"kind":"textbox","id":"sh/fi94bihc","slide":5,"text":"9 个","textPreview":"9 个","textChars":3,"textLines":1,"bbox":[365,354,222,64]} +{"kind":"textbox","id":"sh/eh0n2d0r","slide":5,"text":"高销量但低贡献利润","textPreview":"高销量但低贡献利润","textChars":9,"textLines":1,"bbox":[365,434,222,40]} +{"kind":"shape","id":"sh/tgrm98jm","slide":5,"bbox":[640,328,270,170]} +{"kind":"textbox","id":"sh/sfi503i1","slide":5,"text":"16 个","textPreview":"16 个","textChars":4,"textLines":1,"bbox":[664,354,222,64]} +{"kind":"textbox","id":"sh/rup47y1g","slide":5,"text":"可共享或替换原料","textPreview":"可共享或替换原料","textChars":8,"textLines":1,"bbox":[664,434,222,40]} +{"kind":"shape","id":"sh/6tgnyt0v","slide":5,"bbox":[939,328,270,170]} +{"kind":"textbox","id":"sh/dcb6lszq","slide":5,"text":"22 个","textPreview":"22 个","textChars":4,"textLines":1,"bbox":[963,354,222,64]} +{"kind":"textbox","id":"sh/cb25c7i5","slide":5,"text":"价格带重叠","textPreview":"价格带重叠","textChars":5,"textLines":1,"bbox":[963,434,222,40]} +{"kind":"shape","id":"sh/w7uh4vud","slide":5,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/x83yx0by","slide":5,"text":"模拟测算:释放库存资金约 80 万元 · 年减少报损约 35 万元 · 综合毛利率提升约 0.6 个百分点","textPreview":"模拟测算:释放库存资金约 80 万元 · 年减少报损约 35 万元 · 综合毛利率提升约 0.6 个百分点","textChars":53,"textLines":1,"bbox":[68,558,1140,40]} +{"kind":"notes","id":"nt/73vtdw","slide":5,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/aoi4dv","slide":6,"title":"匿名复合案例 · 门店 A-017","textShapes":10} +{"kind":"textbox","id":"sh/rqd0ja9c","slide":6,"text":"匿名复合案例 · 门店 A-017","textPreview":"匿名复合案例 · 门店 A-017","textChars":17,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/crm1sfqx","slide":6,"text":"排班不是人数问题,而是工时与客流的匹配问题","textPreview":"排班不是人数问题,而是工时与客流的匹配问题","textChars":21,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/dsfilkri","slide":6,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/2l4zm58v","slide":6,"text":"06","textPreview":"06","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/3md0fa9g","slide":6,"bbox":[42,182,362,314]} +{"kind":"shape","id":"sh/4nmhovql","slide":6,"bbox":[42,182,7,314]} +{"kind":"textbox","id":"sh/povih0r6","slide":6,"text":"发现","textPreview":"发现","textChars":2,"textLines":1,"bbox":[66,204,316,40]} +{"kind":"textbox","id":"sh/uxkzil8j","slide":6,"text":"· 工作日上午存在闲置工时\n· 周五晚高峰经常缺人\n· 班次依据历史习惯\n· 加班集中在少数岗位","textPreview":"· 工作日上午存在闲置工时 | · 周五晚高峰经常缺人 | · 班次依据历史习惯 | · 加班集中在少数岗位","textChars":48,"textLines":4,"bbox":[66,256,316,222]} +{"kind":"shape","id":"sh/fit0bq94","slide":6,"bbox":[458,182,362,314]} +{"kind":"shape","id":"sh/bi18zyhc","slide":6,"bbox":[458,182,7,314]} +{"kind":"textbox","id":"sh/ahs76tgr","slide":6,"text":"动作","textPreview":"动作","textChars":2,"textLines":1,"bbox":[482,204,316,40]} +{"kind":"textbox","id":"sh/xkjq18zi","slide":6,"text":"· 按半小时预测工作量\n· 调整早晚班起止时间\n· 高峰增加小时工\n· 备餐前移至客流爬升前","textPreview":"· 按半小时预测工作量 | · 调整早晚班起止时间 | · 高峰增加小时工 | · 备餐前移至客流爬升前","textChars":46,"textLines":4,"bbox":[482,256,316,222]} +{"kind":"shape","id":"sh/cjap83yx","slide":6,"bbox":[874,182,364,314]} +{"kind":"shape","id":"sh/z6183iho","slide":6,"bbox":[874,182,7,314]} +{"kind":"textbox","id":"sh/yls7adg3","slide":6,"text":"验证","textPreview":"验证","textChars":2,"textLines":1,"bbox":[898,204,318,40]} +{"kind":"textbox","id":"sh/l83q5sze","slide":6,"text":"同时监控:\n\n· 人工成本\n· 出品时效\n· 顾客满意度\n\n避免单纯压缩人力。","textPreview":"同时监控: | | · 人工成本 | · 出品时效 | · 顾客满意度 | | 避免单纯压缩人力。","textChars":39,"textLines":7,"bbox":[898,256,318,222]} +{"kind":"shape","id":"sh/k7u9cny9","slide":6,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/fqh8reh4","slide":6,"text":"模拟测算:单店每月节约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。","textPreview":"模拟测算:单店每月节约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。","textChars":47,"textLines":1,"bbox":[66,557,1148,42]} +{"kind":"notes","id":"nt/aoi4dv","slide":6,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/wporep","slide":7,"title":"匿名复合案例 · 营销活动 X","textShapes":17} +{"kind":"textbox","id":"sh/3mt432dg","slide":7,"text":"匿名复合案例 · 营销活动 X","textPreview":"匿名复合案例 · 营销活动 X","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/4n2lcne1","slide":7,"text":"订单增长 23%,不代表活动真正成功","textPreview":"订单增长 23%,不代表活动真正成功","textChars":18,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/pobm5sv6","slide":7,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ux036dwj","slide":7,"text":"07","textPreview":"07","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/fy94zid4","slide":7,"bbox":[42,186,350,170]} +{"kind":"textbox","id":"sh/gzil8nep","slide":7,"text":"+23%","textPreview":"+23%","textChars":4,"textLines":1,"bbox":[66,212,302,64]} +{"kind":"textbox","id":"sh/h0rm1sva","slide":7,"text":"订单增长","textPreview":"订单增长","textChars":4,"textLines":1,"bbox":[66,292,302,40]} +{"kind":"shape","id":"sh/6tg32dwn","slide":7,"bbox":[42,378,350,170]} +{"kind":"textbox","id":"sh/7up4vid8","slide":7,"text":"负值","textPreview":"负值","textChars":2,"textLines":1,"bbox":[66,404,302,64]} +{"kind":"textbox","id":"sh/jqxsve1c","slide":7,"text":"穿透成本后的活动贡献利润","textPreview":"穿透成本后的活动贡献利润","textChars":12,"textLines":1,"bbox":[66,484,302,40]} +{"kind":"textbox","id":"sh/ipor29kr","slide":7,"text":"活动为什么亏钱","textPreview":"活动为什么亏钱","textChars":7,"textLines":1,"bbox":[454,186,360,40]} +{"kind":"textbox","id":"sh/5cfaxoj2","slide":7,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[454,258,42,28]} +{"kind":"textbox","id":"sh/kr694j2h","slide":7,"text":"低毛利商品占比上升","textPreview":"低毛利商品占比上升","textChars":9,"textLines":1,"bbox":[510,254,650,40]} +{"kind":"shape","id":"sh/7ehsze18","slide":7,"bbox":[510,300,650,0]} +{"kind":"textbox","id":"sh/6dor69kn","slide":7,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[454,323,42,28]} +{"kind":"textbox","id":"sh/tgza1oje","slide":7,"text":"高价值会员获得无差别优惠","textPreview":"高价值会员获得无差别优惠","textChars":12,"textLines":1,"bbox":[510,319,650,40]} +{"kind":"shape","id":"sh/sfqt8j2t","slide":7,"bbox":[510,365,650,0]} +{"kind":"textbox","id":"sh/nidsnu14","slide":7,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[454,388,42,28]} +{"kind":"textbox","id":"sh/mh4rupkj","slide":7,"text":"促销订单替代了原价订单","textPreview":"促销订单替代了原价订单","textChars":11,"textLines":1,"bbox":[510,384,650,40]} +{"kind":"shape","id":"sh/qdcv2x47","slide":7,"bbox":[510,430,650,0]} +{"kind":"textbox","id":"sh/relcv2lc","slide":7,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[454,453,42,28]} +{"kind":"textbox","id":"sh/cfud47mx","slide":7,"text":"只评价订单和营收,没有评价增量利润","textPreview":"只评价订单和营收,没有评价增量利润","textChars":17,"textLines":1,"bbox":[510,449,650,40]} +{"kind":"shape","id":"sh/dg3uxs3i","slide":7,"bbox":[510,495,650,0]} +{"kind":"shape","id":"sh/29svyd4v","slide":7,"bbox":[454,544,746,67]} +{"kind":"textbox","id":"sh/3a1crilg","slide":7,"text":"用“每投入 1 元营销费用增加多少贡献利润”评价活动。","textPreview":"用“每投入 1 元营销费用增加多少贡献利润”评价活动。","textChars":27,"textLines":1,"bbox":[478,562,700,34]} +{"kind":"notes","id":"nt/wporep","slide":7,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/wgyf4c","slide":8,"title":"匿名复合案例 · 门店 D-006","textShapes":19} +{"kind":"textbox","id":"sh/yh8ru5o3","slide":8,"text":"匿名复合案例 · 门店 D-006","textPreview":"匿名复合案例 · 门店 D-006","textChars":17,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/l4zapknu","slide":8,"text":"关店不应靠感觉,而应比较未来 12 个月的不同情景","textPreview":"关店不应靠感觉,而应比较未来 12 个月的不同情景","textChars":25,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/k3q9wf69","slide":8,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/bexsjq5s","slide":8,"text":"08","textPreview":"08","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/adorq5o7","slide":8,"bbox":[42,180,340,55]} +{"kind":"textbox","id":"sh/xgzal0ni","slide":8,"text":"方案","textPreview":"方案","textChars":2,"textLines":1,"bbox":[60,197,304,26]} +{"kind":"shape","id":"sh/wf69sv6d","slide":8,"bbox":[382,180,378,55]} +{"kind":"textbox","id":"sh/va1svu5w","slide":8,"text":"12 个月模拟结果","textPreview":"12 个月模拟结果","textChars":9,"textLines":1,"bbox":[400,197,342,26]} +{"kind":"shape","id":"sh/u9sb2pob","slide":8,"bbox":[760,180,478,55]} +{"kind":"textbox","id":"sh/g72ls36d","slide":8,"text":"决策建议","textPreview":"决策建议","textChars":4,"textLines":1,"bbox":[778,197,442,26]} +{"kind":"shape","id":"sh/h8b21o7y","slide":8,"bbox":[42,235,340,72]} +{"kind":"textbox","id":"sh/u5k3qto7","slide":8,"text":"继续经营","textPreview":"继续经营","textChars":4,"textLines":1,"bbox":[60,256,304,35]} +{"kind":"shape","id":"sh/v6tkzyps","slide":8,"bbox":[382,235,378,72]} +{"kind":"textbox","id":"sh/832loj61","slide":8,"text":"预计亏损 92 万","textPreview":"预计亏损 92 万","textChars":9,"textLines":1,"bbox":[400,256,342,35]} +{"kind":"shape","id":"sh/t4b2xo7m","slide":8,"bbox":[760,235,478,72]} +{"kind":"textbox","id":"sh/6hk3m9ob","slide":8,"text":"不建议","textPreview":"不建议","textChars":3,"textLines":1,"bbox":[778,256,442,35]} +{"kind":"shape","id":"sh/72tkvepw","slide":8,"bbox":[42,307,340,72]} +{"kind":"textbox","id":"sh/kfilkj65","slide":8,"text":"投入整改","textPreview":"投入整改","textChars":4,"textLines":1,"bbox":[60,328,304,35]} +{"kind":"shape","id":"sh/lgr2t47q","slide":8,"bbox":[382,307,378,72]} +{"kind":"textbox","id":"sh/1wjih0ze","slide":8,"text":"预计亏损降至 35 万","textPreview":"预计亏损降至 35 万","textChars":11,"textLines":1,"bbox":[400,328,342,35]} +{"kind":"shape","id":"sh/0va1ovyt","slide":8,"bbox":[760,307,478,72]} +{"kind":"textbox","id":"sh/za10fqh8","slide":8,"text":"高风险,设止损线","textPreview":"高风险,设止损线","textChars":8,"textLines":1,"bbox":[778,328,442,35]} +{"kind":"shape","id":"sh/e9sjm5g3","slide":8,"bbox":[42,379,340,72]} +{"kind":"textbox","id":"sh/d8jid0zi","slide":8,"text":"缩小面积","textPreview":"缩小面积","textChars":4,"textLines":1,"bbox":[60,400,304,35]} +{"kind":"shape","id":"sh/c7a1kvyx","slide":8,"bbox":[382,379,378,72]} +{"kind":"textbox","id":"sh/r610bqhc","slide":8,"text":"预计接近盈亏平衡","textPreview":"预计接近盈亏平衡","textChars":8,"textLines":1,"bbox":[400,400,342,35]} +{"kind":"shape","id":"sh/q58zilgr","slide":8,"bbox":[760,379,478,72]} +{"kind":"textbox","id":"sh/x43ipkzm","slide":8,"text":"租约可重谈时考虑","textPreview":"租约可重谈时考虑","textChars":8,"textLines":1,"bbox":[778,400,442,35]} +{"kind":"shape","id":"sh/w3u1wfy1","slide":8,"bbox":[42,451,340,72]} +{"kind":"textbox","id":"sh/u9ofqhwj","slide":8,"text":"关停并迁移会员","textPreview":"关停并迁移会员","textChars":7,"textLines":1,"bbox":[60,472,304,35]} +{"kind":"shape","id":"sh/faxgjmx4","slide":8,"bbox":[382,451,378,72]} +{"kind":"textbox","id":"sh/gb6xsrep","slide":8,"text":"预计减少亏损 76 万","textPreview":"预计减少亏损 76 万","textChars":11,"textLines":1,"bbox":[400,472,342,35]} +{"kind":"shape","id":"sh/hcfylwfa","slide":8,"bbox":[760,451,478,72]} +{"kind":"textbox","id":"sh/654fmhwn","slide":8,"text":"优先建议","textPreview":"优先建议","textChars":4,"textLines":1,"bbox":[778,472,442,35]} +{"kind":"textbox","id":"sh/76dgf2x8","slide":8,"text":"AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。","textPreview":"AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。","textChars":33,"textLines":1,"bbox":[42,565,1160,44]} +{"kind":"notes","id":"nt/wgyf4c","slide":8,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/5hkg8c","slide":9,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/sbi9o3ap","slide":9,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/ra9sfy9k","slide":9,"text":"老板、总部、区域、店长,共用一个经营闭环","textPreview":"老板、总部、区域、店长,共用一个经营闭环","textChars":20,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/q90rmtsz","slide":9,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/58radore","slide":9,"text":"09","textPreview":"09","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/47i9kjat","slide":9,"bbox":[42,190,265,316]} +{"kind":"textbox","id":"sh/369sbe98","slide":9,"text":"老板","textPreview":"老板","textChars":2,"textLines":1,"bbox":[64,214,220,46]} +{"kind":"textbox","id":"sh/i50ritsn","slide":9,"text":"看结果","textPreview":"看结果","textChars":3,"textLines":1,"bbox":[64,296,220,44]} +{"kind":"textbox","id":"sh/p4vapsri","slide":9,"text":"利润·风险·资源投向","textPreview":"利润·风险·资源投向","textChars":10,"textLines":1,"bbox":[64,386,220,72]} +{"kind":"textbox","id":"sh/o329wnqx","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[310,323,30,36]} +{"kind":"shape","id":"sh/a5obe18f","slide":9,"bbox":[341,190,265,316]} +{"kind":"textbox","id":"sh/b6xc76p0","slide":9,"text":"总部","textPreview":"总部","textChars":2,"textLines":1,"bbox":[363,214,220,46]} +{"kind":"textbox","id":"sh/c76tgrq5","slide":9,"text":"找原因","textPreview":"找原因","textChars":3,"textLines":1,"bbox":[363,296,220,44]} +{"kind":"textbox","id":"sh/x8fu9w7q","slide":9,"text":"跨区域对标·政策评估","textPreview":"跨区域对标·政策评估","textChars":10,"textLines":1,"bbox":[363,386,220,72]} +{"kind":"textbox","id":"sh/2h4bah83","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[609,323,30,36]} +{"kind":"shape","id":"sh/n2dc3mpo","slide":9,"bbox":[640,190,265,316]} +{"kind":"textbox","id":"sh/o36tcrq9","slide":9,"text":"区域","textPreview":"区域","textChars":2,"textLines":1,"bbox":[662,214,220,46]} +{"kind":"textbox","id":"sh/p4fu5w7u","slide":9,"text":"推整改","textPreview":"推整改","textChars":3,"textLines":1,"bbox":[662,296,220,44]} +{"kind":"textbox","id":"sh/6d8vmlon","slide":9,"text":"门店分级·任务·验收","textPreview":"门店分级·任务·验收","textChars":10,"textLines":1,"bbox":[662,386,220,72]} +{"kind":"textbox","id":"sh/7yhcfqps","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[908,323,30,36]} +{"kind":"shape","id":"sh/3i987i5k","slide":9,"bbox":[939,190,265,316]} +{"kind":"textbox","id":"sh/ih0rydoz","slide":9,"text":"店长","textPreview":"店长","textChars":2,"textLines":1,"bbox":[961,214,220,46]} +{"kind":"textbox","id":"sh/5kbq98na","slide":9,"text":"做动作","textPreview":"做动作","textChars":3,"textLines":1,"bbox":[961,296,220,44]} +{"kind":"textbox","id":"sh/4ji90n6p","slide":9,"text":"日目标·偏差·行动建议","textPreview":"日目标·偏差·行动建议","textChars":11,"textLines":1,"bbox":[961,386,220,72]} +{"kind":"shape","id":"sh/rmtsbi5g","slide":9,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/qlkr2dov","slide":9,"text":"结果回到经营大盘:执行不是终点,改善结果才是。","textPreview":"结果回到经营大盘:执行不是终点,改善结果才是。","textChars":23,"textLines":1,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/5hkg8c","slide":9,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/hiuvy9","slide":10,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":7} +{"kind":"textbox","id":"sh/szm10761","slide":10,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/rydkr25g","slide":10,"text":"AI 负责发现、测算和跟踪,重要决策仍由管理者审批","textPreview":"AI 负责发现、测算和跟踪,重要决策仍由管理者审批","textChars":25,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/qx4jyxov","slide":10,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/5wb2psna","slide":10,"text":"10","textPreview":"10","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/4v21wn6p","slide":10,"bbox":[42,182,560,366]} +{"kind":"shape","id":"sh/3utkn254","slide":10,"bbox":[42,182,7,366]} +{"kind":"textbox","id":"sh/i9kjuxoj","slide":10,"text":"AI 可以承担","textPreview":"AI 可以承担","textChars":7,"textLines":1,"bbox":[66,204,514,40]} +{"kind":"textbox","id":"sh/h8b2lsne","slide":10,"text":"· 理解并关联跨系统数据\n· 持续扫描异常\n· 穿透至门店、SKU、班次和订单\n· 调用行业规则与历史案例\n· 推演方案对利润和现金流的影响\n· 跟踪执行并验证结果","textPreview":"· 理解并关联跨系统数据 | · 持续扫描异常 | · 穿透至门店、SKU、班次和订单 | · 调用行业规则与历史案例 | · 推演方案对利润和现金流的影响 | · 跟踪执行并验证结果","textChars":82,"textLines":6,"bbox":[66,256,514,274]} +{"kind":"shape","id":"sh/g721sn6t","slide":10,"bbox":[678,182,560,366]} +{"kind":"shape","id":"sh/6lo3a9gj","slide":10,"bbox":[678,182,7,366]} +{"kind":"textbox","id":"sh/rmx4jex4","slide":10,"text":"必须由管理者决定","textPreview":"必须由管理者决定","textChars":8,"textLines":1,"bbox":[702,204,514,40]} +{"kind":"textbox","id":"sh/sn6lcjyp","slide":10,"text":"· 价格调整\n· 人员处置\n· 供应商更换\n· 门店迁址与关停\n· 重大资源投入\n\n所有高影响决策都应留下依据、审批与执行记录。","textPreview":"· 价格调整 | · 人员处置 | · 供应商更换 | · 门店迁址与关停 | · 重大资源投入 | | 所有高影响决策都应留下依据、审批与执行记录。","textChars":64,"textLines":7,"bbox":[702,256,514,274]} +{"kind":"notes","id":"nt/hiuvy9","slide":10,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/n35yhd","slide":11,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":24} +{"kind":"textbox","id":"sh/9s3y5cji","slide":11,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/mpsfahkr","slide":11,"text":"BI 展示“发生了什么”;玄谋智脑推动“接下来怎么做”","textPreview":"BI 展示“发生了什么”;玄谋智脑推动“接下来怎么做”","textChars":27,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/nq1g321c","slide":11,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/wfuhgri9","slide":11,"text":"11","textPreview":"11","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/xg3y9wje","slide":11,"bbox":[42,170,228,50]} +{"kind":"textbox","id":"sh/adczeh03","slide":11,"text":"维度","textPreview":"维度","textChars":2,"textLines":1,"bbox":[58,185,196,25]} +{"kind":"shape","id":"sh/belg7m1o","slide":11,"bbox":[270,170,410,50]} +{"kind":"textbox","id":"sh/cjax4n2p","slide":11,"text":"普通 BI","textPreview":"普通 BI","textChars":5,"textLines":1,"bbox":[286,185,378,25]} +{"kind":"shape","id":"sh/dkjydsja","slide":11,"bbox":[680,170,558,50]} +{"kind":"textbox","id":"sh/9ozytoru","slide":11,"text":"玄谋智脑","textPreview":"玄谋智脑","textChars":4,"textLines":1,"bbox":[696,185,526,25]} +{"kind":"shape","id":"sh/8nqx0jap","slide":11,"bbox":[42,220,228,67]} +{"kind":"textbox","id":"sh/7mxgret4","slide":11,"text":"定位","textPreview":"定位","textChars":2,"textLines":1,"bbox":[58,238,196,38]} +{"kind":"shape","id":"sh/mlofytsj","slide":11,"bbox":[270,220,410,67]} +{"kind":"textbox","id":"sh/hszyx8r6","slide":11,"text":"展示报表","textPreview":"展示报表","textChars":4,"textLines":1,"bbox":[286,238,378,38]} +{"kind":"shape","id":"sh/wrqh43al","slide":11,"bbox":[680,220,558,67]} +{"kind":"textbox","id":"sh/vqhgvy90","slide":11,"text":"驱动经营决策与改善","textPreview":"驱动经营决策与改善","textChars":9,"textLines":1,"bbox":[696,238,526,38]} +{"kind":"shape","id":"sh/up8f2tsf","slide":11,"bbox":[42,287,228,67]} +{"kind":"textbox","id":"sh/5gjy18r2","slide":11,"text":"业务语义","textPreview":"业务语义","textChars":4,"textLines":1,"bbox":[58,305,196,38]} +{"kind":"shape","id":"sh/4fah83ah","slide":11,"bbox":[270,287,410,67]} +{"kind":"textbox","id":"sh/obi9kbm5","slide":11,"text":"字段和指标","textPreview":"字段和指标","textChars":5,"textLines":1,"bbox":[286,305,378,38]} +{"kind":"shape","id":"sh/pwbatg3q","slide":11,"bbox":[680,287,558,67]} +{"kind":"textbox","id":"sh/290ri14z","slide":11,"text":"门店、商品、人员、会员等行业本体","textPreview":"门店、商品、人员、会员等行业本体","textChars":16,"textLines":1,"bbox":[696,305,526,38]} +{"kind":"shape","id":"sh/3a9sr6lk","slide":11,"bbox":[42,354,228,67]} +{"kind":"textbox","id":"sh/cz29ovm1","slide":11,"text":"问题发现","textPreview":"问题发现","textChars":4,"textLines":1,"bbox":[58,372,196,38]} +{"kind":"shape","id":"sh/d0baxg3m","slide":11,"bbox":[270,354,410,67]} +{"kind":"textbox","id":"sh/qxkrml4b","slide":11,"text":"人主动看数据","textPreview":"人主动看数据","textChars":6,"textLines":1,"bbox":[286,372,378,38]} +{"kind":"shape","id":"sh/bytsvqlg","slide":11,"bbox":[680,354,558,67]} +{"kind":"textbox","id":"sh/s3y9crmx","slide":11,"text":"系统持续发现、分级与推送","textPreview":"系统持续发现、分级与推送","textChars":12,"textLines":1,"bbox":[696,372,526,38]} +{"kind":"shape","id":"sh/t4rqlw3i","slide":11,"bbox":[42,421,228,67]} +{"kind":"textbox","id":"sh/vyxcru50","slide":11,"text":"问题处理","textPreview":"问题处理","textChars":4,"textLines":1,"bbox":[58,439,196,38]} +{"kind":"shape","id":"sh/uxovipof","slide":11,"bbox":[270,421,410,67]} +{"kind":"textbox","id":"sh/h0fut4n6","slide":11,"text":"报告异常","textPreview":"报告异常","textChars":4,"textLines":1,"bbox":[286,439,378,38]} +{"kind":"shape","id":"sh/wz6dkz6l","slide":11,"bbox":[680,421,558,67]} +{"kind":"textbox","id":"sh/nudcnu5o","slide":11,"text":"归因、测算、方案和整改任务","textPreview":"归因、测算、方案和整改任务","textChars":13,"textLines":1,"bbox":[696,439,526,38]} +{"kind":"shape","id":"sh/mt4bepoj","slide":11,"bbox":[42,488,228,67]} +{"kind":"textbox","id":"sh/9wfupknu","slide":11,"text":"结果验证","textPreview":"结果验证","textChars":4,"textLines":1,"bbox":[58,506,196,38]} +{"kind":"shape","id":"sh/8v6tgz69","slide":11,"bbox":[270,488,410,67]} +{"kind":"textbox","id":"sh/zqdcja5s","slide":11,"text":"通常不跟踪","textPreview":"通常不跟踪","textChars":5,"textLines":1,"bbox":[286,506,378,38]} +{"kind":"shape","id":"sh/y54ba5o7","slide":11,"bbox":[680,488,558,67]} +{"kind":"textbox","id":"sh/edofudkr","slide":11,"text":"验证改善并更新最佳实践","textPreview":"验证改善并更新最佳实践","textChars":11,"textLines":1,"bbox":[696,506,526,38]} +{"kind":"shape","id":"sh/fexgni1c","slide":11,"bbox":[42,555,228,67]} +{"kind":"textbox","id":"sh/0z6xwn2x","slide":11,"text":"长期价值","textPreview":"长期价值","textChars":4,"textLines":1,"bbox":[58,573,196,38]} +{"kind":"shape","id":"sh/10fyp8ji","slide":11,"bbox":[270,555,410,67]} +{"kind":"textbox","id":"sh/q94fqtkv","slide":11,"text":"报表越来越多","textPreview":"报表越来越多","textChars":6,"textLines":1,"bbox":[286,573,378,38]} +{"kind":"shape","id":"sh/raxgjy1g","slide":11,"bbox":[680,555,558,67]} +{"kind":"textbox","id":"sh/sb6xs321","slide":11,"text":"行业模型与企业知识越用越成熟","textPreview":"行业模型与企业知识越用越成熟","textChars":14,"textLines":1,"bbox":[696,573,526,38]} +{"kind":"notes","id":"nt/n35yhd","slide":11,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/vp4c3s","slide":12,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":23} +{"kind":"textbox","id":"sh/903i9036","slide":12,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/mxczy54f","slide":12,"text":"五层能力不是技术清单,而是规模扩张的管理底座","textPreview":"五层能力不是技术清单,而是规模扩张的管理底座","textChars":22,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/7yl07al0","slide":12,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/w3uh4f2h","slide":12,"text":"12","textPreview":"12","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/h4nidk32","slide":12,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,185,54,28]} +{"kind":"textbox","id":"sh/u1cz25kr","slide":12,"text":"数据资产化","textPreview":"数据资产化","textChars":5,"textLines":1,"bbox":[118,171,250,54]} +{"kind":"textbox","id":"sh/v2l0balc","slide":12,"text":"数据通起来","textPreview":"数据通起来","textChars":5,"textLines":1,"bbox":[422,171,250,54]} +{"kind":"textbox","id":"sh/47e18f2t","slide":12,"text":"一个数字、一个来源","textPreview":"一个数字、一个来源","textChars":9,"textLines":1,"bbox":[720,171,450,54]} +{"kind":"shape","id":"sh/5snihk3e","slide":12,"bbox":[118,238,1050,0]} +{"kind":"textbox","id":"sh/xkrudwna","slide":12,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,54,28]} +{"kind":"textbox","id":"sh/cjyd4r6p","slide":12,"text":"运营指标化","textPreview":"运营指标化","textChars":5,"textLines":1,"bbox":[118,260,250,54]} +{"kind":"textbox","id":"sh/bipcbm54","slide":12,"text":"问题浮出来","textPreview":"问题浮出来","textChars":5,"textLines":1,"bbox":[422,260,250,54]} +{"kind":"textbox","id":"sh/ahgv2hoj","slide":12,"text":"异常能穿透到根因","textPreview":"异常能穿透到根因","textChars":8,"textLines":1,"bbox":[720,260,450,54]} +{"kind":"shape","id":"sh/loruhwn6","slide":12,"bbox":[118,327,1050,0]} +{"kind":"textbox","id":"sh/knid8r61","slide":12,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,363,54,28]} +{"kind":"textbox","id":"sh/zm9cfm5g","slide":12,"text":"战略穿透化","textPreview":"战略穿透化","textChars":5,"textLines":1,"bbox":[118,349,250,54]} +{"kind":"textbox","id":"sh/yl0v61ov","slide":12,"text":"目标落下去","textPreview":"目标落下去","textChars":5,"textLines":1,"bbox":[422,349,250,54]} +{"kind":"textbox","id":"sh/1s7u5c72","slide":12,"text":"战略到区域、门店和个人","textPreview":"战略到区域、门店和个人","textChars":11,"textLines":1,"bbox":[720,349,450,54]} +{"kind":"shape","id":"sh/0retw76h","slide":12,"bbox":[118,416,1050,0]} +{"kind":"textbox","id":"sh/sbidc7ed","slide":12,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,452,54,28]} +{"kind":"textbox","id":"sh/twrulcfy","slide":12,"text":"态势感知化","textPreview":"态势感知化","textChars":5,"textLines":1,"bbox":[118,438,250,54]} +{"kind":"textbox","id":"sh/690vaxw7","slide":12,"text":"风险早知道","textPreview":"风险早知道","textChars":5,"textLines":1,"bbox":[422,438,250,54]} +{"kind":"textbox","id":"sh/ra9cj2xs","slide":12,"text":"从事后救火到事前预防","textPreview":"从事后救火到事前预防","textChars":10,"textLines":1,"bbox":[720,438,450,54]} +{"kind":"shape","id":"sh/gz2dgrep","slide":12,"bbox":[118,505,1050,0]} +{"kind":"textbox","id":"sh/10bupcfu","slide":12,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,541,54,28]} +{"kind":"textbox","id":"sh/exkvehwj","slide":12,"text":"知识沉淀化","textPreview":"知识沉淀化","textChars":5,"textLines":1,"bbox":[118,527,250,54]} +{"kind":"textbox","id":"sh/fytcnmx4","slide":12,"text":"组织越来越聪明","textPreview":"组织越来越聪明","textChars":7,"textLines":1,"bbox":[422,527,250,54]} +{"kind":"textbox","id":"sh/o32dkrel","slide":12,"text":"优秀能力不再依赖少数人","textPreview":"优秀能力不再依赖少数人","textChars":11,"textLines":1,"bbox":[720,527,450,54]} +{"kind":"shape","id":"sh/p4betwv6","slide":12,"bbox":[118,594,1050,0]} +{"kind":"notes","id":"nt/vp4c3s","slide":12,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/59faoc","slide":13,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/pk76lo7m","slide":13,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/2hwnq98v","slide":13,"text":"企业越大,单店验证后的复制价值越高","textPreview":"企业越大,单店验证后的复制价值越高","textChars":17,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/3i5ojepg","slide":13,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/gfe5ozqp","slide":13,"text":"13","textPreview":"13","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/hgn6h47a","slide":13,"bbox":[42,182,360,250]} +{"kind":"shape","id":"sh/udwnmp8j","slide":13,"bbox":[42,182,7,250]} +{"kind":"textbox","id":"sh/fe54fup4","slide":13,"text":"不依赖能人","textPreview":"不依赖能人","textChars":5,"textLines":1,"bbox":[66,204,314,40]} +{"kind":"textbox","id":"sh/8ru5kzqt","slide":13,"text":"优秀店长的做法沉淀为规则、案例和 SOP。","textPreview":"优秀店长的做法沉淀为规则、案例和 SOP。","textChars":21,"textLines":1,"bbox":[66,256,314,158]} +{"kind":"shape","id":"sh/tc3md47e","slide":13,"bbox":[443,182,360,250]} +{"kind":"shape","id":"sh/lo7ipgzu","slide":13,"bbox":[443,182,7,250]} +{"kind":"textbox","id":"sh/knyhwbi9","slide":13,"text":"扩张不失控","textPreview":"扩张不失控","textChars":5,"textLines":1,"bbox":[467,204,314,40]} +{"kind":"textbox","id":"sh/jmp0n6ho","slide":13,"text":"验证有效的改善方案,可按门店特征分类复制。","textPreview":"验证有效的改善方案,可按门店特征分类复制。","textChars":21,"textLines":1,"bbox":[467,256,314,158]} +{"kind":"shape","id":"sh/y1gzu103","slide":13,"bbox":[844,182,360,250]} +{"kind":"shape","id":"sh/x0nilwjy","slide":13,"bbox":[844,182,7,250]} +{"kind":"textbox","id":"sh/wzehsrid","slide":13,"text":"能力持续复利","textPreview":"能力持续复利","textChars":6,"textLines":1,"bbox":[868,204,314,40]} +{"kind":"textbox","id":"sh/by50j61s","slide":13,"text":"场景、模型、AI 建议与决策反馈相互增强。","textPreview":"场景、模型、AI 建议与决策反馈相互增强。","textChars":21,"textLines":1,"bbox":[868,256,314,158]} +{"kind":"shape","id":"sh/axwzq107","slide":13,"bbox":[120,520,980,0]} +{"kind":"shape","id":"sh/9wnihwjm","slide":13,"bbox":[104,502,38,38]} +{"kind":"textbox","id":"sh/ovehori1","slide":13,"text":"30 家","textPreview":"30 家","textChars":4,"textLines":1,"bbox":[94,555,150,28]} +{"kind":"textbox","id":"sh/0ri9kvu9","slide":13,"text":"靠人盯","textPreview":"靠人盯","textChars":3,"textLines":1,"bbox":[94,589,170,24]} +{"kind":"shape","id":"sh/1sbatgvu","slide":13,"bbox":[584,502,38,38]} +{"kind":"textbox","id":"sh/ep0rilc3","slide":13,"text":"100 家","textPreview":"100 家","textChars":5,"textLines":1,"bbox":[574,555,150,28]} +{"kind":"textbox","id":"sh/zq9srqdo","slide":13,"text":"靠机制","textPreview":"靠机制","textChars":3,"textLines":1,"bbox":[574,589,170,24]} +{"kind":"shape","id":"sh/cni9gbux","slide":13,"bbox":[1064,502,38,38]} +{"kind":"textbox","id":"sh/dorqpgvi","slide":13,"text":"300 家","textPreview":"300 家","textChars":5,"textLines":1,"bbox":[1054,555,150,28]} +{"kind":"textbox","id":"sh/ql0ru1c7","slide":13,"text":"靠模型复制","textPreview":"靠模型复制","textChars":5,"textLines":1,"bbox":[1054,589,170,24]} +{"kind":"notes","id":"nt/59faoc","slide":13,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/vmna02","slide":14,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":8} +{"kind":"textbox","id":"sh/43e1k7q5","slide":14,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/3250r29k","slide":14,"text":"沉淀的不只是原始数据,而是可追溯的经营能力","textPreview":"沉淀的不只是原始数据,而是可追溯的经营能力","textChars":21,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/21wjix8z","slide":14,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/d8nixcrm","slide":14,"text":"14","textPreview":"14","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/c7e1o7q1","slide":14,"bbox":[42,180,560,365]} +{"kind":"shape","id":"sh/r650v29g","slide":14,"bbox":[42,180,7,365]} +{"kind":"textbox","id":"sh/q5wjmh8b","slide":14,"text":"企业数据资产","textPreview":"企业数据资产","textChars":6,"textLines":1,"bbox":[66,202,514,40]} +{"kind":"textbox","id":"sh/tc3ilsri","slide":14,"text":"· 统一指标口径与责任关系\n· 门店、商品、人员、会员、供应商本体\n· 行业规则与异常模式\n· 决策、执行与验证结果\n· 最佳实践与风险知识","textPreview":"· 统一指标口径与责任关系 | · 门店、商品、人员、会员、供应商本体 | · 行业规则与异常模式 | · 决策、执行与验证结果 | · 最佳实践与风险知识","textChars":70,"textLines":5,"bbox":[66,254,514,273]} +{"kind":"shape","id":"sh/sbuhcnqx","slide":14,"bbox":[678,180,560,365]} +{"kind":"shape","id":"sh/qxsvudsv","slide":14,"bbox":[678,180,7,365]} +{"kind":"textbox","id":"sh/ry1wni9g","slide":14,"text":"融资与尽调支持","textPreview":"融资与尽调支持","textChars":7,"textLines":1,"bbox":[702,202,514,40]} +{"kind":"textbox","id":"sh/sjadwnal","slide":14,"text":"· 门店级损益与现金流\n· 收入稳定性分析\n· 风险预警与整改记录\n· 未来经营预测\n· 更完整、可追溯的经营证明","textPreview":"· 门店级损益与现金流 | · 收入稳定性分析 | · 风险预警与整改记录 | · 未来经营预测 | · 更完整、可追溯的经营证明","textChars":57,"textLines":5,"bbox":[702,254,514,273]} +{"kind":"textbox","id":"sh/dkjepsr6","slide":14,"text":"边界:提供数据与分析支持,不承诺银行授信或融资结果。","textPreview":"边界:提供数据与分析支持,不承诺银行授信或融资结果。","textChars":26,"textLines":1,"bbox":[42,578,1000,34]} +{"kind":"notes","id":"nt/vmna02","slide":14,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/ncze5u","slide":15,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/mhofitwv","slide":15,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/9kfyt8vm","slide":15,"text":"生产数据保密,从架构、权限到 AI 边界同时控制","textPreview":"生产数据保密,从架构、权限到 AI 边界同时控制","textChars":24,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/oj6xk3e1","slide":15,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/bmhgvyds","slide":15,"text":"15","textPreview":"15","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/al8fmdw7","slide":15,"bbox":[42,180,360,170]} +{"kind":"shape","id":"sh/x8zyx8vi","slide":15,"bbox":[42,180,7,170]} +{"kind":"textbox","id":"sh/wnqxo3ex","slide":15,"text":"部署边界","textPreview":"部署边界","textChars":4,"textLines":1,"bbox":[66,202,314,40]} +{"kind":"textbox","id":"sh/rqdgjed8","slide":15,"text":"不替代现有交易系统,只读或受控对接。","textPreview":"不替代现有交易系统,只读或受控对接。","textChars":18,"textLines":1,"bbox":[66,254,314,78]} +{"kind":"shape","id":"sh/qp4fa9wn","slide":15,"bbox":[443,180,360,170]} +{"kind":"shape","id":"sh/4bu5kji5","slide":15,"bbox":[443,180,7,170]} +{"kind":"textbox","id":"sh/5c36tozq","slide":15,"text":"最小权限","textPreview":"最小权限","textChars":4,"textLines":1,"bbox":[467,202,314,40]} +{"kind":"textbox","id":"sh/i9sni90z","slide":15,"text":"老板、总部、区域、门店按职责查看。","textPreview":"老板、总部、区域、门店按职责查看。","textChars":17,"textLines":1,"bbox":[467,254,314,78]} +{"kind":"shape","id":"sh/3a1orehk","slide":15,"bbox":[844,180,360,170]} +{"kind":"shape","id":"sh/sfu5oji1","slide":15,"bbox":[844,180,7,170]} +{"kind":"textbox","id":"sh/d036xozm","slide":15,"text":"敏感保护","textPreview":"敏感保护","textChars":4,"textLines":1,"bbox":[868,202,314,40]} +{"kind":"textbox","id":"sh/qdcnmt0b","slide":15,"text":"会员、薪酬、财务明细分级、脱敏与审计。","textPreview":"会员、薪酬、财务明细分级、脱敏与审计。","textChars":19,"textLines":1,"bbox":[868,254,314,78]} +{"kind":"shape","id":"sh/relovehg","slide":15,"bbox":[42,390,360,170]} +{"kind":"shape","id":"sh/8ja5czix","slide":15,"bbox":[42,390,7,170]} +{"kind":"textbox","id":"sh/t4j6l4zi","slide":15,"text":"AI 可追溯","textPreview":"AI 可追溯","textChars":6,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/90bmpgr6","slide":15,"text":"重要结论显示依据、时间、路径和适用边界。","textPreview":"重要结论显示依据、时间、路径和适用边界。","textChars":20,"textLines":1,"bbox":[66,464,314,78]} +{"kind":"shape","id":"sh/oz2lgval","slide":15,"bbox":[443,390,360,170]} +{"kind":"shape","id":"sh/ny94nq90","slide":15,"bbox":[443,390,7,170]} +{"kind":"textbox","id":"sh/mx03elsv","slide":15,"text":"人工审批","textPreview":"人工审批","textChars":4,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/x4bmt0ri","slide":15,"text":"高影响决策必须经有权限的管理者审批。","textPreview":"高影响决策必须经有权限的管理者审批。","textChars":18,"textLines":1,"bbox":[467,464,314,78]} +{"kind":"shape","id":"sh/w32lkvax","slide":15,"bbox":[844,390,360,170]} +{"kind":"shape","id":"sh/b2t4rq9c","slide":15,"bbox":[844,390,7,170]} +{"kind":"textbox","id":"sh/a1k3ilsr","slide":15,"text":"全程留痕","textPreview":"全程留痕","textChars":4,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/58vmx0re","slide":15,"text":"访问、建议、修改、审批和执行结果均可审计。","textPreview":"访问、建议、修改、审批和执行结果均可审计。","textChars":21,"textLines":1,"bbox":[868,464,314,78]} +{"kind":"notes","id":"nt/ncze5u","slide":15,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/8zd6ih","slide":16,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/h4fe5cf2","slide":16,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/u1ovaxgr","slide":16,"text":"先用 8 周证明经营价值,再扩大应用范围","textPreview":"先用 8 周证明经营价值,再扩大应用范围","textChars":20,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/v2xw32xc","slide":16,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/8zmd8nyl","slide":16,"text":"16","textPreview":"16","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/90ve1sf6","slide":16,"bbox":[66,340,1100,0]} +{"kind":"shape","id":"sh/mx4v6dgf","slide":16,"bbox":[54,322,38,38]} +{"kind":"textbox","id":"sh/7ydwzix0","slide":16,"text":"第 1 周","textPreview":"第 1 周","textChars":5,"textLines":1,"bbox":[49,206,200,28]} +{"kind":"textbox","id":"sh/kbmd4nyp","slide":16,"text":"选定利润专项","textPreview":"选定利润专项","textChars":6,"textLines":1,"bbox":[49,250,205,55]} +{"kind":"textbox","id":"sh/lwvexsfa","slide":16,"text":"基线·口径·责任人","textPreview":"基线·口径·责任人","textChars":9,"textLines":1,"bbox":[49,394,205,84]} +{"kind":"shape","id":"sh/9onyp0ja","slide":16,"bbox":[293,322,38,38]} +{"kind":"textbox","id":"sh/onehwvip","slide":16,"text":"第 1—2 周","textPreview":"第 1—2 周","textChars":7,"textLines":1,"bbox":[288,206,200,28]} +{"kind":"textbox","id":"sh/nm5gnq14","slide":16,"text":"连接现有数据","textPreview":"连接现有数据","textChars":6,"textLines":1,"bbox":[288,250,205,55]} +{"kind":"textbox","id":"sh/mlczul0j","slide":16,"text":"数据清单·质量·统一口径","textPreview":"数据清单·质量·统一口径","textChars":12,"textLines":1,"bbox":[288,394,205,84]} +{"kind":"shape","id":"sh/1k3y1gjy","slide":16,"bbox":[532,322,38,38]} +{"kind":"textbox","id":"sh/0juhsvid","slide":16,"text":"第 3—4 周","textPreview":"第 3—4 周","textChars":7,"textLines":1,"bbox":[527,206,200,28]} +{"kind":"textbox","id":"sh/zilgzq18","slide":16,"text":"发现机会与根因","textPreview":"发现机会与根因","textChars":7,"textLines":1,"bbox":[527,250,205,55]} +{"kind":"textbox","id":"sh/ehczql0n","slide":16,"text":"异常·影响金额·证据","textPreview":"异常·影响金额·证据","textChars":10,"textLines":1,"bbox":[527,394,205,84]} +{"kind":"shape","id":"sh/dw3yxgj2","slide":16,"bbox":[771,322,38,38]} +{"kind":"textbox","id":"sh/cvuhobih","slide":16,"text":"第 5—6 周","textPreview":"第 5—6 周","textChars":7,"textLines":1,"bbox":[766,206,200,28]} +{"kind":"textbox","id":"sh/4zeh4bqd","slide":16,"text":"推动整改","textPreview":"推动整改","textChars":4,"textLines":1,"bbox":[766,250,205,55]} +{"kind":"textbox","id":"sh/507ydgry","slide":16,"text":"任务·期限·执行记录","textPreview":"任务·期限·执行记录","textChars":10,"textLines":1,"bbox":[766,394,205,84]} +{"kind":"shape","id":"sh/ixwz2187","slide":16,"bbox":[1010,322,38,38]} +{"kind":"textbox","id":"sh/3y5gb69s","slide":16,"text":"第 7—8 周","textPreview":"第 7—8 周","textChars":7,"textLines":1,"bbox":[1005,206,200,28]} +{"kind":"textbox","id":"sh/wbeh0bq1","slide":16,"text":"验证并复制","textPreview":"验证并复制","textChars":5,"textLines":1,"bbox":[1005,250,205,55]} +{"kind":"textbox","id":"sh/hcny9grm","slide":16,"text":"改善金额·验收·最佳实践","textPreview":"改善金额·验收·最佳实践","textChars":12,"textLines":1,"bbox":[1005,394,205,84]} +{"kind":"shape","id":"sh/u9wzy18b","slide":16,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/va5g769w","slide":16,"text":"优先选择:数据可获得 · 影响可测算 · 动作可执行 · 八周可验证。","textPreview":"优先选择:数据可获得 · 影响可测算 · 动作可执行 · 八周可验证。","textChars":35,"textLines":1,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/8zd6ih","slide":16,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/1tvdog","slide":17,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/5cvqdkfa","slide":17,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/i9k725wj","slide":17,"text":"验收不看上线了多少功能,而看经营结果是否改善","textPreview":"验收不看上线了多少功能,而看经营结果是否改善","textChars":22,"textLines":1,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/jad8bax4","slide":17,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/szm98fel","slide":17,"text":"17","textPreview":"17","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/t0vqhkf6","slide":17,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,188,50,26]} +{"kind":"textbox","id":"sh/6d4r6pwv","slide":17,"text":"经营结果","textPreview":"经营结果","textChars":4,"textLines":1,"bbox":[112,174,230,48]} +{"kind":"textbox","id":"sh/red8fax0","slide":17,"text":"贡献利润·成本·损耗·库存资金","textPreview":"贡献利润·成本·损耗·库存资金","textChars":15,"textLines":1,"bbox":[395,174,760,48]} +{"kind":"shape","id":"sh/g369czex","slide":17,"bbox":[112,239,1040,0]} +{"kind":"textbox","id":"sh/14fql4fi","slide":17,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,50,26]} +{"kind":"textbox","id":"sh/twvqhgrq","slide":17,"text":"问题发现","textPreview":"问题发现","textChars":4,"textLines":1,"bbox":[112,260,230,48]} +{"kind":"textbox","id":"sh/8vmpobql","slide":17,"text":"发现周期·有效异常率·影响覆盖","textPreview":"发现周期·有效异常率·影响覆盖","textChars":15,"textLines":1,"bbox":[395,260,760,48]} +{"kind":"shape","id":"sh/7ud8f690","slide":17,"bbox":[112,325,1040,0]} +{"kind":"textbox","id":"sh/6tk7ml8f","slide":17,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,360,50,26]} +{"kind":"textbox","id":"sh/hkvql0r2","slide":17,"text":"执行闭环","textPreview":"执行闭环","textChars":4,"textLines":1,"bbox":[112,346,230,48]} +{"kind":"textbox","id":"sh/gjmpsvqh","slide":17,"text":"接收率·按期完成率·整改有效率","textPreview":"接收率·按期完成率·整改有效率","textChars":15,"textLines":1,"bbox":[395,346,760,48]} +{"kind":"shape","id":"sh/vid8jq9w","slide":17,"bbox":[112,411,1040,0]} +{"kind":"textbox","id":"sh/ux47ql8b","slide":17,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,446,50,26]} +{"kind":"textbox","id":"sh/xobq9wry","slide":17,"text":"组织复制","textPreview":"组织复制","textChars":4,"textLines":1,"bbox":[112,432,230,48]} +{"kind":"textbox","id":"sh/cn2pgrqd","slide":17,"text":"复制门店数·成功率·新店导入时间","textPreview":"复制门店数·成功率·新店导入时间","textChars":16,"textLines":1,"bbox":[395,432,760,48]} +{"kind":"shape","id":"sh/oj6hcv25","slide":17,"bbox":[112,497,1040,0]} +{"kind":"textbox","id":"sh/9kfyl03q","slide":17,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,532,50,26]} +{"kind":"textbox","id":"sh/2hozalkf","slide":17,"text":"数据质量","textPreview":"数据质量","textChars":4,"textLines":1,"bbox":[112,518,230,48]} +{"kind":"textbox","id":"sh/nixgjqlk","slide":17,"text":"口径一致·完整·及时·可追溯","textPreview":"口径一致·完整·及时·可追溯","textChars":14,"textLines":1,"bbox":[395,518,760,48]} +{"kind":"shape","id":"sh/wnqhgf2h","slide":17,"bbox":[112,583,1040,0]} +{"kind":"shape","id":"sh/x8zip032","slide":17,"bbox":[42,612,1196,42]} +{"kind":"textbox","id":"sh/al8ze5kb","slide":17,"text":"项目启动时即确认基线、口径和外部影响因素,避免将自然波动误认为系统收益。","textPreview":"项目启动时即确认基线、口径和外部影响因素,避免将自然波动误认为系统收益。","textChars":36,"textLines":1,"bbox":[64,622,1152,24]} +{"kind":"notes","id":"nt/1tvdog","slide":17,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/edu865","slide":18,"title":"玄谋智脑","textShapes":4} +{"kind":"textbox","id":"sh/dov6hoz2","slide":18,"text":"玄谋智脑","textPreview":"玄谋智脑","textChars":4,"textLines":1,"bbox":[42,35,240,30]} +{"kind":"textbox","id":"sh/ql4nm90r","slide":18,"text":"先用 8 周\n找到第一批可验证的利润改善机会","textPreview":"先用 8 周 | 找到第一批可验证的利润改善机会","textChars":22,"textLines":2,"bbox":[42,160,1040,210]} +{"kind":"textbox","id":"sh/bmdofehc","slide":18,"text":"再决定如何扩大应用范围","textPreview":"再决定如何扩大应用范围","textChars":11,"textLines":1,"bbox":[42,420,850,52]} +{"kind":"shape","id":"sh/oj25kzil","slide":18,"bbox":[42,610,1196,0]} +{"kind":"textbox","id":"sh/pkv6d4z6","slide":18,"text":"让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店","textPreview":"让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店","textChars":34,"textLines":1,"bbox":[42,636,1100,30]} +{"kind":"notes","id":"nt/edu865","slide":18,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} \ No newline at end of file diff --git a/玄谋智脑_连锁企业老板决策版_中英双语优化版.pptx b/玄谋智脑_连锁企业老板决策版_中英双语优化版.pptx new file mode 100644 index 0000000..ebb4696 Binary files /dev/null and b/玄谋智脑_连锁企业老板决策版_中英双语优化版.pptx differ diff --git a/玄谋智脑_连锁企业老板决策版_中英双语优化版.pptx.inspect.ndjson b/玄谋智脑_连锁企业老板决策版_中英双语优化版.pptx.inspect.ndjson new file mode 100644 index 0000000..0e5395c --- /dev/null +++ b/玄谋智脑_连锁企业老板决策版_中英双语优化版.pptx.inspect.ndjson @@ -0,0 +1,456 @@ +{"kind":"deck","id":"pr/e6cjzk","name":"Deck"} +{"kind":"layout","layoutId":"/ppt/slideMasters/slideMaster1.xml","name":"Master","type":"master"} +{"kind":"layout","layoutId":"/ppt/slideLayouts/slideLayout1.xml","name":"Title Slide","type":"title"} +{"kind":"slide","id":"sl/y90nupkv","slide":1,"title":"玄谋智脑","textShapes":4} +{"kind":"textbox","id":"sh/ts7md4r2","slide":1,"text":"玄谋智脑","textPreview":"玄谋智脑","textChars":4,"textLines":1,"bbox":[42,34,360,36]} +{"kind":"textbox","id":"sh/547294r6","slide":1,"text":"看清利润,才谈得上管住门店\nSee the profit clearly. Run every store with confidence.","textPreview":"看清利润,才谈得上管住门店 | See the profit clearly. Run every store with confidence.","textChars":70,"textLines":2,"bbox":[42,180,990,180]} +{"kind":"textbox","id":"sh/k3yl0zql","slide":1,"text":"面向连锁企业的行业数字本体与 AI 经营智脑 A decision intelligence layer for multi-site operators","textPreview":"面向连锁企业的行业数字本体与 AI 经营智脑 A decision intelligence layer for multi-site operators","textChars":78,"textLines":1,"bbox":[42,402,870,48]} +{"kind":"shape","id":"sh/7qp4be9c","slide":1,"bbox":[42,615,1196,0]} +{"kind":"textbox","id":"sh/65g3298r","slide":1,"text":"对外保密版 · 案例与金额均为匿名示意","textPreview":"对外保密版 · 案例与金额均为匿名示意","textChars":19,"textLines":1,"bbox":[42,640,620,24]} +{"kind":"notes","id":"nt/y90nupkv","slide":1,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/hwbqtkby","slide":2,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":13} +{"kind":"textbox","id":"sh/cnupgny5","slide":2,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/9072xkry","slide":2,"text":"老板最终要判断三件事\nThree decisions matter most to the owner.","textPreview":"老板最终要判断三件事 | Three decisions matter most to the owner.","textChars":52,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/ozy1ofad","slide":2,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/b29kza94","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/a10jqpsj","slide":2,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,190,80,48]} +{"kind":"shape","id":"sh/x4r21kru","slide":2,"bbox":[42,248,350,0]} +{"kind":"textbox","id":"sh/w3i1sfa9","slide":2,"text":"哪里在亏钱?","textPreview":"哪里在亏钱?","textChars":6,"textLines":1,"bbox":[42,278,350,52]} +{"kind":"textbox","id":"sh/r65knqtk","slide":2,"text":"门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理?","textPreview":"门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理?","textChars":30,"textLines":1,"bbox":[42,352,350,140]} +{"kind":"textbox","id":"sh/q5wjelsz","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[443,190,80,48]} +{"kind":"shape","id":"sh/ove9o7yd","slide":2,"bbox":[443,248,350,0]} +{"kind":"textbox","id":"sh/9wnqhczy","slide":2,"text":"哪些动作能增利?","textPreview":"哪些动作能增利?","textChars":8,"textLines":1,"bbox":[443,278,350,52]} +{"kind":"textbox","id":"sh/mtwrmxg7","slide":2,"text":"不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。","textPreview":"不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。","textChars":28,"textLines":1,"bbox":[443,352,350,140]} +{"kind":"textbox","id":"sh/nu58f2hs","slide":2,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[844,190,80,48]} +{"kind":"shape","id":"sh/wjy9sry9","slide":2,"bbox":[844,248,350,0]} +{"kind":"textbox","id":"sh/xk7qlczu","slide":2,"text":"扩张后还能管住吗?","textPreview":"扩张后还能管住吗?","textChars":9,"textLines":1,"bbox":[844,278,350,52]} +{"kind":"textbox","id":"sh/ahwrqhgj","slide":2,"text":"从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制?","textPreview":"从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制?","textChars":34,"textLines":1,"bbox":[844,352,350,140]} +{"kind":"textbox","id":"sh/bip8jmho","slide":2,"text":"不是看更多报表,而是将数据转化为可验证的经营改善。","textPreview":"不是看更多报表,而是将数据转化为可验证的经营改善。","textChars":25,"textLines":1,"bbox":[42,590,1100,42]} +{"kind":"notes","id":"nt/hwbqtkby","slide":2,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/ofy9wn61","slide":3,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/batgjixs","slide":3,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/cza94vmx","slide":3,"text":"数据很多,利润去向仍然说不清\nPlenty of data, but no clear view of where profit goes.","textPreview":"数据很多,利润去向仍然说不清 | Plenty of data, but no clear view of where profit goes.","textChars":70,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/d0jax03i","slide":3,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/298ryl4v","slide":3,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/3ah8rqlg","slide":3,"bbox":[42,188,360,160]} +{"kind":"shape","id":"sh/obq90bml","slide":3,"bbox":[42,188,7,160]} +{"kind":"textbox","id":"sh/pcjqtg36","slide":3,"text":"营收","textPreview":"营收","textChars":2,"textLines":1,"bbox":[66,210,314,40]} +{"kind":"textbox","id":"sh/m5cra54z","slide":3,"text":"营收增长,利润为何没有同步?","textPreview":"营收增长,利润为何没有同步?","textChars":14,"textLines":1,"bbox":[66,262,314,68]} +{"kind":"shape","id":"sh/n6ls3alk","slide":3,"bbox":[443,188,360,160]} +{"kind":"shape","id":"sh/n2l4fq98","slide":3,"bbox":[443,188,7,160]} +{"kind":"textbox","id":"sh/m1c3mlsn","slide":3,"text":"门店","textPreview":"门店","textChars":2,"textLines":1,"bbox":[467,210,314,40]} +{"kind":"textbox","id":"sh/943mhgre","slide":3,"text":"哪些门店看似赚钱,实际占用资金?","textPreview":"哪些门店看似赚钱,实际占用资金?","textChars":16,"textLines":1,"bbox":[467,262,314,68]} +{"kind":"shape","id":"sh/83ulovat","slide":3,"bbox":[844,188,360,160]} +{"kind":"shape","id":"sh/v6l4jq94","slide":3,"bbox":[844,188,7,160]} +{"kind":"textbox","id":"sh/a5c3ql8z","slide":3,"text":"促销","textPreview":"促销","textChars":2,"textLines":1,"bbox":[868,210,314,40]} +{"kind":"textbox","id":"sh/x8nml0ra","slide":3,"text":"哪些活动增加订单,却消耗利润?","textPreview":"哪些活动增加订单,却消耗利润?","textChars":15,"textLines":1,"bbox":[868,262,314,68]} +{"kind":"shape","id":"sh/w7ulsvqp","slide":3,"bbox":[42,390,360,160]} +{"kind":"shape","id":"sh/ja54na9g","slide":3,"bbox":[42,390,7,160]} +{"kind":"textbox","id":"sh/i9w3u58v","slide":3,"text":"SKU","textPreview":"SKU","textChars":3,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/e10f2twf","slide":3,"text":"哪些商品销量不低,却毛利不足?","textPreview":"哪些商品销量不低,却毛利不足?","textChars":15,"textLines":1,"bbox":[66,464,314,68]} +{"kind":"shape","id":"sh/f29gbyx0","slide":3,"bbox":[443,390,360,160]} +{"kind":"shape","id":"sh/03ix43e5","slide":3,"bbox":[443,390,7,160]} +{"kind":"textbox","id":"sh/14ryd8fq","slide":3,"text":"人力","textPreview":"人力","textChars":2,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/6d0fytg3","slide":3,"text":"哪些时段人员闲置,高峰又缺人?","textPreview":"哪些时段人员闲置,高峰又缺人?","textChars":15,"textLines":1,"bbox":[467,464,314,68]} +{"kind":"shape","id":"sh/re9g7yxo","slide":3,"bbox":[844,390,360,160]} +{"kind":"shape","id":"sh/sfix03y9","slide":3,"bbox":[844,390,7,160]} +{"kind":"textbox","id":"sh/tgry9ofu","slide":3,"text":"止损","textPreview":"止损","textChars":2,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/a9kfadwn","slide":3,"text":"哪些门店应整改、迁址、缩编或关停?","textPreview":"哪些门店应整改、迁址、缩编或关停?","textChars":17,"textLines":1,"bbox":[868,464,314,68]} +{"kind":"notes","id":"nt/ofy9wn61","slide":3,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/jyx0ra1s","slide":4,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":22} +{"kind":"textbox","id":"sh/knex8j21","slide":4,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1cj2d8b6","slide":4,"text":"把异常处理成有结果的经营行动\nTurn exceptions into actions with measurable outcomes.","textPreview":"把异常处理成有结果的经营行动 | Turn exceptions into actions with measurable outcomes.","textChars":69,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0ba143al","slide":4,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/rm1k7yt4","slide":4,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/ql8jytsj","slide":4,"bbox":[82,350,1090,0]} +{"kind":"shape","id":"sh/doj29oba","slide":4,"bbox":[54,332,36,36]} +{"kind":"textbox","id":"sh/sna103ap","slide":4,"text":"1","textPreview":"1","textChars":1,"textLines":1,"bbox":[54,337,36,24]} +{"kind":"textbox","id":"sh/3ihk3et8","slide":4,"text":"发现","textPreview":"发现","textChars":2,"textLines":1,"bbox":[44,235,150,40]} +{"kind":"textbox","id":"sh/ih8ju9sn","slide":4,"text":"利润异常","textPreview":"利润异常","textChars":4,"textLines":1,"bbox":[44,400,164,78]} +{"kind":"shape","id":"sh/kbm987y5","slide":4,"bbox":[253,332,36,36]} +{"kind":"textbox","id":"sh/5cva1cfq","slide":4,"text":"2","textPreview":"2","textChars":1,"textLines":1,"bbox":[253,337,36,24]} +{"kind":"textbox","id":"sh/i94r6xgz","slide":4,"text":"穿透","textPreview":"穿透","textChars":2,"textLines":1,"bbox":[243,235,150,40]} +{"kind":"textbox","id":"sh/jadsz2xk","slide":4,"text":"区域·门店·SKU·班次","textPreview":"区域·门店·SKU·班次","textChars":12,"textLines":1,"bbox":[243,400,164,78]} +{"kind":"shape","id":"sh/w72947yt","slide":4,"bbox":[452,332,36,36]} +{"kind":"textbox","id":"sh/x8vaxsfe","slide":4,"text":"3","textPreview":"3","textChars":1,"textLines":1,"bbox":[452,337,36,24]} +{"kind":"textbox","id":"sh/a5kr2xg3","slide":4,"text":"测算","textPreview":"测算","textChars":2,"textLines":1,"bbox":[442,235,150,40]} +{"kind":"textbox","id":"sh/v6tsv2xo","slide":4,"text":"影响金额与优先级","textPreview":"影响金额与优先级","textChars":8,"textLines":1,"bbox":[442,400,164,78]} +{"kind":"shape","id":"sh/g36tgryd","slide":4,"bbox":[651,332,36,36]} +{"kind":"textbox","id":"sh/h4fa9wfy","slide":4,"text":"4","textPreview":"4","textChars":1,"textLines":1,"bbox":[651,337,36,24]} +{"kind":"textbox","id":"sh/p0batw72","slide":4,"text":"整改","textPreview":"整改","textChars":2,"textLines":1,"bbox":[641,235,150,40]} +{"kind":"textbox","id":"sh/oz29krqh","slide":4,"text":"动作·责任人·期限","textPreview":"动作·责任人·期限","textChars":9,"textLines":1,"bbox":[641,400,164,78]} +{"kind":"shape","id":"sh/3ytsrmpw","slide":4,"bbox":[850,332,36,36]} +{"kind":"textbox","id":"sh/2xkrih8b","slide":4,"text":"5","textPreview":"5","textChars":1,"textLines":1,"bbox":[850,337,36,24]} +{"kind":"textbox","id":"sh/1wbapc7q","slide":4,"text":"验证","textPreview":"验证","textChars":2,"textLines":1,"bbox":[840,235,150,40]} +{"kind":"textbox","id":"sh/gv29g7q5","slide":4,"text":"利润是否真正改善","textPreview":"利润是否真正改善","textChars":8,"textLines":1,"bbox":[840,400,164,78]} +{"kind":"shape","id":"sh/fu9sn2p0","slide":4,"bbox":[1049,332,36,36]} +{"kind":"textbox","id":"sh/et0reh8f","slide":4,"text":"6","textPreview":"6","textChars":1,"textLines":1,"bbox":[1049,337,36,24]} +{"kind":"textbox","id":"sh/tsrqlc7u","slide":4,"text":"沉淀","textPreview":"沉淀","textChars":2,"textLines":1,"bbox":[1039,235,150,40]} +{"kind":"textbox","id":"sh/sri9s7q9","slide":4,"text":"更新企业最佳实践","textPreview":"更新企业最佳实践","textChars":8,"textLines":1,"bbox":[1039,400,164,78]} +{"kind":"shape","id":"sh/ilwf69kv","slide":4,"bbox":[42,552,1196,58]} +{"kind":"textbox","id":"sh/jm5gze1g","slide":4,"text":"关键不是“发现问题”,而是“把问题变成可复制的利润改善”。","textPreview":"关键不是“发现问题”,而是“把问题变成可复制的利润改善”。","textChars":29,"textLines":1,"bbox":[66,568,1148,30]} +{"kind":"notes","id":"nt/jyx0ra1s","slide":4,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/i107q5of","slide":5,"title":"匿名复合案例 · SKU 组合决策 Anonymous composite case · SKU portfolio","textShapes":15} +{"kind":"textbox","id":"sh/fe94nm1w","slide":5,"text":"匿名复合案例 · SKU 组合决策 Anonymous composite case · SKU portfolio","textPreview":"匿名复合案例 · SKU 组合决策 Anonymous composite case · SKU portfolio","textChars":59,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/dgbulwnm","slide":5,"text":"SKU 过多,往往增加的是复杂度和成本\nMore SKUs often mean more cost, not more choice.","textPreview":"SKU 过多,往往增加的是复杂度和成本 | More SKUs often mean more cost, not more choice.","textChars":68,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/cf2tcr61","slide":5,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/z2tcnm5s","slide":5,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/yhkbe1o7","slide":5,"text":"480","textPreview":"480","textChars":3,"textLines":1,"bbox":[42,182,190,72]} +{"kind":"textbox","id":"sh/l4bupwny","slide":5,"text":"在售 SKU","textPreview":"在售 SKU","textChars":6,"textLines":1,"bbox":[42,256,190,30]} +{"kind":"textbox","id":"sh/032tgr6d","slide":5,"text":"后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。","textPreview":"后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。","textChars":32,"textLines":1,"bbox":[262,190,800,76]} +{"kind":"shape","id":"sh/n6dcr65o","slide":5,"bbox":[42,328,270,170]} +{"kind":"textbox","id":"sh/m5kbi1oj","slide":5,"text":"37 个","textPreview":"37 个","textChars":4,"textLines":1,"bbox":[66,354,222,64]} +{"kind":"textbox","id":"sh/w32dkbuh","slide":5,"text":"低销量·低毛利·高损耗","textPreview":"低销量·低毛利·高损耗","textChars":11,"textLines":1,"bbox":[66,434,222,40]} +{"kind":"shape","id":"sh/x4vedgvm","slide":5,"bbox":[341,328,270,170]} +{"kind":"textbox","id":"sh/ahkvi1cb","slide":5,"text":"9 个","textPreview":"9 个","textChars":3,"textLines":1,"bbox":[365,354,222,64]} +{"kind":"textbox","id":"sh/v2twb6dw","slide":5,"text":"高销量但低贡献利润","textPreview":"高销量但低贡献利润","textChars":9,"textLines":1,"bbox":[365,434,222,40]} +{"kind":"shape","id":"sh/k7mxovud","slide":5,"bbox":[640,328,270,170]} +{"kind":"textbox","id":"sh/58vehgvy","slide":5,"text":"16 个","textPreview":"16 个","textChars":4,"textLines":1,"bbox":[664,354,222,64]} +{"kind":"textbox","id":"sh/i54fmlc7","slide":5,"text":"可共享或替换原料","textPreview":"可共享或替换原料","textChars":8,"textLines":1,"bbox":[664,434,222,40]} +{"kind":"shape","id":"sh/j6dwfqds","slide":5,"bbox":[939,328,270,170]} +{"kind":"textbox","id":"sh/sb6xsvu9","slide":5,"text":"22 个","textPreview":"22 个","textChars":4,"textLines":1,"bbox":[963,354,222,64]} +{"kind":"textbox","id":"sh/tcfel0vu","slide":5,"text":"价格带重叠","textPreview":"价格带重叠","textChars":5,"textLines":1,"bbox":[963,434,222,40]} +{"kind":"shape","id":"sh/hgrmpwj2","slide":5,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/gfi5grih","slide":5,"text":"模拟测算:释放库存资金约 80 万元 · 年减少报损约 35 万元 · 综合毛利率提升约 0.6 个百分点","textPreview":"模拟测算:释放库存资金约 80 万元 · 年减少报损约 35 万元 · 综合毛利率提升约 0.6 个百分点","textChars":53,"textLines":1,"bbox":[68,558,1140,40]} +{"kind":"notes","id":"nt/i107q5of","slide":5,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/x8f69ofe","slide":6,"title":"匿名复合案例 · 门店 A-017 Anonymous composite case · Store A-017","textShapes":10} +{"kind":"textbox","id":"sh/svmt4v6t","slide":6,"text":"匿名复合案例 · 门店 A-017 Anonymous composite case · Store A-017","textPreview":"匿名复合案例 · 门店 A-017 Anonymous composite case · Store A-017","textChars":57,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/yhg7epsj","slide":6,"text":"排班的关键,是工时跟着客流走\nLabor hours should follow demand.","textPreview":"排班的关键,是工时跟着客流走 | Labor hours should follow demand.","textChars":48,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/zi98nu94","slide":6,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/87ipkzal","slide":6,"text":"06","textPreview":"06","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/98rqt4r6","slide":6,"bbox":[42,182,362,314]} +{"kind":"shape","id":"sh/ml07i9sv","slide":6,"bbox":[42,182,7,314]} +{"kind":"textbox","id":"sh/7m98ru9g","slide":6,"text":"发现","textPreview":"发现","textChars":2,"textLines":1,"bbox":[66,204,316,40]} +{"kind":"textbox","id":"sh/oryp8fah","slide":6,"text":"· 工作日上午存在闲置工时\n· 周五晚高峰经常缺人\n· 班次依据历史习惯\n· 加班集中在少数岗位","textPreview":"· 工作日上午存在闲置工时 | · 周五晚高峰经常缺人 | · 班次依据历史习惯 | · 加班集中在少数岗位","textChars":48,"textLines":4,"bbox":[66,256,316,222]} +{"kind":"shape","id":"sh/pc76hkr2","slide":6,"bbox":[458,182,362,314]} +{"kind":"shape","id":"sh/h4bupgn6","slide":6,"bbox":[458,182,7,314]} +{"kind":"textbox","id":"sh/w32twb6l","slide":6,"text":"动作","textPreview":"动作","textChars":2,"textLines":1,"bbox":[482,204,316,40]} +{"kind":"textbox","id":"sh/v2tcn650","slide":6,"text":"· 按半小时预测工作量\n· 调整早晚班起止时间\n· 高峰增加小时工\n· 备餐前移至客流爬升前","textPreview":"· 按半小时预测工作量 | · 调整早晚班起止时间 | · 高峰增加小时工 | · 备餐前移至客流爬升前","textChars":46,"textLines":4,"bbox":[482,256,316,222]} +{"kind":"shape","id":"sh/u1kbu1ov","slide":6,"bbox":[874,182,364,314]} +{"kind":"shape","id":"sh/5svutgni","slide":6,"bbox":[874,182,7,314]} +{"kind":"textbox","id":"sh/47mt0b6x","slide":6,"text":"验证","textPreview":"验证","textChars":2,"textLines":1,"bbox":[898,204,318,40]} +{"kind":"textbox","id":"sh/j6dcr65c","slide":6,"text":"同时监控:\n\n· 人工成本\n· 出品时效\n· 顾客满意度\n\n避免单纯压缩人力。","textPreview":"同时监控: | | · 人工成本 | · 出品时效 | · 顾客满意度 | | 避免单纯压缩人力。","textChars":39,"textLines":7,"bbox":[898,256,318,222]} +{"kind":"shape","id":"sh/i54bylor","slide":6,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/twfux0ne","slide":6,"text":"模拟测算:单店每月节约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。","textPreview":"模拟测算:单店每月节约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。","textChars":47,"textLines":1,"bbox":[66,557,1148,42]} +{"kind":"notes","id":"nt/x8f69ofe","slide":6,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/gnmp4jqx","slide":7,"title":"匿名复合案例 · 营销活动 X Anonymous composite case · Campaign X","textShapes":17} +{"kind":"textbox","id":"sh/s3ml0v61","slide":7,"text":"匿名复合案例 · 营销活动 X Anonymous composite case · Campaign X","textPreview":"匿名复合案例 · 营销活动 X Anonymous composite case · Campaign X","textChars":54,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/cb2tkvap","slide":7,"text":"订单增长,不等于促销赚钱\nMore orders do not always mean a profitable campaign.","textPreview":"订单增长,不等于促销赚钱 | More orders do not always mean a profitable campaign.","textChars":66,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/dcbud0ra","slide":7,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ydkbm5sv","slide":7,"text":"07","textPreview":"07","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/zedcfa9g","slide":7,"bbox":[42,186,350,170]} +{"kind":"textbox","id":"sh/kzmdova1","slide":7,"text":"+23%","textPreview":"+23%","textChars":4,"textLines":1,"bbox":[66,212,302,64]} +{"kind":"textbox","id":"sh/l0vuh0rm","slide":7,"text":"订单增长","textPreview":"订单增长","textChars":4,"textLines":1,"bbox":[66,292,302,40]} +{"kind":"shape","id":"sh/eh0ba1sr","slide":7,"bbox":[42,378,350,170]} +{"kind":"textbox","id":"sh/fi9c369c","slide":7,"text":"负值","textPreview":"负值","textChars":2,"textLines":1,"bbox":[66,404,302,64]} +{"kind":"textbox","id":"sh/baxkjqlk","slide":7,"text":"穿透成本后的活动贡献利润","textPreview":"穿透成本后的活动贡献利润","textChars":12,"textLines":1,"bbox":[66,484,302,40]} +{"kind":"textbox","id":"sh/a9ojq5kz","slide":7,"text":"活动为什么亏钱","textPreview":"活动为什么亏钱","textChars":7,"textLines":1,"bbox":[454,186,360,40]} +{"kind":"textbox","id":"sh/xcz2l03q","slide":7,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[454,258,42,28]} +{"kind":"textbox","id":"sh/cbq1sv25","slide":7,"text":"低毛利商品占比上升","textPreview":"低毛利商品占比上升","textChars":9,"textLines":1,"bbox":[510,254,650,40]} +{"kind":"shape","id":"sh/n6x0fqlo","slide":7,"bbox":[510,300,650,0]} +{"kind":"textbox","id":"sh/25ojml43","slide":7,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[454,323,42,28]} +{"kind":"textbox","id":"sh/p8fih03e","slide":7,"text":"高价值会员获得无差别优惠","textPreview":"高价值会员获得无差别优惠","textChars":12,"textLines":1,"bbox":[510,319,650,40]} +{"kind":"shape","id":"sh/o761ov2t","slide":7,"bbox":[510,365,650,0]} +{"kind":"textbox","id":"sh/f2d0b6lc","slide":7,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[454,388,42,28]} +{"kind":"textbox","id":"sh/eh4jil4r","slide":7,"text":"促销订单替代了原价订单","textPreview":"促销订单替代了原价订单","textChars":11,"textLines":1,"bbox":[510,384,650,40]} +{"kind":"shape","id":"sh/id4ju1oz","slide":7,"bbox":[510,430,650,0]} +{"kind":"textbox","id":"sh/jedkn654","slide":7,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[454,453,42,28]} +{"kind":"textbox","id":"sh/4fm1wb6p","slide":7,"text":"只评价订单和营收,没有评价增量利润","textPreview":"只评价订单和营收,没有评价增量利润","textChars":17,"textLines":1,"bbox":[510,449,650,40]} +{"kind":"shape","id":"sh/50v2pgna","slide":7,"bbox":[510,495,650,0]} +{"kind":"shape","id":"sh/q143ylov","slide":7,"bbox":[454,544,746,67]} +{"kind":"textbox","id":"sh/r2dkrq5g","slide":7,"text":"用“每投入 1 元营销费用增加多少贡献利润”评价活动。","textPreview":"用“每投入 1 元营销费用增加多少贡献利润”评价活动。","textChars":27,"textLines":1,"bbox":[478,562,700,34]} +{"kind":"notes","id":"nt/gnmp4jqx","slide":7,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/fu1gfa1s","slide":8,"title":"匿名复合案例 · 门店 D-006 Anonymous composite case · Store D-006","textShapes":19} +{"kind":"textbox","id":"sh/07atgnmp","slide":8,"text":"匿名复合案例 · 门店 D-006 Anonymous composite case · Store D-006","textPreview":"匿名复合案例 · 门店 D-006 Anonymous composite case · Store D-006","textChars":57,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/18byd4zy","slide":8,"text":"关店前,先把四种选择算清楚\nCompare the options before deciding to close a store.","textPreview":"关店前,先把四种选择算清楚 | Compare the options before deciding to close a store.","textChars":67,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/g72x4zyd","slide":8,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ri9g7uhw","slide":8,"text":"08","textPreview":"08","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/6h0fypgb","slide":8,"bbox":[42,180,340,55]} +{"kind":"textbox","id":"sh/tkby9kzm","slide":8,"text":"方案","textPreview":"方案","textChars":2,"textLines":1,"bbox":[60,197,304,26]} +{"kind":"shape","id":"sh/sjix0zy1","slide":8,"bbox":[382,180,378,55]} +{"kind":"textbox","id":"sh/je9g3ahk","slide":8,"text":"12 个月模拟结果","textPreview":"12 个月模拟结果","textChars":9,"textLines":1,"bbox":[400,197,342,26]} +{"kind":"shape","id":"sh/id0fu50z","slide":8,"bbox":[760,180,478,55]} +{"kind":"textbox","id":"sh/o7ydoret","slide":8,"text":"决策建议","textPreview":"决策建议","textChars":4,"textLines":1,"bbox":[778,197,442,26]} +{"kind":"shape","id":"sh/98rehwve","slide":8,"bbox":[42,235,340,72]} +{"kind":"textbox","id":"sh/m5gvmhwn","slide":8,"text":"继续经营","textPreview":"继续经营","textChars":4,"textLines":1,"bbox":[60,256,304,35]} +{"kind":"shape","id":"sh/n6pwfmd8","slide":8,"bbox":[382,235,378,72]} +{"kind":"textbox","id":"sh/0jydkreh","slide":8,"text":"预计亏损 92 万","textPreview":"预计亏损 92 万","textChars":9,"textLines":1,"bbox":[400,256,342,35]} +{"kind":"shape","id":"sh/1k7edwv2","slide":8,"bbox":[760,235,478,72]} +{"kind":"textbox","id":"sh/ehgvihwr","slide":8,"text":"不建议","textPreview":"不建议","textChars":3,"textLines":1,"bbox":[778,256,442,35]} +{"kind":"shape","id":"sh/zipwbmdc","slide":8,"bbox":[42,307,340,72]} +{"kind":"textbox","id":"sh/kfixwbe1","slide":8,"text":"投入整改","textPreview":"投入整改","textChars":4,"textLines":1,"bbox":[60,328,304,35]} +{"kind":"shape","id":"sh/lgbepgvm","slide":8,"bbox":[382,307,378,72]} +{"kind":"textbox","id":"sh/tw7e9gnq","slide":8,"text":"预计亏损降至 35 万","textPreview":"预计亏损降至 35 万","textChars":11,"textLines":1,"bbox":[400,328,342,35]} +{"kind":"shape","id":"sh/svydgb65","slide":8,"bbox":[760,307,478,72]} +{"kind":"textbox","id":"sh/7u5w765k","slide":8,"text":"高风险,设止损线","textPreview":"高风险,设止损线","textChars":8,"textLines":1,"bbox":[778,328,442,35]} +{"kind":"shape","id":"sh/6twve1oz","slide":8,"bbox":[42,379,340,72]} +{"kind":"textbox","id":"sh/5sne5wne","slide":8,"text":"缩小面积","textPreview":"缩小面积","textChars":4,"textLines":1,"bbox":[60,400,304,35]} +{"kind":"shape","id":"sh/kredcr6t","slide":8,"bbox":[382,379,378,72]} +{"kind":"textbox","id":"sh/jq5w365o","slide":8,"text":"预计接近盈亏平衡","textPreview":"预计接近盈亏平衡","textChars":8,"textLines":1,"bbox":[400,400,342,35]} +{"kind":"shape","id":"sh/i5wva1o3","slide":8,"bbox":[760,379,478,72]} +{"kind":"textbox","id":"sh/x4ne1wni","slide":8,"text":"租约可重谈时考虑","textPreview":"租约可重谈时考虑","textChars":8,"textLines":1,"bbox":[778,400,442,35]} +{"kind":"shape","id":"sh/w3ed8r6x","slide":8,"bbox":[42,451,340,72]} +{"kind":"textbox","id":"sh/m9sb2x4v","slide":8,"text":"关停并迁移会员","textPreview":"关停并迁移会员","textChars":7,"textLines":1,"bbox":[60,472,304,35]} +{"kind":"shape","id":"sh/na1sb2lg","slide":8,"bbox":[382,451,378,72]} +{"kind":"textbox","id":"sh/8bat47ml","slide":8,"text":"预计减少亏损 76 万","textPreview":"预计减少亏损 76 万","textChars":11,"textLines":1,"bbox":[400,472,342,35]} +{"kind":"shape","id":"sh/9w3uds36","slide":8,"bbox":[760,451,478,72]} +{"kind":"textbox","id":"sh/y5sbed4j","slide":8,"text":"优先建议","textPreview":"优先建议","textChars":4,"textLines":1,"bbox":[778,472,442,35]} +{"kind":"textbox","id":"sh/z61s7il4","slide":8,"text":"AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。","textPreview":"AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。","textChars":33,"textLines":1,"bbox":[42,565,1160,44]} +{"kind":"notes","id":"nt/fu1gfa1s","slide":8,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/udsvah03","slide":9,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/va103ep4","slide":9,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1cfmhgne","slide":9,"text":"四级管理,各自看清该做的事\nOne operating view, four levels of accountability.","textPreview":"四级管理,各自看清该做的事 | One operating view, four levels of accountability.","textChars":64,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0b65obm9","slide":9,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/nex4jq5k","slide":9,"text":"09","textPreview":"09","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/mdonql4z","slide":9,"bbox":[42,190,265,316]} +{"kind":"textbox","id":"sh/9gzml0nq","slide":9,"text":"老板","textPreview":"老板","textChars":2,"textLines":1,"bbox":[64,214,220,46]} +{"kind":"textbox","id":"sh/ofq5svm5","slide":9,"text":"看结果","textPreview":"看结果","textChars":3,"textLines":1,"bbox":[64,296,220,44]} +{"kind":"textbox","id":"sh/bih4na5w","slide":9,"text":"利润·风险·资源投向","textPreview":"利润·风险·资源投向","textChars":10,"textLines":1,"bbox":[64,386,220,72]} +{"kind":"textbox","id":"sh/ah8nu54b","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[310,323,30,36]} +{"kind":"shape","id":"sh/oza1gfyh","slide":9,"bbox":[341,190,265,316]} +{"kind":"textbox","id":"sh/p0ji9kf2","slide":9,"text":"总部","textPreview":"总部","textChars":2,"textLines":1,"bbox":[363,214,220,46]} +{"kind":"textbox","id":"sh/2xsjepgb","slide":9,"text":"找原因","textPreview":"找原因","textChars":3,"textLines":1,"bbox":[363,296,220,44]} +{"kind":"textbox","id":"sh/3y107axw","slide":9,"text":"跨区域对标·政策评估","textPreview":"跨区域对标·政策评估","textChars":10,"textLines":1,"bbox":[363,386,220,72]} +{"kind":"textbox","id":"sh/cnu1kzyd","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[609,323,30,36]} +{"kind":"shape","id":"sh/do3id4fy","slide":9,"bbox":[640,190,265,316]} +{"kind":"textbox","id":"sh/qlcjipgn","slide":9,"text":"区域","textPreview":"区域","textChars":2,"textLines":1,"bbox":[662,214,220,46]} +{"kind":"textbox","id":"sh/bml0buxs","slide":9,"text":"推整改","textPreview":"推整改","textChars":3,"textLines":1,"bbox":[662,296,220,44]} +{"kind":"textbox","id":"sh/0ru1ozyp","slide":9,"text":"门店分级·任务·验收","textPreview":"门店分级·任务·验收","textChars":10,"textLines":1,"bbox":[662,386,220,72]} +{"kind":"textbox","id":"sh/lsn2h4fa","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[908,323,30,36]} +{"kind":"shape","id":"sh/98ji147e","slide":9,"bbox":[939,190,265,316]} +{"kind":"textbox","id":"sh/87a18zqt","slide":9,"text":"店长","textPreview":"店长","textChars":2,"textLines":1,"bbox":[961,214,220,46]} +{"kind":"textbox","id":"sh/76h0zup8","slide":9,"text":"做动作","textPreview":"做动作","textChars":3,"textLines":1,"bbox":[961,296,220,44]} +{"kind":"textbox","id":"sh/ml8j6p8n","slide":9,"text":"日目标·偏差·行动建议","textPreview":"日目标·偏差·行动建议","textChars":11,"textLines":1,"bbox":[961,386,220,72]} +{"kind":"shape","id":"sh/hcji5o7a","slide":9,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/wba1cjqp","slide":9,"text":"结果回到经营大盘:执行不是终点,改善结果才是。","textPreview":"结果回到经营大盘:执行不是终点,改善结果才是。","textChars":23,"textLines":1,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/udsvah03","slide":9,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/m90b6t0r","slide":10,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":7} +{"kind":"textbox","id":"sh/r6pcv6lw","slide":10,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xc3mho32","slide":10,"text":"AI 给依据,经营决策仍由管理者负责\nAI provides evidence. Management owns the decision.","textPreview":"AI 给依据,经营决策仍由管理者负责 | AI provides evidence. Management owns the decision.","textChars":70,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/cbu58j2h","slide":10,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/zelojyl8","slide":10,"text":"10","textPreview":"10","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/ydcnatkn","slide":10,"bbox":[42,182,560,366]} +{"kind":"shape","id":"sh/l036l83y","slide":10,"bbox":[42,182,7,366]} +{"kind":"textbox","id":"sh/kzu5c32t","slide":10,"text":"AI 可以承担","textPreview":"AI 可以承担","textChars":7,"textLines":1,"bbox":[66,204,514,40]} +{"kind":"textbox","id":"sh/725onyl4","slide":10,"text":"· 理解并关联跨系统数据\n· 持续扫描异常\n· 穿透至门店、SKU、班次和订单\n· 调用行业规则与历史案例\n· 推演方案对利润和现金流的影响\n· 跟踪执行并验证结果","textPreview":"· 理解并关联跨系统数据 | · 持续扫描异常 | · 穿透至门店、SKU、班次和订单 | · 调用行业规则与历史案例 | · 推演方案对利润和现金流的影响 | · 跟踪执行并验证结果","textChars":82,"textLines":6,"bbox":[66,256,514,274]} +{"kind":"shape","id":"sh/m1cnetkj","slide":10,"bbox":[678,182,560,366]} +{"kind":"shape","id":"sh/s7yt4b21","slide":10,"bbox":[678,182,7,366]} +{"kind":"textbox","id":"sh/d87uxg3m","slide":10,"text":"必须由管理者决定","textPreview":"必须由管理者决定","textChars":8,"textLines":1,"bbox":[702,204,514,40]} +{"kind":"textbox","id":"sh/q5gb21kb","slide":10,"text":"· 价格调整\n· 人员处置\n· 供应商更换\n· 门店迁址与关停\n· 重大资源投入\n\n所有高影响决策都应留下依据、审批与执行记录。","textPreview":"· 价格调整 | · 人员处置 | · 供应商更换 | · 门店迁址与关停 | · 重大资源投入 | | 所有高影响决策都应留下依据、审批与执行记录。","textChars":64,"textLines":7,"bbox":[702,256,514,274]} +{"kind":"notes","id":"nt/m90b6t0r","slide":10,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/jetc3ut0","slide":11,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":24} +{"kind":"textbox","id":"sh/g3qtkj6l","slide":11,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xcryxg7y","slide":11,"text":"BI 解释过去,玄谋智脑推动下一步\nBI explains the past. Xuanmou drives the next action.","textPreview":"BI 解释过去,玄谋智脑推动下一步 | BI explains the past. Xuanmou drives the next action.","textChars":71,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/wbih4b6d","slide":11,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/n69grmpw","slide":11,"text":"11","textPreview":"11","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/250zy18b","slide":11,"bbox":[42,170,228,50]} +{"kind":"textbox","id":"sh/98rytw72","slide":11,"text":"维度","textPreview":"维度","textChars":2,"textLines":1,"bbox":[58,185,196,25]} +{"kind":"shape","id":"sh/o7ih0r6h","slide":11,"bbox":[270,170,410,50]} +{"kind":"textbox","id":"sh/72t03qp0","slide":11,"text":"普通 BI","textPreview":"普通 BI","textChars":5,"textLines":1,"bbox":[286,185,378,25]} +{"kind":"shape","id":"sh/61kzalof","slide":11,"bbox":[680,170,558,50]} +{"kind":"textbox","id":"sh/ofqtgnyt","slide":11,"text":"玄谋智脑","textPreview":"玄谋智脑","textChars":4,"textLines":1,"bbox":[696,185,526,25]} +{"kind":"shape","id":"sh/9gza9sze","slide":11,"bbox":[42,220,228,67]} +{"kind":"textbox","id":"sh/mdobedg3","slide":11,"text":"定位","textPreview":"定位","textChars":2,"textLines":1,"bbox":[58,238,196,38]} +{"kind":"shape","id":"sh/nehs7iho","slide":11,"bbox":[270,220,410,67]} +{"kind":"textbox","id":"sh/0b6tc3yx","slide":11,"text":"展示报表","textPreview":"展示报表","textChars":4,"textLines":1,"bbox":[286,238,378,38]} +{"kind":"shape","id":"sh/1cfa58zi","slide":11,"bbox":[680,220,558,67]} +{"kind":"textbox","id":"sh/epobatgr","slide":11,"text":"驱动经营决策与改善","textPreview":"驱动经营决策与改善","textChars":9,"textLines":1,"bbox":[696,238,526,38]} +{"kind":"shape","id":"sh/zaxs3yhc","slide":11,"bbox":[42,287,228,67]} +{"kind":"textbox","id":"sh/cn6t83y1","slide":11,"text":"业务语义","textPreview":"业务语义","textChars":4,"textLines":1,"bbox":[58,305,196,38]} +{"kind":"shape","id":"sh/dofa18z6","slide":11,"bbox":[270,287,410,67]} +{"kind":"textbox","id":"sh/tsnip0ny","slide":11,"text":"字段和指标","textPreview":"字段和指标","textChars":5,"textLines":1,"bbox":[286,305,378,38]} +{"kind":"shape","id":"sh/87ehgv6d","slide":11,"bbox":[680,287,558,67]} +{"kind":"textbox","id":"sh/7650nq5s","slide":11,"text":"门店、商品、人员、会员等行业本体","textPreview":"门店、商品、人员、会员等行业本体","textChars":16,"textLines":1,"bbox":[696,305,526,38]} +{"kind":"shape","id":"sh/65wzelo7","slide":11,"bbox":[42,354,228,67]} +{"kind":"textbox","id":"sh/l43ilgn2","slide":11,"text":"问题发现","textPreview":"问题发现","textChars":4,"textLines":1,"bbox":[58,372,196,38]} +{"kind":"shape","id":"sh/k3uhcb6h","slide":11,"bbox":[270,354,410,67]} +{"kind":"textbox","id":"sh/j2lgjq5w","slide":11,"text":"人主动看数据","textPreview":"人主动看数据","textChars":6,"textLines":1,"bbox":[286,372,378,38]} +{"kind":"shape","id":"sh/y1czalob","slide":11,"bbox":[680,354,558,67]} +{"kind":"textbox","id":"sh/p07ixkn6","slide":11,"text":"系统持续发现、分级与推送","textPreview":"系统持续发现、分级与推送","textChars":12,"textLines":1,"bbox":[696,372,526,38]} +{"kind":"shape","id":"sh/4zyhofml","slide":11,"bbox":[42,421,228,67]} +{"kind":"textbox","id":"sh/m58fih43","slide":11,"text":"问题处理","textPreview":"问题处理","textChars":4,"textLines":1,"bbox":[58,439,196,38]} +{"kind":"shape","id":"sh/n61wbmlo","slide":11,"bbox":[270,421,410,67]} +{"kind":"textbox","id":"sh/o7axk7m9","slide":11,"text":"报告异常","textPreview":"报告异常","textChars":4,"textLines":1,"bbox":[286,439,378,38]} +{"kind":"shape","id":"sh/98jedc3u","slide":11,"bbox":[680,421,558,67]} +{"kind":"textbox","id":"sh/eh8fex47","slide":11,"text":"归因、测算、方案和整改任务","textPreview":"归因、测算、方案和整改任务","textChars":13,"textLines":1,"bbox":[696,439,526,38]} +{"kind":"shape","id":"sh/z2hw72lc","slide":11,"bbox":[42,488,228,67]} +{"kind":"textbox","id":"sh/03qxg7mx","slide":11,"text":"结果验证","textPreview":"结果验证","textChars":4,"textLines":1,"bbox":[58,506,196,38]} +{"kind":"shape","id":"sh/14ze9c3i","slide":11,"bbox":[270,488,410,67]} +{"kind":"textbox","id":"sh/ydcfq1kb","slide":11,"text":"通常不跟踪","textPreview":"通常不跟踪","textChars":5,"textLines":1,"bbox":[286,506,378,38]} +{"kind":"shape","id":"sh/jylwj6lw","slide":11,"bbox":[680,488,558,67]} +{"kind":"textbox","id":"sh/3qhsfypc","slide":11,"text":"验证改善并更新最佳实践","textPreview":"验证改善并更新最佳实践","textChars":11,"textLines":1,"bbox":[696,506,526,38]} +{"kind":"shape","id":"sh/ip8bmtor","slide":11,"bbox":[42,555,228,67]} +{"kind":"textbox","id":"sh/5sjah872","slide":11,"text":"长期价值","textPreview":"长期价值","textChars":4,"textLines":1,"bbox":[58,573,196,38]} +{"kind":"shape","id":"sh/4rato36h","slide":11,"bbox":[270,555,410,67]} +{"kind":"textbox","id":"sh/v2hsbyp0","slide":11,"text":"报表越来越多","textPreview":"报表越来越多","textChars":6,"textLines":1,"bbox":[286,573,378,38]} +{"kind":"shape","id":"sh/u18bit8f","slide":11,"bbox":[680,555,558,67]} +{"kind":"textbox","id":"sh/h4zado76","slide":11,"text":"行业模型与企业知识越用越成熟","textPreview":"行业模型与企业知识越用越成熟","textChars":14,"textLines":1,"bbox":[696,573,526,38]} +{"kind":"notes","id":"nt/jetc3ut0","slide":11,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/8f2psfyx","slide":12,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":23} +{"kind":"textbox","id":"sh/alwbitsn","slide":12,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1gbm9s3a","slide":12,"text":"五项基础能力,支撑门店规模化管理\nFive capabilities that support scalable operations.","textPreview":"五项基础能力,支撑门店规模化管理 | Five capabilities that support scalable operations.","textChars":68,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0f2lgnmp","slide":12,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ra943il8","slide":12,"text":"12","textPreview":"12","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/q903ad4n","slide":12,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,185,54,28]} +{"kind":"textbox","id":"sh/dcbm583y","slide":12,"text":"数据资产化","textPreview":"数据资产化","textChars":5,"textLines":1,"bbox":[118,171,250,54]} +{"kind":"textbox","id":"sh/sb2lcnmd","slide":12,"text":"数据通起来","textPreview":"数据通起来","textChars":5,"textLines":1,"bbox":[422,171,250,54]} +{"kind":"textbox","id":"sh/b6d4f2lc","slide":12,"text":"一个数字、一个来源","textPreview":"一个数字、一个来源","textChars":9,"textLines":1,"bbox":[720,171,450,54]} +{"kind":"shape","id":"sh/a543mx4r","slide":12,"bbox":[118,238,1050,0]} +{"kind":"textbox","id":"sh/wvupgz6t","slide":12,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,54,28]} +{"kind":"textbox","id":"sh/xw3q94ne","slide":12,"text":"运营指标化","textPreview":"运营指标化","textChars":5,"textLines":1,"bbox":[118,260,250,54]} +{"kind":"textbox","id":"sh/atc7epon","slide":12,"text":"问题浮出来","textPreview":"问题浮出来","textChars":5,"textLines":1,"bbox":[422,260,250,54]} +{"kind":"textbox","id":"sh/bulo7u58","slide":12,"text":"异常能穿透到根因","textPreview":"异常能穿透到根因","textChars":8,"textLines":1,"bbox":[720,260,450,54]} +{"kind":"shape","id":"sh/orapcf6h","slide":12,"bbox":[118,327,1050,0]} +{"kind":"textbox","id":"sh/9sj65kn2","slide":12,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,363,54,28]} +{"kind":"textbox","id":"sh/mps7a5or","slide":12,"text":"战略穿透化","textPreview":"战略穿透化","textChars":5,"textLines":1,"bbox":[118,349,250,54]} +{"kind":"textbox","id":"sh/nq1o3a5w","slide":12,"text":"目标落下去","textPreview":"目标落下去","textChars":5,"textLines":1,"bbox":[422,349,250,54]} +{"kind":"textbox","id":"sh/0nap8f6l","slide":12,"text":"战略到区域、门店和个人","textPreview":"战略到区域、门店和个人","textChars":11,"textLines":1,"bbox":[720,349,450,54]} +{"kind":"shape","id":"sh/1oj61kn6","slide":12,"bbox":[118,416,1050,0]} +{"kind":"textbox","id":"sh/hkbm5wzu","slide":12,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,452,54,28]} +{"kind":"textbox","id":"sh/gj25cry9","slide":12,"text":"态势感知化","textPreview":"态势感知化","textChars":5,"textLines":1,"bbox":[118,438,250,54]} +{"kind":"textbox","id":"sh/fit436ho","slide":12,"text":"风险早知道","textPreview":"风险早知道","textChars":5,"textLines":1,"bbox":[422,438,250,54]} +{"kind":"textbox","id":"sh/uh0na1g3","slide":12,"text":"从事后救火到事前预防","textPreview":"从事后救火到事前预防","textChars":10,"textLines":1,"bbox":[720,438,450,54]} +{"kind":"shape","id":"sh/tgrm1wzy","slide":12,"bbox":[118,505,1050,0]} +{"kind":"textbox","id":"sh/sfi58ryd","slide":12,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,541,54,28]} +{"kind":"textbox","id":"sh/7u94zmhs","slide":12,"text":"知识沉淀化","textPreview":"知识沉淀化","textChars":5,"textLines":1,"bbox":[118,527,250,54]} +{"kind":"textbox","id":"sh/6t0n6hg7","slide":12,"text":"组织越来越聪明","textPreview":"组织越来越聪明","textChars":7,"textLines":1,"bbox":[422,527,250,54]} +{"kind":"textbox","id":"sh/dcv6dgz2","slide":12,"text":"优秀能力不再依赖少数人","textPreview":"优秀能力不再依赖少数人","textChars":11,"textLines":1,"bbox":[720,527,450,54]} +{"kind":"shape","id":"sh/cbm5kbyh","slide":12,"bbox":[118,594,1050,0]} +{"kind":"notes","id":"nt/8f2psfyx","slide":12,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/hgzapcr6","slide":13,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/3yxgbqdg","slide":13,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/q50nydsj","slide":13,"text":"门店越多,复制优秀做法的价值越大\nThe larger the network, the greater the value of replication.","textPreview":"门店越多,复制优秀做法的价值越大 | The larger the network, the greater the value of replication.","textChars":78,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/bq9orito","slide":13,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/o3i5w3ad","slide":13,"text":"13","textPreview":"13","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/p4r6p8by","slide":13,"bbox":[42,182,360,250]} +{"kind":"shape","id":"sh/21gnuts7","slide":13,"bbox":[42,182,7,250]} +{"kind":"textbox","id":"sh/32ponyts","slide":13,"text":"不依赖能人","textPreview":"不依赖能人","textChars":5,"textLines":1,"bbox":[66,204,314,40]} +{"kind":"textbox","id":"sh/gzy5s3a1","slide":13,"text":"优秀店长的做法沉淀为规则、案例和 SOP。","textPreview":"优秀店长的做法沉淀为规则、案例和 SOP。","textChars":21,"textLines":1,"bbox":[66,256,314,158]} +{"kind":"shape","id":"sh/1076lobm","slide":13,"bbox":[443,182,360,250]} +{"kind":"shape","id":"sh/hcfy9k3u","slide":13,"bbox":[443,182,7,250]} +{"kind":"textbox","id":"sh/gb6x0zm9","slide":13,"text":"扩张不失控","textPreview":"扩张不失控","textChars":5,"textLines":1,"bbox":[467,204,314,40]} +{"kind":"textbox","id":"sh/vaxg7ulo","slide":13,"text":"验证有效的改善方案,可按门店特征分类复制。","textPreview":"验证有效的改善方案,可按门店特征分类复制。","textChars":21,"textLines":1,"bbox":[467,256,314,158]} +{"kind":"shape","id":"sh/u9ofyp43","slide":13,"bbox":[844,182,360,250]} +{"kind":"shape","id":"sh/t8fy5k3i","slide":13,"bbox":[844,182,7,250]} +{"kind":"textbox","id":"sh/876xwfmx","slide":13,"text":"能力持续复利","textPreview":"能力持续复利","textChars":6,"textLines":1,"bbox":[868,204,314,40]} +{"kind":"textbox","id":"sh/7mdg3als","slide":13,"text":"场景、模型、AI 建议与决策反馈相互增强。","textPreview":"场景、模型、AI 建议与决策反馈相互增强。","textChars":21,"textLines":1,"bbox":[868,256,314,158]} +{"kind":"shape","id":"sh/6l4fu547","slide":13,"bbox":[120,520,980,0]} +{"kind":"shape","id":"sh/lkvy103m","slide":13,"bbox":[104,502,38,38]} +{"kind":"textbox","id":"sh/kjmxsfm1","slide":13,"text":"30 家","textPreview":"30 家","textChars":4,"textLines":1,"bbox":[94,555,150,28]} +{"kind":"textbox","id":"sh/cnqh8fux","slide":13,"text":"靠人盯","textPreview":"靠人盯","textChars":3,"textLines":1,"bbox":[94,589,170,24]} +{"kind":"shape","id":"sh/xozyhkbi","slide":13,"bbox":[584,502,38,38]} +{"kind":"textbox","id":"sh/q18f65cr","slide":13,"text":"100 家","textPreview":"100 家","textChars":5,"textLines":1,"bbox":[574,555,150,28]} +{"kind":"textbox","id":"sh/bmhgfatc","slide":13,"text":"靠机制","textPreview":"靠机制","textChars":3,"textLines":1,"bbox":[574,589,170,24]} +{"kind":"shape","id":"sh/oz6x4vul","slide":13,"bbox":[1064,502,38,38]} +{"kind":"textbox","id":"sh/p0zyd0b6","slide":13,"text":"300 家","textPreview":"300 家","textChars":5,"textLines":1,"bbox":[1054,555,150,28]} +{"kind":"textbox","id":"sh/2xof2lcv","slide":13,"text":"靠模型复制","textPreview":"靠模型复制","textChars":5,"textLines":1,"bbox":[1054,589,170,24]} +{"kind":"notes","id":"nt/hgzapcr6","slide":13,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/6lsnupw7","slide":14,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":8} +{"kind":"textbox","id":"sh/kre1k3y9","slide":14,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xc7eds76","slide":14,"text":"真正的数据资产,是可追溯的经营能力\nA real data asset is a traceable operating capability.","textPreview":"真正的数据资产,是可追溯的经营能力 | A real data asset is a traceable operating capability.","textChars":72,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/wbydknq1","slide":14,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/jepwf2pc","slide":14,"text":"14","textPreview":"14","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/idgvmx8r","slide":14,"bbox":[42,180,560,365]} +{"kind":"shape","id":"sh/5grehs7i","slide":14,"bbox":[42,180,7,365]} +{"kind":"textbox","id":"sh/kfidonqx","slide":14,"text":"企业数据资产","textPreview":"企业数据资产","textChars":6,"textLines":1,"bbox":[66,202,514,40]} +{"kind":"textbox","id":"sh/zi5c3y98","slide":14,"text":"· 统一指标口径与责任关系\n· 门店、商品、人员、会员、供应商本体\n· 行业规则与异常模式\n· 决策、执行与验证结果\n· 最佳实践与风险知识","textPreview":"· 统一指标口径与责任关系 | · 门店、商品、人员、会员、供应商本体 | · 行业规则与异常模式 | · 决策、执行与验证结果 | · 最佳实践与风险知识","textChars":70,"textLines":5,"bbox":[66,254,514,273]} +{"kind":"shape","id":"sh/ehwvat8n","slide":14,"bbox":[678,180,560,365]} +{"kind":"shape","id":"sh/c3e1gjyd","slide":14,"bbox":[678,180,7,365]} +{"kind":"textbox","id":"sh/x4ni9ofy","slide":14,"text":"融资与尽调支持","textPreview":"融资与尽调支持","textChars":7,"textLines":1,"bbox":[702,202,514,40]} +{"kind":"textbox","id":"sh/a1wze9g7","slide":14,"text":"· 门店级损益与现金流\n· 收入稳定性分析\n· 风险预警与整改记录\n· 未来经营预测\n· 更完整、可追溯的经营证明","textPreview":"· 门店级损益与现金流 | · 收入稳定性分析 | · 风险预警与整改记录 | · 未来经营预测 | · 更完整、可追溯的经营证明","textChars":57,"textLines":5,"bbox":[702,254,514,273]} +{"kind":"textbox","id":"sh/b2507exs","slide":14,"text":"边界:提供数据与分析支持,不承诺银行授信或融资结果。","textPreview":"边界:提供数据与分析支持,不承诺银行授信或融资结果。","textChars":26,"textLines":1,"bbox":[42,578,1000,34]} +{"kind":"notes","id":"nt/6lsnupw7","slide":14,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/vaxsvy10","slide":15,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/cbuh8nmh","slide":15,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/547mhg3m","slide":15,"text":"生产数据必须留在清晰的安全边界内\nProduction data must remain within clear security boundaries.","textPreview":"生产数据必须留在清晰的安全边界内 | Production data must remain within clear security boundaries.","textChars":78,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/k3y5ov21","slide":15,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/76p4jqls","slide":15,"text":"15","textPreview":"15","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/65gnqlk7","slide":15,"bbox":[42,180,360,170]} +{"kind":"shape","id":"sh/t87ml0ji","slide":15,"bbox":[42,180,7,170]} +{"kind":"textbox","id":"sh/s7y5sv2x","slide":15,"text":"部署边界","textPreview":"部署边界","textChars":4,"textLines":1,"bbox":[66,202,314,40]} +{"kind":"textbox","id":"sh/na5476l8","slide":15,"text":"不替代现有交易系统,只读或受控对接。","textPreview":"不替代现有交易系统,只读或受控对接。","textChars":18,"textLines":1,"bbox":[66,254,314,78]} +{"kind":"shape","id":"sh/m9c3e1kn","slide":15,"bbox":[443,180,360,170]} +{"kind":"shape","id":"sh/wrm9kvep","slide":15,"bbox":[443,180,7,170]} +{"kind":"textbox","id":"sh/hsvat0fa","slide":15,"text":"最小权限","textPreview":"最小权限","textChars":4,"textLines":1,"bbox":[467,202,314,40]} +{"kind":"textbox","id":"sh/upkrilwj","slide":15,"text":"老板、总部、区域、门店按职责查看。","textPreview":"老板、总部、区域、门店按职责查看。","textChars":17,"textLines":1,"bbox":[467,254,314,78]} +{"kind":"shape","id":"sh/vqdsrqx4","slide":15,"bbox":[844,180,360,170]} +{"kind":"shape","id":"sh/4vm9ovel","slide":15,"bbox":[844,180,7,170]} +{"kind":"textbox","id":"sh/5wvax0f6","slide":15,"text":"敏感保护","textPreview":"敏感保护","textChars":4,"textLines":1,"bbox":[868,202,314,40]} +{"kind":"textbox","id":"sh/it4rm5wv","slide":15,"text":"会员、薪酬、财务明细分级、脱敏与审计。","textPreview":"会员、薪酬、财务明细分级、脱敏与审计。","textChars":19,"textLines":1,"bbox":[868,254,314,78]} +{"kind":"shape","id":"sh/judsvqxg","slide":15,"bbox":[42,390,360,170]} +{"kind":"shape","id":"sh/0z29cbyh","slide":15,"bbox":[42,390,7,170]} +{"kind":"textbox","id":"sh/l0bqlgf2","slide":15,"text":"AI 可追溯","textPreview":"AI 可追溯","textChars":6,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/1kjyt83e","slide":15,"text":"重要结论显示依据、时间、路径和适用边界。","textPreview":"重要结论显示依据、时间、路径和适用边界。","textChars":20,"textLines":1,"bbox":[66,464,314,78]} +{"kind":"shape","id":"sh/gjax03m9","slide":15,"bbox":[443,390,360,170]} +{"kind":"shape","id":"sh/fi1grylo","slide":15,"bbox":[443,390,7,170]} +{"kind":"textbox","id":"sh/ehsfyt43","slide":15,"text":"人工审批","textPreview":"人工审批","textChars":4,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/p8jyx83q","slide":15,"text":"高影响决策必须经有权限的管理者审批。","textPreview":"高影响决策必须经有权限的管理者审批。","textChars":18,"textLines":1,"bbox":[467,464,314,78]} +{"kind":"shape","id":"sh/o7ah4nm5","slide":15,"bbox":[844,390,360,170]} +{"kind":"shape","id":"sh/361gvilk","slide":15,"bbox":[844,390,7,170]} +{"kind":"textbox","id":"sh/25sf2d4z","slide":15,"text":"全程留痕","textPreview":"全程留痕","textChars":4,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/dc3y1s3m","slide":15,"text":"访问、建议、修改、审批和执行结果均可审计。","textPreview":"访问、建议、修改、审批和执行结果均可审计。","textChars":21,"textLines":1,"bbox":[868,464,314,78]} +{"kind":"notes","id":"nt/vaxsvy10","slide":15,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/gny5sjyp","slide":16,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/ih0jedob","slide":16,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/8z2h8bq1","slide":16,"text":"先用 8 周证明价值,再决定扩大范围\nProve the value in eight weeks before scaling.","textPreview":"先用 8 周证明价值,再决定扩大范围 | Prove the value in eight weeks before scaling.","textChars":65,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/9kby1g7m","slide":16,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ytkf2h8j","slide":16,"text":"16","textPreview":"16","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/zutgvm94","slide":16,"bbox":[66,340,1100,0]} +{"kind":"shape","id":"sh/kv2h4rqp","slide":16,"bbox":[54,322,38,38]} +{"kind":"textbox","id":"sh/lwbyxwra","slide":16,"text":"第 1 周","textPreview":"第 1 周","textChars":5,"textLines":1,"bbox":[49,206,200,28]} +{"kind":"textbox","id":"sh/ip4zel83","slide":16,"text":"选定利润专项","textPreview":"选定利润专项","textChars":6,"textLines":1,"bbox":[49,250,205,55]} +{"kind":"textbox","id":"sh/3qdg7qpo","slide":16,"text":"基线·口径·责任人","textPreview":"基线·口径·责任人","textChars":9,"textLines":1,"bbox":[49,394,205,84]} +{"kind":"shape","id":"sh/fm1gzq5o","slide":16,"bbox":[293,322,38,38]} +{"kind":"textbox","id":"sh/e1sf65o3","slide":16,"text":"第 1—2 周","textPreview":"第 1—2 周","textChars":7,"textLines":1,"bbox":[288,206,200,28]} +{"kind":"textbox","id":"sh/1ojy10ne","slide":16,"text":"连接现有数据","textPreview":"连接现有数据","textChars":6,"textLines":1,"bbox":[288,250,205,55]} +{"kind":"textbox","id":"sh/gnax8v6t","slide":16,"text":"数据清单·质量·统一口径","textPreview":"数据清单·质量·统一口径","textChars":12,"textLines":1,"bbox":[288,394,205,84]} +{"kind":"shape","id":"sh/nqlg3a5k","slide":16,"bbox":[532,322,38,38]} +{"kind":"textbox","id":"sh/2pcfa5oz","slide":16,"text":"第 3—4 周","textPreview":"第 3—4 周","textChars":7,"textLines":1,"bbox":[527,206,200,28]} +{"kind":"textbox","id":"sh/ps3y5knq","slide":16,"text":"发现机会与根因","textPreview":"发现机会与根因","textChars":7,"textLines":1,"bbox":[527,250,205,55]} +{"kind":"textbox","id":"sh/oruhcf65","slide":16,"text":"异常·影响金额·证据","textPreview":"异常·影响金额·证据","textChars":10,"textLines":1,"bbox":[527,394,205,84]} +{"kind":"shape","id":"sh/bulg7u5g","slide":16,"bbox":[771,322,38,38]} +{"kind":"textbox","id":"sh/atczepob","slide":16,"text":"第 5—6 周","textPreview":"第 5—6 周","textChars":7,"textLines":1,"bbox":[766,206,200,28]} +{"kind":"textbox","id":"sh/mpgj6t8j","slide":16,"text":"推动整改","textPreview":"推动整改","textChars":4,"textLines":1,"bbox":[766,250,205,55]} +{"kind":"textbox","id":"sh/7qp0zepo","slide":16,"text":"任务·期限·执行记录","textPreview":"任务·期限·执行记录","textChars":10,"textLines":1,"bbox":[766,394,205,84]} +{"kind":"shape","id":"sh/8by18jq9","slide":16,"bbox":[1010,322,38,38]} +{"kind":"textbox","id":"sh/9c7i1o7u","slide":16,"text":"第 7—8 周","textPreview":"第 7—8 周","textChars":7,"textLines":1,"bbox":[1005,206,200,28]} +{"kind":"textbox","id":"sh/ylwj2987","slide":16,"text":"验证并复制","textPreview":"验证并复制","textChars":5,"textLines":1,"bbox":[1005,250,205,55]} +{"kind":"textbox","id":"sh/zm50veps","slide":16,"text":"改善金额·验收·最佳实践","textPreview":"改善金额·验收·最佳实践","textChars":12,"textLines":1,"bbox":[1005,394,205,84]} +{"kind":"shape","id":"sh/kne14jqd","slide":16,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/lo7ixo7y","slide":16,"text":"优先选择:数据可获得 · 影响可测算 · 动作可执行 · 八周可验证。","textPreview":"优先选择:数据可获得 · 影响可测算 · 动作可执行 · 八周可验证。","textChars":35,"textLines":1,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/gny5sjyp","slide":16,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/14bup87q","slide":17,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/ytc7a1gv","slide":17,"text":"玄谋智脑 · 连锁企业经营决策","textPreview":"玄谋智脑 · 连锁企业经营决策","textChars":15,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1c7e50ni","slide":17,"text":"验收看经营改善,不看功能数量\nMeasure business improvement, not feature count.","textPreview":"验收看经营改善,不看功能数量 | Measure business improvement, not feature count.","textChars":63,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/gbedwfmx","slide":17,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/rm5czq50","slide":17,"text":"17","textPreview":"17","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/6lwvql4v","slide":17,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,188,50,26]} +{"kind":"textbox","id":"sh/t8ne10n6","slide":17,"text":"经营结果","textPreview":"经营结果","textChars":4,"textLines":1,"bbox":[112,174,230,48]} +{"kind":"textbox","id":"sh/snedsvml","slide":17,"text":"贡献利润·成本·损耗·库存资金","textPreview":"贡献利润·成本·损耗·库存资金","textChars":15,"textLines":1,"bbox":[395,174,760,48]} +{"kind":"shape","id":"sh/jilcvq54","slide":17,"bbox":[112,239,1040,0]} +{"kind":"textbox","id":"sh/ihcvml4j","slide":17,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,50,26]} +{"kind":"textbox","id":"sh/4by9or6l","slide":17,"text":"问题发现","textPreview":"问题发现","textChars":4,"textLines":1,"bbox":[112,260,230,48]} +{"kind":"textbox","id":"sh/pc7qhwn6","slide":17,"text":"发现周期·有效异常率·影响覆盖","textPreview":"发现周期·有效异常率·影响覆盖","textChars":15,"textLines":1,"bbox":[395,260,760,48]} +{"kind":"shape","id":"sh/29grm1of","slide":17,"bbox":[112,325,1040,0]} +{"kind":"textbox","id":"sh/3ap8fm50","slide":17,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,360,50,26]} +{"kind":"textbox","id":"sh/gnepkr69","slide":17,"text":"执行闭环","textPreview":"执行闭环","textChars":4,"textLines":1,"bbox":[112,346,230,48]} +{"kind":"textbox","id":"sh/honqdwnu","slide":17,"text":"接收率·按期完成率·整改有效率","textPreview":"接收率·按期完成率·整改有效率","textChars":15,"textLines":1,"bbox":[395,346,760,48]} +{"kind":"shape","id":"sh/ulw7ihoj","slide":17,"bbox":[112,411,1040,0]} +{"kind":"textbox","id":"sh/fm58bm54","slide":17,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,446,50,26]} +{"kind":"textbox","id":"sh/0ji9wb6t","slide":17,"text":"组织复制","textPreview":"组织复制","textChars":4,"textLines":1,"bbox":[112,432,230,48]} +{"kind":"textbox","id":"sh/14rqpgne","slide":17,"text":"复制门店数·成功率·新店导入时间","textPreview":"复制门店数·成功率·新店导入时间","textChars":16,"textLines":1,"bbox":[395,432,760,48]} +{"kind":"shape","id":"sh/90nq9gfi","slide":17,"bbox":[112,497,1040,0]} +{"kind":"textbox","id":"sh/8ze9gbyx","slide":17,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,532,50,26]} +{"kind":"textbox","id":"sh/ny5876xc","slide":17,"text":"数据质量","textPreview":"数据质量","textChars":4,"textLines":1,"bbox":[112,518,230,48]} +{"kind":"textbox","id":"sh/mxw7e1gr","slide":17,"text":"口径一致·完整·及时·可追溯","textPreview":"口径一致·完整·及时·可追溯","textChars":14,"textLines":1,"bbox":[395,518,760,48]} +{"kind":"shape","id":"sh/lwnq5gf6","slide":17,"bbox":[112,583,1040,0]} +{"kind":"shape","id":"sh/0vepcbyl","slide":17,"bbox":[42,612,1196,42]} +{"kind":"textbox","id":"sh/zul836xg","slide":17,"text":"项目启动时即确认基线、口径和外部影响因素,避免将自然波动误认为系统收益。","textPreview":"项目启动时即确认基线、口径和外部影响因素,避免将自然波动误认为系统收益。","textChars":36,"textLines":1,"bbox":[64,622,1152,24]} +{"kind":"notes","id":"nt/14bup87q","slide":17,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} +{"kind":"slide","id":"sl/y5wne50z","slide":18,"title":"玄谋智脑","textShapes":4} +{"kind":"textbox","id":"sh/4felwzu5","slide":18,"text":"玄谋智脑","textPreview":"玄谋智脑","textChars":4,"textLines":1,"bbox":[42,35,240,30]} +{"kind":"textbox","id":"sh/wrelszu9","slide":18,"text":"先用 8 周,找到第一批可验证的利润机会\nStart with the first measurable profit opportunities.","textPreview":"先用 8 周,找到第一批可验证的利润机会 | Start with the first measurable profit opportunities.","textChars":74,"textLines":2,"bbox":[42,160,1040,210]} +{"kind":"textbox","id":"sh/hsn2l4bu","slide":18,"text":"再决定如何扩大应用范围 Scale only after the value is proven.","textPreview":"再决定如何扩大应用范围 Scale only after the value is proven.","textChars":50,"textLines":1,"bbox":[42,420,850,52]} +{"kind":"shape","id":"sh/itw3upcf","slide":18,"bbox":[42,610,1196,0]} +{"kind":"textbox","id":"sh/je5knut0","slide":18,"text":"让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店","textPreview":"让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店","textChars":34,"textLines":1,"bbox":[42,636,1100,30]} +{"kind":"notes","id":"nt/y5wne50z","slide":18,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。"} \ No newline at end of file diff --git a/玄谋智脑_连锁企业老板决策版_中英双语完整版.pptx b/玄谋智脑_连锁企业老板决策版_中英双语完整版.pptx new file mode 100644 index 0000000..60205f2 Binary files /dev/null and b/玄谋智脑_连锁企业老板决策版_中英双语完整版.pptx differ diff --git a/玄谋智脑_连锁企业老板决策版_中英双语完整版.pptx.inspect.ndjson b/玄谋智脑_连锁企业老板决策版_中英双语完整版.pptx.inspect.ndjson new file mode 100644 index 0000000..0bb275e --- /dev/null +++ b/玄谋智脑_连锁企业老板决策版_中英双语完整版.pptx.inspect.ndjson @@ -0,0 +1,456 @@ +{"kind":"deck","id":"pr/grdqj0","name":"Deck"} +{"kind":"layout","layoutId":"/ppt/slideMasters/slideMaster1.xml","name":"Master","type":"master"} +{"kind":"layout","layoutId":"/ppt/slideLayouts/slideLayout1.xml","name":"Title Slide","type":"title"} +{"kind":"slide","id":"sl/y90nupkv","slide":1,"title":"玄谋智脑 / Xuanmou Intelligence","textShapes":4} +{"kind":"textbox","id":"sh/ts7md4r2","slide":1,"text":"玄谋智脑 / Xuanmou Intelligence","textPreview":"玄谋智脑 / Xuanmou Intelligence","textChars":27,"textLines":1,"bbox":[42,34,360,36]} +{"kind":"textbox","id":"sh/547294r6","slide":1,"text":"看清利润,才谈得上管住门店\nSee the profit clearly. Run every store with confidence.","textPreview":"看清利润,才谈得上管住门店 | See the profit clearly. Run every store with confidence.","textChars":70,"textLines":2,"bbox":[42,180,990,180]} +{"kind":"textbox","id":"sh/k3yl0zql","slide":1,"text":"面向连锁企业的行业数字本体与 AI 经营智脑 A decision intelligence layer for multi-site operators","textPreview":"面向连锁企业的行业数字本体与 AI 经营智脑 A decision intelligence layer for multi-site operators","textChars":78,"textLines":1,"bbox":[42,402,870,48]} +{"kind":"shape","id":"sh/7qp4be9c","slide":1,"bbox":[42,615,1196,0]} +{"kind":"textbox","id":"sh/65g3298r","slide":1,"text":"对外保密版 · 案例与金额均为匿名示意\nConfidential external edition · Cases and figures are anonymized illustrations","textPreview":"对外保密版 · 案例与金额均为匿名示意 | Confidential external edition · Cases and figures are anonymized illustrations","textChars":98,"textLines":2,"bbox":[42,640,620,24]} +{"kind":"notes","id":"nt/y90nupkv","slide":1,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/hwbqtkby","slide":2,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":13} +{"kind":"textbox","id":"sh/cnupgny5","slide":2,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/9072xkry","slide":2,"text":"老板最终要判断三件事\nThree decisions matter most to the owner.","textPreview":"老板最终要判断三件事 | Three decisions matter most to the owner.","textChars":52,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/ozy1ofad","slide":2,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/b29kza94","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/a10jqpsj","slide":2,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,190,80,48]} +{"kind":"shape","id":"sh/x4r21kru","slide":2,"bbox":[42,248,350,0]} +{"kind":"textbox","id":"sh/w3i1sfa9","slide":2,"text":"哪里在亏钱? / Where are we losing money?","textPreview":"哪里在亏钱? / Where are we losing money?","textChars":35,"textLines":1,"bbox":[42,278,350,52]} +{"kind":"textbox","id":"sh/r65knqtk","slide":2,"text":"门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理?\nWhich profit leaks across stores, SKUs, promotions, inventory and labor should be fixed first?","textPreview":"门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理? | Which profit leaks across stores, SKUs, promotions, inventory and labor should be fixed first?","textChars":125,"textLines":2,"bbox":[42,352,350,140]} +{"kind":"textbox","id":"sh/q5wjelsz","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[443,190,80,48]} +{"kind":"shape","id":"sh/ove9o7yd","slide":2,"bbox":[443,248,350,0]} +{"kind":"textbox","id":"sh/9wnqhczy","slide":2,"text":"哪些动作能增利? / Which actions will improve profit?","textPreview":"哪些动作能增利? / Which actions will improve profit?","textChars":45,"textLines":1,"bbox":[443,278,350,52]} +{"kind":"textbox","id":"sh/mtwrmxg7","slide":2,"text":"不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。\nQuantify the impact, recommend actions, track execution and verify the outcome.","textPreview":"不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。 | Quantify the impact, recommend actions, track execution and verify the outcome.","textChars":108,"textLines":2,"bbox":[443,352,350,140]} +{"kind":"textbox","id":"sh/nu58f2hs","slide":2,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[844,190,80,48]} +{"kind":"shape","id":"sh/wjy9sry9","slide":2,"bbox":[844,248,350,0]} +{"kind":"textbox","id":"sh/xk7qlczu","slide":2,"text":"扩张后还能管住吗? / Can we stay in control as we scale?","textPreview":"扩张后还能管住吗? / Can we stay in control as we scale?","textChars":47,"textLines":1,"bbox":[844,278,350,52]} +{"kind":"textbox","id":"sh/ahwrqhgj","slide":2,"text":"从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制?\nCan proven practices be replicated from 30 to 300 stores, consistently and at low cost?","textPreview":"从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制? | Can proven practices be replicated from 30 to 300 stores, consistently and at low cost?","textChars":122,"textLines":2,"bbox":[844,352,350,140]} +{"kind":"textbox","id":"sh/bip8jmho","slide":2,"text":"不是看更多报表,而是将数据转化为可验证的经营改善。\nThe goal is not more reports, but measurable operating improvement.","textPreview":"不是看更多报表,而是将数据转化为可验证的经营改善。 | The goal is not more reports, but measurable operating improvement.","textChars":93,"textLines":2,"bbox":[42,590,1100,42]} +{"kind":"notes","id":"nt/hwbqtkby","slide":2,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/ofy9wn61","slide":3,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/batgjixs","slide":3,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/cza94vmx","slide":3,"text":"数据很多,利润去向仍然说不清\nPlenty of data, but no clear view of where profit goes.","textPreview":"数据很多,利润去向仍然说不清 | Plenty of data, but no clear view of where profit goes.","textChars":70,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/d0jax03i","slide":3,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/298ryl4v","slide":3,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/3ah8rqlg","slide":3,"bbox":[42,188,360,160]} +{"kind":"shape","id":"sh/obq90bml","slide":3,"bbox":[42,188,7,160]} +{"kind":"textbox","id":"sh/pcjqtg36","slide":3,"text":"营收 / Revenue","textPreview":"营收 / Revenue","textChars":12,"textLines":1,"bbox":[66,210,314,40]} +{"kind":"textbox","id":"sh/m5cra54z","slide":3,"text":"营收增长,利润为何没有同步?\nWhy is profit not keeping pace with revenue?","textPreview":"营收增长,利润为何没有同步? | Why is profit not keeping pace with revenue?","textChars":59,"textLines":2,"bbox":[66,262,314,68]} +{"kind":"shape","id":"sh/n6ls3alk","slide":3,"bbox":[443,188,360,160]} +{"kind":"shape","id":"sh/n2l4fq98","slide":3,"bbox":[443,188,7,160]} +{"kind":"textbox","id":"sh/m1c3mlsn","slide":3,"text":"门店 / Stores","textPreview":"门店 / Stores","textChars":11,"textLines":1,"bbox":[467,210,314,40]} +{"kind":"textbox","id":"sh/943mhgre","slide":3,"text":"哪些门店看似赚钱,实际占用资金?\nWhich stores appear profitable but tie up cash?","textPreview":"哪些门店看似赚钱,实际占用资金? | Which stores appear profitable but tie up cash?","textChars":64,"textLines":2,"bbox":[467,262,314,68]} +{"kind":"shape","id":"sh/83ulovat","slide":3,"bbox":[844,188,360,160]} +{"kind":"shape","id":"sh/v6l4jq94","slide":3,"bbox":[844,188,7,160]} +{"kind":"textbox","id":"sh/a5c3ql8z","slide":3,"text":"促销 / Promotions","textPreview":"促销 / Promotions","textChars":15,"textLines":1,"bbox":[868,210,314,40]} +{"kind":"textbox","id":"sh/x8nml0ra","slide":3,"text":"哪些活动增加订单,却消耗利润?\nWhich campaigns add orders but destroy profit?","textPreview":"哪些活动增加订单,却消耗利润? | Which campaigns add orders but destroy profit?","textChars":62,"textLines":2,"bbox":[868,262,314,68]} +{"kind":"shape","id":"sh/w7ulsvqp","slide":3,"bbox":[42,390,360,160]} +{"kind":"shape","id":"sh/ja54na9g","slide":3,"bbox":[42,390,7,160]} +{"kind":"textbox","id":"sh/i9w3u58v","slide":3,"text":"SKU","textPreview":"SKU","textChars":3,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/e10f2twf","slide":3,"text":"哪些商品销量不低,却毛利不足?\nWhich products sell well but contribute too little margin?","textPreview":"哪些商品销量不低,却毛利不足? | Which products sell well but contribute too little margin?","textChars":74,"textLines":2,"bbox":[66,464,314,68]} +{"kind":"shape","id":"sh/f29gbyx0","slide":3,"bbox":[443,390,360,160]} +{"kind":"shape","id":"sh/03ix43e5","slide":3,"bbox":[443,390,7,160]} +{"kind":"textbox","id":"sh/14ryd8fq","slide":3,"text":"人力 / Labor","textPreview":"人力 / Labor","textChars":10,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/6d0fytg3","slide":3,"text":"哪些时段人员闲置,高峰又缺人?\nWhen are teams idle, yet understaffed at peak times?","textPreview":"哪些时段人员闲置,高峰又缺人? | When are teams idle, yet understaffed at peak times?","textChars":68,"textLines":2,"bbox":[467,464,314,68]} +{"kind":"shape","id":"sh/re9g7yxo","slide":3,"bbox":[844,390,360,160]} +{"kind":"shape","id":"sh/sfix03y9","slide":3,"bbox":[844,390,7,160]} +{"kind":"textbox","id":"sh/tgry9ofu","slide":3,"text":"止损 / Loss control","textPreview":"止损 / Loss control","textChars":17,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/a9kfadwn","slide":3,"text":"哪些门店应整改、迁址、缩编或关停?\nWhich stores should be fixed, relocated, resized or closed?","textPreview":"哪些门店应整改、迁址、缩编或关停? | Which stores should be fixed, relocated, resized or closed?","textChars":77,"textLines":2,"bbox":[868,464,314,68]} +{"kind":"notes","id":"nt/ofy9wn61","slide":3,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/jyx0ra1s","slide":4,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":22} +{"kind":"textbox","id":"sh/knex8j21","slide":4,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1cj2d8b6","slide":4,"text":"把异常处理成有结果的经营行动\nTurn exceptions into actions with measurable outcomes.","textPreview":"把异常处理成有结果的经营行动 | Turn exceptions into actions with measurable outcomes.","textChars":69,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0ba143al","slide":4,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/rm1k7yt4","slide":4,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/ql8jytsj","slide":4,"bbox":[82,350,1090,0]} +{"kind":"shape","id":"sh/doj29oba","slide":4,"bbox":[54,332,36,36]} +{"kind":"textbox","id":"sh/sna103ap","slide":4,"text":"1","textPreview":"1","textChars":1,"textLines":1,"bbox":[54,337,36,24]} +{"kind":"textbox","id":"sh/3ihk3et8","slide":4,"text":"发现 / Detect","textPreview":"发现 / Detect","textChars":11,"textLines":1,"bbox":[44,235,150,40]} +{"kind":"textbox","id":"sh/ih8ju9sn","slide":4,"text":"利润异常\nProfit exception","textPreview":"利润异常 | Profit exception","textChars":21,"textLines":2,"bbox":[44,400,164,78]} +{"kind":"shape","id":"sh/kbm987y5","slide":4,"bbox":[253,332,36,36]} +{"kind":"textbox","id":"sh/5cva1cfq","slide":4,"text":"2","textPreview":"2","textChars":1,"textLines":1,"bbox":[253,337,36,24]} +{"kind":"textbox","id":"sh/i94r6xgz","slide":4,"text":"穿透 / Drill down","textPreview":"穿透 / Drill down","textChars":15,"textLines":1,"bbox":[243,235,150,40]} +{"kind":"textbox","id":"sh/jadsz2xk","slide":4,"text":"区域·门店·SKU·班次\nRegion · Store · SKU · Shift","textPreview":"区域·门店·SKU·班次 | Region · Store · SKU · Shift","textChars":41,"textLines":2,"bbox":[243,400,164,78]} +{"kind":"shape","id":"sh/w72947yt","slide":4,"bbox":[452,332,36,36]} +{"kind":"textbox","id":"sh/x8vaxsfe","slide":4,"text":"3","textPreview":"3","textChars":1,"textLines":1,"bbox":[452,337,36,24]} +{"kind":"textbox","id":"sh/a5kr2xg3","slide":4,"text":"测算 / Quantify","textPreview":"测算 / Quantify","textChars":13,"textLines":1,"bbox":[442,235,150,40]} +{"kind":"textbox","id":"sh/v6tsv2xo","slide":4,"text":"影响金额与优先级\nFinancial impact and priority","textPreview":"影响金额与优先级 | Financial impact and priority","textChars":38,"textLines":2,"bbox":[442,400,164,78]} +{"kind":"shape","id":"sh/g36tgryd","slide":4,"bbox":[651,332,36,36]} +{"kind":"textbox","id":"sh/h4fa9wfy","slide":4,"text":"4","textPreview":"4","textChars":1,"textLines":1,"bbox":[651,337,36,24]} +{"kind":"textbox","id":"sh/p0batw72","slide":4,"text":"整改 / Act","textPreview":"整改 / Act","textChars":8,"textLines":1,"bbox":[641,235,150,40]} +{"kind":"textbox","id":"sh/oz29krqh","slide":4,"text":"动作·责任人·期限\nAction · Owner · Deadline","textPreview":"动作·责任人·期限 | Action · Owner · Deadline","textChars":35,"textLines":2,"bbox":[641,400,164,78]} +{"kind":"shape","id":"sh/3ytsrmpw","slide":4,"bbox":[850,332,36,36]} +{"kind":"textbox","id":"sh/2xkrih8b","slide":4,"text":"5","textPreview":"5","textChars":1,"textLines":1,"bbox":[850,337,36,24]} +{"kind":"textbox","id":"sh/1wbapc7q","slide":4,"text":"验证 / Verify","textPreview":"验证 / Verify","textChars":11,"textLines":1,"bbox":[840,235,150,40]} +{"kind":"textbox","id":"sh/gv29g7q5","slide":4,"text":"利润是否真正改善\nConfirm real profit improvement","textPreview":"利润是否真正改善 | Confirm real profit improvement","textChars":40,"textLines":2,"bbox":[840,400,164,78]} +{"kind":"shape","id":"sh/fu9sn2p0","slide":4,"bbox":[1049,332,36,36]} +{"kind":"textbox","id":"sh/et0reh8f","slide":4,"text":"6","textPreview":"6","textChars":1,"textLines":1,"bbox":[1049,337,36,24]} +{"kind":"textbox","id":"sh/tsrqlc7u","slide":4,"text":"沉淀 / Codify","textPreview":"沉淀 / Codify","textChars":11,"textLines":1,"bbox":[1039,235,150,40]} +{"kind":"textbox","id":"sh/sri9s7q9","slide":4,"text":"更新企业最佳实践\nUpdate company best practices","textPreview":"更新企业最佳实践 | Update company best practices","textChars":38,"textLines":2,"bbox":[1039,400,164,78]} +{"kind":"shape","id":"sh/ilwf69kv","slide":4,"bbox":[42,552,1196,58]} +{"kind":"textbox","id":"sh/jm5gze1g","slide":4,"text":"关键不是“发现问题”,而是“把问题变成可复制的利润改善”。\nThe value lies in turning issues into repeatable profit improvement.","textPreview":"关键不是“发现问题”,而是“把问题变成可复制的利润改善”。 | The value lies in turning issues into repeatable profit improvement.","textChars":98,"textLines":2,"bbox":[66,568,1148,30]} +{"kind":"notes","id":"nt/jyx0ra1s","slide":4,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/i107q5of","slide":5,"title":"匿名复合案例 · SKU 组合决策 Anonymous composite case · SKU portfolio","textShapes":15} +{"kind":"textbox","id":"sh/fe94nm1w","slide":5,"text":"匿名复合案例 · SKU 组合决策 Anonymous composite case · SKU portfolio","textPreview":"匿名复合案例 · SKU 组合决策 Anonymous composite case · SKU portfolio","textChars":59,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/dgbulwnm","slide":5,"text":"SKU 过多,往往增加的是复杂度和成本\nMore SKUs often mean more cost, not more choice.","textPreview":"SKU 过多,往往增加的是复杂度和成本 | More SKUs often mean more cost, not more choice.","textChars":68,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/cf2tcr61","slide":5,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/z2tcnm5s","slide":5,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/yhkbe1o7","slide":5,"text":"480","textPreview":"480","textChars":3,"textLines":1,"bbox":[42,182,190,72]} +{"kind":"textbox","id":"sh/l4bupwny","slide":5,"text":"在售 SKU / Active SKUs","textPreview":"在售 SKU / Active SKUs","textChars":20,"textLines":1,"bbox":[42,256,190,30]} +{"kind":"textbox","id":"sh/032tgr6d","slide":5,"text":"后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。\nThe bottom 20% of SKUs contribute about 3% of sales while continuously tying up inventory cash.","textPreview":"后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。 | The bottom 20% of SKUs contribute about 3% of sales while continuously tying up inventory cash.","textChars":128,"textLines":2,"bbox":[262,190,800,76]} +{"kind":"shape","id":"sh/n6dcr65o","slide":5,"bbox":[42,328,270,170]} +{"kind":"textbox","id":"sh/m5kbi1oj","slide":5,"text":"37 个 / 37 items","textPreview":"37 个 / 37 items","textChars":15,"textLines":1,"bbox":[66,354,222,64]} +{"kind":"textbox","id":"sh/w32dkbuh","slide":5,"text":"低销量·低毛利·高损耗\nLow sales · Low margin · High waste","textPreview":"低销量·低毛利·高损耗 | Low sales · Low margin · High waste","textChars":47,"textLines":2,"bbox":[66,434,222,40]} +{"kind":"shape","id":"sh/x4vedgvm","slide":5,"bbox":[341,328,270,170]} +{"kind":"textbox","id":"sh/ahkvi1cb","slide":5,"text":"9 个 / 9 items","textPreview":"9 个 / 9 items","textChars":13,"textLines":1,"bbox":[365,354,222,64]} +{"kind":"textbox","id":"sh/v2twb6dw","slide":5,"text":"高销量但低贡献利润 / High sales but low profit contribution","textPreview":"高销量但低贡献利润 / High sales but low profit contribution","textChars":50,"textLines":1,"bbox":[365,434,222,40]} +{"kind":"shape","id":"sh/k7mxovud","slide":5,"bbox":[640,328,270,170]} +{"kind":"textbox","id":"sh/58vehgvy","slide":5,"text":"16 个 / 16 items","textPreview":"16 个 / 16 items","textChars":15,"textLines":1,"bbox":[664,354,222,64]} +{"kind":"textbox","id":"sh/i54fmlc7","slide":5,"text":"可共享或替换原料 / Shared or substitutable ingredients","textPreview":"可共享或替换原料 / Shared or substitutable ingredients","textChars":46,"textLines":1,"bbox":[664,434,222,40]} +{"kind":"shape","id":"sh/j6dwfqds","slide":5,"bbox":[939,328,270,170]} +{"kind":"textbox","id":"sh/sb6xsvu9","slide":5,"text":"22 个 / 22 items","textPreview":"22 个 / 22 items","textChars":15,"textLines":1,"bbox":[963,354,222,64]} +{"kind":"textbox","id":"sh/tcfel0vu","slide":5,"text":"价格带重叠 / Overlapping price points","textPreview":"价格带重叠 / Overlapping price points","textChars":32,"textLines":1,"bbox":[963,434,222,40]} +{"kind":"shape","id":"sh/hgrmpwj2","slide":5,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/gfi5grih","slide":5,"text":"模拟测算:释放库存资金约 80 万元 · 年减少报损约 35 万元 · 综合毛利率提升约 0.6 个百分点\nIllustrative estimate: release RMB 0.8m in inventory cash · reduce annual waste by RMB 0.35m · lift gross margin by about 0.6 pp","textPreview":"模拟测算:释放库存资金约 80 万元 · 年减少报损约 35 万元 · 综合毛利率提升约 0.6 个百分点 | Illustrative estimate: release RMB 0.8m in inventory cash · reduce annual waste b...","textChars":182,"textLines":2,"bbox":[68,558,1140,40]} +{"kind":"notes","id":"nt/i107q5of","slide":5,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/x8f69ofe","slide":6,"title":"匿名复合案例 · 门店 A-017 Anonymous composite case · Store A-017","textShapes":10} +{"kind":"textbox","id":"sh/svmt4v6t","slide":6,"text":"匿名复合案例 · 门店 A-017 Anonymous composite case · Store A-017","textPreview":"匿名复合案例 · 门店 A-017 Anonymous composite case · Store A-017","textChars":57,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/yhg7epsj","slide":6,"text":"排班的关键,是工时跟着客流走\nLabor hours should follow demand.","textPreview":"排班的关键,是工时跟着客流走 | Labor hours should follow demand.","textChars":48,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/zi98nu94","slide":6,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/87ipkzal","slide":6,"text":"06","textPreview":"06","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/98rqt4r6","slide":6,"bbox":[42,182,362,314]} +{"kind":"shape","id":"sh/ml07i9sv","slide":6,"bbox":[42,182,7,314]} +{"kind":"textbox","id":"sh/7m98ru9g","slide":6,"text":"发现 / Detect","textPreview":"发现 / Detect","textChars":11,"textLines":1,"bbox":[66,204,316,40]} +{"kind":"textbox","id":"sh/oryp8fah","slide":6,"text":"· 工作日上午存在闲置工时\n· 周五晚高峰经常缺人\n· 班次依据历史习惯\n· 加班集中在少数岗位\nIdle labor on weekday mornings · Understaffed on Friday peaks · Habit-based shifts · Overtime concentrated in a few roles","textPreview":"· 工作日上午存在闲置工时 | · 周五晚高峰经常缺人 | · 班次依据历史习惯 | · 加班集中在少数岗位 | Idle labor on weekday mornings · Understaffed on Friday peaks · Habit-based shif...","textChars":170,"textLines":5,"bbox":[66,256,316,222]} +{"kind":"shape","id":"sh/pc76hkr2","slide":6,"bbox":[458,182,362,314]} +{"kind":"shape","id":"sh/h4bupgn6","slide":6,"bbox":[458,182,7,314]} +{"kind":"textbox","id":"sh/w32twb6l","slide":6,"text":"动作 / Actions","textPreview":"动作 / Actions","textChars":12,"textLines":1,"bbox":[482,204,316,40]} +{"kind":"textbox","id":"sh/v2tcn650","slide":6,"text":"· 按半小时预测工作量\n· 调整早晚班起止时间\n· 高峰增加小时工\n· 备餐前移至客流爬升前\nForecast every 30 minutes · Adjust shift times · Add hourly staff at peaks · Move prep ahead of demand","textPreview":"· 按半小时预测工作量 | · 调整早晚班起止时间 | · 高峰增加小时工 | · 备餐前移至客流爬升前 | Forecast every 30 minutes · Adjust shift times · Add hourly staff at peaks · Move ...","textChars":149,"textLines":5,"bbox":[482,256,316,222]} +{"kind":"shape","id":"sh/u1kbu1ov","slide":6,"bbox":[874,182,364,314]} +{"kind":"shape","id":"sh/5svutgni","slide":6,"bbox":[874,182,7,314]} +{"kind":"textbox","id":"sh/47mt0b6x","slide":6,"text":"验证 / Verify","textPreview":"验证 / Verify","textChars":11,"textLines":1,"bbox":[898,204,318,40]} +{"kind":"textbox","id":"sh/j6dcr65c","slide":6,"text":"同时监控:\n\n· 人工成本\n· 出品时效\n· 顾客满意度\n\n避免单纯压缩人力。\nMonitor labor cost, service speed and customer satisfaction together. Do not simply cut headcount.","textPreview":"同时监控: | | · 人工成本 | · 出品时效 | · 顾客满意度 | | 避免单纯压缩人力。 | Monitor labor cost, service speed and customer satisfaction together. Do not simply...","textChars":138,"textLines":8,"bbox":[898,256,318,222]} +{"kind":"shape","id":"sh/i54bylor","slide":6,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/twfux0ne","slide":6,"text":"模拟测算:单店每月节约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。\nIllustrative estimate: RMB 18k saved per store per month; about RMB 12.96m annual upside across 60 stores.","textPreview":"模拟测算:单店每月节约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。 | Illustrative estimate: RMB 18k saved per store per month; about RMB 12.96m annual upsid...","textChars":154,"textLines":2,"bbox":[66,557,1148,42]} +{"kind":"notes","id":"nt/x8f69ofe","slide":6,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/gnmp4jqx","slide":7,"title":"匿名复合案例 · 营销活动 X Anonymous composite case · Campaign X","textShapes":17} +{"kind":"textbox","id":"sh/s3ml0v61","slide":7,"text":"匿名复合案例 · 营销活动 X Anonymous composite case · Campaign X","textPreview":"匿名复合案例 · 营销活动 X Anonymous composite case · Campaign X","textChars":54,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/cb2tkvap","slide":7,"text":"订单增长,不等于促销赚钱\nMore orders do not always mean a profitable campaign.","textPreview":"订单增长,不等于促销赚钱 | More orders do not always mean a profitable campaign.","textChars":66,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/dcbud0ra","slide":7,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ydkbm5sv","slide":7,"text":"07","textPreview":"07","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/zedcfa9g","slide":7,"bbox":[42,186,350,170]} +{"kind":"textbox","id":"sh/kzmdova1","slide":7,"text":"+23%","textPreview":"+23%","textChars":4,"textLines":1,"bbox":[66,212,302,64]} +{"kind":"textbox","id":"sh/l0vuh0rm","slide":7,"text":"订单增长 / Order growth","textPreview":"订单增长 / Order growth","textChars":19,"textLines":1,"bbox":[66,292,302,40]} +{"kind":"shape","id":"sh/eh0ba1sr","slide":7,"bbox":[42,378,350,170]} +{"kind":"textbox","id":"sh/fi9c369c","slide":7,"text":"负值 / Negative","textPreview":"负值 / Negative","textChars":13,"textLines":1,"bbox":[66,404,302,64]} +{"kind":"textbox","id":"sh/baxkjqlk","slide":7,"text":"穿透成本后的活动贡献利润\nCampaign contribution after full costs","textPreview":"穿透成本后的活动贡献利润 | Campaign contribution after full costs","textChars":51,"textLines":2,"bbox":[66,484,302,40]} +{"kind":"textbox","id":"sh/a9ojq5kz","slide":7,"text":"活动为什么亏钱 / Why the campaign loses money","textPreview":"活动为什么亏钱 / Why the campaign loses money","textChars":38,"textLines":1,"bbox":[454,186,360,40]} +{"kind":"textbox","id":"sh/xcz2l03q","slide":7,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[454,258,42,28]} +{"kind":"textbox","id":"sh/cbq1sv25","slide":7,"text":"低毛利商品占比上升 / More low-margin items in the mix","textPreview":"低毛利商品占比上升 / More low-margin items in the mix","textChars":44,"textLines":1,"bbox":[510,254,650,40]} +{"kind":"shape","id":"sh/n6x0fqlo","slide":7,"bbox":[510,300,650,0]} +{"kind":"textbox","id":"sh/25ojml43","slide":7,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[454,323,42,28]} +{"kind":"textbox","id":"sh/p8fih03e","slide":7,"text":"高价值会员获得无差别优惠\nHigh-value members receive blanket discounts","textPreview":"高价值会员获得无差别优惠 | High-value members receive blanket discounts","textChars":57,"textLines":2,"bbox":[510,319,650,40]} +{"kind":"shape","id":"sh/o761ov2t","slide":7,"bbox":[510,365,650,0]} +{"kind":"textbox","id":"sh/f2d0b6lc","slide":7,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[454,388,42,28]} +{"kind":"textbox","id":"sh/eh4jil4r","slide":7,"text":"促销订单替代了原价订单\nDiscounted orders replace full-price orders","textPreview":"促销订单替代了原价订单 | Discounted orders replace full-price orders","textChars":55,"textLines":2,"bbox":[510,384,650,40]} +{"kind":"shape","id":"sh/id4ju1oz","slide":7,"bbox":[510,430,650,0]} +{"kind":"textbox","id":"sh/jedkn654","slide":7,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[454,453,42,28]} +{"kind":"textbox","id":"sh/4fm1wb6p","slide":7,"text":"只评价订单和营收,没有评价增量利润\nOrders and revenue measured; incremental profit ignored","textPreview":"只评价订单和营收,没有评价增量利润 | Orders and revenue measured; incremental profit ignored","textChars":73,"textLines":2,"bbox":[510,449,650,40]} +{"kind":"shape","id":"sh/50v2pgna","slide":7,"bbox":[510,495,650,0]} +{"kind":"shape","id":"sh/q143ylov","slide":7,"bbox":[454,544,746,67]} +{"kind":"textbox","id":"sh/r2dkrq5g","slide":7,"text":"用“每投入 1 元营销费用增加多少贡献利润”评价活动。\nEvaluate each campaign by contribution profit generated per RMB 1 of marketing spend.","textPreview":"用“每投入 1 元营销费用增加多少贡献利润”评价活动。 | Evaluate each campaign by contribution profit generated per RMB 1 of marketing spend.","textChars":113,"textLines":2,"bbox":[478,562,700,34]} +{"kind":"notes","id":"nt/gnmp4jqx","slide":7,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/fu1gfa1s","slide":8,"title":"匿名复合案例 · 门店 D-006 Anonymous composite case · Store D-006","textShapes":19} +{"kind":"textbox","id":"sh/07atgnmp","slide":8,"text":"匿名复合案例 · 门店 D-006 Anonymous composite case · Store D-006","textPreview":"匿名复合案例 · 门店 D-006 Anonymous composite case · Store D-006","textChars":57,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/18byd4zy","slide":8,"text":"关店前,先把四种选择算清楚\nCompare the options before deciding to close a store.","textPreview":"关店前,先把四种选择算清楚 | Compare the options before deciding to close a store.","textChars":67,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/g72x4zyd","slide":8,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ri9g7uhw","slide":8,"text":"08","textPreview":"08","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/6h0fypgb","slide":8,"bbox":[42,180,340,55]} +{"kind":"textbox","id":"sh/tkby9kzm","slide":8,"text":"方案 / Option","textPreview":"方案 / Option","textChars":11,"textLines":1,"bbox":[60,197,304,26]} +{"kind":"shape","id":"sh/sjix0zy1","slide":8,"bbox":[382,180,378,55]} +{"kind":"textbox","id":"sh/je9g3ahk","slide":8,"text":"12 个月模拟结果 / 12-month scenario","textPreview":"12 个月模拟结果 / 12-month scenario","textChars":29,"textLines":1,"bbox":[400,197,342,26]} +{"kind":"shape","id":"sh/id0fu50z","slide":8,"bbox":[760,180,478,55]} +{"kind":"textbox","id":"sh/o7ydoret","slide":8,"text":"决策建议 / Recommendation","textPreview":"决策建议 / Recommendation","textChars":21,"textLines":1,"bbox":[778,197,442,26]} +{"kind":"shape","id":"sh/98rehwve","slide":8,"bbox":[42,235,340,72]} +{"kind":"textbox","id":"sh/m5gvmhwn","slide":8,"text":"继续经营 / Continue operating","textPreview":"继续经营 / Continue operating","textChars":25,"textLines":1,"bbox":[60,256,304,35]} +{"kind":"shape","id":"sh/n6pwfmd8","slide":8,"bbox":[382,235,378,72]} +{"kind":"textbox","id":"sh/0jydkreh","slide":8,"text":"预计亏损 92 万 / Estimated loss: RMB 0.92m","textPreview":"预计亏损 92 万 / Estimated loss: RMB 0.92m","textChars":37,"textLines":1,"bbox":[400,256,342,35]} +{"kind":"shape","id":"sh/1k7edwv2","slide":8,"bbox":[760,235,478,72]} +{"kind":"textbox","id":"sh/ehgvihwr","slide":8,"text":"不建议 / Not recommended","textPreview":"不建议 / Not recommended","textChars":21,"textLines":1,"bbox":[778,256,442,35]} +{"kind":"shape","id":"sh/zipwbmdc","slide":8,"bbox":[42,307,340,72]} +{"kind":"textbox","id":"sh/kfixwbe1","slide":8,"text":"投入整改 / Invest in a turnaround","textPreview":"投入整改 / Invest in a turnaround","textChars":29,"textLines":1,"bbox":[60,328,304,35]} +{"kind":"shape","id":"sh/lgbepgvm","slide":8,"bbox":[382,307,378,72]} +{"kind":"textbox","id":"sh/tw7e9gnq","slide":8,"text":"预计亏损降至 35 万\nEstimated loss falls to RMB 0.35m","textPreview":"预计亏损降至 35 万 | Estimated loss falls to RMB 0.35m","textChars":45,"textLines":2,"bbox":[400,328,342,35]} +{"kind":"shape","id":"sh/svydgb65","slide":8,"bbox":[760,307,478,72]} +{"kind":"textbox","id":"sh/7u5w765k","slide":8,"text":"高风险,设止损线 / High risk; set a stop-loss","textPreview":"高风险,设止损线 / High risk; set a stop-loss","textChars":37,"textLines":1,"bbox":[778,328,442,35]} +{"kind":"shape","id":"sh/6twve1oz","slide":8,"bbox":[42,379,340,72]} +{"kind":"textbox","id":"sh/5sne5wne","slide":8,"text":"缩小面积 / Reduce footprint","textPreview":"缩小面积 / Reduce footprint","textChars":23,"textLines":1,"bbox":[60,400,304,35]} +{"kind":"shape","id":"sh/kredcr6t","slide":8,"bbox":[382,379,378,72]} +{"kind":"textbox","id":"sh/jq5w365o","slide":8,"text":"预计接近盈亏平衡 / Near break-even","textPreview":"预计接近盈亏平衡 / Near break-even","textChars":26,"textLines":1,"bbox":[400,400,342,35]} +{"kind":"shape","id":"sh/i5wva1o3","slide":8,"bbox":[760,379,478,72]} +{"kind":"textbox","id":"sh/x4ne1wni","slide":8,"text":"租约可重谈时考虑 / Consider if the lease can be renegotiated","textPreview":"租约可重谈时考虑 / Consider if the lease can be renegotiated","textChars":52,"textLines":1,"bbox":[778,400,442,35]} +{"kind":"shape","id":"sh/w3ed8r6x","slide":8,"bbox":[42,451,340,72]} +{"kind":"textbox","id":"sh/m9sb2x4v","slide":8,"text":"关停并迁移会员 / Close and migrate members","textPreview":"关停并迁移会员 / Close and migrate members","textChars":35,"textLines":1,"bbox":[60,472,304,35]} +{"kind":"shape","id":"sh/na1sb2lg","slide":8,"bbox":[382,451,378,72]} +{"kind":"textbox","id":"sh/8bat47ml","slide":8,"text":"预计减少亏损 76 万\nEstimated loss reduction: RMB 0.76m","textPreview":"预计减少亏损 76 万 | Estimated loss reduction: RMB 0.76m","textChars":47,"textLines":2,"bbox":[400,472,342,35]} +{"kind":"shape","id":"sh/9w3uds36","slide":8,"bbox":[760,451,478,72]} +{"kind":"textbox","id":"sh/y5sbed4j","slide":8,"text":"优先建议 / Preferred option","textPreview":"优先建议 / Preferred option","textChars":23,"textLines":1,"bbox":[778,472,442,35]} +{"kind":"textbox","id":"sh/z61s7il4","slide":8,"text":"AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。\nAI does not close stores. It adds evidence, scenario analysis and an exit plan to management judgment.","textPreview":"AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。 | AI does not close stores. It adds evidence, scenario analysis and an exit plan to management judgment.","textChars":136,"textLines":2,"bbox":[42,565,1160,44]} +{"kind":"notes","id":"nt/fu1gfa1s","slide":8,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/udsvah03","slide":9,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/va103ep4","slide":9,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1cfmhgne","slide":9,"text":"四级管理,各自看清该做的事\nOne operating view, four levels of accountability.","textPreview":"四级管理,各自看清该做的事 | One operating view, four levels of accountability.","textChars":64,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0b65obm9","slide":9,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/nex4jq5k","slide":9,"text":"09","textPreview":"09","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/mdonql4z","slide":9,"bbox":[42,190,265,316]} +{"kind":"textbox","id":"sh/9gzml0nq","slide":9,"text":"老板 / Owner","textPreview":"老板 / Owner","textChars":10,"textLines":1,"bbox":[64,214,220,46]} +{"kind":"textbox","id":"sh/ofq5svm5","slide":9,"text":"看结果 / Review outcomes","textPreview":"看结果 / Review outcomes","textChars":21,"textLines":1,"bbox":[64,296,220,44]} +{"kind":"textbox","id":"sh/bih4na5w","slide":9,"text":"利润·风险·资源投向\nProfit · Risk · Capital allocation","textPreview":"利润·风险·资源投向 | Profit · Risk · Capital allocation","textChars":45,"textLines":2,"bbox":[64,386,220,72]} +{"kind":"textbox","id":"sh/ah8nu54b","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[310,323,30,36]} +{"kind":"shape","id":"sh/oza1gfyh","slide":9,"bbox":[341,190,265,316]} +{"kind":"textbox","id":"sh/p0ji9kf2","slide":9,"text":"总部 / Head office","textPreview":"总部 / Head office","textChars":16,"textLines":1,"bbox":[363,214,220,46]} +{"kind":"textbox","id":"sh/2xsjepgb","slide":9,"text":"找原因 / Find causes","textPreview":"找原因 / Find causes","textChars":17,"textLines":1,"bbox":[363,296,220,44]} +{"kind":"textbox","id":"sh/3y107axw","slide":9,"text":"跨区域对标·政策评估\nCross-region benchmarks · Policy review","textPreview":"跨区域对标·政策评估 | Cross-region benchmarks · Policy review","textChars":50,"textLines":2,"bbox":[363,386,220,72]} +{"kind":"textbox","id":"sh/cnu1kzyd","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[609,323,30,36]} +{"kind":"shape","id":"sh/do3id4fy","slide":9,"bbox":[640,190,265,316]} +{"kind":"textbox","id":"sh/qlcjipgn","slide":9,"text":"区域 / Region","textPreview":"区域 / Region","textChars":11,"textLines":1,"bbox":[662,214,220,46]} +{"kind":"textbox","id":"sh/bml0buxs","slide":9,"text":"推整改 / Drive action","textPreview":"推整改 / Drive action","textChars":18,"textLines":1,"bbox":[662,296,220,44]} +{"kind":"textbox","id":"sh/0ru1ozyp","slide":9,"text":"门店分级·任务·验收\nStore tiers · Tasks · Acceptance","textPreview":"门店分级·任务·验收 | Store tiers · Tasks · Acceptance","textChars":43,"textLines":2,"bbox":[662,386,220,72]} +{"kind":"textbox","id":"sh/lsn2h4fa","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[908,323,30,36]} +{"kind":"shape","id":"sh/98ji147e","slide":9,"bbox":[939,190,265,316]} +{"kind":"textbox","id":"sh/87a18zqt","slide":9,"text":"店长 / Store manager","textPreview":"店长 / Store manager","textChars":18,"textLines":1,"bbox":[961,214,220,46]} +{"kind":"textbox","id":"sh/76h0zup8","slide":9,"text":"做动作 / Execute","textPreview":"做动作 / Execute","textChars":13,"textLines":1,"bbox":[961,296,220,44]} +{"kind":"textbox","id":"sh/ml8j6p8n","slide":9,"text":"日目标·偏差·行动建议\nDaily targets · Gaps · Actions","textPreview":"日目标·偏差·行动建议 | Daily targets · Gaps · Actions","textChars":42,"textLines":2,"bbox":[961,386,220,72]} +{"kind":"shape","id":"sh/hcji5o7a","slide":9,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/wba1cjqp","slide":9,"text":"结果回到经营大盘:执行不是终点,改善结果才是。\nResults return to the operating view: completion is not the goal; improvement is.","textPreview":"结果回到经营大盘:执行不是终点,改善结果才是。 | Results return to the operating view: completion is not the goal; improvement is.","textChars":105,"textLines":2,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/udsvah03","slide":9,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/m90b6t0r","slide":10,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":7} +{"kind":"textbox","id":"sh/r6pcv6lw","slide":10,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xc3mho32","slide":10,"text":"AI 给依据,经营决策仍由管理者负责\nAI provides evidence. Management owns the decision.","textPreview":"AI 给依据,经营决策仍由管理者负责 | AI provides evidence. Management owns the decision.","textChars":70,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/cbu58j2h","slide":10,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/zelojyl8","slide":10,"text":"10","textPreview":"10","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/ydcnatkn","slide":10,"bbox":[42,182,560,366]} +{"kind":"shape","id":"sh/l036l83y","slide":10,"bbox":[42,182,7,366]} +{"kind":"textbox","id":"sh/kzu5c32t","slide":10,"text":"AI 可以承担 / AI can support","textPreview":"AI 可以承担 / AI can support","textChars":24,"textLines":1,"bbox":[66,204,514,40]} +{"kind":"textbox","id":"sh/725onyl4","slide":10,"text":"· 理解并关联跨系统数据\n· 持续扫描异常\n· 穿透至门店、SKU、班次和订单\n· 调用行业规则与历史案例\n· 推演方案对利润和现金流的影响\n· 跟踪执行并验证结果","textPreview":"· 理解并关联跨系统数据 | · 持续扫描异常 | · 穿透至门店、SKU、班次和订单 | · 调用行业规则与历史案例 | · 推演方案对利润和现金流的影响 | · 跟踪执行并验证结果","textChars":82,"textLines":6,"bbox":[66,256,514,274]} +{"kind":"shape","id":"sh/m1cnetkj","slide":10,"bbox":[678,182,560,366]} +{"kind":"shape","id":"sh/s7yt4b21","slide":10,"bbox":[678,182,7,366]} +{"kind":"textbox","id":"sh/d87uxg3m","slide":10,"text":"必须由管理者决定 / Management must decide","textPreview":"必须由管理者决定 / Management must decide","textChars":33,"textLines":1,"bbox":[702,204,514,40]} +{"kind":"textbox","id":"sh/q5gb21kb","slide":10,"text":"· 价格调整\n· 人员处置\n· 供应商更换\n· 门店迁址与关停\n· 重大资源投入\n\n所有高影响决策都应留下依据、审批与执行记录。\nPrice changes · Personnel actions · Supplier changes · Store relocation or closure · Major investment\nAll high-impact decisions require evidence, approval and execution records.","textPreview":"· 价格调整 | · 人员处置 | · 供应商更换 | · 门店迁址与关停 | · 重大资源投入 | | 所有高影响决策都应留下依据、审批与执行记录。 | Price changes · Personnel actions · Supplier changes · Sto...","textChars":242,"textLines":9,"bbox":[702,256,514,274]} +{"kind":"notes","id":"nt/m90b6t0r","slide":10,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/jetc3ut0","slide":11,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":24} +{"kind":"textbox","id":"sh/g3qtkj6l","slide":11,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xcryxg7y","slide":11,"text":"BI 解释过去,玄谋智脑推动下一步\nBI explains the past. Xuanmou drives the next action.","textPreview":"BI 解释过去,玄谋智脑推动下一步 | BI explains the past. Xuanmou drives the next action.","textChars":71,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/wbih4b6d","slide":11,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/n69grmpw","slide":11,"text":"11","textPreview":"11","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/250zy18b","slide":11,"bbox":[42,170,228,50]} +{"kind":"textbox","id":"sh/98rytw72","slide":11,"text":"维度 / Dimension","textPreview":"维度 / Dimension","textChars":14,"textLines":1,"bbox":[58,185,196,25]} +{"kind":"shape","id":"sh/o7ih0r6h","slide":11,"bbox":[270,170,410,50]} +{"kind":"textbox","id":"sh/72t03qp0","slide":11,"text":"普通 BI / Conventional BI","textPreview":"普通 BI / Conventional BI","textChars":23,"textLines":1,"bbox":[286,185,378,25]} +{"kind":"shape","id":"sh/61kzalof","slide":11,"bbox":[680,170,558,50]} +{"kind":"textbox","id":"sh/ofqtgnyt","slide":11,"text":"玄谋智脑 / Xuanmou Intelligence","textPreview":"玄谋智脑 / Xuanmou Intelligence","textChars":27,"textLines":1,"bbox":[696,185,526,25]} +{"kind":"shape","id":"sh/9gza9sze","slide":11,"bbox":[42,220,228,67]} +{"kind":"textbox","id":"sh/mdobedg3","slide":11,"text":"定位 / Role","textPreview":"定位 / Role","textChars":9,"textLines":1,"bbox":[58,238,196,38]} +{"kind":"shape","id":"sh/nehs7iho","slide":11,"bbox":[270,220,410,67]} +{"kind":"textbox","id":"sh/0b6tc3yx","slide":11,"text":"展示报表 / Display reports","textPreview":"展示报表 / Display reports","textChars":22,"textLines":1,"bbox":[286,238,378,38]} +{"kind":"shape","id":"sh/1cfa58zi","slide":11,"bbox":[680,220,558,67]} +{"kind":"textbox","id":"sh/epobatgr","slide":11,"text":"驱动经营决策与改善 / Drive decisions and improvement","textPreview":"驱动经营决策与改善 / Drive decisions and improvement","textChars":43,"textLines":1,"bbox":[696,238,526,38]} +{"kind":"shape","id":"sh/zaxs3yhc","slide":11,"bbox":[42,287,228,67]} +{"kind":"textbox","id":"sh/cn6t83y1","slide":11,"text":"业务语义 / Business context","textPreview":"业务语义 / Business context","textChars":23,"textLines":1,"bbox":[58,305,196,38]} +{"kind":"shape","id":"sh/dofa18z6","slide":11,"bbox":[270,287,410,67]} +{"kind":"textbox","id":"sh/tsnip0ny","slide":11,"text":"字段和指标 / Fields and metrics","textPreview":"字段和指标 / Fields and metrics","textChars":26,"textLines":1,"bbox":[286,305,378,38]} +{"kind":"shape","id":"sh/87ehgv6d","slide":11,"bbox":[680,287,558,67]} +{"kind":"textbox","id":"sh/7650nq5s","slide":11,"text":"门店、商品、人员、会员等行业本体\nIndustry ontology for stores, products, people and members","textPreview":"门店、商品、人员、会员等行业本体 | Industry ontology for stores, products, people and members","textChars":75,"textLines":2,"bbox":[696,305,526,38]} +{"kind":"shape","id":"sh/65wzelo7","slide":11,"bbox":[42,354,228,67]} +{"kind":"textbox","id":"sh/l43ilgn2","slide":11,"text":"问题发现 / Issue detection","textPreview":"问题发现 / Issue detection","textChars":22,"textLines":1,"bbox":[58,372,196,38]} +{"kind":"shape","id":"sh/k3uhcb6h","slide":11,"bbox":[270,354,410,67]} +{"kind":"textbox","id":"sh/j2lgjq5w","slide":11,"text":"人主动看数据 / People search the data","textPreview":"人主动看数据 / People search the data","textChars":31,"textLines":1,"bbox":[286,372,378,38]} +{"kind":"shape","id":"sh/y1czalob","slide":11,"bbox":[680,354,558,67]} +{"kind":"textbox","id":"sh/p07ixkn6","slide":11,"text":"系统持续发现、分级与推送\nSystem detects, prioritizes and alerts continuously","textPreview":"系统持续发现、分级与推送 | System detects, prioritizes and alerts continuously","textChars":64,"textLines":2,"bbox":[696,372,526,38]} +{"kind":"shape","id":"sh/4zyhofml","slide":11,"bbox":[42,421,228,67]} +{"kind":"textbox","id":"sh/m58fih43","slide":11,"text":"问题处理 / Issue resolution","textPreview":"问题处理 / Issue resolution","textChars":23,"textLines":1,"bbox":[58,439,196,38]} +{"kind":"shape","id":"sh/n61wbmlo","slide":11,"bbox":[270,421,410,67]} +{"kind":"textbox","id":"sh/o7axk7m9","slide":11,"text":"报告异常 / Report exceptions","textPreview":"报告异常 / Report exceptions","textChars":24,"textLines":1,"bbox":[286,439,378,38]} +{"kind":"shape","id":"sh/98jedc3u","slide":11,"bbox":[680,421,558,67]} +{"kind":"textbox","id":"sh/eh8fex47","slide":11,"text":"归因、测算、方案和整改任务\nRoot cause, impact, recommendation and action task","textPreview":"归因、测算、方案和整改任务 | Root cause, impact, recommendation and action task","textChars":64,"textLines":2,"bbox":[696,439,526,38]} +{"kind":"shape","id":"sh/z2hw72lc","slide":11,"bbox":[42,488,228,67]} +{"kind":"textbox","id":"sh/03qxg7mx","slide":11,"text":"结果验证 / Outcome validation","textPreview":"结果验证 / Outcome validation","textChars":25,"textLines":1,"bbox":[58,506,196,38]} +{"kind":"shape","id":"sh/14ze9c3i","slide":11,"bbox":[270,488,410,67]} +{"kind":"textbox","id":"sh/ydcfq1kb","slide":11,"text":"通常不跟踪 / Usually not tracked","textPreview":"通常不跟踪 / Usually not tracked","textChars":27,"textLines":1,"bbox":[286,506,378,38]} +{"kind":"shape","id":"sh/jylwj6lw","slide":11,"bbox":[680,488,558,67]} +{"kind":"textbox","id":"sh/3qhsfypc","slide":11,"text":"验证改善并更新最佳实践\nVerify improvement and update best practices","textPreview":"验证改善并更新最佳实践 | Verify improvement and update best practices","textChars":56,"textLines":2,"bbox":[696,506,526,38]} +{"kind":"shape","id":"sh/ip8bmtor","slide":11,"bbox":[42,555,228,67]} +{"kind":"textbox","id":"sh/5sjah872","slide":11,"text":"长期价值 / Long-term value","textPreview":"长期价值 / Long-term value","textChars":22,"textLines":1,"bbox":[58,573,196,38]} +{"kind":"shape","id":"sh/4rato36h","slide":11,"bbox":[270,555,410,67]} +{"kind":"textbox","id":"sh/v2hsbyp0","slide":11,"text":"报表越来越多 / More and more reports","textPreview":"报表越来越多 / More and more reports","textChars":30,"textLines":1,"bbox":[286,573,378,38]} +{"kind":"shape","id":"sh/u18bit8f","slide":11,"bbox":[680,555,558,67]} +{"kind":"textbox","id":"sh/h4zado76","slide":11,"text":"行业模型与企业知识越用越成熟\nIndustry models and company knowledge improve with use","textPreview":"行业模型与企业知识越用越成熟 | Industry models and company knowledge improve with use","textChars":69,"textLines":2,"bbox":[696,573,526,38]} +{"kind":"notes","id":"nt/jetc3ut0","slide":11,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/8f2psfyx","slide":12,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":23} +{"kind":"textbox","id":"sh/alwbitsn","slide":12,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1gbm9s3a","slide":12,"text":"五项基础能力,支撑门店规模化管理\nFive capabilities that support scalable operations.","textPreview":"五项基础能力,支撑门店规模化管理 | Five capabilities that support scalable operations.","textChars":68,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0f2lgnmp","slide":12,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ra943il8","slide":12,"text":"12","textPreview":"12","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/q903ad4n","slide":12,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,185,54,28]} +{"kind":"textbox","id":"sh/dcbm583y","slide":12,"text":"数据资产化 / Data foundation","textPreview":"数据资产化 / Data foundation","textChars":23,"textLines":1,"bbox":[118,171,250,54]} +{"kind":"textbox","id":"sh/sb2lcnmd","slide":12,"text":"数据通起来 / Connect the data","textPreview":"数据通起来 / Connect the data","textChars":24,"textLines":1,"bbox":[422,171,250,54]} +{"kind":"textbox","id":"sh/b6d4f2lc","slide":12,"text":"一个数字、一个来源 / One number, one source","textPreview":"一个数字、一个来源 / One number, one source","textChars":34,"textLines":1,"bbox":[720,171,450,54]} +{"kind":"shape","id":"sh/a543mx4r","slide":12,"bbox":[118,238,1050,0]} +{"kind":"textbox","id":"sh/wvupgz6t","slide":12,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,54,28]} +{"kind":"textbox","id":"sh/xw3q94ne","slide":12,"text":"运营指标化 / Operational metrics","textPreview":"运营指标化 / Operational metrics","textChars":27,"textLines":1,"bbox":[118,260,250,54]} +{"kind":"textbox","id":"sh/atc7epon","slide":12,"text":"问题浮出来 / Surface the issues","textPreview":"问题浮出来 / Surface the issues","textChars":26,"textLines":1,"bbox":[422,260,250,54]} +{"kind":"textbox","id":"sh/bulo7u58","slide":12,"text":"异常能穿透到根因 / Trace exceptions to root causes","textPreview":"异常能穿透到根因 / Trace exceptions to root causes","textChars":42,"textLines":1,"bbox":[720,260,450,54]} +{"kind":"shape","id":"sh/orapcf6h","slide":12,"bbox":[118,327,1050,0]} +{"kind":"textbox","id":"sh/9sj65kn2","slide":12,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,363,54,28]} +{"kind":"textbox","id":"sh/mps7a5or","slide":12,"text":"战略穿透化 / Strategy execution","textPreview":"战略穿透化 / Strategy execution","textChars":26,"textLines":1,"bbox":[118,349,250,54]} +{"kind":"textbox","id":"sh/nq1o3a5w","slide":12,"text":"目标落下去 / Translate goals into action","textPreview":"目标落下去 / Translate goals into action","textChars":35,"textLines":1,"bbox":[422,349,250,54]} +{"kind":"textbox","id":"sh/0nap8f6l","slide":12,"text":"战略到区域、门店和个人\nFrom strategy to regions, stores and individuals","textPreview":"战略到区域、门店和个人 | From strategy to regions, stores and individuals","textChars":60,"textLines":2,"bbox":[720,349,450,54]} +{"kind":"shape","id":"sh/1oj61kn6","slide":12,"bbox":[118,416,1050,0]} +{"kind":"textbox","id":"sh/hkbm5wzu","slide":12,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,452,54,28]} +{"kind":"textbox","id":"sh/gj25cry9","slide":12,"text":"态势感知化 / Risk sensing","textPreview":"态势感知化 / Risk sensing","textChars":20,"textLines":1,"bbox":[118,438,250,54]} +{"kind":"textbox","id":"sh/fit436ho","slide":12,"text":"风险早知道 / See risks earlier","textPreview":"风险早知道 / See risks earlier","textChars":25,"textLines":1,"bbox":[422,438,250,54]} +{"kind":"textbox","id":"sh/uh0na1g3","slide":12,"text":"从事后救火到事前预防 / Move from firefighting to prevention","textPreview":"从事后救火到事前预防 / Move from firefighting to prevention","textChars":49,"textLines":1,"bbox":[720,438,450,54]} +{"kind":"shape","id":"sh/tgrm1wzy","slide":12,"bbox":[118,505,1050,0]} +{"kind":"textbox","id":"sh/sfi58ryd","slide":12,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,541,54,28]} +{"kind":"textbox","id":"sh/7u94zmhs","slide":12,"text":"知识沉淀化 / Knowledge capture","textPreview":"知识沉淀化 / Knowledge capture","textChars":25,"textLines":1,"bbox":[118,527,250,54]} +{"kind":"textbox","id":"sh/6t0n6hg7","slide":12,"text":"组织越来越聪明 / Make the organization smarter","textPreview":"组织越来越聪明 / Make the organization smarter","textChars":39,"textLines":1,"bbox":[422,527,250,54]} +{"kind":"textbox","id":"sh/dcv6dgz2","slide":12,"text":"优秀能力不再依赖少数人\nBest practices no longer depend on a few people","textPreview":"优秀能力不再依赖少数人 | Best practices no longer depend on a few people","textChars":59,"textLines":2,"bbox":[720,527,450,54]} +{"kind":"shape","id":"sh/cbm5kbyh","slide":12,"bbox":[118,594,1050,0]} +{"kind":"notes","id":"nt/8f2psfyx","slide":12,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/hgzapcr6","slide":13,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/3yxgbqdg","slide":13,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/q50nydsj","slide":13,"text":"门店越多,复制优秀做法的价值越大\nThe larger the network, the greater the value of replication.","textPreview":"门店越多,复制优秀做法的价值越大 | The larger the network, the greater the value of replication.","textChars":78,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/bq9orito","slide":13,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/o3i5w3ad","slide":13,"text":"13","textPreview":"13","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/p4r6p8by","slide":13,"bbox":[42,182,360,250]} +{"kind":"shape","id":"sh/21gnuts7","slide":13,"bbox":[42,182,7,250]} +{"kind":"textbox","id":"sh/32ponyts","slide":13,"text":"不依赖能人 / Less dependence on star performers","textPreview":"不依赖能人 / Less dependence on star performers","textChars":42,"textLines":1,"bbox":[66,204,314,40]} +{"kind":"textbox","id":"sh/gzy5s3a1","slide":13,"text":"优秀店长的做法沉淀为规则、案例和 SOP。\nTurn strong store-manager practices into rules, cases and SOPs.","textPreview":"优秀店长的做法沉淀为规则、案例和 SOP。 | Turn strong store-manager practices into rules, cases and SOPs.","textChars":85,"textLines":2,"bbox":[66,256,314,158]} +{"kind":"shape","id":"sh/1076lobm","slide":13,"bbox":[443,182,360,250]} +{"kind":"shape","id":"sh/hcfy9k3u","slide":13,"bbox":[443,182,7,250]} +{"kind":"textbox","id":"sh/gb6x0zm9","slide":13,"text":"扩张不失控 / Scale without losing control","textPreview":"扩张不失控 / Scale without losing control","textChars":36,"textLines":1,"bbox":[467,204,314,40]} +{"kind":"textbox","id":"sh/vaxg7ulo","slide":13,"text":"验证有效的改善方案,可按门店特征分类复制。\nReplicate proven actions by store profile.","textPreview":"验证有效的改善方案,可按门店特征分类复制。 | Replicate proven actions by store profile.","textChars":64,"textLines":2,"bbox":[467,256,314,158]} +{"kind":"shape","id":"sh/u9ofyp43","slide":13,"bbox":[844,182,360,250]} +{"kind":"shape","id":"sh/t8fy5k3i","slide":13,"bbox":[844,182,7,250]} +{"kind":"textbox","id":"sh/876xwfmx","slide":13,"text":"能力持续复利 / Capabilities compound","textPreview":"能力持续复利 / Capabilities compound","textChars":30,"textLines":1,"bbox":[868,204,314,40]} +{"kind":"textbox","id":"sh/7mdg3als","slide":13,"text":"场景、模型、AI 建议与决策反馈相互增强。\nScenarios, models, AI recommendations and decision feedback reinforce one another.","textPreview":"场景、模型、AI 建议与决策反馈相互增强。 | Scenarios, models, AI recommendations and decision feedback reinforce one another.","textChars":104,"textLines":2,"bbox":[868,256,314,158]} +{"kind":"shape","id":"sh/6l4fu547","slide":13,"bbox":[120,520,980,0]} +{"kind":"shape","id":"sh/lkvy103m","slide":13,"bbox":[104,502,38,38]} +{"kind":"textbox","id":"sh/kjmxsfm1","slide":13,"text":"30 家 / 30 stores","textPreview":"30 家 / 30 stores","textChars":16,"textLines":1,"bbox":[94,555,150,28]} +{"kind":"textbox","id":"sh/cnqh8fux","slide":13,"text":"靠人盯 / Managed by people","textPreview":"靠人盯 / Managed by people","textChars":23,"textLines":1,"bbox":[94,589,170,24]} +{"kind":"shape","id":"sh/xozyhkbi","slide":13,"bbox":[584,502,38,38]} +{"kind":"textbox","id":"sh/q18f65cr","slide":13,"text":"100 家 / 100 stores","textPreview":"100 家 / 100 stores","textChars":18,"textLines":1,"bbox":[574,555,150,28]} +{"kind":"textbox","id":"sh/bmhgfatc","slide":13,"text":"靠机制 / Managed by process","textPreview":"靠机制 / Managed by process","textChars":24,"textLines":1,"bbox":[574,589,170,24]} +{"kind":"shape","id":"sh/oz6x4vul","slide":13,"bbox":[1064,502,38,38]} +{"kind":"textbox","id":"sh/p0zyd0b6","slide":13,"text":"300 家 / 300 stores","textPreview":"300 家 / 300 stores","textChars":18,"textLines":1,"bbox":[1054,555,150,28]} +{"kind":"textbox","id":"sh/2xof2lcv","slide":13,"text":"靠模型复制 / Scaled through models","textPreview":"靠模型复制 / Scaled through models","textChars":29,"textLines":1,"bbox":[1054,589,170,24]} +{"kind":"notes","id":"nt/hgzapcr6","slide":13,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/6lsnupw7","slide":14,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":8} +{"kind":"textbox","id":"sh/kre1k3y9","slide":14,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xc7eds76","slide":14,"text":"真正的数据资产,是可追溯的经营能力\nA real data asset is a traceable operating capability.","textPreview":"真正的数据资产,是可追溯的经营能力 | A real data asset is a traceable operating capability.","textChars":72,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/wbydknq1","slide":14,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/jepwf2pc","slide":14,"text":"14","textPreview":"14","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/idgvmx8r","slide":14,"bbox":[42,180,560,365]} +{"kind":"shape","id":"sh/5grehs7i","slide":14,"bbox":[42,180,7,365]} +{"kind":"textbox","id":"sh/kfidonqx","slide":14,"text":"企业数据资产 / Enterprise data assets","textPreview":"企业数据资产 / Enterprise data assets","textChars":31,"textLines":1,"bbox":[66,202,514,40]} +{"kind":"textbox","id":"sh/zi5c3y98","slide":14,"text":"· 统一指标口径与责任关系\n· 门店、商品、人员、会员、供应商本体\n· 行业规则与异常模式\n· 决策、执行与验证结果\n· 最佳实践与风险知识\nCommon metric definitions and accountability · Business ontology · Industry rules · Decisions and validated outcomes · Best-practice knowledge","textPreview":"· 统一指标口径与责任关系 | · 门店、商品、人员、会员、供应商本体 | · 行业规则与异常模式 | · 决策、执行与验证结果 | · 最佳实践与风险知识 | Common metric definitions and accountability · Business ...","textChars":213,"textLines":6,"bbox":[66,254,514,273]} +{"kind":"shape","id":"sh/ehwvat8n","slide":14,"bbox":[678,180,560,365]} +{"kind":"shape","id":"sh/c3e1gjyd","slide":14,"bbox":[678,180,7,365]} +{"kind":"textbox","id":"sh/x4ni9ofy","slide":14,"text":"融资与尽调支持 / Financing and due-diligence support","textPreview":"融资与尽调支持 / Financing and due-diligence support","textChars":45,"textLines":1,"bbox":[702,202,514,40]} +{"kind":"textbox","id":"sh/a1wze9g7","slide":14,"text":"· 门店级损益与现金流\n· 收入稳定性分析\n· 风险预警与整改记录\n· 未来经营预测\n· 更完整、可追溯的经营证明\nStore-level P&L and cash flow · Revenue stability · Risk and remediation records · Forecasts · Traceable operating evidence","textPreview":"· 门店级损益与现金流 | · 收入稳定性分析 | · 风险预警与整改记录 | · 未来经营预测 | · 更完整、可追溯的经营证明 | Store-level P&L and cash flow · Revenue stability · Risk and remediat...","textChars":181,"textLines":6,"bbox":[702,254,514,273]} +{"kind":"textbox","id":"sh/b2507exs","slide":14,"text":"边界:提供数据与分析支持,不承诺银行授信或融资结果。\nScope: data and analytical support only; no promise of bank credit or financing outcomes.","textPreview":"边界:提供数据与分析支持,不承诺银行授信或融资结果。 | Scope: data and analytical support only; no promise of bank credit or financing outcomes.","textChars":116,"textLines":2,"bbox":[42,578,1000,34]} +{"kind":"notes","id":"nt/6lsnupw7","slide":14,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/vaxsvy10","slide":15,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/cbuh8nmh","slide":15,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/547mhg3m","slide":15,"text":"生产数据必须留在清晰的安全边界内\nProduction data must remain within clear security boundaries.","textPreview":"生产数据必须留在清晰的安全边界内 | Production data must remain within clear security boundaries.","textChars":78,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/k3y5ov21","slide":15,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/76p4jqls","slide":15,"text":"15","textPreview":"15","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/65gnqlk7","slide":15,"bbox":[42,180,360,170]} +{"kind":"shape","id":"sh/t87ml0ji","slide":15,"bbox":[42,180,7,170]} +{"kind":"textbox","id":"sh/s7y5sv2x","slide":15,"text":"部署边界 / Deployment boundary","textPreview":"部署边界 / Deployment boundary","textChars":26,"textLines":1,"bbox":[66,202,314,40]} +{"kind":"textbox","id":"sh/na5476l8","slide":15,"text":"不替代现有交易系统,只读或受控对接。\nDoes not replace transaction systems; read-only or controlled integration.","textPreview":"不替代现有交易系统,只读或受控对接。 | Does not replace transaction systems; read-only or controlled integration.","textChars":93,"textLines":2,"bbox":[66,254,314,78]} +{"kind":"shape","id":"sh/m9c3e1kn","slide":15,"bbox":[443,180,360,170]} +{"kind":"shape","id":"sh/wrm9kvep","slide":15,"bbox":[443,180,7,170]} +{"kind":"textbox","id":"sh/hsvat0fa","slide":15,"text":"最小权限 / Least privilege","textPreview":"最小权限 / Least privilege","textChars":22,"textLines":1,"bbox":[467,202,314,40]} +{"kind":"textbox","id":"sh/upkrilwj","slide":15,"text":"老板、总部、区域、门店按职责查看。\nAccess by role across owner, head office, region and store.","textPreview":"老板、总部、区域、门店按职责查看。 | Access by role across owner, head office, region and store.","textChars":77,"textLines":2,"bbox":[467,254,314,78]} +{"kind":"shape","id":"sh/vqdsrqx4","slide":15,"bbox":[844,180,360,170]} +{"kind":"shape","id":"sh/4vm9ovel","slide":15,"bbox":[844,180,7,170]} +{"kind":"textbox","id":"sh/5wvax0f6","slide":15,"text":"敏感保护 / Sensitive-data protection","textPreview":"敏感保护 / Sensitive-data protection","textChars":32,"textLines":1,"bbox":[868,202,314,40]} +{"kind":"textbox","id":"sh/it4rm5wv","slide":15,"text":"会员、薪酬、财务明细分级、脱敏与审计。\nClassify, mask and audit member, payroll and financial details.","textPreview":"会员、薪酬、财务明细分级、脱敏与审计。 | Classify, mask and audit member, payroll and financial details.","textChars":83,"textLines":2,"bbox":[868,254,314,78]} +{"kind":"shape","id":"sh/judsvqxg","slide":15,"bbox":[42,390,360,170]} +{"kind":"shape","id":"sh/0z29cbyh","slide":15,"bbox":[42,390,7,170]} +{"kind":"textbox","id":"sh/l0bqlgf2","slide":15,"text":"AI 可追溯 / Traceable AI","textPreview":"AI 可追溯 / Traceable AI","textChars":21,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/1kjyt83e","slide":15,"text":"重要结论显示依据、时间、路径和适用边界。\nKey conclusions show evidence, timing, logic and scope.","textPreview":"重要结论显示依据、时间、路径和适用边界。 | Key conclusions show evidence, timing, logic and scope.","textChars":76,"textLines":2,"bbox":[66,464,314,78]} +{"kind":"shape","id":"sh/gjax03m9","slide":15,"bbox":[443,390,360,170]} +{"kind":"shape","id":"sh/fi1grylo","slide":15,"bbox":[443,390,7,170]} +{"kind":"textbox","id":"sh/ehsfyt43","slide":15,"text":"人工审批 / Human approval","textPreview":"人工审批 / Human approval","textChars":21,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/p8jyx83q","slide":15,"text":"高影响决策必须经有权限的管理者审批。\nHigh-impact decisions require approval by authorized management.","textPreview":"高影响决策必须经有权限的管理者审批。 | High-impact decisions require approval by authorized management.","textChars":83,"textLines":2,"bbox":[467,464,314,78]} +{"kind":"shape","id":"sh/o7ah4nm5","slide":15,"bbox":[844,390,360,170]} +{"kind":"shape","id":"sh/361gvilk","slide":15,"bbox":[844,390,7,170]} +{"kind":"textbox","id":"sh/25sf2d4z","slide":15,"text":"全程留痕 / Full audit trail","textPreview":"全程留痕 / Full audit trail","textChars":23,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/dc3y1s3m","slide":15,"text":"访问、建议、修改、审批和执行结果均可审计。\nAccess, recommendations, edits, approvals and outcomes are auditable.","textPreview":"访问、建议、修改、审批和执行结果均可审计。 | Access, recommendations, edits, approvals and outcomes are auditable.","textChars":91,"textLines":2,"bbox":[868,464,314,78]} +{"kind":"notes","id":"nt/vaxsvy10","slide":15,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/gny5sjyp","slide":16,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/ih0jedob","slide":16,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/8z2h8bq1","slide":16,"text":"先用 8 周证明价值,再决定扩大范围\nProve the value in eight weeks before scaling.","textPreview":"先用 8 周证明价值,再决定扩大范围 | Prove the value in eight weeks before scaling.","textChars":65,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/9kby1g7m","slide":16,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ytkf2h8j","slide":16,"text":"16","textPreview":"16","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/zutgvm94","slide":16,"bbox":[66,340,1100,0]} +{"kind":"shape","id":"sh/kv2h4rqp","slide":16,"bbox":[54,322,38,38]} +{"kind":"textbox","id":"sh/lwbyxwra","slide":16,"text":"第 1 周 / Week 1","textPreview":"第 1 周 / Week 1","textChars":14,"textLines":1,"bbox":[49,206,200,28]} +{"kind":"textbox","id":"sh/ip4zel83","slide":16,"text":"选定利润专项 / Select a profit initiative","textPreview":"选定利润专项 / Select a profit initiative","textChars":35,"textLines":1,"bbox":[49,250,205,55]} +{"kind":"textbox","id":"sh/3qdg7qpo","slide":16,"text":"基线·口径·责任人\nBaseline · Definition · Owner","textPreview":"基线·口径·责任人 | Baseline · Definition · Owner","textChars":39,"textLines":2,"bbox":[49,394,205,84]} +{"kind":"shape","id":"sh/fm1gzq5o","slide":16,"bbox":[293,322,38,38]} +{"kind":"textbox","id":"sh/e1sf65o3","slide":16,"text":"第 1—2 周 / Weeks 1–2","textPreview":"第 1—2 周 / Weeks 1–2","textChars":19,"textLines":1,"bbox":[288,206,200,28]} +{"kind":"textbox","id":"sh/1ojy10ne","slide":16,"text":"连接现有数据 / Connect existing data","textPreview":"连接现有数据 / Connect existing data","textChars":30,"textLines":1,"bbox":[288,250,205,55]} +{"kind":"textbox","id":"sh/gnax8v6t","slide":16,"text":"数据清单·质量·统一口径\nData inventory · Quality · Common definitions","textPreview":"数据清单·质量·统一口径 | Data inventory · Quality · Common definitions","textChars":58,"textLines":2,"bbox":[288,394,205,84]} +{"kind":"shape","id":"sh/nqlg3a5k","slide":16,"bbox":[532,322,38,38]} +{"kind":"textbox","id":"sh/2pcfa5oz","slide":16,"text":"第 3—4 周 / Weeks 3–4","textPreview":"第 3—4 周 / Weeks 3–4","textChars":19,"textLines":1,"bbox":[527,206,200,28]} +{"kind":"textbox","id":"sh/ps3y5knq","slide":16,"text":"发现机会与根因 / Find opportunities and causes","textPreview":"发现机会与根因 / Find opportunities and causes","textChars":39,"textLines":1,"bbox":[527,250,205,55]} +{"kind":"textbox","id":"sh/oruhcf65","slide":16,"text":"异常·影响金额·证据\nException · Financial impact · Evidence","textPreview":"异常·影响金额·证据 | Exception · Financial impact · Evidence","textChars":50,"textLines":2,"bbox":[527,394,205,84]} +{"kind":"shape","id":"sh/bulg7u5g","slide":16,"bbox":[771,322,38,38]} +{"kind":"textbox","id":"sh/atczepob","slide":16,"text":"第 5—6 周 / Weeks 5–6","textPreview":"第 5—6 周 / Weeks 5–6","textChars":19,"textLines":1,"bbox":[766,206,200,28]} +{"kind":"textbox","id":"sh/mpgj6t8j","slide":16,"text":"推动整改 / Drive corrective action","textPreview":"推动整改 / Drive corrective action","textChars":30,"textLines":1,"bbox":[766,250,205,55]} +{"kind":"textbox","id":"sh/7qp0zepo","slide":16,"text":"任务·期限·执行记录\nTask · Deadline · Execution record","textPreview":"任务·期限·执行记录 | Task · Deadline · Execution record","textChars":45,"textLines":2,"bbox":[766,394,205,84]} +{"kind":"shape","id":"sh/8by18jq9","slide":16,"bbox":[1010,322,38,38]} +{"kind":"textbox","id":"sh/9c7i1o7u","slide":16,"text":"第 7—8 周 / Weeks 7–8","textPreview":"第 7—8 周 / Weeks 7–8","textChars":19,"textLines":1,"bbox":[1005,206,200,28]} +{"kind":"textbox","id":"sh/ylwj2987","slide":16,"text":"验证并复制 / Verify and replicate","textPreview":"验证并复制 / Verify and replicate","textChars":28,"textLines":1,"bbox":[1005,250,205,55]} +{"kind":"textbox","id":"sh/zm50veps","slide":16,"text":"改善金额·验收·最佳实践\nImprovement value · Acceptance · Best practice","textPreview":"改善金额·验收·最佳实践 | Improvement value · Acceptance · Best practice","textChars":59,"textLines":2,"bbox":[1005,394,205,84]} +{"kind":"shape","id":"sh/kne14jqd","slide":16,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/lo7ixo7y","slide":16,"text":"优先选择:数据可获得 · 影响可测算 · 动作可执行 · 八周可验证。\nPrioritize cases with available data, measurable impact, executable actions and results verifiable in eight weeks.","textPreview":"优先选择:数据可获得 · 影响可测算 · 动作可执行 · 八周可验证。 | Prioritize cases with available data, measurable impact, executable actions and results verifiable ...","textChars":150,"textLines":2,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/gny5sjyp","slide":16,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/14bup87q","slide":17,"title":"玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/ytc7a1gv","slide":17,"text":"玄谋智脑 · 连锁企业经营决策\nXuanmou Intelligence · Multi-site Operations","textPreview":"玄谋智脑 · 连锁企业经营决策 | Xuanmou Intelligence · Multi-site Operations","textChars":60,"textLines":2,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1c7e50ni","slide":17,"text":"验收看经营改善,不看功能数量\nMeasure business improvement, not feature count.","textPreview":"验收看经营改善,不看功能数量 | Measure business improvement, not feature count.","textChars":63,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/gbedwfmx","slide":17,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/rm5czq50","slide":17,"text":"17","textPreview":"17","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/6lwvql4v","slide":17,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,188,50,26]} +{"kind":"textbox","id":"sh/t8ne10n6","slide":17,"text":"经营结果 / Business outcomes","textPreview":"经营结果 / Business outcomes","textChars":24,"textLines":1,"bbox":[112,174,230,48]} +{"kind":"textbox","id":"sh/snedsvml","slide":17,"text":"贡献利润·成本·损耗·库存资金\nContribution profit · Cost · Waste · Inventory cash","textPreview":"贡献利润·成本·损耗·库存资金 | Contribution profit · Cost · Waste · Inventory cash","textChars":67,"textLines":2,"bbox":[395,174,760,48]} +{"kind":"shape","id":"sh/jilcvq54","slide":17,"bbox":[112,239,1040,0]} +{"kind":"textbox","id":"sh/ihcvml4j","slide":17,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,50,26]} +{"kind":"textbox","id":"sh/4by9or6l","slide":17,"text":"问题发现 / Issue detection","textPreview":"问题发现 / Issue detection","textChars":22,"textLines":1,"bbox":[112,260,230,48]} +{"kind":"textbox","id":"sh/pc7qhwn6","slide":17,"text":"发现周期·有效异常率·影响覆盖\nDetection cycle · Valid-exception rate · Impact coverage","textPreview":"发现周期·有效异常率·影响覆盖 | Detection cycle · Valid-exception rate · Impact coverage","textChars":72,"textLines":2,"bbox":[395,260,760,48]} +{"kind":"shape","id":"sh/29grm1of","slide":17,"bbox":[112,325,1040,0]} +{"kind":"textbox","id":"sh/3ap8fm50","slide":17,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,360,50,26]} +{"kind":"textbox","id":"sh/gnepkr69","slide":17,"text":"执行闭环 / Execution loop","textPreview":"执行闭环 / Execution loop","textChars":21,"textLines":1,"bbox":[112,346,230,48]} +{"kind":"textbox","id":"sh/honqdwnu","slide":17,"text":"接收率·按期完成率·整改有效率\nAcceptance · On-time completion · Remediation effectiveness","textPreview":"接收率·按期完成率·整改有效率 | Acceptance · On-time completion · Remediation effectiveness","textChars":75,"textLines":2,"bbox":[395,346,760,48]} +{"kind":"shape","id":"sh/ulw7ihoj","slide":17,"bbox":[112,411,1040,0]} +{"kind":"textbox","id":"sh/fm58bm54","slide":17,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,446,50,26]} +{"kind":"textbox","id":"sh/0ji9wb6t","slide":17,"text":"组织复制 / Organizational replication","textPreview":"组织复制 / Organizational replication","textChars":33,"textLines":1,"bbox":[112,432,230,48]} +{"kind":"textbox","id":"sh/14rqpgne","slide":17,"text":"复制门店数·成功率·新店导入时间\nStores replicated · Success rate · New-store ramp time","textPreview":"复制门店数·成功率·新店导入时间 | Stores replicated · Success rate · New-store ramp time","textChars":71,"textLines":2,"bbox":[395,432,760,48]} +{"kind":"shape","id":"sh/90nq9gfi","slide":17,"bbox":[112,497,1040,0]} +{"kind":"textbox","id":"sh/8ze9gbyx","slide":17,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,532,50,26]} +{"kind":"textbox","id":"sh/ny5876xc","slide":17,"text":"数据质量 / Data quality","textPreview":"数据质量 / Data quality","textChars":19,"textLines":1,"bbox":[112,518,230,48]} +{"kind":"textbox","id":"sh/mxw7e1gr","slide":17,"text":"口径一致·完整·及时·可追溯\nConsistent · Complete · Timely · Traceable","textPreview":"口径一致·完整·及时·可追溯 | Consistent · Complete · Timely · Traceable","textChars":57,"textLines":2,"bbox":[395,518,760,48]} +{"kind":"shape","id":"sh/lwnq5gf6","slide":17,"bbox":[112,583,1040,0]} +{"kind":"shape","id":"sh/0vepcbyl","slide":17,"bbox":[42,612,1196,42]} +{"kind":"textbox","id":"sh/zul836xg","slide":17,"text":"项目启动时即确认基线、口径和外部影响因素,避免将自然波动误认为系统收益。\nAgree the baseline, definitions and external factors at launch so normal variation is not mistaken for system impact.","textPreview":"项目启动时即确认基线、口径和外部影响因素,避免将自然波动误认为系统收益。 | Agree the baseline, definitions and external factors at launch so normal variation is not mistaken...","textChars":154,"textLines":2,"bbox":[64,622,1152,24]} +{"kind":"notes","id":"nt/14bup87q","slide":17,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/y5wne50z","slide":18,"title":"玄谋智脑 / Xuanmou Intelligence","textShapes":4} +{"kind":"textbox","id":"sh/4felwzu5","slide":18,"text":"玄谋智脑 / Xuanmou Intelligence","textPreview":"玄谋智脑 / Xuanmou Intelligence","textChars":27,"textLines":1,"bbox":[42,35,240,30]} +{"kind":"textbox","id":"sh/wrelszu9","slide":18,"text":"先用 8 周,找到第一批可验证的利润机会\nStart with the first measurable profit opportunities.","textPreview":"先用 8 周,找到第一批可验证的利润机会 | Start with the first measurable profit opportunities.","textChars":74,"textLines":2,"bbox":[42,160,1040,210]} +{"kind":"textbox","id":"sh/hsn2l4bu","slide":18,"text":"再决定如何扩大应用范围 Scale only after the value is proven.","textPreview":"再决定如何扩大应用范围 Scale only after the value is proven.","textChars":50,"textLines":1,"bbox":[42,420,850,52]} +{"kind":"shape","id":"sh/itw3upcf","slide":18,"bbox":[42,610,1196,0]} +{"kind":"textbox","id":"sh/je5knut0","slide":18,"text":"让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店\nFind issues earlier · Make corrective action stick · Replicate every proven improvement","textPreview":"让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店 | Find issues earlier · Make corrective action stick · Replicate every proven improvement","textChars":122,"textLines":2,"bbox":[42,636,1100,30]} +{"kind":"notes","id":"nt/y5wne50z","slide":18,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates."} \ No newline at end of file diff --git a/玄谋智脑_连锁企业老板决策版_英文主版.pptx b/玄谋智脑_连锁企业老板决策版_英文主版.pptx new file mode 100644 index 0000000..54bd3bf Binary files /dev/null and b/玄谋智脑_连锁企业老板决策版_英文主版.pptx differ diff --git a/玄谋智脑_连锁企业老板决策版_英文主版.pptx.inspect.ndjson b/玄谋智脑_连锁企业老板决策版_英文主版.pptx.inspect.ndjson new file mode 100644 index 0000000..7972c88 --- /dev/null +++ b/玄谋智脑_连锁企业老板决策版_英文主版.pptx.inspect.ndjson @@ -0,0 +1,456 @@ +{"kind":"deck","id":"pr/4a93p5","name":"Deck"} +{"kind":"layout","layoutId":"/ppt/slideMasters/slideMaster1.xml","name":"Master","type":"master"} +{"kind":"layout","layoutId":"/ppt/slideLayouts/slideLayout1.xml","name":"Title Slide","type":"title"} +{"kind":"slide","id":"sl/y90nupkv","slide":1,"title":"Xuanmou Intelligence 玄谋智脑","textShapes":4} +{"kind":"textbox","id":"sh/ts7md4r2","slide":1,"text":"Xuanmou Intelligence 玄谋智脑","textPreview":"Xuanmou Intelligence 玄谋智脑","textChars":26,"textLines":1,"bbox":[42,34,360,36]} +{"kind":"textbox","id":"sh/547294r6","slide":1,"text":"See the profit clearly. Run every store with confidence.\n看清利润,才谈得上管住门店","textPreview":"See the profit clearly. Run every store with confidence. | 看清利润,才谈得上管住门店","textChars":70,"textLines":2,"bbox":[42,180,990,180]} +{"kind":"textbox","id":"sh/k3yl0zql","slide":1,"text":"A decision intelligence layer for multi-site operators\n面向连锁企业的行业数字本体与 AI 经营智脑","textPreview":"A decision intelligence layer for multi-site operators | 面向连锁企业的行业数字本体与 AI 经营智脑","textChars":77,"textLines":2,"bbox":[42,402,870,48]} +{"kind":"shape","id":"sh/7qp4be9c","slide":1,"bbox":[42,615,1196,0]} +{"kind":"textbox","id":"sh/65g3298r","slide":1,"text":"Confidential external edition · Cases and figures are anonymized illustrations 对外保密版 · 案例与金额均为匿名示意","textPreview":"Confidential external edition · Cases and figures are anonymized illustrations 对外保密版 · 案例与金额均为匿名示意","textChars":99,"textLines":1,"bbox":[42,640,620,24]} +{"kind":"notes","id":"nt/y90nupkv","slide":1,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/hwbqtkby","slide":2,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":13} +{"kind":"textbox","id":"sh/cnupgny5","slide":2,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/9072xkry","slide":2,"text":"Three decisions matter most to the owner.\n老板最终要判断三件事","textPreview":"Three decisions matter most to the owner. | 老板最终要判断三件事","textChars":52,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/ozy1ofad","slide":2,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/b29kza94","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/a10jqpsj","slide":2,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,190,80,48]} +{"kind":"shape","id":"sh/x4r21kru","slide":2,"bbox":[42,248,350,0]} +{"kind":"textbox","id":"sh/w3i1sfa9","slide":2,"text":"Where are we losing money?\n哪里在亏钱?","textPreview":"Where are we losing money? | 哪里在亏钱?","textChars":33,"textLines":2,"bbox":[42,278,350,52]} +{"kind":"textbox","id":"sh/r65knqtk","slide":2,"text":"Which profit leaks across stores, SKUs, promotions, inventory and labor should be fixed first?\n门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理?","textPreview":"Which profit leaks across stores, SKUs, promotions, inventory and labor should be fixed first? | 门店、SKU、促销、库存、人力中,哪些利润漏洞最应该先处理?","textChars":125,"textLines":2,"bbox":[42,352,350,140]} +{"kind":"textbox","id":"sh/q5wjelsz","slide":2,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[443,190,80,48]} +{"kind":"shape","id":"sh/ove9o7yd","slide":2,"bbox":[443,248,350,0]} +{"kind":"textbox","id":"sh/9wnqhczy","slide":2,"text":"Which actions will improve profit?\n哪些动作能增利?","textPreview":"Which actions will improve profit? | 哪些动作能增利?","textChars":43,"textLines":2,"bbox":[443,278,350,52]} +{"kind":"textbox","id":"sh/mtwrmxg7","slide":2,"text":"Quantify the impact, recommend actions, track execution and verify the outcome.\n不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。","textPreview":"Quantify the impact, recommend actions, track execution and verify the outcome. | 不只找问题,还要测算影响、给出方案、跟踪执行并验证结果。","textChars":108,"textLines":2,"bbox":[443,352,350,140]} +{"kind":"textbox","id":"sh/nu58f2hs","slide":2,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[844,190,80,48]} +{"kind":"shape","id":"sh/wjy9sry9","slide":2,"bbox":[844,248,350,0]} +{"kind":"textbox","id":"sh/xk7qlczu","slide":2,"text":"Can we stay in control as we scale?\n扩张后还能管住吗?","textPreview":"Can we stay in control as we scale? | 扩张后还能管住吗?","textChars":45,"textLines":2,"bbox":[844,278,350,52]} +{"kind":"textbox","id":"sh/ahwrqhgj","slide":2,"text":"Can proven practices be replicated from 30 to 300 stores, consistently and at low cost?\n从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制?","textPreview":"Can proven practices be replicated from 30 to 300 stores, consistently and at low cost? | 从 30 家到 300 家门店,有效经验能否被低成本、高质量地复制?","textChars":122,"textLines":2,"bbox":[844,352,350,140]} +{"kind":"textbox","id":"sh/bip8jmho","slide":2,"text":"The goal is not more reports, but measurable operating improvement. 不是看更多报表,而是将数据转化为可验证的经营改善。","textPreview":"The goal is not more reports, but measurable operating improvement. 不是看更多报表,而是将数据转化为可验证的经营改善。","textChars":94,"textLines":1,"bbox":[42,590,1100,42]} +{"kind":"notes","id":"nt/hwbqtkby","slide":2,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/ofy9wn61","slide":3,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/batgjixs","slide":3,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/cza94vmx","slide":3,"text":"Plenty of data, but no clear view of where profit goes.\n数据很多,利润去向仍然说不清","textPreview":"Plenty of data, but no clear view of where profit goes. | 数据很多,利润去向仍然说不清","textChars":70,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/d0jax03i","slide":3,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/298ryl4v","slide":3,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/3ah8rqlg","slide":3,"bbox":[42,188,360,160]} +{"kind":"shape","id":"sh/obq90bml","slide":3,"bbox":[42,188,7,160]} +{"kind":"textbox","id":"sh/pcjqtg36","slide":3,"text":"Revenue 营收","textPreview":"Revenue 营收","textChars":11,"textLines":1,"bbox":[66,210,314,40]} +{"kind":"textbox","id":"sh/m5cra54z","slide":3,"text":"Why is profit not keeping pace with revenue?\n营收增长,利润为何没有同步?","textPreview":"Why is profit not keeping pace with revenue? | 营收增长,利润为何没有同步?","textChars":59,"textLines":2,"bbox":[66,262,314,68]} +{"kind":"shape","id":"sh/n6ls3alk","slide":3,"bbox":[443,188,360,160]} +{"kind":"shape","id":"sh/n2l4fq98","slide":3,"bbox":[443,188,7,160]} +{"kind":"textbox","id":"sh/m1c3mlsn","slide":3,"text":"Stores 门店","textPreview":"Stores 门店","textChars":10,"textLines":1,"bbox":[467,210,314,40]} +{"kind":"textbox","id":"sh/943mhgre","slide":3,"text":"Which stores appear profitable but tie up cash?\n哪些门店看似赚钱,实际占用资金?","textPreview":"Which stores appear profitable but tie up cash? | 哪些门店看似赚钱,实际占用资金?","textChars":64,"textLines":2,"bbox":[467,262,314,68]} +{"kind":"shape","id":"sh/83ulovat","slide":3,"bbox":[844,188,360,160]} +{"kind":"shape","id":"sh/v6l4jq94","slide":3,"bbox":[844,188,7,160]} +{"kind":"textbox","id":"sh/a5c3ql8z","slide":3,"text":"Promotions 促销","textPreview":"Promotions 促销","textChars":14,"textLines":1,"bbox":[868,210,314,40]} +{"kind":"textbox","id":"sh/x8nml0ra","slide":3,"text":"Which campaigns add orders but destroy profit?\n哪些活动增加订单,却消耗利润?","textPreview":"Which campaigns add orders but destroy profit? | 哪些活动增加订单,却消耗利润?","textChars":62,"textLines":2,"bbox":[868,262,314,68]} +{"kind":"shape","id":"sh/w7ulsvqp","slide":3,"bbox":[42,390,360,160]} +{"kind":"shape","id":"sh/ja54na9g","slide":3,"bbox":[42,390,7,160]} +{"kind":"textbox","id":"sh/i9w3u58v","slide":3,"text":"SKU","textPreview":"SKU","textChars":3,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/e10f2twf","slide":3,"text":"Which products sell well but contribute too little margin?\n哪些商品销量不低,却毛利不足?","textPreview":"Which products sell well but contribute too little margin? | 哪些商品销量不低,却毛利不足?","textChars":74,"textLines":2,"bbox":[66,464,314,68]} +{"kind":"shape","id":"sh/f29gbyx0","slide":3,"bbox":[443,390,360,160]} +{"kind":"shape","id":"sh/03ix43e5","slide":3,"bbox":[443,390,7,160]} +{"kind":"textbox","id":"sh/14ryd8fq","slide":3,"text":"Labor 人力","textPreview":"Labor 人力","textChars":9,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/6d0fytg3","slide":3,"text":"When are teams idle, yet understaffed at peak times?\n哪些时段人员闲置,高峰又缺人?","textPreview":"When are teams idle, yet understaffed at peak times? | 哪些时段人员闲置,高峰又缺人?","textChars":68,"textLines":2,"bbox":[467,464,314,68]} +{"kind":"shape","id":"sh/re9g7yxo","slide":3,"bbox":[844,390,360,160]} +{"kind":"shape","id":"sh/sfix03y9","slide":3,"bbox":[844,390,7,160]} +{"kind":"textbox","id":"sh/tgry9ofu","slide":3,"text":"Loss control 止损","textPreview":"Loss control 止损","textChars":16,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/a9kfadwn","slide":3,"text":"Which stores should be fixed, relocated, resized or closed?\n哪些门店应整改、迁址、缩编或关停?","textPreview":"Which stores should be fixed, relocated, resized or closed? | 哪些门店应整改、迁址、缩编或关停?","textChars":77,"textLines":2,"bbox":[868,464,314,68]} +{"kind":"notes","id":"nt/ofy9wn61","slide":3,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/jyx0ra1s","slide":4,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":22} +{"kind":"textbox","id":"sh/knex8j21","slide":4,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1cj2d8b6","slide":4,"text":"Turn exceptions into actions with measurable outcomes.\n把异常处理成有结果的经营行动","textPreview":"Turn exceptions into actions with measurable outcomes. | 把异常处理成有结果的经营行动","textChars":69,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0ba143al","slide":4,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/rm1k7yt4","slide":4,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/ql8jytsj","slide":4,"bbox":[82,350,1090,0]} +{"kind":"shape","id":"sh/doj29oba","slide":4,"bbox":[54,332,36,36]} +{"kind":"textbox","id":"sh/sna103ap","slide":4,"text":"1","textPreview":"1","textChars":1,"textLines":1,"bbox":[54,337,36,24]} +{"kind":"textbox","id":"sh/3ihk3et8","slide":4,"text":"Detect 发现","textPreview":"Detect 发现","textChars":10,"textLines":1,"bbox":[44,235,150,40]} +{"kind":"textbox","id":"sh/ih8ju9sn","slide":4,"text":"Profit exception\n利润异常","textPreview":"Profit exception | 利润异常","textChars":21,"textLines":2,"bbox":[44,400,164,78]} +{"kind":"shape","id":"sh/kbm987y5","slide":4,"bbox":[253,332,36,36]} +{"kind":"textbox","id":"sh/5cva1cfq","slide":4,"text":"2","textPreview":"2","textChars":1,"textLines":1,"bbox":[253,337,36,24]} +{"kind":"textbox","id":"sh/i94r6xgz","slide":4,"text":"Drill down 穿透","textPreview":"Drill down 穿透","textChars":14,"textLines":1,"bbox":[243,235,150,40]} +{"kind":"textbox","id":"sh/jadsz2xk","slide":4,"text":"Region · Store · SKU · Shift\n区域·门店·SKU·班次","textPreview":"Region · Store · SKU · Shift | 区域·门店·SKU·班次","textChars":41,"textLines":2,"bbox":[243,400,164,78]} +{"kind":"shape","id":"sh/w72947yt","slide":4,"bbox":[452,332,36,36]} +{"kind":"textbox","id":"sh/x8vaxsfe","slide":4,"text":"3","textPreview":"3","textChars":1,"textLines":1,"bbox":[452,337,36,24]} +{"kind":"textbox","id":"sh/a5kr2xg3","slide":4,"text":"Quantify 测算","textPreview":"Quantify 测算","textChars":12,"textLines":1,"bbox":[442,235,150,40]} +{"kind":"textbox","id":"sh/v6tsv2xo","slide":4,"text":"Financial impact and priority\n影响金额与优先级","textPreview":"Financial impact and priority | 影响金额与优先级","textChars":38,"textLines":2,"bbox":[442,400,164,78]} +{"kind":"shape","id":"sh/g36tgryd","slide":4,"bbox":[651,332,36,36]} +{"kind":"textbox","id":"sh/h4fa9wfy","slide":4,"text":"4","textPreview":"4","textChars":1,"textLines":1,"bbox":[651,337,36,24]} +{"kind":"textbox","id":"sh/p0batw72","slide":4,"text":"Act 整改","textPreview":"Act 整改","textChars":7,"textLines":1,"bbox":[641,235,150,40]} +{"kind":"textbox","id":"sh/oz29krqh","slide":4,"text":"Action · Owner · Deadline\n动作·责任人·期限","textPreview":"Action · Owner · Deadline | 动作·责任人·期限","textChars":35,"textLines":2,"bbox":[641,400,164,78]} +{"kind":"shape","id":"sh/3ytsrmpw","slide":4,"bbox":[850,332,36,36]} +{"kind":"textbox","id":"sh/2xkrih8b","slide":4,"text":"5","textPreview":"5","textChars":1,"textLines":1,"bbox":[850,337,36,24]} +{"kind":"textbox","id":"sh/1wbapc7q","slide":4,"text":"Verify 验证","textPreview":"Verify 验证","textChars":10,"textLines":1,"bbox":[840,235,150,40]} +{"kind":"textbox","id":"sh/gv29g7q5","slide":4,"text":"Confirm real profit improvement\n利润是否真正改善","textPreview":"Confirm real profit improvement | 利润是否真正改善","textChars":40,"textLines":2,"bbox":[840,400,164,78]} +{"kind":"shape","id":"sh/fu9sn2p0","slide":4,"bbox":[1049,332,36,36]} +{"kind":"textbox","id":"sh/et0reh8f","slide":4,"text":"6","textPreview":"6","textChars":1,"textLines":1,"bbox":[1049,337,36,24]} +{"kind":"textbox","id":"sh/tsrqlc7u","slide":4,"text":"Codify 沉淀","textPreview":"Codify 沉淀","textChars":10,"textLines":1,"bbox":[1039,235,150,40]} +{"kind":"textbox","id":"sh/sri9s7q9","slide":4,"text":"Update company best practices\n更新企业最佳实践","textPreview":"Update company best practices | 更新企业最佳实践","textChars":38,"textLines":2,"bbox":[1039,400,164,78]} +{"kind":"shape","id":"sh/ilwf69kv","slide":4,"bbox":[42,552,1196,58]} +{"kind":"textbox","id":"sh/jm5gze1g","slide":4,"text":"The value lies in turning issues into repeatable profit improvement. 关键不是“发现问题”,而是“把问题变成可复制的利润改善”。","textPreview":"The value lies in turning issues into repeatable profit improvement. 关键不是“发现问题”,而是“把问题变成可复制的利润改善”。","textChars":99,"textLines":1,"bbox":[66,568,1148,30]} +{"kind":"notes","id":"nt/jyx0ra1s","slide":4,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/i107q5of","slide":5,"title":"Anonymous composite case · SKU portfolio 匿名复合案例 · SKU 组合决策","textShapes":15} +{"kind":"textbox","id":"sh/fe94nm1w","slide":5,"text":"Anonymous composite case · SKU portfolio 匿名复合案例 · SKU 组合决策","textPreview":"Anonymous composite case · SKU portfolio 匿名复合案例 · SKU 组合决策","textChars":59,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/dgbulwnm","slide":5,"text":"More SKUs often mean more cost, not more choice.\nSKU 过多,往往增加的是复杂度和成本","textPreview":"More SKUs often mean more cost, not more choice. | SKU 过多,往往增加的是复杂度和成本","textChars":68,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/cf2tcr61","slide":5,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/z2tcnm5s","slide":5,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/yhkbe1o7","slide":5,"text":"480","textPreview":"480","textChars":3,"textLines":1,"bbox":[42,182,190,72]} +{"kind":"textbox","id":"sh/l4bupwny","slide":5,"text":"Active SKUs 在售 SKU","textPreview":"Active SKUs 在售 SKU","textChars":19,"textLines":1,"bbox":[42,256,190,30]} +{"kind":"textbox","id":"sh/032tgr6d","slide":5,"text":"The bottom 20% of SKUs contribute about 3% of sales while continuously tying up inventory cash.\n后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。","textPreview":"The bottom 20% of SKUs contribute about 3% of sales while continuously tying up inventory cash. | 后 20% SKU 仅贡献约 3% 销售额,却持续占用库存资金。","textChars":128,"textLines":2,"bbox":[262,190,800,76]} +{"kind":"shape","id":"sh/n6dcr65o","slide":5,"bbox":[42,328,270,170]} +{"kind":"textbox","id":"sh/m5kbi1oj","slide":5,"text":"37 items\n37 个","textPreview":"37 items | 37 个","textChars":13,"textLines":2,"bbox":[66,354,222,64]} +{"kind":"textbox","id":"sh/w32dkbuh","slide":5,"text":"Low sales · Low margin · High waste 低销量·低毛利·高损耗","textPreview":"Low sales · Low margin · High waste 低销量·低毛利·高损耗","textChars":48,"textLines":1,"bbox":[66,434,222,40]} +{"kind":"shape","id":"sh/x4vedgvm","slide":5,"bbox":[341,328,270,170]} +{"kind":"textbox","id":"sh/ahkvi1cb","slide":5,"text":"9 items\n9 个","textPreview":"9 items | 9 个","textChars":11,"textLines":2,"bbox":[365,354,222,64]} +{"kind":"textbox","id":"sh/v2twb6dw","slide":5,"text":"High sales but low profit contribution 高销量但低贡献利润","textPreview":"High sales but low profit contribution 高销量但低贡献利润","textChars":49,"textLines":1,"bbox":[365,434,222,40]} +{"kind":"shape","id":"sh/k7mxovud","slide":5,"bbox":[640,328,270,170]} +{"kind":"textbox","id":"sh/58vehgvy","slide":5,"text":"16 items\n16 个","textPreview":"16 items | 16 个","textChars":13,"textLines":2,"bbox":[664,354,222,64]} +{"kind":"textbox","id":"sh/i54fmlc7","slide":5,"text":"Shared or substitutable ingredients 可共享或替换原料","textPreview":"Shared or substitutable ingredients 可共享或替换原料","textChars":45,"textLines":1,"bbox":[664,434,222,40]} +{"kind":"shape","id":"sh/j6dwfqds","slide":5,"bbox":[939,328,270,170]} +{"kind":"textbox","id":"sh/sb6xsvu9","slide":5,"text":"22 items\n22 个","textPreview":"22 items | 22 个","textChars":13,"textLines":2,"bbox":[963,354,222,64]} +{"kind":"textbox","id":"sh/tcfel0vu","slide":5,"text":"Overlapping price points 价格带重叠","textPreview":"Overlapping price points 价格带重叠","textChars":31,"textLines":1,"bbox":[963,434,222,40]} +{"kind":"shape","id":"sh/hgrmpwj2","slide":5,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/gfi5grih","slide":5,"text":"Illustrative estimate: release RMB 0.8m in inventory cash · reduce annual waste by RMB 0.35m · lift gross margin by about 0.6 pp 模拟测算:释放库存资金约 80 万元 · 年减少报损约 35 万元 · 综合毛利率提升约 0.6 个百分点","textPreview":"Illustrative estimate: release RMB 0.8m in inventory cash · reduce annual waste by RMB 0.35m · lift gross margin by about 0.6 pp 模拟测算:释放...","textChars":183,"textLines":1,"bbox":[68,558,1140,40]} +{"kind":"notes","id":"nt/i107q5of","slide":5,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/x8f69ofe","slide":6,"title":"Anonymous composite case · Store A-017 匿名复合案例 · 门店 A-017","textShapes":10} +{"kind":"textbox","id":"sh/svmt4v6t","slide":6,"text":"Anonymous composite case · Store A-017 匿名复合案例 · 门店 A-017","textPreview":"Anonymous composite case · Store A-017 匿名复合案例 · 门店 A-017","textChars":57,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/yhg7epsj","slide":6,"text":"Labor hours should follow demand.\n排班的关键,是工时跟着客流走","textPreview":"Labor hours should follow demand. | 排班的关键,是工时跟着客流走","textChars":48,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/zi98nu94","slide":6,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/87ipkzal","slide":6,"text":"06","textPreview":"06","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/98rqt4r6","slide":6,"bbox":[42,182,362,314]} +{"kind":"shape","id":"sh/ml07i9sv","slide":6,"bbox":[42,182,7,314]} +{"kind":"textbox","id":"sh/7m98ru9g","slide":6,"text":"Detect 发现","textPreview":"Detect 发现","textChars":10,"textLines":1,"bbox":[66,204,316,40]} +{"kind":"textbox","id":"sh/oryp8fah","slide":6,"text":"Idle labor on weekday mornings · Understaffed on Friday peaks · Habit-based shifts · Overtime concentrated in a few roles\n· 工作日上午存在闲置工时\n· 周五晚高峰经常缺人\n· 班次依据历史习惯\n· 加班集中在少数岗位","textPreview":"Idle labor on weekday mornings · Understaffed on Friday peaks · Habit-based shifts · Overtime concentrated in a few roles | · 工作日上午存在闲置工时...","textChars":170,"textLines":5,"bbox":[66,256,316,222]} +{"kind":"shape","id":"sh/pc76hkr2","slide":6,"bbox":[458,182,362,314]} +{"kind":"shape","id":"sh/h4bupgn6","slide":6,"bbox":[458,182,7,314]} +{"kind":"textbox","id":"sh/w32twb6l","slide":6,"text":"Actions 动作","textPreview":"Actions 动作","textChars":11,"textLines":1,"bbox":[482,204,316,40]} +{"kind":"textbox","id":"sh/v2tcn650","slide":6,"text":"Forecast every 30 minutes · Adjust shift times · Add hourly staff at peaks · Move prep ahead of demand\n· 按半小时预测工作量\n· 调整早晚班起止时间\n· 高峰增加小时工\n· 备餐前移至客流爬升前","textPreview":"Forecast every 30 minutes · Adjust shift times · Add hourly staff at peaks · Move prep ahead of demand | · 按半小时预测工作量 | · 调整早晚班起止时间 | · 高峰...","textChars":149,"textLines":5,"bbox":[482,256,316,222]} +{"kind":"shape","id":"sh/u1kbu1ov","slide":6,"bbox":[874,182,364,314]} +{"kind":"shape","id":"sh/5svutgni","slide":6,"bbox":[874,182,7,314]} +{"kind":"textbox","id":"sh/47mt0b6x","slide":6,"text":"Verify 验证","textPreview":"Verify 验证","textChars":10,"textLines":1,"bbox":[898,204,318,40]} +{"kind":"textbox","id":"sh/j6dcr65c","slide":6,"text":"Monitor labor cost, service speed and customer satisfaction together. Do not simply cut headcount.\n同时监控:\n\n· 人工成本\n· 出品时效\n· 顾客满意度\n\n避免单纯压缩人力。","textPreview":"Monitor labor cost, service speed and customer satisfaction together. Do not simply cut headcount. | 同时监控: | | · 人工成本 | · 出品时效 | · 顾客满意度...","textChars":138,"textLines":8,"bbox":[898,256,318,222]} +{"kind":"shape","id":"sh/i54bylor","slide":6,"bbox":[42,535,1196,85]} +{"kind":"textbox","id":"sh/twfux0ne","slide":6,"text":"Illustrative estimate: RMB 18k saved per store per month; about RMB 12.96m annual upside across 60 stores. 模拟测算:单店每月节约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。","textPreview":"Illustrative estimate: RMB 18k saved per store per month; about RMB 12.96m annual upside across 60 stores. 模拟测算:单店每月节约 1.8 万元;复制到 60 家门店...","textChars":155,"textLines":1,"bbox":[66,557,1148,42]} +{"kind":"notes","id":"nt/x8f69ofe","slide":6,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/gnmp4jqx","slide":7,"title":"Anonymous composite case · Campaign X 匿名复合案例 · 营销活动 X","textShapes":17} +{"kind":"textbox","id":"sh/s3ml0v61","slide":7,"text":"Anonymous composite case · Campaign X 匿名复合案例 · 营销活动 X","textPreview":"Anonymous composite case · Campaign X 匿名复合案例 · 营销活动 X","textChars":54,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/cb2tkvap","slide":7,"text":"More orders do not always mean a profitable campaign.\n订单增长,不等于促销赚钱","textPreview":"More orders do not always mean a profitable campaign. | 订单增长,不等于促销赚钱","textChars":66,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/dcbud0ra","slide":7,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ydkbm5sv","slide":7,"text":"07","textPreview":"07","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/zedcfa9g","slide":7,"bbox":[42,186,350,170]} +{"kind":"textbox","id":"sh/kzmdova1","slide":7,"text":"+23%","textPreview":"+23%","textChars":4,"textLines":1,"bbox":[66,212,302,64]} +{"kind":"textbox","id":"sh/l0vuh0rm","slide":7,"text":"Order growth 订单增长","textPreview":"Order growth 订单增长","textChars":18,"textLines":1,"bbox":[66,292,302,40]} +{"kind":"shape","id":"sh/eh0ba1sr","slide":7,"bbox":[42,378,350,170]} +{"kind":"textbox","id":"sh/fi9c369c","slide":7,"text":"Negative\n负值","textPreview":"Negative | 负值","textChars":11,"textLines":2,"bbox":[66,404,302,64]} +{"kind":"textbox","id":"sh/baxkjqlk","slide":7,"text":"Campaign contribution after full costs 穿透成本后的活动贡献利润","textPreview":"Campaign contribution after full costs 穿透成本后的活动贡献利润","textChars":52,"textLines":1,"bbox":[66,484,302,40]} +{"kind":"textbox","id":"sh/a9ojq5kz","slide":7,"text":"Why the campaign loses money 活动为什么亏钱","textPreview":"Why the campaign loses money 活动为什么亏钱","textChars":37,"textLines":1,"bbox":[454,186,360,40]} +{"kind":"textbox","id":"sh/xcz2l03q","slide":7,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[454,258,42,28]} +{"kind":"textbox","id":"sh/cbq1sv25","slide":7,"text":"More low-margin items in the mix 低毛利商品占比上升","textPreview":"More low-margin items in the mix 低毛利商品占比上升","textChars":43,"textLines":1,"bbox":[510,254,650,40]} +{"kind":"shape","id":"sh/n6x0fqlo","slide":7,"bbox":[510,300,650,0]} +{"kind":"textbox","id":"sh/25ojml43","slide":7,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[454,323,42,28]} +{"kind":"textbox","id":"sh/p8fih03e","slide":7,"text":"High-value members receive blanket discounts 高价值会员获得无差别优惠","textPreview":"High-value members receive blanket discounts 高价值会员获得无差别优惠","textChars":58,"textLines":1,"bbox":[510,319,650,40]} +{"kind":"shape","id":"sh/o761ov2t","slide":7,"bbox":[510,365,650,0]} +{"kind":"textbox","id":"sh/f2d0b6lc","slide":7,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[454,388,42,28]} +{"kind":"textbox","id":"sh/eh4jil4r","slide":7,"text":"Discounted orders replace full-price orders 促销订单替代了原价订单","textPreview":"Discounted orders replace full-price orders 促销订单替代了原价订单","textChars":56,"textLines":1,"bbox":[510,384,650,40]} +{"kind":"shape","id":"sh/id4ju1oz","slide":7,"bbox":[510,430,650,0]} +{"kind":"textbox","id":"sh/jedkn654","slide":7,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[454,453,42,28]} +{"kind":"textbox","id":"sh/4fm1wb6p","slide":7,"text":"Orders and revenue measured; incremental profit ignored 只评价订单和营收,没有评价增量利润","textPreview":"Orders and revenue measured; incremental profit ignored 只评价订单和营收,没有评价增量利润","textChars":74,"textLines":1,"bbox":[510,449,650,40]} +{"kind":"shape","id":"sh/50v2pgna","slide":7,"bbox":[510,495,650,0]} +{"kind":"shape","id":"sh/q143ylov","slide":7,"bbox":[454,544,746,67]} +{"kind":"textbox","id":"sh/r2dkrq5g","slide":7,"text":"Evaluate each campaign by contribution profit generated per RMB 1 of marketing spend. 用“每投入 1 元营销费用增加多少贡献利润”评价活动。","textPreview":"Evaluate each campaign by contribution profit generated per RMB 1 of marketing spend. 用“每投入 1 元营销费用增加多少贡献利润”评价活动。","textChars":114,"textLines":1,"bbox":[478,562,700,34]} +{"kind":"notes","id":"nt/gnmp4jqx","slide":7,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/fu1gfa1s","slide":8,"title":"Anonymous composite case · Store D-006 匿名复合案例 · 门店 D-006","textShapes":19} +{"kind":"textbox","id":"sh/07atgnmp","slide":8,"text":"Anonymous composite case · Store D-006 匿名复合案例 · 门店 D-006","textPreview":"Anonymous composite case · Store D-006 匿名复合案例 · 门店 D-006","textChars":57,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/18byd4zy","slide":8,"text":"Compare the options before deciding to close a store.\n关店前,先把四种选择算清楚","textPreview":"Compare the options before deciding to close a store. | 关店前,先把四种选择算清楚","textChars":67,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/g72x4zyd","slide":8,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ri9g7uhw","slide":8,"text":"08","textPreview":"08","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/6h0fypgb","slide":8,"bbox":[42,180,340,55]} +{"kind":"textbox","id":"sh/tkby9kzm","slide":8,"text":"Option 方案","textPreview":"Option 方案","textChars":10,"textLines":1,"bbox":[60,197,304,26]} +{"kind":"shape","id":"sh/sjix0zy1","slide":8,"bbox":[382,180,378,55]} +{"kind":"textbox","id":"sh/je9g3ahk","slide":8,"text":"12-month scenario 12 个月模拟结果","textPreview":"12-month scenario 12 个月模拟结果","textChars":28,"textLines":1,"bbox":[400,197,342,26]} +{"kind":"shape","id":"sh/id0fu50z","slide":8,"bbox":[760,180,478,55]} +{"kind":"textbox","id":"sh/o7ydoret","slide":8,"text":"Recommendation 决策建议","textPreview":"Recommendation 决策建议","textChars":20,"textLines":1,"bbox":[778,197,442,26]} +{"kind":"shape","id":"sh/98rehwve","slide":8,"bbox":[42,235,340,72]} +{"kind":"textbox","id":"sh/m5gvmhwn","slide":8,"text":"Continue operating 继续经营","textPreview":"Continue operating 继续经营","textChars":24,"textLines":1,"bbox":[60,256,304,35]} +{"kind":"shape","id":"sh/n6pwfmd8","slide":8,"bbox":[382,235,378,72]} +{"kind":"textbox","id":"sh/0jydkreh","slide":8,"text":"Estimated loss: RMB 0.92m 预计亏损 92 万","textPreview":"Estimated loss: RMB 0.92m 预计亏损 92 万","textChars":36,"textLines":1,"bbox":[400,256,342,35]} +{"kind":"shape","id":"sh/1k7edwv2","slide":8,"bbox":[760,235,478,72]} +{"kind":"textbox","id":"sh/ehgvihwr","slide":8,"text":"Not recommended 不建议","textPreview":"Not recommended 不建议","textChars":20,"textLines":1,"bbox":[778,256,442,35]} +{"kind":"shape","id":"sh/zipwbmdc","slide":8,"bbox":[42,307,340,72]} +{"kind":"textbox","id":"sh/kfixwbe1","slide":8,"text":"Invest in a turnaround 投入整改","textPreview":"Invest in a turnaround 投入整改","textChars":28,"textLines":1,"bbox":[60,328,304,35]} +{"kind":"shape","id":"sh/lgbepgvm","slide":8,"bbox":[382,307,378,72]} +{"kind":"textbox","id":"sh/tw7e9gnq","slide":8,"text":"Estimated loss falls to RMB 0.35m 预计亏损降至 35 万","textPreview":"Estimated loss falls to RMB 0.35m 预计亏损降至 35 万","textChars":46,"textLines":1,"bbox":[400,328,342,35]} +{"kind":"shape","id":"sh/svydgb65","slide":8,"bbox":[760,307,478,72]} +{"kind":"textbox","id":"sh/7u5w765k","slide":8,"text":"High risk; set a stop-loss 高风险,设止损线","textPreview":"High risk; set a stop-loss 高风险,设止损线","textChars":36,"textLines":1,"bbox":[778,328,442,35]} +{"kind":"shape","id":"sh/6twve1oz","slide":8,"bbox":[42,379,340,72]} +{"kind":"textbox","id":"sh/5sne5wne","slide":8,"text":"Reduce footprint 缩小面积","textPreview":"Reduce footprint 缩小面积","textChars":22,"textLines":1,"bbox":[60,400,304,35]} +{"kind":"shape","id":"sh/kredcr6t","slide":8,"bbox":[382,379,378,72]} +{"kind":"textbox","id":"sh/jq5w365o","slide":8,"text":"Near break-even 预计接近盈亏平衡","textPreview":"Near break-even 预计接近盈亏平衡","textChars":25,"textLines":1,"bbox":[400,400,342,35]} +{"kind":"shape","id":"sh/i5wva1o3","slide":8,"bbox":[760,379,478,72]} +{"kind":"textbox","id":"sh/x4ne1wni","slide":8,"text":"Consider if the lease can be renegotiated 租约可重谈时考虑","textPreview":"Consider if the lease can be renegotiated 租约可重谈时考虑","textChars":51,"textLines":1,"bbox":[778,400,442,35]} +{"kind":"shape","id":"sh/w3ed8r6x","slide":8,"bbox":[42,451,340,72]} +{"kind":"textbox","id":"sh/m9sb2x4v","slide":8,"text":"Close and migrate members 关停并迁移会员","textPreview":"Close and migrate members 关停并迁移会员","textChars":34,"textLines":1,"bbox":[60,472,304,35]} +{"kind":"shape","id":"sh/na1sb2lg","slide":8,"bbox":[382,451,378,72]} +{"kind":"textbox","id":"sh/8bat47ml","slide":8,"text":"Estimated loss reduction: RMB 0.76m 预计减少亏损 76 万","textPreview":"Estimated loss reduction: RMB 0.76m 预计减少亏损 76 万","textChars":48,"textLines":1,"bbox":[400,472,342,35]} +{"kind":"shape","id":"sh/9w3uds36","slide":8,"bbox":[760,451,478,72]} +{"kind":"textbox","id":"sh/y5sbed4j","slide":8,"text":"Preferred option 优先建议","textPreview":"Preferred option 优先建议","textChars":22,"textLines":1,"bbox":[778,472,442,35]} +{"kind":"textbox","id":"sh/z61s7il4","slide":8,"text":"AI does not close stores. It adds evidence, scenario analysis and an exit plan to management judgment. AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。","textPreview":"AI does not close stores. It adds evidence, scenario analysis and an exit plan to management judgment. AI 不替老板关店;它让经验判断具有数据依据、情景测算和退出预案。","textChars":137,"textLines":1,"bbox":[42,565,1160,44]} +{"kind":"notes","id":"nt/fu1gfa1s","slide":8,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/udsvah03","slide":9,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/va103ep4","slide":9,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1cfmhgne","slide":9,"text":"One operating view, four levels of accountability.\n四级管理,各自看清该做的事","textPreview":"One operating view, four levels of accountability. | 四级管理,各自看清该做的事","textChars":64,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0b65obm9","slide":9,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/nex4jq5k","slide":9,"text":"09","textPreview":"09","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/mdonql4z","slide":9,"bbox":[42,190,265,316]} +{"kind":"textbox","id":"sh/9gzml0nq","slide":9,"text":"Owner\n老板","textPreview":"Owner | 老板","textChars":8,"textLines":2,"bbox":[64,214,220,46]} +{"kind":"textbox","id":"sh/ofq5svm5","slide":9,"text":"Review outcomes 看结果","textPreview":"Review outcomes 看结果","textChars":20,"textLines":1,"bbox":[64,296,220,44]} +{"kind":"textbox","id":"sh/bih4na5w","slide":9,"text":"Profit · Risk · Capital allocation\n利润·风险·资源投向","textPreview":"Profit · Risk · Capital allocation | 利润·风险·资源投向","textChars":45,"textLines":2,"bbox":[64,386,220,72]} +{"kind":"textbox","id":"sh/ah8nu54b","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[310,323,30,36]} +{"kind":"shape","id":"sh/oza1gfyh","slide":9,"bbox":[341,190,265,316]} +{"kind":"textbox","id":"sh/p0ji9kf2","slide":9,"text":"Head office\n总部","textPreview":"Head office | 总部","textChars":14,"textLines":2,"bbox":[363,214,220,46]} +{"kind":"textbox","id":"sh/2xsjepgb","slide":9,"text":"Find causes 找原因","textPreview":"Find causes 找原因","textChars":16,"textLines":1,"bbox":[363,296,220,44]} +{"kind":"textbox","id":"sh/3y107axw","slide":9,"text":"Cross-region benchmarks · Policy review\n跨区域对标·政策评估","textPreview":"Cross-region benchmarks · Policy review | 跨区域对标·政策评估","textChars":50,"textLines":2,"bbox":[363,386,220,72]} +{"kind":"textbox","id":"sh/cnu1kzyd","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[609,323,30,36]} +{"kind":"shape","id":"sh/do3id4fy","slide":9,"bbox":[640,190,265,316]} +{"kind":"textbox","id":"sh/qlcjipgn","slide":9,"text":"Region\n区域","textPreview":"Region | 区域","textChars":9,"textLines":2,"bbox":[662,214,220,46]} +{"kind":"textbox","id":"sh/bml0buxs","slide":9,"text":"Drive action 推整改","textPreview":"Drive action 推整改","textChars":17,"textLines":1,"bbox":[662,296,220,44]} +{"kind":"textbox","id":"sh/0ru1ozyp","slide":9,"text":"Store tiers · Tasks · Acceptance\n门店分级·任务·验收","textPreview":"Store tiers · Tasks · Acceptance | 门店分级·任务·验收","textChars":43,"textLines":2,"bbox":[662,386,220,72]} +{"kind":"textbox","id":"sh/lsn2h4fa","slide":9,"text":"→","textPreview":"→","textChars":1,"textLines":1,"bbox":[908,323,30,36]} +{"kind":"shape","id":"sh/98ji147e","slide":9,"bbox":[939,190,265,316]} +{"kind":"textbox","id":"sh/87a18zqt","slide":9,"text":"Store manager\n店长","textPreview":"Store manager | 店长","textChars":16,"textLines":2,"bbox":[961,214,220,46]} +{"kind":"textbox","id":"sh/76h0zup8","slide":9,"text":"Execute 做动作","textPreview":"Execute 做动作","textChars":12,"textLines":1,"bbox":[961,296,220,44]} +{"kind":"textbox","id":"sh/ml8j6p8n","slide":9,"text":"Daily targets · Gaps · Actions\n日目标·偏差·行动建议","textPreview":"Daily targets · Gaps · Actions | 日目标·偏差·行动建议","textChars":42,"textLines":2,"bbox":[961,386,220,72]} +{"kind":"shape","id":"sh/hcji5o7a","slide":9,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/wba1cjqp","slide":9,"text":"Results return to the operating view: completion is not the goal; improvement is. 结果回到经营大盘:执行不是终点,改善结果才是。","textPreview":"Results return to the operating view: completion is not the goal; improvement is. 结果回到经营大盘:执行不是终点,改善结果才是。","textChars":106,"textLines":1,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/udsvah03","slide":9,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/m90b6t0r","slide":10,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":7} +{"kind":"textbox","id":"sh/r6pcv6lw","slide":10,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xc3mho32","slide":10,"text":"AI provides evidence. Management owns the decision.\nAI 给依据,经营决策仍由管理者负责","textPreview":"AI provides evidence. Management owns the decision. | AI 给依据,经营决策仍由管理者负责","textChars":70,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/cbu58j2h","slide":10,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/zelojyl8","slide":10,"text":"10","textPreview":"10","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/ydcnatkn","slide":10,"bbox":[42,182,560,366]} +{"kind":"shape","id":"sh/l036l83y","slide":10,"bbox":[42,182,7,366]} +{"kind":"textbox","id":"sh/kzu5c32t","slide":10,"text":"AI can support AI 可以承担","textPreview":"AI can support AI 可以承担","textChars":23,"textLines":1,"bbox":[66,204,514,40]} +{"kind":"textbox","id":"sh/725onyl4","slide":10,"text":"· Connect and reconcile data across systems\n· Continuously scan for operating exceptions\n· Drill down to stores, SKUs, shifts and individual orders\n· Apply industry rules and relevant historical cases\n· Model the impact of each option on profit and cash flow\n· Track execution and verify the actual outcome\n· 理解并关联跨系统数据\n· 持续扫描异常\n· 穿透至门店、SKU、班次和订单\n· 调用行业规则与历史案例\n· 推演方案对利润和现金流的影响\n· 跟踪执行并验证结果","textPreview":"· Connect and reconcile data across systems | · Continuously scan for operating exceptions | · Drill down to stores, SKUs, shifts and ind...","textChars":389,"textLines":12,"bbox":[66,256,514,274]} +{"kind":"shape","id":"sh/m1cnetkj","slide":10,"bbox":[678,182,560,366]} +{"kind":"shape","id":"sh/s7yt4b21","slide":10,"bbox":[678,182,7,366]} +{"kind":"textbox","id":"sh/d87uxg3m","slide":10,"text":"Management must decide 必须由管理者决定","textPreview":"Management must decide 必须由管理者决定","textChars":32,"textLines":1,"bbox":[702,204,514,40]} +{"kind":"textbox","id":"sh/q5gb21kb","slide":10,"text":"Price changes · Personnel actions · Supplier changes · Store relocation or closure · Major investment\nAll high-impact decisions require evidence, approval and execution records.\n· 价格调整\n· 人员处置\n· 供应商更换\n· 门店迁址与关停\n· 重大资源投入\n\n所有高影响决策都应留下依据、审批与执行记录。","textPreview":"Price changes · Personnel actions · Supplier changes · Store relocation or closure · Major investment | All high-impact decisions require...","textChars":242,"textLines":9,"bbox":[702,256,514,274]} +{"kind":"notes","id":"nt/m90b6t0r","slide":10,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/jetc3ut0","slide":11,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":24} +{"kind":"textbox","id":"sh/g3qtkj6l","slide":11,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xcryxg7y","slide":11,"text":"BI explains the past. Xuanmou drives the next action.\nBI 解释过去,玄谋智脑推动下一步","textPreview":"BI explains the past. Xuanmou drives the next action. | BI 解释过去,玄谋智脑推动下一步","textChars":71,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/wbih4b6d","slide":11,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/n69grmpw","slide":11,"text":"11","textPreview":"11","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/250zy18b","slide":11,"bbox":[42,170,228,50]} +{"kind":"textbox","id":"sh/98rytw72","slide":11,"text":"Dimension 维度","textPreview":"Dimension 维度","textChars":13,"textLines":1,"bbox":[58,185,196,25]} +{"kind":"shape","id":"sh/o7ih0r6h","slide":11,"bbox":[270,170,410,50]} +{"kind":"textbox","id":"sh/72t03qp0","slide":11,"text":"Conventional BI 普通 BI","textPreview":"Conventional BI 普通 BI","textChars":22,"textLines":1,"bbox":[286,185,378,25]} +{"kind":"shape","id":"sh/61kzalof","slide":11,"bbox":[680,170,558,50]} +{"kind":"textbox","id":"sh/ofqtgnyt","slide":11,"text":"Xuanmou Intelligence 玄谋智脑","textPreview":"Xuanmou Intelligence 玄谋智脑","textChars":26,"textLines":1,"bbox":[696,185,526,25]} +{"kind":"shape","id":"sh/9gza9sze","slide":11,"bbox":[42,220,228,67]} +{"kind":"textbox","id":"sh/mdobedg3","slide":11,"text":"Role 定位","textPreview":"Role 定位","textChars":8,"textLines":1,"bbox":[58,238,196,38]} +{"kind":"shape","id":"sh/nehs7iho","slide":11,"bbox":[270,220,410,67]} +{"kind":"textbox","id":"sh/0b6tc3yx","slide":11,"text":"Display reports 展示报表","textPreview":"Display reports 展示报表","textChars":21,"textLines":1,"bbox":[286,238,378,38]} +{"kind":"shape","id":"sh/1cfa58zi","slide":11,"bbox":[680,220,558,67]} +{"kind":"textbox","id":"sh/epobatgr","slide":11,"text":"Drive decisions and improvement 驱动经营决策与改善","textPreview":"Drive decisions and improvement 驱动经营决策与改善","textChars":42,"textLines":1,"bbox":[696,238,526,38]} +{"kind":"shape","id":"sh/zaxs3yhc","slide":11,"bbox":[42,287,228,67]} +{"kind":"textbox","id":"sh/cn6t83y1","slide":11,"text":"Business context 业务语义","textPreview":"Business context 业务语义","textChars":22,"textLines":1,"bbox":[58,305,196,38]} +{"kind":"shape","id":"sh/dofa18z6","slide":11,"bbox":[270,287,410,67]} +{"kind":"textbox","id":"sh/tsnip0ny","slide":11,"text":"Fields and metrics 字段和指标","textPreview":"Fields and metrics 字段和指标","textChars":25,"textLines":1,"bbox":[286,305,378,38]} +{"kind":"shape","id":"sh/87ehgv6d","slide":11,"bbox":[680,287,558,67]} +{"kind":"textbox","id":"sh/7650nq5s","slide":11,"text":"Industry ontology for stores, products, people and members 门店、商品、人员、会员等行业本体","textPreview":"Industry ontology for stores, products, people and members 门店、商品、人员、会员等行业本体","textChars":76,"textLines":1,"bbox":[696,305,526,38]} +{"kind":"shape","id":"sh/65wzelo7","slide":11,"bbox":[42,354,228,67]} +{"kind":"textbox","id":"sh/l43ilgn2","slide":11,"text":"Issue detection 问题发现","textPreview":"Issue detection 问题发现","textChars":21,"textLines":1,"bbox":[58,372,196,38]} +{"kind":"shape","id":"sh/k3uhcb6h","slide":11,"bbox":[270,354,410,67]} +{"kind":"textbox","id":"sh/j2lgjq5w","slide":11,"text":"People search the data 人主动看数据","textPreview":"People search the data 人主动看数据","textChars":30,"textLines":1,"bbox":[286,372,378,38]} +{"kind":"shape","id":"sh/y1czalob","slide":11,"bbox":[680,354,558,67]} +{"kind":"textbox","id":"sh/p07ixkn6","slide":11,"text":"System detects, prioritizes and alerts continuously 系统持续发现、分级与推送","textPreview":"System detects, prioritizes and alerts continuously 系统持续发现、分级与推送","textChars":65,"textLines":1,"bbox":[696,372,526,38]} +{"kind":"shape","id":"sh/4zyhofml","slide":11,"bbox":[42,421,228,67]} +{"kind":"textbox","id":"sh/m58fih43","slide":11,"text":"Issue resolution 问题处理","textPreview":"Issue resolution 问题处理","textChars":22,"textLines":1,"bbox":[58,439,196,38]} +{"kind":"shape","id":"sh/n61wbmlo","slide":11,"bbox":[270,421,410,67]} +{"kind":"textbox","id":"sh/o7axk7m9","slide":11,"text":"Report exceptions 报告异常","textPreview":"Report exceptions 报告异常","textChars":23,"textLines":1,"bbox":[286,439,378,38]} +{"kind":"shape","id":"sh/98jedc3u","slide":11,"bbox":[680,421,558,67]} +{"kind":"textbox","id":"sh/eh8fex47","slide":11,"text":"Root cause, impact, recommendation and action task 归因、测算、方案和整改任务","textPreview":"Root cause, impact, recommendation and action task 归因、测算、方案和整改任务","textChars":65,"textLines":1,"bbox":[696,439,526,38]} +{"kind":"shape","id":"sh/z2hw72lc","slide":11,"bbox":[42,488,228,67]} +{"kind":"textbox","id":"sh/03qxg7mx","slide":11,"text":"Outcome validation 结果验证","textPreview":"Outcome validation 结果验证","textChars":24,"textLines":1,"bbox":[58,506,196,38]} +{"kind":"shape","id":"sh/14ze9c3i","slide":11,"bbox":[270,488,410,67]} +{"kind":"textbox","id":"sh/ydcfq1kb","slide":11,"text":"Usually not tracked 通常不跟踪","textPreview":"Usually not tracked 通常不跟踪","textChars":26,"textLines":1,"bbox":[286,506,378,38]} +{"kind":"shape","id":"sh/jylwj6lw","slide":11,"bbox":[680,488,558,67]} +{"kind":"textbox","id":"sh/3qhsfypc","slide":11,"text":"Verify improvement and update best practices 验证改善并更新最佳实践","textPreview":"Verify improvement and update best practices 验证改善并更新最佳实践","textChars":57,"textLines":1,"bbox":[696,506,526,38]} +{"kind":"shape","id":"sh/ip8bmtor","slide":11,"bbox":[42,555,228,67]} +{"kind":"textbox","id":"sh/5sjah872","slide":11,"text":"Long-term value 长期价值","textPreview":"Long-term value 长期价值","textChars":21,"textLines":1,"bbox":[58,573,196,38]} +{"kind":"shape","id":"sh/4rato36h","slide":11,"bbox":[270,555,410,67]} +{"kind":"textbox","id":"sh/v2hsbyp0","slide":11,"text":"More and more reports 报表越来越多","textPreview":"More and more reports 报表越来越多","textChars":29,"textLines":1,"bbox":[286,573,378,38]} +{"kind":"shape","id":"sh/u18bit8f","slide":11,"bbox":[680,555,558,67]} +{"kind":"textbox","id":"sh/h4zado76","slide":11,"text":"Industry models and company knowledge improve with use 行业模型与企业知识越用越成熟","textPreview":"Industry models and company knowledge improve with use 行业模型与企业知识越用越成熟","textChars":70,"textLines":1,"bbox":[696,573,526,38]} +{"kind":"notes","id":"nt/jetc3ut0","slide":11,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/8f2psfyx","slide":12,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":23} +{"kind":"textbox","id":"sh/alwbitsn","slide":12,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1gbm9s3a","slide":12,"text":"Five capabilities that support scalable operations.\n五项基础能力,支撑门店规模化管理","textPreview":"Five capabilities that support scalable operations. | 五项基础能力,支撑门店规模化管理","textChars":68,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/0f2lgnmp","slide":12,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ra943il8","slide":12,"text":"12","textPreview":"12","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/q903ad4n","slide":12,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,185,54,28]} +{"kind":"textbox","id":"sh/dcbm583y","slide":12,"text":"Data foundation\n数据资产化","textPreview":"Data foundation | 数据资产化","textChars":21,"textLines":2,"bbox":[118,171,250,54]} +{"kind":"textbox","id":"sh/sb2lcnmd","slide":12,"text":"Connect the data\n数据通起来","textPreview":"Connect the data | 数据通起来","textChars":22,"textLines":2,"bbox":[422,171,250,54]} +{"kind":"textbox","id":"sh/b6d4f2lc","slide":12,"text":"One number, one source\n一个数字、一个来源","textPreview":"One number, one source | 一个数字、一个来源","textChars":32,"textLines":2,"bbox":[720,171,450,54]} +{"kind":"shape","id":"sh/a543mx4r","slide":12,"bbox":[118,238,1050,0]} +{"kind":"textbox","id":"sh/wvupgz6t","slide":12,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,54,28]} +{"kind":"textbox","id":"sh/xw3q94ne","slide":12,"text":"Operational metrics\n运营指标化","textPreview":"Operational metrics | 运营指标化","textChars":25,"textLines":2,"bbox":[118,260,250,54]} +{"kind":"textbox","id":"sh/atc7epon","slide":12,"text":"Surface the issues\n问题浮出来","textPreview":"Surface the issues | 问题浮出来","textChars":24,"textLines":2,"bbox":[422,260,250,54]} +{"kind":"textbox","id":"sh/bulo7u58","slide":12,"text":"Trace exceptions to root causes\n异常能穿透到根因","textPreview":"Trace exceptions to root causes | 异常能穿透到根因","textChars":40,"textLines":2,"bbox":[720,260,450,54]} +{"kind":"shape","id":"sh/orapcf6h","slide":12,"bbox":[118,327,1050,0]} +{"kind":"textbox","id":"sh/9sj65kn2","slide":12,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,363,54,28]} +{"kind":"textbox","id":"sh/mps7a5or","slide":12,"text":"Strategy execution\n战略穿透化","textPreview":"Strategy execution | 战略穿透化","textChars":24,"textLines":2,"bbox":[118,349,250,54]} +{"kind":"textbox","id":"sh/nq1o3a5w","slide":12,"text":"Translate goals into action\n目标落下去","textPreview":"Translate goals into action | 目标落下去","textChars":33,"textLines":2,"bbox":[422,349,250,54]} +{"kind":"textbox","id":"sh/0nap8f6l","slide":12,"text":"From strategy to regions, stores and individuals\n战略到区域、门店和个人","textPreview":"From strategy to regions, stores and individuals | 战略到区域、门店和个人","textChars":60,"textLines":2,"bbox":[720,349,450,54]} +{"kind":"shape","id":"sh/1oj61kn6","slide":12,"bbox":[118,416,1050,0]} +{"kind":"textbox","id":"sh/hkbm5wzu","slide":12,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,452,54,28]} +{"kind":"textbox","id":"sh/gj25cry9","slide":12,"text":"Risk sensing\n态势感知化","textPreview":"Risk sensing | 态势感知化","textChars":18,"textLines":2,"bbox":[118,438,250,54]} +{"kind":"textbox","id":"sh/fit436ho","slide":12,"text":"See risks earlier\n风险早知道","textPreview":"See risks earlier | 风险早知道","textChars":23,"textLines":2,"bbox":[422,438,250,54]} +{"kind":"textbox","id":"sh/uh0na1g3","slide":12,"text":"Move from firefighting to prevention\n从事后救火到事前预防","textPreview":"Move from firefighting to prevention | 从事后救火到事前预防","textChars":47,"textLines":2,"bbox":[720,438,450,54]} +{"kind":"shape","id":"sh/tgrm1wzy","slide":12,"bbox":[118,505,1050,0]} +{"kind":"textbox","id":"sh/sfi58ryd","slide":12,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,541,54,28]} +{"kind":"textbox","id":"sh/7u94zmhs","slide":12,"text":"Knowledge capture\n知识沉淀化","textPreview":"Knowledge capture | 知识沉淀化","textChars":23,"textLines":2,"bbox":[118,527,250,54]} +{"kind":"textbox","id":"sh/6t0n6hg7","slide":12,"text":"Make the organization smarter\n组织越来越聪明","textPreview":"Make the organization smarter | 组织越来越聪明","textChars":37,"textLines":2,"bbox":[422,527,250,54]} +{"kind":"textbox","id":"sh/dcv6dgz2","slide":12,"text":"Best practices no longer depend on a few people\n优秀能力不再依赖少数人","textPreview":"Best practices no longer depend on a few people | 优秀能力不再依赖少数人","textChars":59,"textLines":2,"bbox":[720,527,450,54]} +{"kind":"shape","id":"sh/cbm5kbyh","slide":12,"bbox":[118,594,1050,0]} +{"kind":"notes","id":"nt/8f2psfyx","slide":12,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/hgzapcr6","slide":13,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/3yxgbqdg","slide":13,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/q50nydsj","slide":13,"text":"The larger the network, the greater the value of replication.\n门店越多,复制优秀做法的价值越大","textPreview":"The larger the network, the greater the value of replication. | 门店越多,复制优秀做法的价值越大","textChars":78,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/bq9orito","slide":13,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/o3i5w3ad","slide":13,"text":"13","textPreview":"13","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/p4r6p8by","slide":13,"bbox":[42,182,360,250]} +{"kind":"shape","id":"sh/21gnuts7","slide":13,"bbox":[42,182,7,250]} +{"kind":"textbox","id":"sh/32ponyts","slide":13,"text":"Less dependence on star performers 不依赖能人","textPreview":"Less dependence on star performers 不依赖能人","textChars":41,"textLines":1,"bbox":[66,204,314,40]} +{"kind":"textbox","id":"sh/gzy5s3a1","slide":13,"text":"Turn strong store-manager practices into rules, cases and SOPs.\n优秀店长的做法沉淀为规则、案例和 SOP。","textPreview":"Turn strong store-manager practices into rules, cases and SOPs. | 优秀店长的做法沉淀为规则、案例和 SOP。","textChars":85,"textLines":2,"bbox":[66,256,314,158]} +{"kind":"shape","id":"sh/1076lobm","slide":13,"bbox":[443,182,360,250]} +{"kind":"shape","id":"sh/hcfy9k3u","slide":13,"bbox":[443,182,7,250]} +{"kind":"textbox","id":"sh/gb6x0zm9","slide":13,"text":"Scale without losing control 扩张不失控","textPreview":"Scale without losing control 扩张不失控","textChars":35,"textLines":1,"bbox":[467,204,314,40]} +{"kind":"textbox","id":"sh/vaxg7ulo","slide":13,"text":"Replicate proven actions by store profile.\n验证有效的改善方案,可按门店特征分类复制。","textPreview":"Replicate proven actions by store profile. | 验证有效的改善方案,可按门店特征分类复制。","textChars":64,"textLines":2,"bbox":[467,256,314,158]} +{"kind":"shape","id":"sh/u9ofyp43","slide":13,"bbox":[844,182,360,250]} +{"kind":"shape","id":"sh/t8fy5k3i","slide":13,"bbox":[844,182,7,250]} +{"kind":"textbox","id":"sh/876xwfmx","slide":13,"text":"Capabilities compound 能力持续复利","textPreview":"Capabilities compound 能力持续复利","textChars":29,"textLines":1,"bbox":[868,204,314,40]} +{"kind":"textbox","id":"sh/7mdg3als","slide":13,"text":"Scenarios, models, AI recommendations and decision feedback reinforce one another.\n场景、模型、AI 建议与决策反馈相互增强。","textPreview":"Scenarios, models, AI recommendations and decision feedback reinforce one another. | 场景、模型、AI 建议与决策反馈相互增强。","textChars":104,"textLines":2,"bbox":[868,256,314,158]} +{"kind":"shape","id":"sh/6l4fu547","slide":13,"bbox":[120,520,980,0]} +{"kind":"shape","id":"sh/lkvy103m","slide":13,"bbox":[104,502,38,38]} +{"kind":"textbox","id":"sh/kjmxsfm1","slide":13,"text":"30 stores 30 家","textPreview":"30 stores 30 家","textChars":15,"textLines":1,"bbox":[94,555,150,28]} +{"kind":"textbox","id":"sh/cnqh8fux","slide":13,"text":"Managed by people 靠人盯","textPreview":"Managed by people 靠人盯","textChars":22,"textLines":1,"bbox":[94,589,170,24]} +{"kind":"shape","id":"sh/xozyhkbi","slide":13,"bbox":[584,502,38,38]} +{"kind":"textbox","id":"sh/q18f65cr","slide":13,"text":"100 stores 100 家","textPreview":"100 stores 100 家","textChars":17,"textLines":1,"bbox":[574,555,150,28]} +{"kind":"textbox","id":"sh/bmhgfatc","slide":13,"text":"Managed by process 靠机制","textPreview":"Managed by process 靠机制","textChars":23,"textLines":1,"bbox":[574,589,170,24]} +{"kind":"shape","id":"sh/oz6x4vul","slide":13,"bbox":[1064,502,38,38]} +{"kind":"textbox","id":"sh/p0zyd0b6","slide":13,"text":"300 stores 300 家","textPreview":"300 stores 300 家","textChars":17,"textLines":1,"bbox":[1054,555,150,28]} +{"kind":"textbox","id":"sh/2xof2lcv","slide":13,"text":"Scaled through models 靠模型复制","textPreview":"Scaled through models 靠模型复制","textChars":28,"textLines":1,"bbox":[1054,589,170,24]} +{"kind":"notes","id":"nt/hgzapcr6","slide":13,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/6lsnupw7","slide":14,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":8} +{"kind":"textbox","id":"sh/kre1k3y9","slide":14,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/xc7eds76","slide":14,"text":"A real data asset is a traceable operating capability.\n真正的数据资产,是可追溯的经营能力","textPreview":"A real data asset is a traceable operating capability. | 真正的数据资产,是可追溯的经营能力","textChars":72,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/wbydknq1","slide":14,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/jepwf2pc","slide":14,"text":"14","textPreview":"14","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/idgvmx8r","slide":14,"bbox":[42,180,560,365]} +{"kind":"shape","id":"sh/5grehs7i","slide":14,"bbox":[42,180,7,365]} +{"kind":"textbox","id":"sh/kfidonqx","slide":14,"text":"Enterprise data assets 企业数据资产","textPreview":"Enterprise data assets 企业数据资产","textChars":30,"textLines":1,"bbox":[66,202,514,40]} +{"kind":"textbox","id":"sh/zi5c3y98","slide":14,"text":"Common metric definitions and accountability · Business ontology · Industry rules · Decisions and validated outcomes · Best-practice knowledge\n· 统一指标口径与责任关系\n· 门店、商品、人员、会员、供应商本体\n· 行业规则与异常模式\n· 决策、执行与验证结果\n· 最佳实践与风险知识","textPreview":"Common metric definitions and accountability · Business ontology · Industry rules · Decisions and validated outcomes · Best-practice know...","textChars":213,"textLines":6,"bbox":[66,254,514,273]} +{"kind":"shape","id":"sh/ehwvat8n","slide":14,"bbox":[678,180,560,365]} +{"kind":"shape","id":"sh/c3e1gjyd","slide":14,"bbox":[678,180,7,365]} +{"kind":"textbox","id":"sh/x4ni9ofy","slide":14,"text":"Financing and due-diligence support 融资与尽调支持","textPreview":"Financing and due-diligence support 融资与尽调支持","textChars":44,"textLines":1,"bbox":[702,202,514,40]} +{"kind":"textbox","id":"sh/a1wze9g7","slide":14,"text":"Store-level P&L and cash flow · Revenue stability · Risk and remediation records · Forecasts · Traceable operating evidence\n· 门店级损益与现金流\n· 收入稳定性分析\n· 风险预警与整改记录\n· 未来经营预测\n· 更完整、可追溯的经营证明","textPreview":"Store-level P&L and cash flow · Revenue stability · Risk and remediation records · Forecasts · Traceable operating evidence | · 门店级损益与现金流...","textChars":181,"textLines":6,"bbox":[702,254,514,273]} +{"kind":"textbox","id":"sh/b2507exs","slide":14,"text":"Scope: data and analytical support only; no promise of bank credit or financing outcomes. 边界:提供数据与分析支持,不承诺银行授信或融资结果。","textPreview":"Scope: data and analytical support only; no promise of bank credit or financing outcomes. 边界:提供数据与分析支持,不承诺银行授信或融资结果。","textChars":117,"textLines":1,"bbox":[42,578,1000,34]} +{"kind":"notes","id":"nt/6lsnupw7","slide":14,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/vaxsvy10","slide":15,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":15} +{"kind":"textbox","id":"sh/cbuh8nmh","slide":15,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/547mhg3m","slide":15,"text":"Production data must remain within clear security boundaries.\n生产数据必须留在清晰的安全边界内","textPreview":"Production data must remain within clear security boundaries. | 生产数据必须留在清晰的安全边界内","textChars":78,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/k3y5ov21","slide":15,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/76p4jqls","slide":15,"text":"15","textPreview":"15","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/65gnqlk7","slide":15,"bbox":[42,180,360,170]} +{"kind":"shape","id":"sh/t87ml0ji","slide":15,"bbox":[42,180,7,170]} +{"kind":"textbox","id":"sh/s7y5sv2x","slide":15,"text":"Deployment boundary 部署边界","textPreview":"Deployment boundary 部署边界","textChars":25,"textLines":1,"bbox":[66,202,314,40]} +{"kind":"textbox","id":"sh/na5476l8","slide":15,"text":"Does not replace transaction systems; read-only or controlled integration.\n不替代现有交易系统,只读或受控对接。","textPreview":"Does not replace transaction systems; read-only or controlled integration. | 不替代现有交易系统,只读或受控对接。","textChars":93,"textLines":2,"bbox":[66,254,314,78]} +{"kind":"shape","id":"sh/m9c3e1kn","slide":15,"bbox":[443,180,360,170]} +{"kind":"shape","id":"sh/wrm9kvep","slide":15,"bbox":[443,180,7,170]} +{"kind":"textbox","id":"sh/hsvat0fa","slide":15,"text":"Least privilege 最小权限","textPreview":"Least privilege 最小权限","textChars":21,"textLines":1,"bbox":[467,202,314,40]} +{"kind":"textbox","id":"sh/upkrilwj","slide":15,"text":"Access by role across owner, head office, region and store.\n老板、总部、区域、门店按职责查看。","textPreview":"Access by role across owner, head office, region and store. | 老板、总部、区域、门店按职责查看。","textChars":77,"textLines":2,"bbox":[467,254,314,78]} +{"kind":"shape","id":"sh/vqdsrqx4","slide":15,"bbox":[844,180,360,170]} +{"kind":"shape","id":"sh/4vm9ovel","slide":15,"bbox":[844,180,7,170]} +{"kind":"textbox","id":"sh/5wvax0f6","slide":15,"text":"Sensitive-data protection 敏感保护","textPreview":"Sensitive-data protection 敏感保护","textChars":31,"textLines":1,"bbox":[868,202,314,40]} +{"kind":"textbox","id":"sh/it4rm5wv","slide":15,"text":"Classify, mask and audit member, payroll and financial details.\n会员、薪酬、财务明细分级、脱敏与审计。","textPreview":"Classify, mask and audit member, payroll and financial details. | 会员、薪酬、财务明细分级、脱敏与审计。","textChars":83,"textLines":2,"bbox":[868,254,314,78]} +{"kind":"shape","id":"sh/judsvqxg","slide":15,"bbox":[42,390,360,170]} +{"kind":"shape","id":"sh/0z29cbyh","slide":15,"bbox":[42,390,7,170]} +{"kind":"textbox","id":"sh/l0bqlgf2","slide":15,"text":"Traceable AI AI 可追溯","textPreview":"Traceable AI AI 可追溯","textChars":20,"textLines":1,"bbox":[66,412,314,40]} +{"kind":"textbox","id":"sh/1kjyt83e","slide":15,"text":"Key conclusions show evidence, timing, logic and scope.\n重要结论显示依据、时间、路径和适用边界。","textPreview":"Key conclusions show evidence, timing, logic and scope. | 重要结论显示依据、时间、路径和适用边界。","textChars":76,"textLines":2,"bbox":[66,464,314,78]} +{"kind":"shape","id":"sh/gjax03m9","slide":15,"bbox":[443,390,360,170]} +{"kind":"shape","id":"sh/fi1grylo","slide":15,"bbox":[443,390,7,170]} +{"kind":"textbox","id":"sh/ehsfyt43","slide":15,"text":"Human approval 人工审批","textPreview":"Human approval 人工审批","textChars":20,"textLines":1,"bbox":[467,412,314,40]} +{"kind":"textbox","id":"sh/p8jyx83q","slide":15,"text":"High-impact decisions require approval by authorized management.\n高影响决策必须经有权限的管理者审批。","textPreview":"High-impact decisions require approval by authorized management. | 高影响决策必须经有权限的管理者审批。","textChars":83,"textLines":2,"bbox":[467,464,314,78]} +{"kind":"shape","id":"sh/o7ah4nm5","slide":15,"bbox":[844,390,360,170]} +{"kind":"shape","id":"sh/361gvilk","slide":15,"bbox":[844,390,7,170]} +{"kind":"textbox","id":"sh/25sf2d4z","slide":15,"text":"Full audit trail 全程留痕","textPreview":"Full audit trail 全程留痕","textChars":22,"textLines":1,"bbox":[868,412,314,40]} +{"kind":"textbox","id":"sh/dc3y1s3m","slide":15,"text":"Access, recommendations, edits, approvals and outcomes are auditable.\n访问、建议、修改、审批和执行结果均可审计。","textPreview":"Access, recommendations, edits, approvals and outcomes are auditable. | 访问、建议、修改、审批和执行结果均可审计。","textChars":91,"textLines":2,"bbox":[868,464,314,78]} +{"kind":"notes","id":"nt/vaxsvy10","slide":15,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/gny5sjyp","slide":16,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/ih0jedob","slide":16,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/8z2h8bq1","slide":16,"text":"Prove the value in eight weeks before scaling.\n先用 8 周证明价值,再决定扩大范围","textPreview":"Prove the value in eight weeks before scaling. | 先用 8 周证明价值,再决定扩大范围","textChars":65,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/9kby1g7m","slide":16,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/ytkf2h8j","slide":16,"text":"16","textPreview":"16","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"shape","id":"sh/zutgvm94","slide":16,"bbox":[66,340,1100,0]} +{"kind":"shape","id":"sh/kv2h4rqp","slide":16,"bbox":[54,322,38,38]} +{"kind":"textbox","id":"sh/lwbyxwra","slide":16,"text":"Week 1 第 1 周","textPreview":"Week 1 第 1 周","textChars":13,"textLines":1,"bbox":[49,206,200,28]} +{"kind":"textbox","id":"sh/ip4zel83","slide":16,"text":"Select a profit initiative\n选定利润专项","textPreview":"Select a profit initiative | 选定利润专项","textChars":33,"textLines":2,"bbox":[49,250,205,55]} +{"kind":"textbox","id":"sh/3qdg7qpo","slide":16,"text":"Baseline · Definition · Owner\n基线·口径·责任人","textPreview":"Baseline · Definition · Owner | 基线·口径·责任人","textChars":39,"textLines":2,"bbox":[49,394,205,84]} +{"kind":"shape","id":"sh/fm1gzq5o","slide":16,"bbox":[293,322,38,38]} +{"kind":"textbox","id":"sh/e1sf65o3","slide":16,"text":"Weeks 1–2 第 1—2 周","textPreview":"Weeks 1–2 第 1—2 周","textChars":18,"textLines":1,"bbox":[288,206,200,28]} +{"kind":"textbox","id":"sh/1ojy10ne","slide":16,"text":"Connect existing data\n连接现有数据","textPreview":"Connect existing data | 连接现有数据","textChars":28,"textLines":2,"bbox":[288,250,205,55]} +{"kind":"textbox","id":"sh/gnax8v6t","slide":16,"text":"Data inventory · Quality · Common definitions\n数据清单·质量·统一口径","textPreview":"Data inventory · Quality · Common definitions | 数据清单·质量·统一口径","textChars":58,"textLines":2,"bbox":[288,394,205,84]} +{"kind":"shape","id":"sh/nqlg3a5k","slide":16,"bbox":[532,322,38,38]} +{"kind":"textbox","id":"sh/2pcfa5oz","slide":16,"text":"Weeks 3–4 第 3—4 周","textPreview":"Weeks 3–4 第 3—4 周","textChars":18,"textLines":1,"bbox":[527,206,200,28]} +{"kind":"textbox","id":"sh/ps3y5knq","slide":16,"text":"Find opportunities and causes\n发现机会与根因","textPreview":"Find opportunities and causes | 发现机会与根因","textChars":37,"textLines":2,"bbox":[527,250,205,55]} +{"kind":"textbox","id":"sh/oruhcf65","slide":16,"text":"Exception · Financial impact · Evidence\n异常·影响金额·证据","textPreview":"Exception · Financial impact · Evidence | 异常·影响金额·证据","textChars":50,"textLines":2,"bbox":[527,394,205,84]} +{"kind":"shape","id":"sh/bulg7u5g","slide":16,"bbox":[771,322,38,38]} +{"kind":"textbox","id":"sh/atczepob","slide":16,"text":"Weeks 5–6 第 5—6 周","textPreview":"Weeks 5–6 第 5—6 周","textChars":18,"textLines":1,"bbox":[766,206,200,28]} +{"kind":"textbox","id":"sh/mpgj6t8j","slide":16,"text":"Drive corrective action\n推动整改","textPreview":"Drive corrective action | 推动整改","textChars":28,"textLines":2,"bbox":[766,250,205,55]} +{"kind":"textbox","id":"sh/7qp0zepo","slide":16,"text":"Task · Deadline · Execution record\n任务·期限·执行记录","textPreview":"Task · Deadline · Execution record | 任务·期限·执行记录","textChars":45,"textLines":2,"bbox":[766,394,205,84]} +{"kind":"shape","id":"sh/8by18jq9","slide":16,"bbox":[1010,322,38,38]} +{"kind":"textbox","id":"sh/9c7i1o7u","slide":16,"text":"Weeks 7–8 第 7—8 周","textPreview":"Weeks 7–8 第 7—8 周","textChars":18,"textLines":1,"bbox":[1005,206,200,28]} +{"kind":"textbox","id":"sh/ylwj2987","slide":16,"text":"Verify and replicate\n验证并复制","textPreview":"Verify and replicate | 验证并复制","textChars":26,"textLines":2,"bbox":[1005,250,205,55]} +{"kind":"textbox","id":"sh/zm50veps","slide":16,"text":"Improvement value · Acceptance · Best practice\n改善金额·验收·最佳实践","textPreview":"Improvement value · Acceptance · Best practice | 改善金额·验收·最佳实践","textChars":59,"textLines":2,"bbox":[1005,394,205,84]} +{"kind":"shape","id":"sh/kne14jqd","slide":16,"bbox":[42,550,1196,60]} +{"kind":"textbox","id":"sh/lo7ixo7y","slide":16,"text":"Prioritize cases with available data, measurable impact, executable actions and results verifiable in eight weeks. 优先选择:数据可获得 · 影响可测算 · 动作可执行 · 八周可验证。","textPreview":"Prioritize cases with available data, measurable impact, executable actions and results verifiable in eight weeks. 优先选择:数据可获得 · 影响可测算 · ...","textChars":151,"textLines":1,"bbox":[66,567,1148,30]} +{"kind":"notes","id":"nt/gny5sjyp","slide":16,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/14bup87q","slide":17,"title":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textShapes":19} +{"kind":"textbox","id":"sh/ytc7a1gv","slide":17,"text":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textPreview":"Xuanmou Intelligence · Multi-site Operations 玄谋智脑 · 连锁企业经营决策","textChars":61,"textLines":1,"bbox":[42,28,820,24]} +{"kind":"textbox","id":"sh/1c7e50ni","slide":17,"text":"Measure business improvement, not feature count.\n验收看经营改善,不看功能数量","textPreview":"Measure business improvement, not feature count. | 验收看经营改善,不看功能数量","textChars":63,"textLines":2,"bbox":[42,62,1160,70]} +{"kind":"shape","id":"sh/gbedwfmx","slide":17,"bbox":[42,139,1196,0]} +{"kind":"textbox","id":"sh/rm5czq50","slide":17,"text":"17","textPreview":"17","textChars":2,"textLines":1,"bbox":[1182,672,56,18]} +{"kind":"textbox","id":"sh/6lwvql4v","slide":17,"text":"01","textPreview":"01","textChars":2,"textLines":1,"bbox":[42,188,50,26]} +{"kind":"textbox","id":"sh/t8ne10n6","slide":17,"text":"Business outcomes\n经营结果","textPreview":"Business outcomes | 经营结果","textChars":22,"textLines":2,"bbox":[112,174,230,48]} +{"kind":"textbox","id":"sh/snedsvml","slide":17,"text":"Contribution profit · Cost · Waste · Inventory cash\n贡献利润·成本·损耗·库存资金","textPreview":"Contribution profit · Cost · Waste · Inventory cash | 贡献利润·成本·损耗·库存资金","textChars":67,"textLines":2,"bbox":[395,174,760,48]} +{"kind":"shape","id":"sh/jilcvq54","slide":17,"bbox":[112,239,1040,0]} +{"kind":"textbox","id":"sh/ihcvml4j","slide":17,"text":"02","textPreview":"02","textChars":2,"textLines":1,"bbox":[42,274,50,26]} +{"kind":"textbox","id":"sh/4by9or6l","slide":17,"text":"Issue detection\n问题发现","textPreview":"Issue detection | 问题发现","textChars":20,"textLines":2,"bbox":[112,260,230,48]} +{"kind":"textbox","id":"sh/pc7qhwn6","slide":17,"text":"Detection cycle · Valid-exception rate · Impact coverage\n发现周期·有效异常率·影响覆盖","textPreview":"Detection cycle · Valid-exception rate · Impact coverage | 发现周期·有效异常率·影响覆盖","textChars":72,"textLines":2,"bbox":[395,260,760,48]} +{"kind":"shape","id":"sh/29grm1of","slide":17,"bbox":[112,325,1040,0]} +{"kind":"textbox","id":"sh/3ap8fm50","slide":17,"text":"03","textPreview":"03","textChars":2,"textLines":1,"bbox":[42,360,50,26]} +{"kind":"textbox","id":"sh/gnepkr69","slide":17,"text":"Execution loop\n执行闭环","textPreview":"Execution loop | 执行闭环","textChars":19,"textLines":2,"bbox":[112,346,230,48]} +{"kind":"textbox","id":"sh/honqdwnu","slide":17,"text":"Acceptance · On-time completion · Remediation effectiveness\n接收率·按期完成率·整改有效率","textPreview":"Acceptance · On-time completion · Remediation effectiveness | 接收率·按期完成率·整改有效率","textChars":75,"textLines":2,"bbox":[395,346,760,48]} +{"kind":"shape","id":"sh/ulw7ihoj","slide":17,"bbox":[112,411,1040,0]} +{"kind":"textbox","id":"sh/fm58bm54","slide":17,"text":"04","textPreview":"04","textChars":2,"textLines":1,"bbox":[42,446,50,26]} +{"kind":"textbox","id":"sh/0ji9wb6t","slide":17,"text":"Organizational replication\n组织复制","textPreview":"Organizational replication | 组织复制","textChars":31,"textLines":2,"bbox":[112,432,230,48]} +{"kind":"textbox","id":"sh/14rqpgne","slide":17,"text":"Stores replicated · Success rate · New-store ramp time\n复制门店数·成功率·新店导入时间","textPreview":"Stores replicated · Success rate · New-store ramp time | 复制门店数·成功率·新店导入时间","textChars":71,"textLines":2,"bbox":[395,432,760,48]} +{"kind":"shape","id":"sh/90nq9gfi","slide":17,"bbox":[112,497,1040,0]} +{"kind":"textbox","id":"sh/8ze9gbyx","slide":17,"text":"05","textPreview":"05","textChars":2,"textLines":1,"bbox":[42,532,50,26]} +{"kind":"textbox","id":"sh/ny5876xc","slide":17,"text":"Data quality\n数据质量","textPreview":"Data quality | 数据质量","textChars":17,"textLines":2,"bbox":[112,518,230,48]} +{"kind":"textbox","id":"sh/mxw7e1gr","slide":17,"text":"Consistent · Complete · Timely · Traceable\n口径一致·完整·及时·可追溯","textPreview":"Consistent · Complete · Timely · Traceable | 口径一致·完整·及时·可追溯","textChars":57,"textLines":2,"bbox":[395,518,760,48]} +{"kind":"shape","id":"sh/lwnq5gf6","slide":17,"bbox":[112,583,1040,0]} +{"kind":"shape","id":"sh/0vepcbyl","slide":17,"bbox":[42,612,1196,42]} +{"kind":"textbox","id":"sh/zul836xg","slide":17,"text":"Agree the baseline, definitions and external factors at launch so normal variation is not mistaken for system impact. 项目启动时即确认基线、口径和外部影响因素,避免将自然波动误认为系统收益。","textPreview":"Agree the baseline, definitions and external factors at launch so normal variation is not mistaken for system impact. 项目启动时即确认基线、口径和外部影响...","textChars":155,"textLines":1,"bbox":[64,622,1152,24]} +{"kind":"notes","id":"nt/14bup87q","slide":17,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} +{"kind":"slide","id":"sl/y5wne50z","slide":18,"title":"Xuanmou Intelligence 玄谋智脑","textShapes":4} +{"kind":"textbox","id":"sh/4felwzu5","slide":18,"text":"Xuanmou Intelligence 玄谋智脑","textPreview":"Xuanmou Intelligence 玄谋智脑","textChars":26,"textLines":1,"bbox":[42,35,240,30]} +{"kind":"textbox","id":"sh/wrelszu9","slide":18,"text":"Start with the first measurable profit opportunities.\n先用 8 周,找到第一批可验证的利润机会","textPreview":"Start with the first measurable profit opportunities. | 先用 8 周,找到第一批可验证的利润机会","textChars":74,"textLines":2,"bbox":[42,160,1040,210]} +{"kind":"textbox","id":"sh/hsn2l4bu","slide":18,"text":"Scale only after the value is proven.\n再决定如何扩大应用范围","textPreview":"Scale only after the value is proven. | 再决定如何扩大应用范围","textChars":49,"textLines":2,"bbox":[42,420,850,52]} +{"kind":"shape","id":"sh/itw3upcf","slide":18,"bbox":[42,610,1196,0]} +{"kind":"textbox","id":"sh/je5knut0","slide":18,"text":"Find issues earlier · Make corrective action stick · Replicate every proven improvement 让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店","textPreview":"Find issues earlier · Make corrective action stick · Replicate every proven improvement 让问题更早被发现 · 让整改真正落地 · 让每一次改善复制到更多门店","textChars":123,"textLines":1,"bbox":[42,636,1100,30]} +{"kind":"notes","id":"nt/y5wne50z","slide":18,"text":"[Sources]\n用户提供文档:《玄谋智脑建设蓝图_老板决策版.md》。案例、指标与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\n中文内容来自用户提供的老板决策版;英文为商务意译。案例与金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。\n\n[Sources]\nAll visible Chinese content is based on the user-supplied owner decision deck. English is a concise business translation. Cases and figures remain anonymous composite examples or illustrative estimates.\n\n[Sources]\nEnglish-primary edition derived from the user-supplied bilingual owner decision deck. English is the primary decision language; Chinese is retained as a secondary reference. Cases and figures remain anonymous composite examples or illustrative estimates."} \ No newline at end of file diff --git a/玄谋智脑建设蓝图_老板决策版.md b/玄谋智脑建设蓝图_老板决策版.md new file mode 100644 index 0000000..ed237ec --- /dev/null +++ b/玄谋智脑建设蓝图_老板决策版.md @@ -0,0 +1,318 @@ +# 玄谋智脑:让老板看清每一分利润,管住每一家门店 + +> **品牌名称**:玄谋智脑 +> **核心定位**:面向连锁企业的行业数字本体与 AI 经营智脑。 +> **一句话价值**:不再新建一套孤立系统,而是整合企业现有数据,找到利润漏洞、推动责任人整改、验证改善结果,并将优秀经验复制到每一家门店。 +> **保密说明**:本文案中的企业、门店、指标和金额均为匿名复合案例或模拟测算,不代表任何单一客户的生产数据。 + +--- + +## 一、老板真正需要回答的三个问题 + +1. **我现在到底在哪里亏钱?** +2. **哪些动作能够真正提升利润?** +3. **企业从 30 家店扩张到 300 家店后,能否依然看得清、管得住?** + +连锁企业通常不缺数据,缺的是将数据转化为经营判断和改善结果的能力。真正的问题不是“有没有报表”,而是: + +- 营收增长,为什么利润没有同步增长? +- 哪些门店看起来赚钱,实际正在占用资金和管理资源? +- 哪些促销增加了订单,却消耗了贡献利润? +- 哪些 SKU 销量不低,却毛利不足、损耗过高? +- 哪些班次人员闲置,哪些高峰时段又人手不足? +- 哪些门店应该整改、缩编、迁址甚至关停? + +--- + +## 二、玄谋智脑不是又一套 BI + +BI 告诉管理者“发生了什么”;玄谋智脑还要继续回答: + +- 为什么发生? +- 影响了多少利润? +- 应该由谁采取什么动作? +- 什么时候完成? +- 执行后是否真的改善? +- 这一次经验能否复制到其他门店? + +### 经营改善闭环 + +```text +发现利润异常 + ↓ +穿透到区域、门店、SKU、班次或订单 + ↓ +测算影响金额与优先级 + ↓ +生成改善方案,明确责任人和期限 + ↓ +跟踪执行过程,验证利润是否改善 + ↓ +将有效做法沉淀为企业最佳实践 +``` + +--- + +## 三、案例一:从 SKU 数量中找到隐藏成本 + +> **匿名复合案例·SKU 组合决策** + +某区域连锁品牌约有 480 个在售 SKU。其中后 20% 的 SKU 仅贡献约 3% 销售额,却持续占用库存资金,并增加采购、盘点、报损和培训复杂度。 + +### 玄谋智脑发现 + +| 问题类型 | 模拟识别结果 | 经营影响 | +|:---|---:|:---| +| 低销量、低毛利、高损耗 SKU | 37 个 | 占用库存并产生报损 | +| 高销量但低贡献利润 SKU | 9 个 | 创造了营收假象 | +| 可共享或替换原料 SKU | 16 个 | 可降低采购与仓储复杂度 | +| 价格带重叠 SKU | 22 个 | 内部分流,增加顾客选择成本 | + +### 建议动作 + +- 下架或区域性停售低效 SKU。 +- 调整高销量低利润商品的定价、份量或配方。 +- 将可替换 SKU 纳入共享原料体系。 +- 保留必要的引流商品,但限制优惠叠加。 + +### 老板看到的结果 + +> 模拟测算:释放库存资金约 80 万元,年度减少报损约 35 万元,综合毛利率提升约 0.6 个百分点。 + +--- + +## 四、案例二:排班不是人数问题,而是供需匹配问题 + +> **匿名复合案例·门店 A-017** + +某门店月营收排名区域前三,但人效排名倒数。按月度总人数看并不显眼,穿透到半小时粒度后才发现: + +- 工作日上午存在大量闲置工时。 +- 周五晚高峰又经常缺人。 +- 班次主要依据历史习惯,没有匹配客流与订单预测。 +- 加班集中在少数岗位,正式工与小时工结构不合理。 + +### 建议动作 + +1. 按半小时预测客流、订单量和工作量。 +2. 调整早晚班起止时间,减少无效重叠。 +3. 高峰增加小时工,低峰减少固定工时。 +4. 将备餐任务提前到客流爬升前。 +5. 同时监控出品时效和顾客满意度,避免单纯压缩人力。 + +### 老板看到的结果 + +> 模拟测算:在不降低服务质量的前提下,单店每月节约人工成本约 1.8 万元;复制到 60 家门店,年度改善空间约 1,296 万元。 + +--- + +## 五、案例三:订单增长了,促销却可能正在消耗利润 + +> **匿名复合案例·营销活动 X** + +某促销活动带来约 23% 的订单增长,但穿透计算优惠、平台佣金、商品毛利、新增人工与原价订单替代后,活动贡献利润为负。 + +### 根因 + +- 低毛利商品在活动订单中占比大幅上升。 +- 高价值会员也领取了无差别优惠。 +- 一部分促销订单只是替代原价订单,并非真实增量。 +- 原有评价只看订单数和营收,没有看增量贡献利润。 + +### 改善方案 + +- 将优惠定向投放给可能流失或需要唤醒的会员。 +- 区分拉新券、复购券和唤醒券。 +- 限制低毛利商品参与优惠叠加。 +- 用“每投入 1 元营销费用增加多少贡献利润”作为核心评价指标。 + +> **经营结论**:促销不应只为订单增长负责,而应为增量利润负责。 + +--- + +## 六、案例四:将门店关停从经验判断变为情景决策 + +> **匿名复合案例·门店 D-006** + +某门店仍有营业收入,因此管理层长期无法决定是否关停。玄谋智脑不只看单月损益,还综合分析: + +- 门店贡献利润、现金流与资金占用。 +- 租金续约、装修与设备折旧。 +- 周边客群、竞争和商圈变化。 +- 同品牌门店的订单蚕食与会员迁移可能性。 +- 关停、整改、迁址和缩店的一次性成本。 + +### 十二个月情景测算 + +| 方案 | 模拟结果 | 决策建议 | +|:---|:---|:---| +| 继续经营 | 预计亏损 92 万元 | 不建议 | +| 投入整改 | 预计亏损降至 35 万元 | 风险较高,设置止损线 | +| 缩小面积 | 预计接近盈亏平衡 | 租约可重谈时考虑 | +| 关停并迁移会员 | 预计减少亏损 76 万元 | 优先建议 | + +> 玄谋智脑不替老板做关店决定,而是让难以下决心的经验判断,变成有数据依据、情景测算和退出预案的经营决策。 + +--- + +## 七、老板、总部、区域、店长共用一个经营闭环 + +| 角色 | 需要回答的问题 | 玄谋智脑提供的能力 | +|:---|:---|:---| +| **老板** | 企业是否真正赚钱?风险在哪里?资源应该投向哪里? | 企业经营全景、利润树、风险排名、情景推演 | +| **总部** | 哪些区域和业务需要调整?政策是否有效? | 跨区域对标、异常归因、资源分配与政策评估 | +| **区域** | 哪些门店异常?应该帮助谁、整改谁? | 门店分级、异常排名、整改任务与验收 | +| **店长** | 今天哪里没达标?先做什么? | 日目标卡、偏差提醒、行动建议与进度反馈 | + +```text +老板看到结果 → 总部找到原因 → 区域推动整改 → 店长执行动作 → 结果回到经营大盘 +``` + +--- + +## 八、AI 不是器人顾问,而是经营分析与执行助手 + +### AI 可以承担 + +- 自动理解并关联跨系统经营数据。 +- 持续扫描人难以长期监控的异常。 +- 将问题穿透到区域、门店、SKU、班次和订单。 +- 调用行业规则、企业制度和历史案例生成建议。 +- 模拟不同方案对营收、利润和现金流的影响。 +- 自动形成任务,跟踪执行并验证结果。 +- 从成功与失败结果中更新最佳实践。 + +### 管理边界 + +> AI 负责发现、归因、测算、建议和跟踪;价格调整、人员处置、供应商更换、门店关停等重要决策,仍由有权限的管理者审批。 + +--- + +## 九、为什么玄谋智脑不是普通 BI + +| 维度 | 普通 BI | 玄谋智脑 | +|:---|:---|:---| +| 核心定位 | 展示报表 | 驱动经营决策与改善 | +| 数据范围 | 单系统或主题报表 | 关联企业现有多系统数据 | +| 业务语义 | 字段和指标 | 门店、商品、人员、会员等行业本体及关系 | +| 问题发现 | 人主动看数据 | 系统持续发现并分级推送 | +| 问题处理 | 报告异常 | 归因、测算、生成方案和整改任务 | +| 结果验证 | 通常不跟踪 | 验证改善效果并更新经验 | +| 长期价值 | 报表越来越多 | 行业模型和企业知识越用越成熟 | + +--- + +## 十、支撑规模扩张的五层能力 + +| 能力层 | 作用 | 老板获得的价值 | +|:---|:---|:---| +| **数据资产化** | 连接 POS、ERP、WMS、HR、财务和 Excel,统一口径 | 一个数字、一个来源,减少无效争论 | +| **运营指标化** | 建立战略、运营、执行三级指标和利润关系 | 问题自动浮现,并能穿透到根因 | +| **战略穿透化** | 将年度目标拆解到区域、门店、个人和每日动作 | 战略不再留在 PPT 里 | +| **态势感知化** | 监控异常、预测趋势、推演方案 | 从事后救火转向事前预防 | +| **知识沉淀化** | 将有效动作沉淀为 SOP、规则和案例 | 优秀能力不再依赖少数能人 | + +--- + +## 十一、长期价值:企业越大,复制价值越高 + +### 1. 从依赖能人到依赖组织能力 + +优秀店长的动作被验证后,可沉淀为规则、案例和 SOP,降低换人带来的经营波动。 + +### 2. 扩张不再必然带来管理失控 + +单店验证有效的 SKU、排班、促销和损耗改善方案,可按门店特征分类复制,不必依靠老板逐店盯导。 + +### 3. 沉淀可复用的数据资产 + +玄谋智脑沉淀的不只是原始数据,还包括: + +- 统一指标口径和责任关系。 +- 门店、商品、人员、会员、供应商等业务本体。 +- 行业规则、异常模式和改善方案。 +- 决策过程、执行记录和验证结果。 +- 企业最佳实践与风险知识。 + +### 4. 提升融资与尽调的数据可信度 + +玄谋智脑可为银行授信、融资尽调和经营证明提供更完整、可追溯的数据依据,包括门店级损益、现金流、收入稳定性、风险预警、整改记录与经营预测。 + +> **边界说明**:玄谋智脑提供数据与分析支持,不承诺银行授信或融资结果。 + +--- + +## 十二、数据安全与 AI 使用边界 + +1. **不改变生产系统主体责任**:现有 POS、ERP、WMS、财务和 HR 系统继续承担业务交易与原始记录职责。 +2. **最小权限**:老板、总部、区域和门店按职责获得不同数据范围。 +3. **敏感数据保护**:身份、联系方式、薪酬、会员和财务明细等采取分级、脱敏和审计。 +4. **AI 输出可追溯**:重要结论应展示依据指标、数据时间、分析路径与适用边界。 +5. **人工审批**:高影响决策必须由管理者审批,不允许 AI 直接执行不可逆动作。 +6. **全程留痕**:数据访问、模型建议、人工修改、审批和执行结果均可审计。 + +--- + +## 十三、八周建设路径:先证明价值,再扩大范围 + +| 阶段 | 时间 | 建设重点 | 可验收成果 | +|:---|:---|:---|:---| +| **选定利润专项** | 第 1 周 | 选择 1—2 个高价值问题,明确基线与责任人 | 专项范围、基线数据、验收口径 | +| **连接现有数据** | 第 1—2 周 | 对接相关系统和 Excel,统一主体与指标口径 | 数据清单、质量报告、口径确认 | +| **发现机会与根因** | 第 3—4 周 | 建立分析模型,输出优先级机会清单 | 异常清单、影响金额、根因证据 | +| **推动整改** | 第 5—6 周 | 生成任务,由总部、区域和店长执行 | 责任人、时限、执行记录与进度 | +| **验证并复制** | 第 7—8 周 | 对比改善前后,审核因果关系,形成复制方案 | 改善金额、验收结论、最佳实践 | + +### 建议首批专项 + +优先选择“数据可获得、影响可测算、动作可执行、八周可验证”的场景: + +- SKU 组合与菜品毛利。 +- 门店排班与人效。 +- 促销活动的增量贡献利润。 +- 库存、损耗与临期商品。 +- 低效门店整改与止损。 + +--- + +## 十四、投入产出不看“上线了多少功能” + +项目验收应围绕经营结果,而不是页面数量、报表数量或 AI 对话次数。 + +| 验收维度 | 建议指标 | +|:---|:---| +| 经营结果 | 增量贡献利润、成本减少、损耗下降、库存资金释放 | +| 问题发现 | 发现周期、有效异常率、影响金额覆盖率 | +| 执行闭环 | 任务接收率、按期完成率、整改有效率 | +| 组织复制 | 有效方案复制门店数、复制成功率、新店导入时间 | +| 数据质量 | 口径一致率、数据完整率、及时率、可追溯率 | + +> 所有收益指标应在项目启动时确认基线、计算口径和外部影响因素,避免将市场、季节或门店自然波动误认为系统收益。 + +--- + +## 十五、从单点改善到企业经营复利 + +```text +更多经营场景 + ↓ +更完整的行业数字本体 + ↓ +更成熟的运营与预测模型 + ↓ +更准确、更符合企业情况的 AI 建议 + ↓ +更高质量的执行与决策反馈 + │ + └──────── 持续复利 ────────┘ +``` + +玄谋智脑的长期价值,不是为企业生产更多数据,而是将现有数据、行业知识和管理经验沉淀为一套持续进化的决策能力。 + +--- + +## 给决策者的最后一句话 + +> # 先用 8 周找到第一批可验证的利润改善机会,再决定如何扩大应用范围。 + +真正值得投入的不是一套功能,而是一项可以让问题更早被发现、让整改真正落地、让每一次改善都能复制到更多门店的经营能力。