fix: text spacing
This commit is contained in:
parent
2697b4f6e0
commit
9ffbed7cb8
3 changed files with 7 additions and 7 deletions
|
|
@ -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,
|
||||
},
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
})),
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
})),
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue