mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-26 14:40:29 +01:00
70 lines
2.5 KiB
Vue
70 lines
2.5 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: 2023-2024 Andreas Palm
|
|
|
|
SPDX-License-Identifier: LicenseRef-EGPL-3.1
|
|
-->
|
|
|
|
<script setup>
|
|
import {ref, onMounted} from "vue";
|
|
import axios from "axios";
|
|
import Button from "primevue/button";
|
|
import Dialog from "primevue/dialog";
|
|
import Fluid from "primevue/fluid";
|
|
import InputText from "primevue/inputtext";
|
|
import InputNumber from "primevue/inputnumber";
|
|
import Checkbox from "primevue/checkbox";
|
|
import {AlertErrorHandler} from "@res/js/ajaxErrorHandler";
|
|
|
|
const props = defineProps({
|
|
optionId: String,
|
|
groupId: String,
|
|
articleId: String
|
|
});
|
|
const emit = defineEmits(['save', 'close']);
|
|
|
|
const model = ref({});
|
|
|
|
onMounted(async () => {
|
|
if (props.optionId > 0) {
|
|
const url = props.articleId > 0
|
|
? 'index.php?module=matrixprodukt&action=artikel&cmd=optionedit'
|
|
: 'index.php?module=matrixprodukt&action=optionenlist&cmd=edit';
|
|
model.value = await axios.get(url, {
|
|
params: props
|
|
}).then(response => response.data)
|
|
}
|
|
})
|
|
|
|
async function save() {
|
|
const url = props.articleId > 0
|
|
? 'index.php?module=matrixprodukt&action=artikel&cmd=optionsave'
|
|
: 'index.php?module=matrixprodukt&action=optionenlist&cmd=save';
|
|
await axios.post(url, {...props, ...model.value})
|
|
.then(() => {emit('save')})
|
|
.catch(AlertErrorHandler);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Dialog visible modal header="Option anlegen/bearbeiten" style="width: 500px" @update:visible="emit('close')">
|
|
<Fluid>
|
|
<div class="grid gap-1" style="grid-template-columns: 25% 75%">
|
|
<label for="matrixProduct_option_name">Name:</label>
|
|
<InputText id="matrixProduct_option_name" v-model="model.name" required autofocus />
|
|
<label for="matrixProduct_option_nameExternal">Name Extern:</label>
|
|
<InputText id="matrixProduct_option_nameExternal" v-model="model.nameExternal" />
|
|
<label for="matrixProduct_option_articleNumberSuffix">Artikelnummer-Suffix:</label>
|
|
<InputText id="matrixProduct_option_articleNumberSuffix" v-model="model.articleNumberSuffix" />
|
|
<label for="matrixProduct_option_sort">Sortierung:</label>
|
|
<InputNumber input-id="matrixProduct_option_sort" v-model="model.sort" show-buttons />
|
|
<label for="matrixProduct_option_active">Aktiv:</label>
|
|
<Checkbox input-id="matrixProduct_option_active" v-model="model.active" binary />
|
|
</div>
|
|
</Fluid>
|
|
<template #footer>
|
|
<Button label="ABBRECHEN" @click="emit('close')" />
|
|
<Button label="SPEICHERN" @click="save" :disabled="!model.name" />
|
|
</template>
|
|
</Dialog>
|
|
</template>
|