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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorShow.vue (-4 / +3 lines)
Lines 9-15 Link Here
9
                            path: '/cgi-bin/koha/acqui/basketheader.pl',
9
                            path: '/cgi-bin/koha/acqui/basketheader.pl',
10
                            query: { booksellerid: vendor.id, op: 'add_form' },
10
                            query: { booksellerid: vendor.id, op: 'add_form' },
11
                        },
11
                        },
12
                        title: 'Basket',
12
                        title: $__('Basket'),
13
                        callback: toolbarComponent => {
13
                        callback: toolbarComponent => {
14
                            const url = toolbarComponent.handleQuery(
14
                            const url = toolbarComponent.handleQuery(
15
                                toolbarComponent.to
15
                                toolbarComponent.to
Lines 22-28 Link Here
22
                            path: '/cgi-bin/koha/admin/aqcontract.pl',
22
                            path: '/cgi-bin/koha/admin/aqcontract.pl',
23
                            query: { booksellerid: vendor.id, op: 'add_form' },
23
                            query: { booksellerid: vendor.id, op: 'add_form' },
24
                        },
24
                        },
25
                        title: 'Contract',
25
                        title: $__('Contract'),
26
                        callback: toolbarComponent => {
26
                        callback: toolbarComponent => {
27
                            const url = toolbarComponent.handleQuery(
27
                            const url = toolbarComponent.handleQuery(
28
                                toolbarComponent.to
28
                                toolbarComponent.to
Lines 32-38 Link Here
32
                    },
32
                    },
33
                    {
33
                    {
34
                        to: { name: 'VendorFormAdd' },
34
                        to: { name: 'VendorFormAdd' },
35
                        title: 'Vendor',
35
                        title: $__('Vendor'),
36
                    },
36
                    },
37
                ]"
37
                ]"
38
                :title="$__('New')"
38
                :title="$__('New')"
39
- 

Return to bug 40146