Merge branch 'master' of github.com:AdrianoRobson/projeto-hit
commit
6f5a84e37b
|
@ -93,7 +93,7 @@ export const index = async (req: Request, res: Response): Promise<Response> => {
|
||||||
|
|
||||||
let queueIds: number[] = [];
|
let queueIds: number[] = [];
|
||||||
|
|
||||||
if (queueIdsStringified) {
|
if (queueIdsStringified && queueIdsStringified.trim().length > 0) {
|
||||||
queueIds = JSON.parse(queueIdsStringified);
|
queueIds = JSON.parse(queueIdsStringified);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -27,9 +27,10 @@ const CheckIsValidContact = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!isValidNumber) {
|
let _status: any;
|
||||||
|
|
||||||
const { data } = await axios.post(
|
if (!isValidNumber) {
|
||||||
|
const { data, status } = await axios.post(
|
||||||
`${process.env.WHATS_NUMBER_VALIDATOR_URL}/api/validate`,
|
`${process.env.WHATS_NUMBER_VALIDATOR_URL}/api/validate`,
|
||||||
{ mobile: number },
|
{ mobile: number },
|
||||||
{
|
{
|
||||||
|
@ -40,10 +41,12 @@ const CheckIsValidContact = async (
|
||||||
);
|
);
|
||||||
|
|
||||||
isValidNumber = data;
|
isValidNumber = data;
|
||||||
|
_status = status;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ignoreThrow) return isValidNumber?.number;
|
if (ignoreThrow) return isValidNumber?.number;
|
||||||
|
|
||||||
|
if (_status && _status == 422) throw new AppError("ERR_NO_WAPP_FOUND");
|
||||||
|
|
||||||
if (!isValidNumber || (isValidNumber && !isValidNumber.isValid)) {
|
if (!isValidNumber || (isValidNumber && !isValidNumber.isValid)) {
|
||||||
throw new AppError("invalidNumber");
|
throw new AppError("invalidNumber");
|
||||||
}
|
}
|
||||||
|
|
|
@ -126,10 +126,10 @@ const ContactModal = ({ open, onClose, contactId, initialValues, onSave }) => {
|
||||||
handleClose()
|
handleClose()
|
||||||
}
|
}
|
||||||
toast.success(i18n.t("contactModal.success"))
|
toast.success(i18n.t("contactModal.success"))
|
||||||
setSaving(false)
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
toastError(err)
|
toastError(err)
|
||||||
}
|
}
|
||||||
|
setSaving(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue