Alteração na opção de whatsapp default para que essa opção seja escolhida pelo usuário adicionando à alguma fila e conexão de whastapp existente ou seja escolhida a conexão que esta com status CONNECTED
parent
85cf4863d6
commit
7baed2a7da
|
@ -120,7 +120,7 @@ export const remove = async (
|
||||||
|
|
||||||
await DeleteWhatsAppService(whatsappId);
|
await DeleteWhatsAppService(whatsappId);
|
||||||
|
|
||||||
removeDir(path.join(process.cwd(),'WWebJS', `session-bd_${whatsappId}`))
|
removeDir(path.join(process.cwd(),'.wwebjs_auth', `session-bd_${whatsappId}`))
|
||||||
|
|
||||||
removeWbot(+whatsappId);
|
removeWbot(+whatsappId);
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,77 @@
|
||||||
import AppError from "../errors/AppError";
|
import AppError from "../errors/AppError";
|
||||||
import Whatsapp from "../models/Whatsapp";
|
import Whatsapp from "../models/Whatsapp";
|
||||||
|
|
||||||
const GetDefaultWhatsApp = async (): Promise<Whatsapp> => {
|
import WhatsappQueue from "../models/WhatsappQueue"
|
||||||
const defaultWhatsapp = await Whatsapp.findOne({
|
import UserQueue from "../models/UserQueue"
|
||||||
|
|
||||||
|
const GetDefaultWhatsApp = async (userId?: string | number ): Promise<Whatsapp> => {
|
||||||
|
|
||||||
|
// test del
|
||||||
|
let defaultWhatsapp = await Whatsapp.findOne({
|
||||||
where: { isDefault: true }
|
where: { isDefault: true }
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!defaultWhatsapp) {
|
||||||
|
|
||||||
|
try{
|
||||||
|
|
||||||
|
if(userId){
|
||||||
|
|
||||||
|
const queue = await UserQueue.findOne(
|
||||||
|
{
|
||||||
|
where: { userId: userId },
|
||||||
|
raw:true,
|
||||||
|
attributes: ['queueId']
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('+++++++++++++++ queueId: ',queue?.queueId, ' | userId: ', userId)
|
||||||
|
|
||||||
|
const whatsapp = await WhatsappQueue.findOne(
|
||||||
|
{
|
||||||
|
where: { queueId: `${queue?.queueId }`},
|
||||||
|
raw:true,
|
||||||
|
attributes: ['whatsappId']
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log('+++++++++++++++ whatsappId1: ',whatsapp?.whatsappId)
|
||||||
|
|
||||||
|
defaultWhatsapp = await Whatsapp.findOne({
|
||||||
|
where: { id: `${whatsapp?.whatsappId}` }
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
defaultWhatsapp = await Whatsapp.findOne({
|
||||||
|
where: { status: 'CONNECTED' }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}catch(err){
|
||||||
|
console.log('There was an error on select a whatsapp id by user queue: ', err)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if (!defaultWhatsapp) {
|
if (!defaultWhatsapp) {
|
||||||
throw new AppError("ERR_NO_DEF_WAPP_FOUND");
|
throw new AppError("ERR_NO_DEF_WAPP_FOUND");
|
||||||
}
|
}
|
||||||
|
|
||||||
return defaultWhatsapp;
|
return defaultWhatsapp;
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// const defaultWhatsapp = await Whatsapp.findOne({
|
||||||
|
// where: { isDefault: true }
|
||||||
|
// });
|
||||||
|
|
||||||
|
// if (!defaultWhatsapp) {
|
||||||
|
// throw new AppError("ERR_NO_DEF_WAPP_FOUND");
|
||||||
|
// }
|
||||||
|
|
||||||
|
// return defaultWhatsapp;
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default GetDefaultWhatsApp;
|
export default GetDefaultWhatsApp;
|
||||||
|
|
|
@ -1,8 +1,16 @@
|
||||||
import ShowQueueService from "./ShowQueueService";
|
import ShowQueueService from "./ShowQueueService";
|
||||||
|
|
||||||
|
import UserQueue from "../../models/UserQueue";
|
||||||
|
|
||||||
const DeleteQueueService = async (queueId: number | string): Promise<void> => {
|
const DeleteQueueService = async (queueId: number | string): Promise<void> => {
|
||||||
const queue = await ShowQueueService(queueId);
|
const queue = await ShowQueueService(queueId);
|
||||||
|
|
||||||
|
try {
|
||||||
|
await UserQueue.destroy({ where: {queueId: queueId } });
|
||||||
|
} catch (error) {
|
||||||
|
console.log('Error on delete UserQueue by queueId: ',queueId)
|
||||||
|
}
|
||||||
|
|
||||||
await queue.destroy();
|
await queue.destroy();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ const CreateTicketService = async ({
|
||||||
status,
|
status,
|
||||||
userId
|
userId
|
||||||
}: Request): Promise<Ticket> => {
|
}: Request): Promise<Ticket> => {
|
||||||
const defaultWhatsapp = await GetDefaultWhatsApp();
|
const defaultWhatsapp = await GetDefaultWhatsApp(userId);
|
||||||
|
|
||||||
await CheckContactOpenTickets(contactId);
|
await CheckContactOpenTickets(contactId);
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@ import moment from 'moment';
|
||||||
|
|
||||||
import { startOfDay, endOfDay, parseISO, getDate} from "date-fns";
|
import { startOfDay, endOfDay, parseISO, getDate} from "date-fns";
|
||||||
import { string } from "yup/lib/locale";
|
import { string } from "yup/lib/locale";
|
||||||
|
import Whatsapp from "../../models/Whatsapp";
|
||||||
|
|
||||||
//Report by user, startDate, endDate
|
//Report by user, startDate, endDate
|
||||||
const ShowTicketReport = async (id: string | number, startDate: string, endDate: string): Promise<Ticket[]> => {
|
const ShowTicketReport = async (id: string | number, startDate: string, endDate: string): Promise<Ticket[]> => {
|
||||||
|
@ -75,7 +76,10 @@ const ShowTicketReport = async (id: string | number, startDate: string, endDate:
|
||||||
model: Queue,
|
model: Queue,
|
||||||
attributes: ['name']
|
attributes: ['name']
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
model: Whatsapp,
|
||||||
|
attributes: ['name']
|
||||||
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
import Whatsapp from "../../models/Whatsapp";
|
import Whatsapp from "../../models/Whatsapp";
|
||||||
import AppError from "../../errors/AppError";
|
import AppError from "../../errors/AppError";
|
||||||
|
|
||||||
|
import WhatsappQueue from "../../models/WhatsappQueue";
|
||||||
|
|
||||||
const DeleteWhatsAppService = async (id: string): Promise<void> => {
|
const DeleteWhatsAppService = async (id: string): Promise<void> => {
|
||||||
const whatsapp = await Whatsapp.findOne({
|
const whatsapp = await Whatsapp.findOne({
|
||||||
where: { id }
|
where: { id }
|
||||||
|
@ -10,6 +12,14 @@ const DeleteWhatsAppService = async (id: string): Promise<void> => {
|
||||||
throw new AppError("ERR_NO_WAPP_FOUND", 404);
|
throw new AppError("ERR_NO_WAPP_FOUND", 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//test del
|
||||||
|
try {
|
||||||
|
await WhatsappQueue.destroy({ where: {whatsappId: id } });
|
||||||
|
} catch (error) {
|
||||||
|
console.log('Error on delete WhatsappQueue by whatsapp id: ',id)
|
||||||
|
}
|
||||||
|
//
|
||||||
|
|
||||||
await whatsapp.destroy();
|
await whatsapp.destroy();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -106,8 +106,10 @@ Item.propTypes = {
|
||||||
|
|
||||||
|
|
||||||
let columnsData = [
|
let columnsData = [
|
||||||
|
{ title: 'Whatsapp', field: 'whatsapp.name' },
|
||||||
{ title: 'Atendente', field: 'user.name' },
|
{ title: 'Atendente', field: 'user.name' },
|
||||||
{ title: 'Contato', field: 'contact.number' },
|
{ title: 'Contato', field: 'contact.number' },
|
||||||
|
{ title: 'Nome', field: 'contact.name' },
|
||||||
{ title: 'Assunto', field: 'queue.name' },
|
{ title: 'Assunto', field: 'queue.name' },
|
||||||
{ title: 'Status', field: 'status' },
|
{ title: 'Status', field: 'status' },
|
||||||
{ title: 'Criado', field: 'createdAt' },
|
{ title: 'Criado', field: 'createdAt' },
|
||||||
|
@ -219,6 +221,8 @@ const Report = () => {
|
||||||
|
|
||||||
//setLoading(false);
|
//setLoading(false);
|
||||||
|
|
||||||
|
console.log('dataQuery: ', dataQuery.data)
|
||||||
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,8 @@ import toastError from "../../errors/toastError";
|
||||||
import { AuthContext } from "../../context/Auth/AuthContext";
|
import { AuthContext } from "../../context/Auth/AuthContext";
|
||||||
import { Can } from "../../components/Can";
|
import { Can } from "../../components/Can";
|
||||||
|
|
||||||
|
import Button from "@material-ui/core/Button";
|
||||||
|
|
||||||
const useStyles = makeStyles(theme => ({
|
const useStyles = makeStyles(theme => ({
|
||||||
root: {
|
root: {
|
||||||
display: "flex",
|
display: "flex",
|
||||||
|
@ -95,6 +97,13 @@ const Settings = () => {
|
||||||
return value;
|
return value;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// const handleEdit = () => {
|
||||||
|
|
||||||
|
// console.log('Editar....')
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
|
|
||||||
|
@ -102,15 +111,20 @@ const Settings = () => {
|
||||||
role={user.profile}
|
role={user.profile}
|
||||||
perform="settings-view:show"
|
perform="settings-view:show"
|
||||||
yes={() => (
|
yes={() => (
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
<div className={classes.root}>
|
<div className={classes.root}>
|
||||||
<Container className={classes.container} maxWidth="sm">
|
<Container className={classes.container} maxWidth="sm">
|
||||||
<Typography variant="body2" gutterBottom>
|
<Typography variant="body2" gutterBottom>
|
||||||
{i18n.t("settings.title")}
|
{i18n.t("settings.title")}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Paper className={classes.paper}>
|
<Paper className={classes.paper}>
|
||||||
<Typography variant="body1">
|
<Typography variant="body1">
|
||||||
{i18n.t("settings.settings.userCreation.name")}
|
{i18n.t("settings.settings.userCreation.name")}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Select
|
<Select
|
||||||
margin="dense"
|
margin="dense"
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
|
@ -133,6 +147,40 @@ const Settings = () => {
|
||||||
</Paper>
|
</Paper>
|
||||||
</Container>
|
</Container>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{/* <div className={classes.root}>
|
||||||
|
<Container className={classes.container} maxWidth="sm">
|
||||||
|
<Typography variant="body2" gutterBottom>
|
||||||
|
Application name
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Paper className={classes.paper}>
|
||||||
|
|
||||||
|
<Typography variant="body1">
|
||||||
|
Estudio Face
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
|
||||||
|
<Button
|
||||||
|
margin="dense"
|
||||||
|
variant="outlined"
|
||||||
|
id="applicationName-setting"
|
||||||
|
name="applicationName"
|
||||||
|
color="primary"
|
||||||
|
onClick={(e) => handleEdit()}
|
||||||
|
className={classes.settingOption}
|
||||||
|
>
|
||||||
|
{"EDIT"}
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
</Paper>
|
||||||
|
|
||||||
|
</Container>
|
||||||
|
</div> */}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue