#6877 - itemRequestMod #362

Merged
carlossa merged 6 commits from 6877-itemRequestMod into dev 2024-05-09 10:55:04 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 1b65ec7c38 - Show all commits

View File

@ -2,7 +2,7 @@ export default function dateRange(value) {
const minHour = new Date(value);
minHour.setHours(0, 0, 0, 0);
const maxHour = new Date(value);
maxHour.setHours(22, 59, 59, 59);
maxHour.setHours(23, 59, 59, 59);
return [minHour, maxHour];
}

View File

@ -192,6 +192,7 @@ const decrement = (paramsObj, key) => {
v-model="params.from"
@update:model-value="searchFn()"
is-outlined
emit-date-format
/>
</QItemSection>
</QItem>
@ -202,6 +203,7 @@ const decrement = (paramsObj, key) => {
v-model="params.to"
@update:model-value="searchFn()"
is-outlined
emit-date-format
/>
</QItemSection>
</QItem>