diff --git a/backlog/features.json b/backlog/features.json index d1681f5..8cb2983 100644 --- a/backlog/features.json +++ b/backlog/features.json @@ -6751,13 +6751,15 @@ "description": "Order detail must show shipping address, payment method, customer details and correct customer email without false missing-email warning.", "priority": "high", "risk": "med", - "status": "pending", + "status": "done", "created_at": "2026-08-22", "gates": { - "reviewer": false, - "security": false, - "qa": false - } + "reviewer": true, + "security": true, + "qa": true, + "close": true + }, + "completed_at": "2026-08-22T16:13:37Z" }, { "id": "F-162", @@ -6788,6 +6790,21 @@ "security": false, "qa": false } + }, + { + "id": "F-164", + "type": "fix", + "title": "Update outdated POS Next.js", + "description": "Upgrade POS Next.js from outdated 15.x to the supported version aligned with Admin and fix resulting config/build compatibility.", + "priority": "high", + "risk": "med", + "status": "pending", + "created_at": "2026-08-22", + "gates": { + "reviewer": false, + "security": false, + "qa": false + } } ] } diff --git a/project/apps/admin/src/app/(dashboard)/orders/[id]/page.tsx b/project/apps/admin/src/app/(dashboard)/orders/[id]/page.tsx index e26bdc2..11b6abd 100644 --- a/project/apps/admin/src/app/(dashboard)/orders/[id]/page.tsx +++ b/project/apps/admin/src/app/(dashboard)/orders/[id]/page.tsx @@ -526,46 +526,55 @@ export default function OrderDetailPage() { {/* Sidebar */}
{order.customerName}
} - {order.email &&{order.email}
} - {(order.phone || order.customerPhone) && ( -{order.customerPhone || order.phone}
- )} +{order.shippingAddress.recipientName}
{order.shippingAddress.street}
{order.shippingAddress.postalCode} {order.shippingAddress.city}
{order.shippingAddress.country}
No registrada para este pedido.
+ )} +{order.billingAddress.recipientName}
{order.billingAddress.street}
{order.billingAddress.postalCode} {order.billingAddress.city}
{order.billingAddress.country}
No registrada; consultar la dirección de envío.
+ )} +No hay una transacción de pago registrada para este pedido.
+ )} +