Changeset 299af01 for src/app/api/invoices/[id]
- Timestamp:
- 02/26/25 14:27:26 (6 weeks ago)
- Branches:
- main
- Children:
- 3c5302a
- Parents:
- 057453c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/api/invoices/[id]/route.ts
r057453c r299af01 90 90 // Conditionally delete and recreate items only if they are provided 91 91 if (validation.data.items) { 92 await tx. invoiceItem.deleteMany({92 await tx.lineItem.deleteMany({ 93 93 where: { invoiceId: params.id }, 94 94 }); … … 174 174 await prisma.$transaction(async (tx) => { 175 175 // Delete related items first 176 await tx. invoiceItem.deleteMany({176 await tx.lineItem.deleteMany({ 177 177 where: { invoiceId: params.id }, 178 178 });
Note:
See TracChangeset
for help on using the changeset viewer.