8713-testToMaster #1539

Merged
alexm merged 118 commits from 8713-testToMaster into master 2025-03-04 06:57:15 +00:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 2725571ee1 - Show all commits

View File

@ -26,8 +26,6 @@ const userParams = {
};
const filterPanelRef = ref(null);
// Proveer específicamente el filterPanel
provide('filterPanel', filterPanelRef);
defineExpose({ filterPanelRef });
const provinces = ref([]);
const states = ref([]);

View File

@ -46,7 +46,6 @@ to.setHours(23, 59, 0, 0);
to.setDate(to.getDate() + 1);
onBeforeMount(() => {
// initializeFromQuery();
stateStore.rightDrawer = true;
if (!route.query.createForm) return;
onClientSelected(JSON.parse(route.query.createForm));
@ -476,7 +475,6 @@ const filterPanelRef = ref(null);
:array-data-props="{
url: 'Tickets/filter',
order: ['shippedDate DESC', 'shippedHour ASC', 'zoneLanding ASC', 'id'],
filterPanelOptions: true,
filterPanel: filterPanelRef,
searchRemoveParams: true,
exprBuilder,

View File

@ -396,3 +396,7 @@ Cypress.Commands.add('searchBtnFilterPanel', () => {
'.q-scrollarea__content > .q-btn--standard > .q-btn__content > .q-icon',
).click();
});
Cypress.Commands.add('waitRequest', (alias, cb) => {
cy.wait(alias).then(cb);
});