#8448 - devToTest #1254

Merged
alexm merged 365 commits from 8448-devToTest into test 2025-01-21 10:44:46 +00:00
1 changed files with 4 additions and 3 deletions
Showing only changes of commit c35a468e01 - Show all commits

View File

@ -35,6 +35,7 @@ const editTableCellDialogRef = ref(null);
const user = state.getUser(); const user = state.getUser();
const fixedPrices = ref([]); const fixedPrices = ref([]);
const warehousesOptions = ref([]); const warehousesOptions = ref([]);
const hasSelectedRows = computed(() => rowsSelected.value.length > 0);
const rowsSelected = ref([]); const rowsSelected = ref([]);
const itemFixedPriceFilterRef = ref(); const itemFixedPriceFilterRef = ref();
@ -372,9 +373,9 @@ function handleOnDataSave({ CrudModelRef }) {
</template> </template>
</RightMenu> </RightMenu>
<VnSubToolbar> <VnSubToolbar>
<template #st-data> <template #st-actions>
<QBtn <QBtn
v-if="rowsSelected.length" :disable="!hasSelectedRows"
@click="openEditTableCellDialog()" @click="openEditTableCellDialog()"
color="primary" color="primary"
icon="edit" icon="edit"
@ -384,13 +385,13 @@ function handleOnDataSave({ CrudModelRef }) {
</QTooltip> </QTooltip>
</QBtn> </QBtn>
<QBtn <QBtn
:disable="!hasSelectedRows"
:label="tMobile('globals.remove')" :label="tMobile('globals.remove')"
color="primary" color="primary"
icon="delete" icon="delete"
flat flat
@click="(row) => confirmRemove(row, true)" @click="(row) => confirmRemove(row, true)"
:title="t('globals.remove')" :title="t('globals.remove')"
v-if="rowsSelected.length"
/> />
</template> </template>
</VnSubToolbar> </VnSubToolbar>