Dev 4.6.1 #13

Merged
th.guenther merged 5 commits from dev-4.6.1 into main 2026-08-05 19:30:19 +02:00
3 changed files with 18 additions and 4 deletions
Showing only changes of commit 67c4e69f7b - Show all commits
@@ -5,7 +5,7 @@ import ParticipantData from "./ParticipantData.vue";
import MailCompose from "./MailCompose.vue"; import MailCompose from "./MailCompose.vue";
import {toast} from "vue3-toastify"; import {toast} from "vue3-toastify";
import {useAjax} from "../../../../../resources/js/components/ajaxHandler.js"; import {useAjax} from "../../../../../resources/js/components/ajaxHandler.js";
import {format, getDay, getMonth, getYear} from "date-fns"; import {format} from "date-fns";
import AmountInput from "../../../../Views/Components/AmountInput.vue"; import AmountInput from "../../../../Views/Components/AmountInput.vue";
import FullScreenModal from "../../../../Views/Components/FullScreenModal.vue"; import FullScreenModal from "../../../../Views/Components/FullScreenModal.vue";
import DialableTelephoneNumber from "../../../../Views/Components/DialableTelephoneNumber.vue"; import DialableTelephoneNumber from "../../../../Views/Components/DialableTelephoneNumber.vue";
@@ -344,6 +344,14 @@ function mailToGroup(groupKey) {
<span class="link" style="font-size:10pt;" @click="paymentComplete(participant)">Zahlung buchen</span> &nbsp; <span class="link" style="font-size:10pt;" @click="paymentComplete(participant)">Zahlung buchen</span> &nbsp;
<span class="link" style="font-size:10pt;" @click="openPartialPaymentDialog(participant)">Teilzahlung buchen</span> <span class="link" style="font-size:10pt;" @click="openPartialPaymentDialog(participant)">Teilzahlung buchen</span>
</span> </span>
<br/><br/>
<span :id="'participant-' + participant.identifier + '-paymentmethod'"
style="font-size:10pt;">
Zahlungsweise: <label
:id="'participant-' + participant.identifier + '-paymentmethod-name'">{{
participant.paymentMethod ?? '—'
}}</label>
</span>
</td> </td>
<td class="pl-email"> <td class="pl-email">
@@ -28,6 +28,12 @@ function setValue(name, value) {
:modelValue="modelValue[option.name] ?? ''" :modelValue="modelValue[option.name] ?? ''"
@update:modelValue="value => setValue(option.name, value)" @update:modelValue="value => setValue(option.name, value)"
/> />
<input
v-else-if="option.type === 'checkbox'"
type="checkbox"
:checked="modelValue[option.name] ?? false"
@change="event => setValue(option.name, event.target.checked)"
/>
<input <input
v-else v-else
type="text" type="text"
+1 -1
View File
@@ -1 +1 @@
4.6.0 4.6.1