Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementPeriods.vue
Jonathan Druart 08ce593bd9
Bug 32030: Use fetch.js, improve messages handling, remove top level modules
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:43:49 -03:00

106 lines
3.3 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 {{ 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,
dates_fixed: 0,
}
},
props: {
periods: Array
},
beforeCreate() {
if (!this.dates_fixed) {
this.periods.forEach(p => {
p.started_on = $date(p.started_on)
p.ended_on = $date(p.ended_on)
p.cancellation_deadline = $date(p.cancellation_deadline)
})
this.dates_fixed = 1
}
},
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>