#5888 - FiscalData Field location #174

Merged
carlossa merged 4 commits from 5888_fiscalData_field_location into test 2024-02-02 13:54:31 +00:00
2 changed files with 72 additions and 34 deletions
Showing only changes of commit 1c7ad7946e - Show all commits

View File

@ -55,7 +55,7 @@ const value = computed({
});
onMounted(() => {
locationFilter()
locationFilter($props.modelValue);
});
function setOptions(data) {
@ -72,7 +72,12 @@ function showLabel(data) {
return `${data.code} - ${data.town}(${data.province}), ${data.country}`;
}
function locationFilter(search) {
function locationFilter(search = '') {
if (
search &&
(search.includes('undefined') || search.startsWith(`${$props.modelValue} - `))
)
return;
let where = { search };
postcodesRef.value.fetch({ filter: { where }, limit: 30 });
}
@ -80,7 +85,6 @@ function locationFilter(search) {
function handleFetch(data) {
postcodesOptions.value = data;
}
</script>
<template>
<FetchData
@ -90,13 +94,14 @@ function handleFetch( data) {
/>
<VnSelectCreate
v-if="postcodesRef"
:option-label="(opt) => showLabel(opt) ?? 'code'"
:option-value="(opt) => opt.code"
v-model="value"
:options="postcodesOptions"
:label="t('Location')"
:option-label="showLabel"
:placeholder="t('Search by postalCode, town, province or country')"
@input-value="locationFilter"
:default-filter="false"
:default-filter="true"
:input-debounce="300"
:class="{ required: $attrs.required }"
v-bind="$attrs"

View File

@ -1,31 +1,64 @@
const inputLocation = ':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control';
const locationOptions ='[role="listbox"] > div.q-virtual-scroll__content > .q-item'
describe('VnLocation', () => {
// describe('Create',()=>{
// const inputLocation = ':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control';
// beforeEach(() => {
// cy.viewport(1280, 720);
// cy.login('developer');
// cy.visit('/#/worker/create');
// cy.waitForElement('.q-card');
// });
// it('Show all options', function() {
// cy.get(inputLocation).click();
// cy.get(locationOptions).should('have.length',5);
// });
// it('input filter location as "al"', function() {
// cy.get(inputLocation).click();
// cy.get(inputLocation).clear();
// cy.get(inputLocation).type('al');
// cy.get(locationOptions).should('have.length',3);
// });
// it('input filter location as "ecuador"', function() {
// cy.get(inputLocation).click();
// cy.get(inputLocation).clear();
// cy.get(inputLocation).type('ecuador');
// cy.get(locationOptions).should('have.length',1);
// cy.get(`${locationOptions}:nth-child(1)`).click();
// cy.get(':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control > :nth-child(2) > .q-icon').click();
// });
// });
describe('Fiscal-data',()=>{
const inputLocation = ':nth-child(6) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control';
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
cy.visit('/#/worker/create');
cy.visit('/#/supplier/567/fiscal-data', {timeout: 2000});
cy.waitForElement('.q-card');
});
it('Show all options', function() {
cy.get(inputLocation).click();
cy.get(locationOptions).should('have.length',5);
});
// cy.get(inputLocation).click();
// cy.get(locationOptions).should('have.length',5);
// });
it('input filter location as "al"', function() {
// it('input filter location as "al"', function() {
// cy.get(inputLocation).click();
// cy.get(inputLocation).clear();
// cy.get(inputLocation).type('al');
// cy.get(locationOptions).should('have.length',3);
// });
// it('input filter location as "ecuador"', function() {
cy.get(inputLocation).click();
cy.get(inputLocation).clear();
cy.get(inputLocation).type('al');
cy.get(locationOptions).should('have.length',3);
});
it('input filter location as "ecuador"', function() {
cy.get(inputLocation).click();
cy.get(inputLocation).clear();
cy.get(inputLocation).type('ecuador');
// cy.get(inputLocation).clear();
// cy.get(inputLocation).type('ecuador');
cy.get(locationOptions).should('have.length',1);
cy.get(`${locationOptions}:nth-child(1)`).click();
cy.get(':nth-child(3) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control > :nth-child(2) > .q-icon').click();
// cy.get(`${locationOptions}:nth-child(1)`).click();
// cy.get(':nth-child(6) > :nth-child(1) > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > .q-field__input').should('have.text','46600')
});
});
})