Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementPeriods.vue
Pedro Amorim 715a3ec635
Bug 33355: Update forms markup to be in line with interface patterns
https://wiki.koha-community.org/wiki/Interface_patterns

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-05-05 12:13:54 -03:00

98 lines
3.1 KiB
Vue

<template>
<fieldset class="rows" id="agreement_periods">
<legend>{{ $__("Periods") }}</legend>
<fieldset
:id="`agreement_period_${counter}`"
class="rows"
v-for="(period, counter) in periods"
v-bind:key="counter"
>
<legend>
{{ $__("Agreement period %s").format(counter + 1) }}
<a href="#" @click.prevent="deletePeriod(counter)"
><i class="fa fa-trash"></i>
{{ $__("Remove this period") }}</a
>
</legend>
<ol>
<li>
<label :for="`started_on_${counter}`" class="required"
>{{ $__("Start date") }}:
</label>
<flat-pickr
:id="`started_on_${counter}`"
v-model="period.started_on"
required
:config="fp_config"
:data-date_to="`ended_on_${counter}`"
/>
<span class="required">{{ $__("Required") }}</span>
</li>
<li>
<label :for="`ended_on_${counter}`"
>{{ $__("End date") }}:</label
>
<flat-pickr
:id="`ended_on_${counter}`"
v-model="period.ended_on"
:config="fp_config"
/>
</li>
<li>
<label :for="`cancellation_deadline_${counter}`"
>{{ $__("Cancellation deadline") }}:
</label>
<flat-pickr
:id="`cancellation_deadline_${counter}`"
v-model="period.cancellation_deadline"
:config="fp_config"
/>
</li>
<li>
<label :for="`notes_${counter}`">{{ $__("Notes") }}:</label>
<input
:id="`notes_${counter}`"
type="text"
class="notes"
:name="`notes_${counter}`"
v-model="period.notes"
/>
</li>
</ol>
</fieldset>
<a class="btn btn-default" @click="addPeriod"
><font-awesome-icon icon="plus" /> {{ $__("Add new period") }}</a
>
</fieldset>
</template>
<script>
import flatPickr from "vue-flatpickr-component"
export default {
name: "AgreementPeriods",
data() {
return {
fp_config: flatpickr_defaults,
}
},
props: {
periods: Array,
},
methods: {
addPeriod() {
this.periods.push({
started_on: null,
ended_on: null,
cancellation_deadline: null,
notes: null,
})
},
deletePeriod(counter) {
this.periods.splice(counter, 1)
},
},
components: {
flatPickr,
},
}
</script>