fix: refs #7353 scopeDays #795
|
@ -25,7 +25,11 @@ const stateOpts = ref([]);
|
|||
const zoneOpts = ref([]);
|
||||
const visibleColumns = ref([]);
|
||||
const { viewSummary } = useSummaryDialog();
|
||||
const [from, to] = dateRange(Date.vnNew());
|
||||
|
||||
const from = Date.vnNew();
|
||||
from.setHours(0, 0, 0, 0);
|
||||
const to = new Date(from.getTime());
|
||||
to.setDate(to.getDate() + 1);
|
||||
to.setHours(23, 59, 59, 999);
|
||||
|
||||
function exprBuilder(param, value) {
|
||||
switch (param) {
|
||||
|
|
Loading…
Reference in New Issue
Al arrancar no ponía 1 día adelante
Pregunta, porque este filter, dataRange no funciona? Deberiamos tener otro?
Esta lógica, de usar dateRange está también en MonitorClients, revisa porque a ver si a futuro nos lo reabren
En monitorClients está bien porque es el mismo día. En MonitorTickets es 1 día adelante.
Es solo para el mismo día.