[CLAUDE] App+FE-User+FE-Admin: Plan AG4 — bổ sung Drafter + Department vào PE List card
All checks were successful
Deploy SOLUTION_ERP / build-deploy (push) Successful in 3m27s
All checks were successful
Deploy SOLUTION_ERP / build-deploy (push) Successful in 3m27s
Anh UAT 2026-05-21: PE card danh sách thiếu người tạo + phòng ban tạo. Bổ sung 4 field qua BE JOIN Users + Departments LEFT (cả 2 nullable theo PE entity). BE — 4 file: - PurchaseEvaluationDtos.cs: +4 fields DrafterUserId/DrafterName/DepartmentId/DepartmentName - PurchaseEvaluationFeatures.cs ListHandler: JOIN Users + Departments LEFT, projection +4 - PurchaseEvaluationFeatures.cs InboxHandler: mirror JOIN + projection +4 - CreateContractFromEvaluationFeatures.cs ListApproved: mirror JOIN + projection +4 FE — 4 file × 2 app mirror: - types/purchaseEvaluation.ts: PeListItem +4 fields - pages/pe/PurchaseEvaluationsListPage.tsx: PE card render thêm dòng "👤 {drafterName} · {departmentName}" giữa Mã phiếu và Supplier. Conditional: chỉ render khi có ít nhất 1 field. Verify: - dotnet build clean 0 err - dotnet test SolutionErp.slnx 111/111 PASS (58 Domain + 53 Infra) — no regression - npm build fe-user PASS 0 TS err 1290.31 KB (gzip 336.79 KB) 1907 modules - npm build fe-admin PASS 0 TS err 1401.66 KB (gzip 357.30 KB) 1926 modules - 2 FE PE List file SHA256 IDENTICAL C6996194... (mirror §3.9) - KHÔNG Mig (chỉ DTO + projection extend) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@ -287,6 +287,12 @@ export function PurchaseEvaluationsListPage() {
|
||||
<div className="mt-0.5 flex items-center gap-1.5 text-[11px] text-slate-500">
|
||||
<span className="font-mono">{p.maPhieu ?? '—'}</span>
|
||||
</div>
|
||||
{(p.drafterName || p.departmentName) && (
|
||||
<div className="mt-0.5 truncate text-[11px] text-slate-500">
|
||||
<span>👤 {p.drafterName ?? '—'}</span>
|
||||
{p.departmentName && <span className="text-slate-400"> · {p.departmentName}</span>}
|
||||
</div>
|
||||
)}
|
||||
{p.selectedSupplierName && (
|
||||
<div className="mt-0.5 truncate text-[11px] text-emerald-600">
|
||||
✓ {p.selectedSupplierName}
|
||||
|
||||
@ -122,6 +122,12 @@ export type PeListItem = {
|
||||
// update (Tạo / Gửi duyệt / Trả lại) đưa lên đầu. FE list item hiển thị
|
||||
// "Tạo lúc createdAt" (KHÔNG còn SLA countdown "Còn N ngày").
|
||||
updatedAt: string | null
|
||||
// Plan AG4 (2026-05-21): bro UAT yêu cầu bổ sung Người tạo + Phòng ban tạo
|
||||
// vào PE card. BE JOIN Users + Departments LEFT, cả 2 nullable theo PE entity.
|
||||
drafterUserId: string | null
|
||||
drafterName: string | null
|
||||
departmentId: string | null
|
||||
departmentName: string | null
|
||||
}
|
||||
|
||||
export type PeSupplier = {
|
||||
|
||||
Reference in New Issue
Block a user