2026-05-26 05:15:10 +00:00
|
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
|
|
import { motion } from 'framer-motion';
|
|
|
|
|
|
import { DollarSign, CheckCircle, ArrowLeft } from 'lucide-react';
|
|
|
|
|
|
import { useNavigate } from 'react-router-dom';
|
|
|
|
|
|
import { useAuth } from '../../contexts/AuthContext';
|
|
|
|
|
|
import { supabase } from '../../supabase/client';
|
|
|
|
|
|
import type { Payment, WashingPlan } from '../../types';
|
2026-06-04 15:56:19 +00:00
|
|
|
|
import { PAYMENT_STATUS } from '../../utils/constants';
|
2026-05-26 05:15:10 +00:00
|
|
|
|
|
|
|
|
|
|
interface PaymentWithPlan extends Payment {
|
|
|
|
|
|
plan?: WashingPlan;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function WashingPaymentPending() {
|
|
|
|
|
|
const navigate = useNavigate();
|
|
|
|
|
|
const { auth } = useAuth();
|
|
|
|
|
|
const [payments, setPayments] = useState<PaymentWithPlan[]>([]);
|
|
|
|
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
|
|
const [confirming, setConfirming] = useState<string | null>(null);
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (!auth.company) return;
|
|
|
|
|
|
fetchPayments();
|
|
|
|
|
|
}, [auth.company]);
|
|
|
|
|
|
|
|
|
|
|
|
const fetchPayments = async () => {
|
|
|
|
|
|
// 获取当前水洗厂作为收款方的待结款
|
|
|
|
|
|
const { data: paymentData } = await supabase
|
|
|
|
|
|
.from('payments')
|
|
|
|
|
|
.select('*')
|
|
|
|
|
|
.eq('to_company_id', auth.company!.id)
|
2026-06-04 15:56:19 +00:00
|
|
|
|
.eq('status', PAYMENT_STATUS.PENDING);
|
2026-05-26 05:15:10 +00:00
|
|
|
|
|
|
|
|
|
|
if (!paymentData || paymentData.length === 0) {
|
|
|
|
|
|
setPayments([]);
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取关联的水洗计划信息
|
|
|
|
|
|
const planIds = paymentData.map(p => p.plan_id);
|
|
|
|
|
|
const { data: planData } = await supabase
|
|
|
|
|
|
.from('washing_plans')
|
|
|
|
|
|
.select('*')
|
|
|
|
|
|
.in('id', planIds);
|
|
|
|
|
|
|
|
|
|
|
|
const planMap: Record<string, WashingPlan> = {};
|
|
|
|
|
|
(planData || []).forEach(p => { planMap[p.id] = p; });
|
|
|
|
|
|
|
|
|
|
|
|
const paymentsWithPlans = paymentData.map(p => ({
|
|
|
|
|
|
...p,
|
|
|
|
|
|
plan: planMap[p.plan_id]
|
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
setPayments(paymentsWithPlans);
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const totalAmount = payments.reduce((sum, item) => sum + item.amount, 0);
|
|
|
|
|
|
|
|
|
|
|
|
const handleConfirmPay = async (paymentId: string) => {
|
|
|
|
|
|
setConfirming(paymentId);
|
|
|
|
|
|
const now = new Date().toISOString();
|
|
|
|
|
|
const { error } = await supabase
|
|
|
|
|
|
.from('payments')
|
|
|
|
|
|
.update({
|
2026-06-04 15:56:19 +00:00
|
|
|
|
status: PAYMENT_STATUS.COMPLETED,
|
2026-05-26 05:15:10 +00:00
|
|
|
|
paid_at: now
|
|
|
|
|
|
})
|
|
|
|
|
|
.eq('id', paymentId);
|
|
|
|
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
|
|
console.error('结款失败:', error);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
await fetchPayments();
|
|
|
|
|
|
}
|
|
|
|
|
|
setConfirming(null);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="min-h-screen bg-gradient-to-br from-slate-50 via-rose-50 to-pink-50 p-3 sm:p-4 md:p-6">
|
|
|
|
|
|
<div className="max-w-4xl mx-auto">
|
|
|
|
|
|
<div className="flex items-center gap-2 sm:gap-3 md:gap-4 mb-4 sm:mb-5 md:mb-6">
|
|
|
|
|
|
<motion.button
|
|
|
|
|
|
whileTap={{ scale: 0.95 }}
|
|
|
|
|
|
onClick={() => navigate('/washing')}
|
|
|
|
|
|
className="p-2 hover:bg-gray-200 rounded-full transition-colors will-change-transform"
|
|
|
|
|
|
>
|
|
|
|
|
|
<ArrowLeft className="w-5 h-5 sm:w-6 sm:h-6 text-gray-600" />
|
|
|
|
|
|
</motion.button>
|
|
|
|
|
|
<h1 className="text-lg sm:text-xl md:text-2xl font-bold text-gray-800">待结款</h1>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{loading ? (
|
|
|
|
|
|
<div className="flex flex-col items-center justify-center py-12 sm:py-16">
|
|
|
|
|
|
<motion.div
|
|
|
|
|
|
animate={{ rotate: 360 }}
|
|
|
|
|
|
transition={{ duration: 1, repeat: Infinity, ease: 'linear' }}
|
|
|
|
|
|
className="w-6 h-6 sm:w-8 sm:h-8 border-2 border-rose-500 border-t-transparent rounded-full mb-3"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<p className="text-gray-400 text-sm">加载中...</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<motion.div
|
|
|
|
|
|
initial={{ opacity: 0, y: 10 }}
|
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
|
|
|
|
|
transition={{ duration: 0.3 }}
|
|
|
|
|
|
className="bg-gradient-to-r from-rose-500 to-pink-500 rounded-xl p-4 sm:p-5 md:p-6 text-white mb-4 sm:mb-5 md:mb-6"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div className="flex items-center gap-2 sm:gap-3">
|
|
|
|
|
|
<DollarSign className="w-6 h-6 sm:w-7 sm:h-7 md:w-8 md:h-8" />
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<p className="text-rose-100 text-xs sm:text-sm">待结款总额</p>
|
|
|
|
|
|
<p className="text-2xl sm:text-3xl md:text-4xl font-bold">¥{totalAmount.toLocaleString()}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</motion.div>
|
|
|
|
|
|
|
|
|
|
|
|
{payments.length === 0 ? (
|
|
|
|
|
|
<motion.div
|
|
|
|
|
|
initial={{ opacity: 0, y: 10 }}
|
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
|
|
|
|
|
transition={{ duration: 0.3 }}
|
|
|
|
|
|
className="bg-white rounded-xl shadow-sm p-6 sm:p-8 text-center text-gray-400 text-sm"
|
|
|
|
|
|
>
|
|
|
|
|
|
暂无待结款记录
|
|
|
|
|
|
</motion.div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<div className="space-y-3 sm:space-y-4">
|
|
|
|
|
|
{payments.map((item, index) => (
|
|
|
|
|
|
<motion.div
|
|
|
|
|
|
key={item.id}
|
|
|
|
|
|
initial={{ opacity: 0, y: 15 }}
|
|
|
|
|
|
animate={{ opacity: 1, y: 0 }}
|
2026-05-28 06:28:50 +00:00
|
|
|
|
transition={{ delay: Math.min(index * 0.03, 0.2), duration: 0.25, ease: [0.25, 0.46, 0.45, 0.94] }}
|
|
|
|
|
|
className="bg-white rounded-xl shadow-sm p-4 sm:p-5 border border-gray-200"
|
2026-05-26 05:15:10 +00:00
|
|
|
|
>
|
|
|
|
|
|
<div className="flex items-start justify-between gap-2">
|
|
|
|
|
|
<div className="min-w-0 flex-1">
|
|
|
|
|
|
<div className="flex items-center gap-2 mb-1">
|
|
|
|
|
|
<span className="text-[10px] sm:text-xs text-gray-400">{item.plan?.plan_code || '-'}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p className="text-xs sm:text-sm text-gray-500">已完成: {item.quantity}米 × ¥{item.price_per_meter}/米</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="text-right flex-shrink-0">
|
|
|
|
|
|
<p className="text-lg sm:text-xl md:text-2xl font-bold text-rose-600">¥{item.amount.toLocaleString()}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="mt-3 sm:mt-4 pt-3 sm:pt-4 border-t border-gray-100 flex justify-end">
|
|
|
|
|
|
<motion.button
|
|
|
|
|
|
whileTap={{ scale: 0.97 }}
|
|
|
|
|
|
onClick={() => handleConfirmPay(item.id)}
|
|
|
|
|
|
disabled={confirming === item.id}
|
|
|
|
|
|
className="flex items-center gap-1.5 sm:gap-2 px-3 sm:px-4 py-1.5 sm:py-2 bg-green-500 text-white rounded-lg hover:bg-green-600 transition-colors disabled:opacity-50 text-xs sm:text-sm will-change-transform"
|
|
|
|
|
|
>
|
|
|
|
|
|
<CheckCircle className="w-3.5 h-3.5 sm:w-4 sm:h-4" />
|
|
|
|
|
|
{confirming === item.id ? '确认中...' : '确认结款'}
|
|
|
|
|
|
</motion.button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</motion.div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|