+ {/* 상품명 + 이메일 */}
+
+
+
+ {order.product_name ?? '(상품 없음)'}
+
+
+ ₩{order.amount.toLocaleString()}
+
+
+
+
+ {order.customer_email ?? order.user_id ?? '이메일 없음'}
+
+ {depositorName && (
+
+ 입금자: {depositorName}
+
+ )}
+
+ {new Date(order.created_at).toLocaleDateString('ko-KR')}
+
+
+
+
+ {/* 상태 뱃지 + 액션 버튼 */}
+
+ {order.status === 'paid' ? (
+ 다운로드 활성
+ ) : null}
+
+ {STATUS_LABELS[order.status]?.label}
+
+ {order.status === 'pending' && (
+ <>
+
+
+ >
+ )}
+
+