Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementPeriods.vue
Jonathan Druart 2197809353
Bug 32030: Rebase UI fix - Use page-section for better separation in forms
Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com>

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-08 09:44:32 -03:00

98 lines
3.1 KiB
Vue

<template>
<div class="page-section" id="agreement_periods">
<legend>{{ $t("Periods") }}</legend>
<fieldset
:id="`agreement_period_${counter}`"
class="rows"
v-for="(period, counter) in periods"
v-bind:key="counter"
>
<legend>
{{ $t("Agreement period .counter", { counter: counter + 1 }) }}
<a href="#" @click.prevent="deletePeriod(counter)"
><i class="fa fa-trash"></i>
{{ $t("Remove this period") }}</a
>
</legend>
<ol>
<li>
<label :for="`started_on_${counter}`" class="required"
>{{ $t("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">{{ $t("Required") }}</span>
</li>
<li>
<label :for="`ended_on_${counter}`"
>{{ $t("End date") }}:</label
>
<flat-pickr
:id="`ended_on_${counter}`"
v-model="period.ended_on"
:config="fp_config"
/>
</li>
<li>
<label :for="`cancellation_deadline_${counter}`"
>{{ $t("Cancellation deadline") }}:
</label>
<flat-pickr
:id="`cancellation_deadline_${counter}`"
v-model="period.cancellation_deadline"
:config="fp_config"
/>
</li>
<li>
<label :for="`notes_${counter}`">{{ $t("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" /> {{ $t("Add new period") }}</a
>
</div>
</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>