Merge branch '8118-createComponentVnDropdown' of https://gitea.verdnatura.es/verdnatura/salix-front into 8118-createComponentVnDropdown
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2025-03-24 10:02:37 +01:00
commit 13c547dd6a
3 changed files with 22 additions and 28 deletions

View File

@ -11,14 +11,18 @@ const $props = defineProps({
type: Boolean,
default: null,
},
moduleName: {
type: String,
default: null,
},
options: {
type: Array,
default: null,
},
optionLabel: {
type: String,
default: 'name',
},
optionValue: {
type: String,
default: 'id',
},
});
async function changeState(value) {
@ -37,24 +41,13 @@ async function changeState(value) {
>
<VnSelect
:options="$props.options"
:option-label="$props.optionLabel"
:option-value="$props.optionValue"
hide-selected
option-value="code"
hide-dropdown-icon
focus-on-mount
@update:model-value="changeState"
>
<template #option="scope">
<QItem v-bind="scope.itemProps">
<QItemSection>
<QItemLabel v-if="$props.moduleName === 'Ticket'">
{{ scope.opt?.name }}
</QItemLabel>
<QItemLabel v-if="$props.moduleName === 'Claim'">
{{ scope.opt?.description }}
</QItemLabel>
</QItemSection>
</QItem>
</template>
</VnSelect>
</QBtnDropdown>
</template>

View File

@ -174,9 +174,8 @@ function openDialog(dmsId) {
}
async function changeState(value) {
const newState = claimStates.value.find((state) => state.code == value);
await axios.patch(`Claims/updateClaim/${entityId.value}`, {
claimStateFk: newState.id,
claimStateFk: value,
});
router.go(route.fullPath);
}
@ -184,14 +183,15 @@ async function changeState(value) {
function claimUrl(section) {
return '#/claim/' + entityId.value + '/' + section;
}
onMounted(async () => {
const { data } = await axios.get('ClaimStates');
claimStates.value = data;
});
</script>
<template>
<FetchData
url="ClaimStates"
:filter="{ fields: ['id', 'description'] }"
@on-fetch="(data) => (claimStates = data)"
auto-load
/>
<FetchData
url="ClaimDms"
:filter="claimDmsFilter"
@ -210,8 +210,9 @@ onMounted(async () => {
</template>
<template #header-right>
<VnDropdown
:moduleName="route.meta.moduleName"
:options="claimStates"
option-label="description"
option-value="id"
@change-state="changeState($event)"
/>
</template>

View File

@ -114,10 +114,10 @@ onMounted(async () => {
</template>
<template #header-right>
<VnDropdown
:moduleName="route.meta.moduleName"
:moduleId="entityId"
:options="editableStates"
:disable="!isEditable()"
:options="editableStates"
:option-label="'name'"
:option-value="'code'"
@change-state="changeState($event)"
/>
</template>