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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (-1 / +2 lines)
Lines 131-137 export default { Link Here
131
                            this.setMessage(
131
                            this.setMessage(
132
                                this.$__("Agreement %s deleted").format(
132
                                this.$__("Agreement %s deleted").format(
133
                                    agreement_name
133
                                    agreement_name
134
                                )
134
                                ),
135
                                true
135
                            )
136
                            )
136
                            this.refresh_table()
137
                            this.refresh_table()
137
                        },
138
                        },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsShow.vue (-1 / +2 lines)
Lines 376-382 export default { Link Here
376
                            this.setMessage(
376
                            this.setMessage(
377
                                this.$__("Agreement %s deleted").format(
377
                                this.$__("Agreement %s deleted").format(
378
                                    agreement_name
378
                                    agreement_name
379
                                )
379
                                ),
380
                                true
380
                            )
381
                            )
381
                            this.$router.push("/cgi-bin/koha/erm/agreements")
382
                            this.$router.push("/cgi-bin/koha/erm/agreements")
382
                        },
383
                        },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesList.vue (-1 / +2 lines)
Lines 99-105 export default { Link Here
99
                            this.setMessage(
99
                            this.setMessage(
100
                                this.$__("Local package %s deleted").format(
100
                                this.$__("Local package %s deleted").format(
101
                                    package_name
101
                                    package_name
102
                                )
102
                                ),
103
                                true
103
                            )
104
                            )
104
                            $("#" + this.table_id)
105
                            $("#" + this.table_id)
105
                                .DataTable()
106
                                .DataTable()
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesShow.vue (-1 / +2 lines)
Lines 177-183 export default { Link Here
177
                            this.setMessage(
177
                            this.setMessage(
178
                                this.$__("Local package %s deleted").format(
178
                                this.$__("Local package %s deleted").format(
179
                                    package_name
179
                                    package_name
180
                                )
180
                                ),
181
                                true
181
                            )
182
                            )
182
                            this.$router.push(
183
                            this.$router.push(
183
                                "/cgi-bin/koha/erm/eholdings/local/packages"
184
                                "/cgi-bin/koha/erm/eholdings/local/packages"
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesList.vue (-1 / +2 lines)
Lines 98-104 export default { Link Here
98
                            this.setMessage(
98
                            this.setMessage(
99
                                this.$__("Local title %s deleted").format(
99
                                this.$__("Local title %s deleted").format(
100
                                    title_publication_title
100
                                    title_publication_title
101
                                )
101
                                ),
102
                                true
102
                            )
103
                            )
103
                            $("#" + this.table_id)
104
                            $("#" + this.table_id)
104
                                .DataTable()
105
                                .DataTable()
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesShow.vue (-1 / +2 lines)
Lines 343-349 export default { Link Here
343
                            this.setMessage(
343
                            this.setMessage(
344
                                this.$__("Local title %s deleted").format(
344
                                this.$__("Local title %s deleted").format(
345
                                    title_publication_title
345
                                    title_publication_title
346
                                )
346
                                ),
347
                                true
347
                            )
348
                            )
348
                            this.$router.push(
349
                            this.$router.push(
349
                                "/cgi-bin/koha/erm/eholdings/local/titles"
350
                                "/cgi-bin/koha/erm/eholdings/local/titles"
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesList.vue (-1 / +2 lines)
Lines 85-91 export default { Link Here
85
                            this.setMessage(
85
                            this.setMessage(
86
                                this.$__("License %s deleted").format(
86
                                this.$__("License %s deleted").format(
87
                                    license_name
87
                                    license_name
88
                                )
88
                                ),
89
                                true
89
                            )
90
                            )
90
                            $("#" + this.table_id)
91
                            $("#" + this.table_id)
91
                                .DataTable()
92
                                .DataTable()
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesShow.vue (-2 / +2 lines)
Lines 213-219 export default { Link Here
213
                            this.setMessage(
213
                            this.setMessage(
214
                                this.$__("License %s deleted").format(
214
                                this.$__("License %s deleted").format(
215
                                    license_name
215
                                    license_name
216
                                )
216
                                ),
217
                                true
217
                            )
218
                            )
218
                            this.$router.push("/cgi-bin/koha/erm/licenses")
219
                            this.$router.push("/cgi-bin/koha/erm/licenses")
219
                        },
220
                        },
220
- 

Return to bug 32991