main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { NextRequest, NextResponse } from 'next/server';
|
---|
| 2 | import { invoiceSchema } from 'mvpmasters-shared';
|
---|
| 3 | import prisma from 'src/lib/prisma';
|
---|
| 4 | import { authenticateRequest } from 'src/lib/auth-middleware';
|
---|
| 5 |
|
---|
| 6 | export async function PATCH(request: NextRequest, { params }: { params: { id: string } }) {
|
---|
| 7 | try {
|
---|
| 8 | // Authenticate the request
|
---|
| 9 | const authResult = await authenticateRequest(request);
|
---|
| 10 | if (authResult instanceof NextResponse) {
|
---|
| 11 | return authResult;
|
---|
| 12 | }
|
---|
| 13 | const { userId } = authResult;
|
---|
| 14 |
|
---|
| 15 | const body = await request.json();
|
---|
| 16 | const validatedData = invoiceSchema.partial().parse(body);
|
---|
| 17 |
|
---|
| 18 | const invoice = await prisma.invoice.update({
|
---|
| 19 | where: { id: params.id, userId },
|
---|
| 20 | data: {
|
---|
| 21 | ...validatedData,
|
---|
| 22 | items: validatedData.items
|
---|
| 23 | ? {
|
---|
| 24 | deleteMany: {},
|
---|
| 25 | create: validatedData.items,
|
---|
| 26 | }
|
---|
| 27 | : undefined,
|
---|
| 28 | },
|
---|
| 29 | include: {
|
---|
| 30 | items: {
|
---|
| 31 | include: {
|
---|
| 32 | service: true,
|
---|
| 33 | },
|
---|
| 34 | },
|
---|
| 35 | invoiceFrom: true,
|
---|
| 36 | invoiceTo: true,
|
---|
| 37 | },
|
---|
| 38 | });
|
---|
| 39 |
|
---|
| 40 | return NextResponse.json(invoice);
|
---|
| 41 | } catch (error) {
|
---|
| 42 | return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 });
|
---|
| 43 | }
|
---|
| 44 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.