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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsShow.vue (-1 / +1 lines)
Lines 410-416 export default { Link Here
410
                                ),
410
                                ),
411
                                true
411
                                true
412
                            )
412
                            )
413
                            this.$router.push("/cgi-bin/koha/erm/agreements")
413
                            this.$router.push({ name: "AgreementsList" })
414
                        },
414
                        },
415
                        error => {}
415
                        error => {}
416
                    )
416
                    )
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesShow.vue (-3 / +3 lines)
Lines 190-198 export default { Link Here
190
                                ),
190
                                ),
191
                                true
191
                                true
192
                            )
192
                            )
193
                            this.$router.push(
193
                            this.$router.push({
194
                                "/cgi-bin/koha/erm/eholdings/local/packages"
194
                                name: "EHoldingsLocalPackagesList",
195
                            )
195
                            })
196
                        },
196
                        },
197
                        error => {}
197
                        error => {}
198
                    )
198
                    )
(-)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/EHoldingsLocalTitlesShow.vue (-3 / +3 lines)
Lines 349-357 export default { Link Here
349
                                ),
349
                                ),
350
                                true
350
                                true
351
                            )
351
                            )
352
                            this.$router.push(
352
                            this.$router.push({
353
                                "/cgi-bin/koha/erm/eholdings/local/titles"
353
                                name: "EHoldingsLocalTitlesList",
354
                            )
354
                            })
355
                        },
355
                        },
356
                        error => {}
356
                        error => {}
357
                    )
357
                    )
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesShow.vue (-2 / +1 lines)
Lines 219-225 export default { Link Here
219
                                ),
219
                                ),
220
                                true
220
                                true
221
                            )
221
                            )
222
                            this.$router.push("/cgi-bin/koha/erm/licenses")
222
                            this.$router.push({ name: "LicensesList" })
223
                        },
223
                        },
224
                        error => {}
224
                        error => {}
225
                    )
225
                    )
226
- 

Return to bug 32932