fix: text spacing

This commit is contained in:
Methapon2001 2025-03-05 13:54:04 +07:00 committed by Methapon Metanipat
parent 2697b4f6e0
commit 9ffbed7cb8
3 changed files with 7 additions and 7 deletions

View file

@ -232,7 +232,7 @@ export class QuotationPayment extends Controller {
await tx.notification.create({
data: {
title: "Quotation Status Updated",
detail: res.code + res.quotationStatus,
detail: res.code + " " + res.quotationStatus,
receiverId: res.createdByUserId,
},
});

View file

@ -281,7 +281,7 @@ export class RequestDataActionController extends Controller {
await tx.notification.createMany({
data: res.map((v) => ({
title: "Quotation Status Updated",
detail: v.code + "Canceled",
detail: v.code + " Canceled",
receiverId: v.createdByUserId,
})),
});
@ -429,7 +429,7 @@ export class RequestDataActionController extends Controller {
await tx.notification.createMany({
data: res.map((v) => ({
title: "Quotation Status Updated",
detail: v.code + "Canceled",
detail: v.code + " Canceled",
receiverId: v.createdByUserId,
})),
});
@ -520,7 +520,7 @@ export class RequestDataActionController extends Controller {
await tx.notification.createMany({
data: res.map((v) => ({
title: "Quotation Status Updated",
detail: v.code + "Completed",
detail: v.code + " Completed",
receiverId: v.createdByUserId,
})),
});
@ -857,7 +857,7 @@ export class RequestListController extends Controller {
await tx.notification.createMany({
data: res.map((v) => ({
title: "Quotation Status Updated",
detail: v.code + "Canceled",
detail: v.code + " Canceled",
receiverId: v.createdByUserId,
})),
});
@ -949,7 +949,7 @@ export class RequestListController extends Controller {
await tx.notification.createMany({
data: res.map((v) => ({
title: "Quotation Status Updated",
detail: v.code + "Completed",
detail: v.code + " Completed",
receiverId: v.createdByUserId,
})),
});

View file

@ -805,7 +805,7 @@ export class TaskActionController extends Controller {
await tx.notification.createMany({
data: res.map((v) => ({
title: "Quotation Status Updated",
detail: v.code + "Completed",
detail: v.code + " Completed",
receiverId: v.createdByUserId,
})),
});