commit
f24d4e4a38
1 changed files with 14 additions and 4 deletions
|
@ -38,15 +38,25 @@ export default async function categoryDelete(id: number): Promise<ActionResponse
|
|||
};
|
||||
}
|
||||
|
||||
// delete category
|
||||
try {
|
||||
await prisma.category.delete({
|
||||
|
||||
await prisma.$transaction(async (tx) => {
|
||||
|
||||
// update related payments
|
||||
await tx.payment.updateMany({
|
||||
where: {categoryId: category.id},
|
||||
data: {categoryId: null},
|
||||
});
|
||||
|
||||
// delete the category
|
||||
await tx.category.delete({
|
||||
where: {
|
||||
id: category.id,
|
||||
userId: user.sub,
|
||||
},
|
||||
},
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
} catch (e) {
|
||||
return {
|
||||
type: 'error',
|
||||
|
|
Loading…
Add table
Reference in a new issue