Implement Invoices fetching and uploading

This commit is contained in:
Hamza-Ayed
2026-04-18 00:55:07 +03:00
parent 77434fa815
commit 93591c75e2
3 changed files with 277 additions and 93 deletions

View File

@@ -28,6 +28,14 @@ import { CurrentUser } from '../../common/decorators/current-user.decorator';
@UseGuards(JwtAuthGuard, RolesGuard)
export class InvoicesController {
constructor(private invoicesService: InvoicesService) {}
/**
* قائمة جميع الفواتير للمكتب
*/
@Get()
async findAllByTenant(@CurrentUser() user: any) {
return this.invoicesService.findAllByTenant(user.tenantId);
}
/**
* رفع فاتورة لشركة محددة

View File

@@ -89,6 +89,17 @@ export class InvoicesService {
});
}
/**
* قائمة جميع الفواتير للمكتب
*/
async findAllByTenant(tenantId: string): Promise<Invoice[]> {
return this.invoiceRepository.find({
where: { tenant_id: tenantId },
relations: ['company'],
order: { created_at: 'DESC' },
});
}
/**
* تفاصيل فاتورة
*/

View File

@@ -4,8 +4,8 @@
* ════════════════════════════════════════════════════════════
*/
import { useState } from 'react';
import { motion } from 'framer-motion';
import { useState, useEffect } from 'react';
import { motion, AnimatePresence } from 'framer-motion';
import {
Upload,
Search,
@@ -16,43 +16,108 @@ import {
AlertCircle,
MoreVertical,
ChevronLeft,
ChevronRight
ChevronRight,
Building2,
FileText,
Send
} from 'lucide-react';
const invoices = [
{ id: '1', number: 'INV-2024-001', company: 'شركة الأمل', date: '2024-04-15', total: '150.000', status: 'approved', type: 'cash' },
{ id: '2', number: 'INV-2024-002', company: 'سوبرماركت المدينة', date: '2024-04-16', total: '2,400.000', status: 'validated', type: 'credit' },
{ id: '3', number: 'OCR_PENDING', company: 'مخبز السلام', date: '2024-04-16', total: '0.000', status: 'extracting', type: 'cash' },
{ id: '4', number: 'INV-2024-003', company: 'مكتبة النجاح', date: '2024-04-14', total: '85.250', status: 'validation_failed', type: 'cash' },
];
const StatusBadge = ({ status }: { status: string }) => {
const config: any = {
approved: { color: 'text-emerald-700 bg-emerald-50 border-emerald-100', icon: CheckCircle2, label: 'تم التصديق' },
validated: { color: 'text-blue-700 bg-blue-50 border-blue-100', icon: Clock, label: 'جاهز للإرسال' },
extracting: { color: 'text-amber-700 bg-amber-50 border-amber-100', icon: Clock, label: 'قيد الاستخراج AI' },
validation_failed: { color: 'text-red-700 bg-red-50 border-red-100', icon: AlertCircle, label: 'خطأ في التحقق' },
};
const { color, icon: Icon, label } = config[status] || config.extracting;
return (
<span className={`inline-flex items-center gap-1.5 px-3 py-1 rounded-full text-xs font-bold border ${color}`}>
<Icon className="w-3.5 h-3.5" />
{label}
</span>
);
};
import apiClient from '../../api/client';
export const InvoicesPage = () => {
const [invoices, setInvoices] = useState<any[]>([]);
const [companies, setCompanies] = useState<any[]>([]);
const [isLoading, setIsLoading] = useState(true);
const [searchTerm, setSearchTerm] = useState('');
const [isUploadModalOpen, setIsUploadModalOpen] = useState(false);
// Upload Form State
const [selectedCompanyId, setSelectedCompanyId] = useState('');
const [selectedFile, setSelectedFile] = useState<File | null>(null);
const [isUploading, setIsUploading] = useState(false);
const fetchData = async () => {
try {
const [invRes, compRes] = await Promise.all([
apiClient.get('/invoices'),
apiClient.get('/companies')
]);
setInvoices(invRes.data);
setCompanies(compRes.data);
} catch (error) {
console.error('Failed to fetch data', error);
} finally {
setIsLoading(false);
}
};
useEffect(() => {
fetchData();
}, []);
const handleUpload = async (e: React.FormEvent) => {
e.preventDefault();
if (!selectedCompanyId || !selectedFile) return;
setIsUploading(true);
const formData = new FormData();
formData.append('file', selectedFile);
try {
await apiClient.post(`/invoices/upload/${selectedCompanyId}`, formData, {
headers: { 'Content-Type': 'multipart/form-data' }
});
setIsUploadModalOpen(false);
setSelectedFile(null);
setSelectedCompanyId('');
fetchData();
} catch (error) {
console.error('Upload failed', error);
alert('حدث خطأ أثناء رفع الفاتورة');
} finally {
setIsUploading(false);
}
};
const handleFileChange = (e: React.ChangeEvent<HTMLInputElement>) => {
if (e.target.files && e.target.files[0]) {
setSelectedFile(e.target.files[0]);
}
};
const filteredInvoices = invoices.filter(inv =>
inv.invoice_number?.includes(searchTerm) ||
inv.company?.name?.includes(searchTerm)
);
const StatusBadge = ({ status }: { status: string }) => {
const config: any = {
approved: { color: 'text-emerald-700 bg-emerald-50 border-emerald-100', icon: CheckCircle2, label: 'تم التصديق' },
validated: { color: 'text-blue-700 bg-blue-50 border-blue-100', icon: CheckCircle2, label: 'جاهز للإرسال' },
extracted: { color: 'text-indigo-700 bg-indigo-50 border-indigo-100', icon: CheckCircle2, label: 'تم الاستخراج' },
uploaded: { color: 'text-amber-700 bg-amber-50 border-amber-100', icon: Clock, label: 'قيد المعالجة AI' },
extracting: { color: 'text-amber-700 bg-amber-50 border-amber-100', icon: Clock, label: 'قيد الاستخراج' },
validation_failed: { color: 'text-red-700 bg-red-50 border-red-100', icon: AlertCircle, label: 'خطأ في التحقق' },
};
const { color, icon: Icon, label } = config[status] || { color: 'text-slate-500 bg-slate-50', icon: Clock, label: status };
return (
<span className={`inline-flex items-center gap-1.5 px-3 py-1 rounded-full text-[10px] font-bold border ${color} uppercase tracking-tight`}>
<Icon className="w-3 h-3" />
{label}
</span>
);
};
return (
<div className="space-y-8 h-full flex flex-col">
<div className="space-y-8 h-full flex flex-col animate-in fade-in slide-in-from-bottom-4 duration-700">
<header className="flex items-center justify-between">
<div>
<h2 className="text-3xl font-bold text-slate-900">إدارة الفواتير</h2>
<p className="text-slate-500 mt-1">عرض، معالجة، وإرسال الفواتير الضريبية لبوابة الضريبة.</p>
</div>
<button className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2 shadow-xl shadow-primary-500/25 active:scale-95 transition-all">
<button
onClick={() => setIsUploadModalOpen(true)}
className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2 shadow-xl shadow-primary-500/25 active:scale-95 transition-all"
>
<Upload className="w-5 h-5" />
رفع فاتورة جديدة
</button>
@@ -72,87 +137,187 @@ export const InvoicesPage = () => {
</div>
<button className="glass border-slate-200 px-6 rounded-2xl flex items-center gap-2 text-slate-600 hover:bg-slate-50 transition-all font-semibold">
<Filter className="w-4 h-4" />
فلترة متقدمة
فلترة
</button>
</div>
{/* ── Invoices Table ───────────────────────────────────── */}
<div className="flex-1 card-premium overflow-hidden flex flex-col bg-white">
<div className="overflow-x-auto">
<table className="w-full text-right border-collapse">
<thead className="bg-slate-50/80 border-b border-slate-100">
<tr>
<th className="px-6 py-4 text-sm font-bold text-slate-500">رقم الفاتورة</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">الشركة المصدرة</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">التاريخ</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">النوع</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">المجموع (JOD)</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">الحالة</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500 w-20">إجراءات</th>
</tr>
</thead>
<tbody className="divide-y divide-slate-100">
{invoices.map((inv, idx) => (
<motion.tr
key={inv.id}
initial={{ opacity: 0, x: 20 }}
animate={{ opacity: 1, x: 0 }}
transition={{ delay: idx * 0.05 }}
className="hover:bg-slate-50/50 transition-colors group cursor-pointer"
>
<td className="px-6 py-4 font-bold text-slate-900">{inv.number}</td>
<td className="px-6 py-4 text-slate-600 font-medium">{inv.company}</td>
<td className="px-6 py-4 text-slate-500 text-sm">{inv.date}</td>
<td className="px-6 py-4">
<span className={`text-[11px] font-bold px-2 py-0.5 rounded uppercase tracking-wider ${inv.type === 'cash' ? 'bg-indigo-50 text-indigo-600' : 'bg-orange-50 text-orange-600'}`}>
{inv.type === 'cash' ? 'نقدي' : 'ذمم'}
</span>
</td>
<td className="px-6 py-4 font-mono font-bold text-slate-800">{inv.total}</td>
<td className="px-6 py-4"><StatusBadge status={inv.status} /></td>
<td className="px-6 py-4 text-center">
<div className="flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity">
<button className="p-2 text-slate-400 hover:text-primary-600 hover:bg-primary-50 rounded-lg transition-all">
<Eye className="w-4 h-4" />
</button>
<button className="p-2 text-slate-400 hover:text-slate-600 hover:bg-slate-100 rounded-lg transition-all">
<MoreVertical className="w-4 h-4" />
</button>
</div>
</td>
</motion.tr>
))}
</tbody>
</table>
</div>
{/* ── Empty State Mock (Hidden if data exists) ───────────── */}
{invoices.length === 0 && (
<div className="flex-1 card-premium overflow-hidden flex flex-col bg-white border border-slate-100">
{isLoading ? (
<div className="flex-1 flex justify-center items-center">
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-primary-600"></div>
</div>
) : filteredInvoices.length === 0 ? (
<div className="flex-1 flex flex-col items-center justify-center p-20 text-center">
<div className="w-24 h-24 bg-slate-50 rounded-full flex items-center justify-center mb-6 border border-slate-100">
<Upload className="w-10 h-10 text-slate-300" />
<FileText className="w-10 h-10 text-slate-300" />
</div>
<h3 className="text-xl font-bold text-slate-900 mb-2">لا توجد فواتير بعد</h3>
<p className="text-slate-500 max-w-sm mb-8">ابدأ برفع أول فاتورة ليقوم محرك الذكاء الاصطناعي باستخراج بياناتها ومصادقتها ضريبياً.</p>
<button className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2">
<button onClick={() => setIsUploadModalOpen(true)} className="btn-primary py-3 px-8 rounded-2xl flex items-center gap-2">
ارفع فاتورتك الأولى
</button>
</div>
) : (
<div className="overflow-x-auto">
<table className="w-full text-right border-collapse">
<thead className="bg-slate-50/80 border-b border-slate-100">
<tr>
<th className="px-6 py-4 text-sm font-bold text-slate-500">رقم الفاتورة</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">الشركة</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">التاريخ</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500 text-left">المجموع (JOD)</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500">الحالة</th>
<th className="px-6 py-4 text-sm font-bold text-slate-500 w-20 text-center">إجراءات</th>
</tr>
</thead>
<tbody className="divide-y divide-slate-100">
{filteredInvoices.map((inv, idx) => (
<motion.tr
key={inv.id}
initial={{ opacity: 0, x: 20 }}
animate={{ opacity: 1, x: 0 }}
transition={{ delay: idx * 0.05 }}
className="hover:bg-slate-50/50 transition-colors group cursor-pointer"
>
<td className="px-6 py-4 font-bold text-slate-900">{inv.invoice_number || '---'}</td>
<td className="px-6 py-4 text-slate-600 font-medium">
<div className="flex items-center gap-2">
<div className="w-7 h-7 bg-slate-100 rounded-md flex items-center justify-center">
<Building2 className="w-4 h-4 text-slate-400" />
</div>
{inv.company?.name || 'شركة غير معروفة'}
</div>
</td>
<td className="px-6 py-4 text-slate-500 text-sm">
{inv.issue_date ? new Date(inv.issue_date).toLocaleDateString('ar-JO') : '---'}
</td>
<td className="px-6 py-4 font-mono font-bold text-slate-800 text-left">
{Number(inv.total_amount).toLocaleString('en-US', { minimumFractionDigits: 3 })}
</td>
<td className="px-6 py-4"><StatusBadge status={inv.status} /></td>
<td className="px-6 py-4 text-center">
<div className="flex items-center justify-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity">
<button className="p-2 text-slate-400 hover:text-primary-600 hover:bg-primary-50 rounded-lg transition-all">
<Eye className="w-4 h-4" />
</button>
{inv.status === 'validated' && (
<button className="p-2 text-emerald-500 hover:text-emerald-600 hover:bg-emerald-50 rounded-lg transition-all" title="إرسال لجو فوترة">
<Send className="w-4 h-4" />
</button>
)}
<button className="p-2 text-slate-400 hover:text-slate-600 hover:bg-slate-100 rounded-lg transition-all">
<MoreVertical className="w-4 h-4" />
</button>
</div>
</td>
</motion.tr>
))}
</tbody>
</table>
</div>
)}
{/* ── Pagination ───────────────────────────────────────── */}
<footer className="px-6 py-4 bg-slate-50/50 border-t border-slate-100 flex items-center justify-between">
<p className="text-sm text-slate-500">عرض 1-10 من أصل 1,280 فاتورة</p>
<div className="flex gap-2">
<button className="p-2 text-slate-400 hover:text-slate-600 disabled:opacity-30 border border-slate-200 rounded-xl bg-white shadow-sm">
<ChevronRight className="w-5 h-5" />
</button>
<button className="p-2 text-slate-400 hover:text-slate-600 disabled:opacity-30 border border-slate-200 rounded-xl bg-white shadow-sm">
<ChevronLeft className="w-5 h-5" />
</button>
</div>
</footer>
{!isLoading && filteredInvoices.length > 0 && (
<footer className="px-6 py-4 bg-slate-50/50 border-t border-slate-100 flex items-center justify-between">
<p className="text-sm text-slate-500">عرض {filteredInvoices.length} فواتير</p>
<div className="flex gap-2">
<button className="p-2 text-slate-400 hover:text-slate-600 disabled:opacity-30 border border-slate-200 rounded-xl bg-white shadow-sm">
<ChevronRight className="w-5 h-5" />
</button>
<button className="p-2 text-slate-400 hover:text-slate-600 disabled:opacity-30 border border-slate-200 rounded-xl bg-white shadow-sm">
<ChevronLeft className="w-5 h-5" />
</button>
</div>
</footer>
)}
</div>
{/* ── Upload Modal ─────────────────────────────────────── */}
<AnimatePresence>
{isUploadModalOpen && (
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-slate-900/60 backdrop-blur-sm">
<motion.div
initial={{ scale: 0.9, opacity: 0 }}
animate={{ scale: 1, opacity: 1 }}
exit={{ scale: 0.9, opacity: 0 }}
className="bg-white rounded-[32px] p-8 w-full max-w-xl shadow-2xl overflow-hidden relative"
>
<div className="absolute top-0 right-0 w-32 h-32 bg-primary-50 rounded-full -mr-16 -mt-16 opacity-50" />
<h3 className="text-2xl font-bold text-slate-900 mb-2 relative">رفع فاتورة جديدة</h3>
<p className="text-slate-500 mb-8 relative">اختر الشركة وملف الفاتورة (PDF أو صورة) وسيقوم الذكاء الاصطناعي بالباقي.</p>
<form onSubmit={handleUpload} className="space-y-6 relative">
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">اختر الشركة</label>
<select
required
value={selectedCompanyId}
onChange={e => setSelectedCompanyId(e.target.value)}
className="w-full bg-slate-50 border border-slate-200 rounded-2xl px-5 py-4 outline-none focus:border-primary-500 focus:ring-4 focus:ring-primary-500/10 transition-all appearance-none cursor-pointer"
>
<option value="">-- اختر شركة --</option>
{companies.map(c => (
<option key={c.id} value={c.id}>{c.name}</option>
))}
</select>
</div>
<div>
<label className="block text-sm font-bold text-slate-700 mb-2">ملف الفاتورة</label>
<div className="relative group">
<input
type="file"
required
onChange={handleFileChange}
accept=".pdf,image/*"
className="absolute inset-0 w-full h-full opacity-0 cursor-pointer z-10"
/>
<div className="border-2 border-dashed border-slate-200 rounded-2xl p-10 flex flex-col items-center group-hover:border-primary-400 group-hover:bg-primary-50/30 transition-all bg-slate-50/50">
<div className="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<Upload className="w-7 h-7 text-primary-600" />
</div>
<p className="font-bold text-slate-800">
{selectedFile ? selectedFile.name : 'اسحب الملف هنا أو انقر للاختيار'}
</p>
<p className="text-sm text-slate-400 mt-1">PDF, JPG, PNG (حد أقصى 10MB)</p>
</div>
</div>
</div>
<div className="flex gap-4 pt-4">
<button
type="button"
onClick={() => setIsUploadModalOpen(false)}
className="flex-1 bg-slate-100 text-slate-700 font-bold py-4 rounded-2xl hover:bg-slate-200 transition-all"
>
إلغاء
</button>
<button
type="submit"
disabled={isUploading || !selectedCompanyId || !selectedFile}
className="flex-[2] btn-primary py-4 rounded-2xl shadow-lg shadow-primary-500/30 disabled:opacity-50 flex items-center justify-center gap-3"
>
{isUploading ? (
<>
<div className="w-5 h-5 border-2 border-white/30 border-t-white rounded-full animate-spin" />
جاري الرفع والمعالجة...
</>
) : (
<>
<Upload className="w-5 h-5" />
ابدأ المعالجة الآن
</>
)}
</button>
</div>
</form>
</motion.div>
</div>
)}
</AnimatePresence>
</div>
);
};