fixes
Build and Push Docker Image / build (push) Successful in 1m6s

This commit is contained in:
jason
2026-04-21 20:59:55 -05:00
parent bb452a59ae
commit bc3b78aa33
17 changed files with 534 additions and 40 deletions
+6 -1
View File
@@ -28,6 +28,7 @@ export async function GET(_req: NextRequest, ctx: { params: Promise<{ id: string
select: {
code: true,
name: true,
qty: true,
project: { select: { code: true, name: true } },
},
},
@@ -39,7 +40,11 @@ export async function GET(_req: NextRequest, ctx: { params: Promise<{ id: string
const data: OperationCardData = {
project: op.part.assembly.project,
assembly: { code: op.part.assembly.code, name: op.part.assembly.name },
assembly: {
code: op.part.assembly.code,
name: op.part.assembly.name,
qty: op.part.assembly.qty,
},
part: {
code: op.part.code,
name: op.part.name,