fix(url): la ulr termina con / no es necesario añadir el texto
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
033c02750b
commit
afe4c676fc
|
@ -69,7 +69,7 @@ module.exports = Self => {
|
|||
const message = $t('Claim pickup order sent', {
|
||||
claimId: args.id,
|
||||
clientName: claim.client().name,
|
||||
claimUrl: `${url}/claim/${args.id}/summary`,
|
||||
claimUrl: `${url}claim/${args.id}/summary`,
|
||||
});
|
||||
console.log(message);
|
||||
const salesPersonId = claim.client().salesPersonFk;
|
||||
|
|
|
@ -99,8 +99,8 @@ module.exports = Self => {
|
|||
const message = $t('Created claim', {
|
||||
claimId: newClaim.id,
|
||||
ticketId: ticketId,
|
||||
ticketUrl: `${url}/ticket/${ticketId}/sale`,
|
||||
claimUrl: `${url}/claim/${newClaim.id}/summary`,
|
||||
ticketUrl: `${url}ticket/${ticketId}/sale`,
|
||||
claimUrl: `${url}claim/${newClaim.id}/summary`,
|
||||
changes: changesMade
|
||||
});
|
||||
await models.Chat.sendCheckingPresence(ctx, salesPerson.id, message);
|
||||
|
|
|
@ -121,22 +121,21 @@ module.exports = Self => {
|
|||
const message = $t(`Claim state has changed to ${state}`, {
|
||||
claimId: claim.id,
|
||||
clientName: claim.client().name,
|
||||
claimUrl: `${url}/claim/${claim.id}/summary`
|
||||
claimUrl: `${url}claim/${claim.id}/summary`
|
||||
});
|
||||
await models.Chat.sendCheckingPresence(ctx, workerId, message);
|
||||
}
|
||||
|
||||
async function notifyPickUp(ctx, workerId, claim) {
|
||||
const models = Self.app.models;
|
||||
const url = await models.Application.getUrl();
|
||||
const url = await models.Application.getUrl('lilium');
|
||||
const $t = ctx.req.__; // $translate
|
||||
|
||||
const message = $t('Claim will be picked', {
|
||||
claimId: claim.id,
|
||||
clientName: claim.client().name,
|
||||
claimUrl: `${url}/claim/${claim.id}/summary`
|
||||
claimUrl: `${url}claim/${claim.id}/summary`
|
||||
});
|
||||
console.log(message);
|
||||
await models.Chat.sendCheckingPresence(ctx, workerId, message);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue