|
Lines 2-11
Link Here
|
| 2 |
<div v-if="!initialized">{{ $__("Loading") }}</div> |
2 |
<div v-if="!initialized">{{ $__("Loading") }}</div> |
| 3 |
<div v-else id="vendors_show"> |
3 |
<div v-else id="vendors_show"> |
| 4 |
<Toolbar> |
4 |
<Toolbar> |
| 5 |
<ButtonLink |
5 |
<DropdownButtons |
| 6 |
:to="{ name: 'VendorFormAdd' }" |
6 |
:items="[ |
| 7 |
icon="plus" |
7 |
{ |
| 8 |
:title="$__('New vendor')" |
8 |
to: { |
|
|
9 |
path: '/cgi-bin/koha/acqui/basketheader.pl', |
| 10 |
query: { booksellerid: vendor.id, op: 'add_form' }, |
| 11 |
}, |
| 12 |
title: 'Basket', |
| 13 |
callback: 'redirect', |
| 14 |
}, |
| 15 |
{ |
| 16 |
to: { |
| 17 |
path: '/cgi-bin/koha/admin/aqcontract.pl', |
| 18 |
query: { booksellerid: vendor.id, op: 'add_form' }, |
| 19 |
}, |
| 20 |
title: 'Contract', |
| 21 |
callback: 'redirect', |
| 22 |
}, |
| 23 |
{ |
| 24 |
to: { name: 'VendorFormAdd' }, |
| 25 |
title: 'Vendor', |
| 26 |
}, |
| 27 |
]" |
| 28 |
:title="$__('New')" |
| 9 |
/> |
29 |
/> |
| 10 |
<ToolbarButton |
30 |
<ToolbarButton |
| 11 |
:to="{ |
31 |
:to="{ |
|
Lines 91-96
import VendorContacts from "./VendorContacts.vue";
Link Here
|
| 91 |
import VendorSubscriptions from "./VendorSubscriptions.vue"; |
111 |
import VendorSubscriptions from "./VendorSubscriptions.vue"; |
| 92 |
import VendorContracts from "./VendorContracts.vue"; |
112 |
import VendorContracts from "./VendorContracts.vue"; |
| 93 |
import VendorBaskets from "./VendorBaskets.vue"; |
113 |
import VendorBaskets from "./VendorBaskets.vue"; |
|
|
114 |
import DropdownButtons from "../DropdownButtons.vue"; |
| 94 |
|
115 |
|
| 95 |
export default { |
116 |
export default { |
| 96 |
setup() { |
117 |
setup() { |
| 97 |
- |
|
|