fix: refs #8349 fixed duplicate request when multiple editing
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
PAU ROVIRA ROSALENY 2025-02-04 09:07:16 +01:00
parent edb083a6ab
commit b5900dc6ef
2 changed files with 6 additions and 3 deletions

View File

@ -23,6 +23,7 @@ import { isLower, isBigger } from 'src/filters/date.js';
import RightMenu from 'src/components/common/RightMenu.vue';
import VnTable from 'src/components/VnTable/VnTable.vue';
import { QCheckbox } from 'quasar';
import { debounce } from 'lodash';
const quasar = useQuasar();
const stateStore = useStateStore();
@ -38,6 +39,9 @@ const warehousesOptions = ref([]);
const hasSelectedRows = computed(() => rowsSelected.value.length > 0);
const rowsSelected = ref([]);
const itemFixedPriceFilterRef = ref();
const reloadTable = debounce(() => {
tableRef.value.reload();
}, 500);
onMounted(async () => {
stateStore.rightDrawer = true;
@ -304,7 +308,7 @@ const openEditTableCellDialog = () => {
const onEditCellDataSaved = async () => {
rowsSelected.value = [];
tableRef.value.reload();
reloadTable();
};
const removeFuturePrice = async () => {

View File

@ -37,8 +37,7 @@ describe('Handle Items FixedPrice', () => {
cy.dataCy('VnConfirm_confirm').click();
});
it.skip('Massive edit', function () {
//Falla debido a que hay una petición doble
it('Massive edit', function () {
cy.get(' .bg-header > :nth-child(1) > .q-checkbox > .q-checkbox__inner ').click();
cy.get('#subToolbar > .q-btn--standard').click();
cy.selectOption("[data-cy='field-to-edit']", 'Min price');