Bugzilla – Attachment 174137 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: Rebase for Button component change
Bug-38010-Rebase-for-Button-component-change.patch (text/plain), 6.25 KB, created by
Matt Blenkinsop
on 2024-11-07 11:49:09 UTC
(
hide
)
Description:
Bug 38010: Rebase for Button component change
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2024-11-07 11:49:09 UTC
Size:
6.25 KB
patch
obsolete
>From 0063302ecdff00f83cdd6e683acf8d748e59c405 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Tue, 1 Oct 2024 11:20:33 +0000 >Subject: [PATCH] Bug 38010: Rebase for Button component change > >--- > .../js/vue/components/Vendors/VendorDetails.vue | 7 ++++--- > .../js/vue/components/Vendors/VendorInterfaces.vue | 7 ++++--- > .../prog/js/vue/components/Vendors/VendorList.vue | 6 +++--- > .../prog/js/vue/components/Vendors/VendorShow.vue | 14 +++++++------- > 4 files changed, 18 insertions(+), 16 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue >index 43e15e4ec3a..16180944b36 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue >@@ -45,12 +45,13 @@ > </li> > <li v-if="vendor.url" id="vendorWebsite"> > <label>{{ $__("Website") }}:</label> >- <ExternalLinkButton >+ <ButtonLink > :to="{ > path: vendor.url, > }" > class="" > :title="vendor.url" >+ callback="redirect" > /> > </li> > <li v-if="vendor.accountnumber"> >@@ -167,7 +168,7 @@ > <script> > import { inject } from "vue" > import { storeToRefs } from "pinia" >-import ExternalLinkButton from "../ExternalLinkButton.vue" >+import ButtonLink from "../ButtonLink.vue" > > export default { > props: { >@@ -201,7 +202,7 @@ export default { > }, > }, > components: { >- ExternalLinkButton, >+ ButtonLink, > }, > } > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorInterfaces.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorInterfaces.vue >index a902b3c8d60..18d340116be 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorInterfaces.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorInterfaces.vue >@@ -13,12 +13,13 @@ > </li> > <li v-if="vi.uri"> > <label>{{ $__("URI") }}:</label> >- <ExternalLinkButton >+ <ButtonLink > :to="{ > path: vi.uri, > }" > class="" > :title="vi.uri" >+ callback="redirect" > /> > </li> > <li v-if="vi.login"> >@@ -141,7 +142,7 @@ > <script> > import { inject } from "vue" > import { storeToRefs } from "pinia" >-import ExternalLinkButton from "../ExternalLinkButton.vue" >+import ButtonLink from "../ButtonLink.vue" > > export default { > props: { >@@ -173,7 +174,7 @@ export default { > }, > }, > components: { >- ExternalLinkButton, >+ ButtonLink, > }, > } > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorList.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorList.vue >index 530a99ebb14..586732479d7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorList.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorList.vue >@@ -2,7 +2,7 @@ > <div v-if="!initialized">{{ $__("Loading") }}</div> > <div v-else id="vendors_list"> > <Toolbar> >- <ToolbarButton >+ <ButtonLink > :to="{ name: 'VendorFormAdd' }" > icon="plus" > :title="$__('New vendor')" >@@ -27,7 +27,7 @@ > <script> > import flatPickr from "vue-flatpickr-component" > import Toolbar from "../Toolbar.vue" >-import ToolbarButton from "../ToolbarButton.vue" >+import ButtonLink from "../ButtonLink.vue" > import { inject, ref } from "vue" > import { APIClient } from "../../fetch/api-client.js" > import { storeToRefs } from "pinia" >@@ -248,7 +248,7 @@ export default { > ] > }, > }, >- components: { flatPickr, Toolbar, ToolbarButton, KohaTable }, >+ components: { flatPickr, Toolbar, ButtonLink, KohaTable }, > name: "VendorList", > emits: ["select-vendor", "close"], > } >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorShow.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorShow.vue >index 10ffd182e60..0e3e39c5095 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorShow.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorShow.vue >@@ -2,12 +2,12 @@ > <div v-if="!initialized">{{ $__("Loading") }}</div> > <div v-else id="vendors_show"> > <Toolbar> >- <ToolbarButton >+ <ButtonLink > :to="{ name: 'VendorFormAdd' }" > icon="plus" > :title="$__('New vendor')" > /> >- <ToolbarButton >+ <ButtonLink > :to="{ > name: 'VendorFormAddEdit', > params: { vendor_id: vendor.id }, >@@ -15,13 +15,14 @@ > icon="pencil" > :title="$__('Edit vendor')" > /> >- <ExternalLinkButton >+ <ButtonLink > :to="{ > path: '/cgi-bin/koha/acqui/parcels.pl', > query: { booksellerid: vendor.id }, > }" > icon="plus" > :title="$__('Receive shipments')" >+ callback="redirect" > /> > </Toolbar> > <h1> >@@ -53,10 +54,10 @@ > > <script> > import Toolbar from "../Toolbar.vue" >-import ToolbarButton from "../ToolbarButton.vue" >+import Button from "../Button.vue" > import { inject } from "vue" > import { APIClient } from "../../fetch/api-client.js" >-import ExternalLinkButton from "../ExternalLinkButton.vue" >+import ButtonLink from "../ButtonLink.vue" > import VendorDetails from "./VendorDetails.vue" > import VendorOrderingInformation from "./VendorOrderingInformation.vue" > import VendorInterfaces from "./VendorInterfaces.vue" >@@ -103,8 +104,7 @@ export default { > }, > components: { > Toolbar, >- ToolbarButton, >- ExternalLinkButton, >+ ButtonLink, > VendorDetails, > VendorOrderingInformation, > VendorInterfaces, >-- >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