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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesFormAdd.vue (-2 / +2 lines)
Lines 503-509 export default { Link Here
503
                    success => {
503
                    success => {
504
                        setMessage(this.$__("Title updated"))
504
                        setMessage(this.$__("Title updated"))
505
                        this.$router.push({
505
                        this.$router.push({
506
                            name: "EHoldingsLocalPackagesList",
506
                            name: "EHoldingsLocalTitlesList",
507
                        })
507
                        })
508
                    },
508
                    },
509
                    error => {}
509
                    error => {}
Lines 513-519 export default { Link Here
513
                    success => {
513
                    success => {
514
                        setMessage(this.$__("Title created"))
514
                        setMessage(this.$__("Title created"))
515
                        this.$router.push({
515
                        this.$router.push({
516
                            name: "EHoldingsLocalPackagesList",
516
                            name: "EHoldingsLocalTitlesList",
517
                        })
517
                        })
518
                    },
518
                    },
519
                    error => {}
519
                    error => {}
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Main.vue (-7 / +2 lines)
Lines 78-86 Link Here
78
                                                <ul>
78
                                                <ul>
79
                                                    <li>
79
                                                    <li>
80
                                                        <router-link
80
                                                        <router-link
81
                                                            :to="{
81
                                                            :to="`/cgi-bin/koha/erm/eholdings/${provider}/packages`"
82
                                                                name: `EHoldings${provider}PackagesList`,
83
                                                            }"
84
                                                        >
82
                                                        >
85
                                                            <i
83
                                                            <i
86
                                                                class="fa fa-archive"
84
                                                                class="fa fa-archive"
Lines 92-100 Link Here
92
                                                    </li>
90
                                                    </li>
93
                                                    <li>
91
                                                    <li>
94
                                                        <router-link
92
                                                        <router-link
95
                                                            :to="{
93
                                                            :to="`/cgi-bin/koha/erm/eholdings/${provider}/titles`"
96
                                                                name: `EHoldings${provider}TitlesList`,
97
                                                            }"
98
                                                        >
94
                                                        >
99
                                                            <i
95
                                                            <i
100
                                                                class="fa fa-sort-alpha-asc"
96
                                                                class="fa fa-sort-alpha-asc"
101
- 

Return to bug 32932