Bugzilla – Attachment 174155 Details for
Bug 38010
Migrate vendors to Vue
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38010: Rename routes to acquisitions
Bug-38010-Rename-routes-to-acquisitions.patch (text/plain), 3.83 KB, created by
Matt Blenkinsop
on 2024-11-07 11:56:11 UTC
(
hide
)
Description:
Bug 38010: Rename routes to acquisitions
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2024-11-07 11:56:11 UTC
Size:
3.83 KB
patch
obsolete
>From 3e9de4cea3b55b98e8835edd256ac53dc938f330 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Thu, 19 Sep 2024 10:05:56 +0000 >Subject: [PATCH] Bug 38010: Rename routes to acquisitions > >This patch renames the app from vendors to acquisitions to allow further acquisitions pages to be migrated >--- > .../prog/js/vue/modules/{vendors.ts => acquisitions.ts} | 8 ++++---- > .../prog/js/vue/routes/{vendors.js => acquisitions.js} | 2 +- > rspack.config.js | 2 +- > 3 files changed, 6 insertions(+), 6 deletions(-) > rename koha-tmpl/intranet-tmpl/prog/js/vue/modules/{vendors.ts => acquisitions.ts} (93%) > rename koha-tmpl/intranet-tmpl/prog/js/vue/routes/{vendors.js => acquisitions.js} (96%) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/vendors.ts b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/acquisitions.ts >similarity index 93% >rename from koha-tmpl/intranet-tmpl/prog/js/vue/modules/vendors.ts >rename to koha-tmpl/intranet-tmpl/prog/js/vue/modules/acquisitions.ts >index 99edd35a198..4305250a8fa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/modules/vendors.ts >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/modules/acquisitions.ts >@@ -17,21 +17,21 @@ library.add(faPlus, faMinus, faPencil, faTrash, faSpinner); > > import App from "../components/Vendors/Main.vue"; > >-import { routes as routesDef } from "../routes/vendors"; >+import { routes as routesDef } from "../routes/acquisitions"; > > import { useMainStore } from "../stores/main"; > import { useVendorStore } from "../stores/vendors"; >-import { useAVStore } from "../stores/authorisedValues/authorised-values"; > import { useNavigationStore } from "../stores/navigation"; > import { usePermissionsStore } from "../stores/permissions"; >+import { useAVStore } from "../stores/authorised-values"; > import i18n from "../i18n"; > > const pinia = createPinia(); > > const mainStore = useMainStore(pinia); >-const AVStore = useAVStore(pinia); > const navigationStore = useNavigationStore(pinia); > const permissionsStore = usePermissionsStore(pinia); >+const AVStore = useAVStore(pinia); > const routes = navigationStore.setRoutes(routesDef); > > const router = createRouter({ >@@ -52,9 +52,9 @@ const rootComponent = app > app.config.unwrapInjectedRef = true; > app.provide("vendorStore", useVendorStore(pinia)); > app.provide("mainStore", mainStore); >-app.provide("AVStore", AVStore); > app.provide("navigationStore", navigationStore); > app.provide("permissionsStore", permissionsStore); >+app.provide("AVStore", AVStore); > > app.mount("#__vendors"); > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/vendors.js b/koha-tmpl/intranet-tmpl/prog/js/vue/routes/acquisitions.js >similarity index 96% >rename from koha-tmpl/intranet-tmpl/prog/js/vue/routes/vendors.js >rename to koha-tmpl/intranet-tmpl/prog/js/vue/routes/acquisitions.js >index bfaffca3fdc..0c9dc362ac1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/vendors.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/routes/acquisitions.js >@@ -11,7 +11,7 @@ export const routes = [ > path: "/cgi-bin/koha/acqui/booksellers.pl", > is_default: true, > is_base: true, >- title: $__("Vendor management"), >+ title: $__("Acquisitions"), > children: [ > { > path: "", >diff --git a/rspack.config.js b/rspack.config.js >index 3fa96ce5f91..267c91f4b2b 100644 >--- a/rspack.config.js >+++ b/rspack.config.js >@@ -13,7 +13,7 @@ module.exports = { > "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/preservation.ts", > "admin/record_sources": > "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/admin/record_sources.ts", >- vendors: "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/vendors.ts", >+ acquisitions: "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/acquisitions.ts", > }, > output: { > filename: "[name].js", >-- >2.39.3 (Apple Git-146)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38010
:
174119
|
174120
|
174121
|
174122
|
174123
|
174124
|
174125
|
174126
|
174128
|
174129
|
174130
|
174131
|
174132
|
174133
|
174134
|
174135
|
174136
|
174137
|
174138
|
174139
|
174140
|
174141
|
174142
|
174143
|
174144
|
174145
|
174146
|
174147
|
174148
|
174151
|
174152
|
174153
|
174154
|
174155
|
174156
|
174157
|
174158
|
174159
|
174160
|
174161
|
174162
|
174163
|
174164
|
174165
|
174166
|
174167
|
174168
|
174169
|
174170
|
174171
|
174172
|
174173
|
174174
|
174175
|
174176
|
174177
|
174178
|
174179
|
174194
|
174196
|
174197
|
174198
|
174199
|
174200
|
174201
|
174202
|
174203
|
174204
|
174205
|
174206
|
174207
|
174208
|
174209
|
174210
|
174211
|
174212
|
174213
|
174214
|
174215
|
174216
|
174217
|
174218
|
174220
|
174221
|
174222
|
174223
|
174224
|
174225
|
174226
|
174248
|
174266
|
174267
|
174269
|
174270
|
174273
|
174327
|
174328
|
174329
|
174330
|
174331
|
174332
|
174333
|
174334
|
174335
|
174336
|
174337
|
174338
|
174339
|
174340
|
174341
|
174342
|
174343
|
174344
|
174345
|
174346
|
174347
|
174348
|
174349
|
174350
|
174351
|
174352
|
174353
|
174354
|
174355
|
174356
|
174357
|
174358
|
174359
|
174360
|
174603