feat: 门店费用分析模块 + 成本分析筛选排序功能

- 新增门店费用分析模块(9个Tab组件 + 后端路由)
  - 门店贡献利润、房租租约风险、外卖佣金分析、人效坪效
  - 固定/变动费用、盈亏平衡分析、亏损门店诊断
  - 关停/续租/改造评估、门店排名
- 门店费用分析9个Tab均支持筛选、排序、正倒序
- 成本分析8个Tab添加筛选、排序、正倒序功能
  - 后端10个端点添加filter/sort/order参数支持
  - 前端8个组件添加UI控件
- 修复门店评估分类逻辑和日期格式化
- 修复盈亏平衡销售额计算(贡献毛利率≤0时设为NULL)
This commit is contained in:
freedakgmail
2026-07-29 08:22:09 +08:00
parent 3d89baf65d
commit 42e83696a0
24 changed files with 2304 additions and 32 deletions
@@ -0,0 +1,262 @@
import { useState } from 'react'
import { useQuery } from '@tanstack/react-query'
import api from '@/lib/api'
import { CollapsibleSection } from '@/components/CollapsibleSection'
import { DataTable } from '@/components/DataTable'
import { Pagination } from '@/components/Pagination'
import { LoadingSpinner } from '@/components/LoadingSpinner'
import { MetricCard } from '@/components/MetricCard'
import { formatCurrency, formatPercent, formatNumber } from '@/lib/utils'
const PAGE_SIZE = 15
const PRIORITY_COLORS: Record<string, string> = {
'P0': 'bg-red-100 text-red-700',
'P1': 'bg-orange-100 text-orange-700',
'P2': 'bg-yellow-100 text-yellow-700',
'P3': 'bg-gray-100 text-gray-700',
}
const LOSS_TYPE_COLORS: Record<string, string> = {
'理论即亏损': 'text-red-600 font-medium',
'实际超耗导致亏损': 'text-orange-600 font-medium',
'费用过高导致亏损': 'text-yellow-600 font-medium',
}
const STATUS_COLORS: Record<string, string> = {
'收入极低': 'text-red-600 font-medium',
'收入偏低': 'text-orange-600',
'食材成本率过高': 'text-red-600 font-medium',
'食材成本率偏高': 'text-orange-600',
'人工成本率严重过高': 'text-red-600 font-medium',
'人工成本率过高': 'text-red-600',
'人工成本率偏高': 'text-orange-600',
'租金占比严重过高': 'text-red-600 font-medium',
'租金占比过高': 'text-red-600',
'租金占比偏高': 'text-orange-600',
'水电燃气率过高': 'text-red-600',
'水电燃气率偏高': 'text-orange-600',
'外卖依赖度过高': 'text-red-600 font-medium',
'外卖占比较高': 'text-orange-600',
'坪效极低': 'text-red-600 font-medium',
'坪效偏低': 'text-orange-600',
'租约即将到期': 'text-red-600 font-medium',
}
interface StoreDetail {
sales_store_name: string
received: string
actual_food_cost: string
operating_expense: string
actual_store_contribution: string
actual_store_contribution_rate_pct: string
wage_expense: string
wage_rate_pct: string
rent_expense: string
rent_rate_pct: string
utility_expense: string
utility_rate_pct: string
dorm_expense: string
delivery_commission_expense: string
delivery_received: string
delivery_sales_share_pct: string
area_sqm: string
received_per_sqm: string
bill_count: string
lease_expiry_date: string
theoretical_cost: string
theoretical_store_contribution: string
theoretical_store_contribution_rate_pct: string
revenue_status: string
food_cost_status: string
wage_status: string
rent_status: string
utility_status: string
delivery_status: string
efficiency_status: string
lease_status: string
loss_type: string
diagnosis_reasons: string
diagnosis_suggestions: string
suggested_actions: string
priority: string
}
function StoreDetailModal({ store, onClose }: { store: StoreDetail | null, onClose: () => void }) {
if (!store) return null
const statusItems = [
{ label: '收入状态', value: store.revenue_status },
{ label: '食材成本', value: store.food_cost_status },
{ label: '人工成本', value: store.wage_status },
{ label: '租金占比', value: store.rent_status },
{ label: '水电燃气', value: store.utility_status },
{ label: '外卖依赖', value: store.delivery_status },
{ label: '坪效', value: store.efficiency_status },
{ label: '租约', value: store.lease_status },
]
const metrics = [
{ label: '实收', value: formatCurrency(store.received) },
{ label: '食材成本', value: formatCurrency(store.actual_food_cost) },
{ label: '营业费用', value: formatCurrency(store.operating_expense) },
{ label: '贡献利润', value: formatCurrency(store.actual_store_contribution), red: true },
{ label: '贡献率', value: formatPercent(store.actual_store_contribution_rate_pct), red: true },
{ label: '理论贡献', value: formatCurrency(store.theoretical_store_contribution) },
{ label: '理论贡献率', value: formatPercent(store.theoretical_store_contribution_rate_pct) },
{ label: '人工成本', value: formatCurrency(store.wage_expense) },
{ label: '人工成本率', value: formatPercent(store.wage_rate_pct) },
{ label: '租金', value: formatCurrency(store.rent_expense) },
{ label: '租金率', value: formatPercent(store.rent_rate_pct) },
{ label: '水电燃气', value: formatCurrency(store.utility_expense) },
{ label: '水电率', value: formatPercent(store.utility_rate_pct) },
{ label: '宿舍费用', value: formatCurrency(store.dorm_expense) },
{ label: '外卖佣金', value: formatCurrency(store.delivery_commission_expense) },
{ label: '外卖收入', value: formatCurrency(store.delivery_received) },
{ label: '外卖占比', value: formatPercent(store.delivery_sales_share_pct) },
{ label: '面积(㎡)', value: formatNumber(store.area_sqm) },
{ label: '坪效', value: formatNumber(store.received_per_sqm) },
{ label: '账单数', value: formatNumber(store.bill_count) },
{ label: '租约到期', value: store.lease_expiry_date ? new Date(store.lease_expiry_date).toLocaleDateString('zh-CN') : '-' },
]
return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50" onClick={onClose}>
<div className="bg-card rounded-lg shadow-xl max-w-3xl w-full mx-4 max-h-[90vh] overflow-auto" onClick={e => e.stopPropagation()}>
<div className="flex items-center justify-between p-4 border-b sticky top-0 bg-card z-10">
<div className="flex items-center gap-3">
<h2 className="text-lg font-bold">{store.sales_store_name}</h2>
<span className={`px-2 py-0.5 rounded text-xs font-medium ${PRIORITY_COLORS[store.priority] || ''}`}>{store.priority}</span>
<span className={`text-sm ${LOSS_TYPE_COLORS[store.loss_type] || ''}`}>{store.loss_type}</span>
</div>
<button onClick={onClose} className="text-muted-foreground hover:text-foreground text-xl"></button>
</div>
<div className="p-4 space-y-4">
<div>
<h3 className="text-sm font-medium text-muted-foreground mb-2"></h3>
<div className="grid grid-cols-3 md:grid-cols-4 gap-2">
{metrics.map((m, i) => (
<div key={i} className="rounded border p-2">
<p className="text-xs text-muted-foreground">{m.label}</p>
<p className={`text-sm font-medium ${m.red ? 'text-red-600' : ''}`}>{m.value}</p>
</div>
))}
</div>
</div>
<div>
<h3 className="text-sm font-medium text-muted-foreground mb-2"></h3>
<div className="grid grid-cols-2 md:grid-cols-4 gap-2">
{statusItems.map((s, i) => (
<div key={i} className="rounded border p-2">
<p className="text-xs text-muted-foreground">{s.label}</p>
<p className={`text-sm font-medium ${STATUS_COLORS[s.value] || ''}`}>{s.value}</p>
</div>
))}
</div>
</div>
<div>
<h3 className="text-sm font-medium text-muted-foreground mb-2"></h3>
<div className="rounded border p-3 bg-red-50">
<p className="text-sm">{store.diagnosis_reasons}</p>
</div>
</div>
<div>
<h3 className="text-sm font-medium text-muted-foreground mb-2"></h3>
<div className="rounded border p-3 bg-blue-50">
<p className="text-sm text-blue-700">{store.diagnosis_suggestions}</p>
</div>
</div>
<div>
<h3 className="text-sm font-medium text-muted-foreground mb-2"></h3>
<div className="flex flex-wrap gap-2">
{store.suggested_actions.split('、').map((action, i) => (
<span key={i} className="px-3 py-1 rounded-full bg-primary/10 text-primary text-xs font-medium">{action}</span>
))}
</div>
</div>
</div>
</div>
</div>
)
}
export function LossDiagnosisTab() {
const [page, setPage] = useState(1)
const [sort, setSort] = useState('actual_store_contribution')
const [filter, setFilter] = useState('')
const [order, setOrder] = useState('asc')
const [selectedStore, setSelectedStore] = useState<StoreDetail | null>(null)
const { data, isLoading } = useQuery({ queryKey: ['se/loss-diagnosis', page, sort, filter, order], queryFn: () => api.get(`/store-expense/loss-diagnosis?page=${page}&page_size=${PAGE_SIZE}&sort=${sort}&filter=${filter}&order=${order}`) })
if (isLoading) return <LoadingSpinner text="加载亏损门店诊断..." />
const rows = (data as any)?.data || []
const meta = (data as any)?.meta || { page, pageSize: PAGE_SIZE, total: 0 }
const p0Count = rows.filter((r: any) => r.priority === 'P0').length
const p1Count = rows.filter((r: any) => r.priority === 'P1').length
const totalLoss = rows.reduce((sum: number, r: any) => sum + parseFloat(r.actual_store_contribution || 0), 0)
return (
<div className="space-y-4">
<div className="grid grid-cols-2 md:grid-cols-4 gap-3">
<MetricCard title="亏损门店数" value={meta.total} unit="家" description="贡献利润 ≤ 0 的门店" />
<MetricCard title="P0 紧急" value={p0Count} unit="家" description="贡献率 < -20%" />
<MetricCard title="P1 整改" value={p1Count} unit="家" description="贡献率 -20% ~ -5%" />
<MetricCard title="亏损金额合计" value={totalLoss} format="currency" description="当前页亏损门店贡献利润之和" />
</div>
<CollapsibleSection title="亏损门店诊断" subtitle="点击门店名称查看详情">
<div className="flex gap-2 mb-3 flex-wrap">
{[
{ key: '', label: '全部' },
{ key: 'P0', label: 'P0 紧急' },
{ key: 'P1', label: 'P1 整改' },
{ key: 'P2', label: 'P2 观察' },
].map(f => (
<button key={f.key} onClick={() => { setFilter(f.key); setPage(1) }} className={`px-3 py-1 rounded text-xs ${filter === f.key ? 'bg-primary text-primary-foreground' : 'bg-muted'}`}>{f.label}</button>
))}
<span className="mx-2 text-muted-foreground">|</span>
{[
{ key: 'actual_store_contribution', label: '贡献利润' },
{ key: 'actual_store_contribution_rate_pct', label: '贡献率' },
{ key: 'received', label: '实收' },
{ key: 'wage_rate_pct', label: '人工率' },
{ key: 'rent_rate_pct', label: '租金率' },
{ key: 'received_per_sqm', label: '坪效' },
].map(s => (
<button key={s.key} onClick={() => { setSort(s.key); setPage(1) }} className={`px-3 py-1 rounded text-xs ${sort === s.key ? 'bg-primary text-primary-foreground' : 'bg-muted'}`}>{s.label}</button>
))}
<span className="mx-2 text-muted-foreground">|</span>
<button onClick={() => { setOrder(order === 'asc' ? 'desc' : 'asc'); setPage(1) }} className="px-3 py-1 rounded text-xs bg-muted">
{order === 'asc' ? '↑ 升序' : '↓ 降序'}
</button>
</div>
<DataTable
columns={[
{ key: 'sales_store_name', label: '门店', render: (r) => <button className="text-blue-600 hover:underline font-medium" onClick={() => setSelectedStore(r as StoreDetail)}>{r.sales_store_name}</button> },
{ key: 'priority', label: '优先级', render: (r) => <span className={`px-2 py-0.5 rounded text-xs font-medium ${PRIORITY_COLORS[r.priority] || ''}`}>{r.priority}</span> },
{ key: 'loss_type', label: '亏损类型', render: (r) => <span className={LOSS_TYPE_COLORS[r.loss_type] || ''}>{r.loss_type}</span> },
{ key: 'received', label: '实收', align: 'right', render: (r) => formatCurrency(r.received) },
{ key: 'actual_store_contribution', label: '贡献利润', align: 'right', render: (r) => <span className="text-red-600 font-medium">{formatCurrency(r.actual_store_contribution)}</span> },
{ key: 'actual_store_contribution_rate_pct', label: '贡献率', align: 'right', render: (r) => <span className="text-red-600">{formatPercent(r.actual_store_contribution_rate_pct)}</span> },
{ key: 'wage_rate_pct', label: '人工率', align: 'right', render: (r) => <span className={parseFloat(r.wage_rate_pct) > 35 ? 'text-red-600' : ''}>{formatPercent(r.wage_rate_pct)}</span> },
{ key: 'rent_rate_pct', label: '租金率', align: 'right', render: (r) => <span className={parseFloat(r.rent_rate_pct) > 20 ? 'text-red-600' : ''}>{formatPercent(r.rent_rate_pct)}</span> },
{ key: 'received_per_sqm', label: '坪效', align: 'right', render: (r) => <span className={parseFloat(r.received_per_sqm) < 1000 ? 'text-red-600' : ''}>{formatNumber(r.received_per_sqm)}</span> },
{ key: 'diagnosis_reasons', label: '亏损原因', render: (r) => <span className="text-xs">{r.diagnosis_reasons}</span> },
{ key: 'suggested_actions', label: '建议动作', render: (r) => <span className="text-xs font-medium">{r.suggested_actions}</span> },
]}
data={rows}
/>
<Pagination page={page} pageSize={meta.pageSize} total={meta.total} onPageChange={setPage} />
</CollapsibleSection>
<StoreDetailModal store={selectedStore} onClose={() => setSelectedStore(null)} />
</div>
)
}