Send message to comercial by RocketChat #1897

Merged
jsegarra merged 10 commits from 5499_claim_rocketMessage_comercial into dev 2024-01-11 07:00:13 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit b76e269e73 - Show all commits

View File

@ -110,7 +110,7 @@ module.exports = Self => {
}
};
async function notifyStateChange(ctx, id, claim, state) {
async function notifyStateChange(ctx, workerId, claim, newState) {
const models = Self.app.models;
jsegarra marked this conversation as resolved Outdated

porque lo llamas id? no es el worker?

porque lo llamas id? no es el worker?

No puse worker porque en lo antiguo ,según el "code", usaba el id de salesPerson o de workerFk, y como ya no se distingue por code, puse un nombre genérico.

No puse worker porque en lo antiguo ,según el "code", usaba el id de salesPerson o de workerFk, y como ya no se distingue por code, puse un nombre genérico.

hasta hoy si un archivo tiene id, y estamos en la ruta claim en este caso, se espera que eso sea claim id. En este caso es confuso, pon una referencia a worker

hasta hoy si un archivo tiene id, y estamos en la ruta claim en este caso, se espera que eso sea claim id. En este caso es confuso, pon una referencia a worker

Corregido(b76e269e73)

Corregido(b76e269e737a63f6102a10ac831a4837424920c9)
const url = await models.Url.getUrl();
const $t = ctx.req.__; // $translate
@ -119,9 +119,9 @@ module.exports = Self => {
claimId: claim.id,
clientName: claim.client().name,
claimUrl: `${url}claim/${claim.id}/summary`,
newState: state
newState
});
await models.Chat.sendCheckingPresence(ctx, id, message);
await models.Chat.sendCheckingPresence(ctx, workerId, message);
}
async function notifyPickUp(ctx, workerId, claim) {