fix: refs #8349 fixed duplicate request when multiple editing
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
edb083a6ab
commit
b5900dc6ef
|
@ -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 () => {
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue