feat(POS-FIX-6): completed feature
This commit is contained in:
@@ -153,7 +153,7 @@ export default function OrdersPage() {
|
||||
<table className="w-full">
|
||||
<thead>
|
||||
<tr className="bg-gray-50 border-b border-gray-200">
|
||||
{['ID', 'Fecha', 'Total', 'Estado'].map((h) => (
|
||||
{['ID', 'Fecha', 'Cliente', 'Total', 'Estado'].map((h) => (
|
||||
<th
|
||||
key={h}
|
||||
className="text-left text-xs font-semibold text-gray-500 uppercase tracking-wide px-4 py-3"
|
||||
@@ -183,6 +183,10 @@ export default function OrdersPage() {
|
||||
})}
|
||||
</p>
|
||||
</td>
|
||||
<td className="px-4 py-3">
|
||||
<p className="text-sm text-gray-600">{o.email || o.customerName || '—'}</p>
|
||||
{o.email && <p className="text-xs text-gray-400">{o.email}</p>}
|
||||
</td>
|
||||
<td className="px-4 py-3">
|
||||
<p className="text-sm font-bold text-gray-900">{formatPrice(o.totalCents)}</p>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user