N-FIN-75: update related payments before deleting category
This commit is contained in:
parent
155ab2f2e3
commit
4834750659
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 {
|
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: {
|
where: {
|
||||||
id: category.id,
|
id: category.id,
|
||||||
userId: user.sub,
|
userId: user.sub,
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
);
|
});
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return {
|
return {
|
||||||
type: 'error',
|
type: 'error',
|
||||||
|
|
Loading…
Add table
Reference in a new issue