View | Details | Raw Unified | Return to bug 35408
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesFormImport.vue (-2 / +5 lines)
Lines 2-10 Link Here
2
    <h2>{{ $__("Import from a list") }}</h2>
2
    <h2>{{ $__("Import from a list") }}</h2>
3
    <div v-if="job_id" class="dialog message">
3
    <div v-if="job_id" class="dialog message">
4
        {{ $__("Import in progress,") }}
4
        {{ $__("Import in progress,") }}
5
        <router-link :to="`/cgi-bin/koha/admin/background_jobs/${job_id}`">
5
        <a
6
            :href="`/cgi-bin/koha/admin/background_jobs.pl?op=view&id=${job_id}`"
7
            target="_blank"
8
        >
6
            {{ $__("see job #%s").format(job_id) }}
9
            {{ $__("see job #%s").format(job_id) }}
7
        </router-link>
10
        </a>
8
    </div>
11
    </div>
9
    <fieldset id="package_list" class="rows">
12
    <fieldset id="package_list" class="rows">
10
        {{ $__("To the following local package") }}:
13
        {{ $__("To the following local package") }}:
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js (-10 lines)
Lines 30-44 import UsageStatisticsReportsViewer from "../components/ERM/UsageStatisticsRepor Link Here
30
import { $__ } from "../i18n";
30
import { $__ } from "../i18n";
31
31
32
export const routes = [
32
export const routes = [
33
    {
34
        path: "/cgi-bin/koha/admin/background_jobs/:id",
35
        is_base: true,
36
        beforeEnter(to, from, next) {
37
            window.location.href =
38
                "/cgi-bin/koha/admin/background_jobs.pl?op=view&id=" +
39
                to.params.id;
40
        },
41
    },
42
    {
33
    {
43
        path: "/cgi-bin/koha/erm/erm.pl",
34
        path: "/cgi-bin/koha/erm/erm.pl",
44
        is_default: true,
35
        is_default: true,
45
- 

Return to bug 35408