Alteração para consultas nos campos usuario, dataInicio, dataFim. Atenção: Houve um bug nesse até esse commit que está impedindo que o whatssap seja lido pelo qrcode
parent
39453e791d
commit
1b4347d585
|
@ -7,30 +7,43 @@ import Queue from "../../models/Queue";
|
|||
import Message from "../../models/Message";
|
||||
import { userInfo } from "os";
|
||||
|
||||
import { Op } from "sequelize";
|
||||
import { Op, where } from "sequelize";
|
||||
|
||||
import { Sequelize } from "sequelize";
|
||||
import moment from 'moment';
|
||||
|
||||
import { startOfDay, endOfDay, parseISO, getDate} from "date-fns";
|
||||
import { string } from "yup/lib/locale";
|
||||
|
||||
//Report by user, startDate, endDate
|
||||
const ShowTicketReport = async (id: string | number, startDate: string, endDate: string): Promise<Ticket[]> => {
|
||||
|
||||
const ticket = await Ticket.findAll({
|
||||
where: {
|
||||
userid: id,
|
||||
//createdAt: {
|
||||
// [Op.between]: [+new Date('2022-01-24').toISOString(), +new Date().toISOString()]
|
||||
//},
|
||||
let where_clause = {}
|
||||
|
||||
if(id=='0'){
|
||||
where_clause = {
|
||||
createdAt: {
|
||||
[Op.gte]: startDate+' 00:00:00.000000',
|
||||
[Op.lte]: endDate +' 23:59:59.999999'
|
||||
},
|
||||
}
|
||||
}
|
||||
else{
|
||||
where_clause = {
|
||||
userid: id,
|
||||
createdAt: {
|
||||
[Op.gte]: startDate+' 00:00:00.000000',
|
||||
[Op.lte]: endDate +' 23:59:59.999999'
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
||||
const ticket = await Ticket.findAll({
|
||||
|
||||
where: where_clause ,
|
||||
attributes: ['id', 'status', 'createdAt', 'updatedAt'],
|
||||
include: [
|
||||
{
|
||||
|
|
|
@ -10,14 +10,10 @@ const MTable = (props) => {
|
|||
|
||||
const [selectedRow, setSelectedRow] = useState(null);
|
||||
|
||||
console.log('rederizou....................: ',props.data)
|
||||
|
||||
const dataLoad = props.data.map((dt) => { return { ...dt }});
|
||||
const columnsLoad = props.columns.map((column) => { return { ...column }});
|
||||
|
||||
console.log('dataLoad....................: ',dataLoad)
|
||||
console.log('columnsLoad....................: ',columnsLoad)
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
console.log(`You have clicked the button ${selectedRow} times`)
|
||||
|
@ -31,6 +27,7 @@ const MTable = (props) => {
|
|||
columns={columnsLoad}
|
||||
data={dataLoad}
|
||||
|
||||
|
||||
onRowClick={(evt, selectedRow) => {
|
||||
|
||||
console.log(selectedRow.tableData.id);
|
||||
|
@ -48,6 +45,8 @@ const MTable = (props) => {
|
|||
search: true,
|
||||
selection: false,
|
||||
paging: false,
|
||||
padding: 'dense',
|
||||
//loadingType: 'linear',
|
||||
searchFieldStyle: {
|
||||
width: 300,
|
||||
},
|
||||
|
|
|
@ -184,6 +184,7 @@ const Report = () => {
|
|||
|
||||
useEffect(() => {
|
||||
setLoading(true);
|
||||
|
||||
const delayDebounceFn = setTimeout(() => {
|
||||
|
||||
const fetchUsers = async () => {
|
||||
|
@ -216,10 +217,10 @@ const Report = () => {
|
|||
|
||||
const fetchQueries = async () => {
|
||||
try {
|
||||
const dataQuery = await api.get("/reports/", {params: {userId, startDate, endDate },});
|
||||
|
||||
console.log('fffffffffffffffffffff query: ', dataQuery.data)
|
||||
dispatchQ({ type: "LOAD_QUERY", payload: dataQuery.data });
|
||||
/*const dataQuery = await api.get("/reports/", {params: {userId, startDate, endDate },});
|
||||
dispatchQ({ type: "RESET" })
|
||||
dispatchQ({ type: "LOAD_QUERY", payload: dataQuery.data }); */
|
||||
|
||||
setLoading(false);
|
||||
|
||||
|
@ -274,6 +275,7 @@ console.log('XXXXXXXXX: ', query)
|
|||
<MainContainer>
|
||||
|
||||
|
||||
|
||||
<Box sx={{ display: 'grid', gridTemplateColumns: 'repeat(3, 1fr)' }}>
|
||||
|
||||
<Item><SelectField func={textFieldSelectUser} currencies={users.map((obj)=>{
|
||||
|
|
Loading…
Reference in New Issue