Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesShow.vue
Jonathan Druart 72b73e0a5b
Bug 32030: Fix tests
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:50 -03:00

115 lines
3.3 KiB
Vue

<template>
<div v-if="!this.initialized">Loading...</div>
<div v-else id="licenses_show">
<h2>License #{{ license.license_id }}</h2>
<div>
<fieldset class="rows">
<ol>
<li>
<label>License name:</label>
<span>
{{ license.name }}
</span>
</li>
<li>
<label>Description: </label>
<span>
{{ license.description }}
</span>
</li>
<li>
<label>Type: </label>
<span>{{
get_lib_from_av(av_license_types, license.type)
}}</span>
</li>
<li>
<label>Status: </label>
<span>{{
get_lib_from_av(av_license_statuses, license.status)
}}</span>
</li>
<li>
<label>Started on:</label>
<span>{{ format_date(license.started_on) }}</span>
</li>
<li>
<label>Ended on:</label>
<span>{{ format_date(license.ended_on) }}</span>
</li>
</ol>
</fieldset>
<fieldset class="action">
<router-link
to="/cgi-bin/koha/erm/licenses"
role="button"
class="cancel"
>Close</router-link
>
</fieldset>
</div>
</div>
</template>
<script>
import { useAVStore } from "../../stores/authorised_values"
import { storeToRefs } from "pinia"
import { fetchLicense } from "../../fetch"
export default {
setup() {
const format_date = $date
const get_lib_from_av = function (arr, av) {
let o = arr.find(
(e) => e.authorised_value == av
)
return o ? o.lib : ""
}
const AVStore = useAVStore()
const {
av_license_types,
av_license_statuses,
} = storeToRefs(AVStore)
return {
format_date,
get_lib_from_av,
av_license_types,
av_license_statuses,
}
},
data() {
return {
license: {
license_id: null,
name: '',
description: '',
type: '',
status: '',
started_on: undefined,
ended_on: undefined,
},
initialized: false,
}
},
beforeRouteEnter(to, from, next) {
next(vm => {
vm.license = vm.getLicense(to.params.license_id)
vm.initialized = true
})
},
methods: {
async getLicense(license_id) {
const license = await fetchLicense(license_id)
this.license = license
this.initialized = true
},
},
components: {
},
name: "LicensesShow",
}
</script>