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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorFormAdd.vue (-1 / +1 lines)
Lines 50-56 export default { Link Here
50
                notes: "",
50
                notes: "",
51
                postal: "",
51
                postal: "",
52
                url: "",
52
                url: "",
53
                active: false,
53
                active: true,
54
                list_currency: null,
54
                list_currency: null,
55
                invoice_currency: null,
55
                invoice_currency: null,
56
                tax_rate: null,
56
                tax_rate: null,
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorShow.vue (-19 lines)
Lines 35-58 Link Here
35
                icon="pencil"
35
                icon="pencil"
36
                :title="$__('Edit vendor')"
36
                :title="$__('Edit vendor')"
37
            />
37
            />
38
            <ToolbarButton
39
                :to="{
40
                    path: '/cgi-bin/koha/acqui/basketheader.pl',
41
                    query: { booksellerid: vendor.id, op: 'add_form' },
42
                }"
43
                icon="plus"
44
                :title="$__('New basket')"
45
                callback="redirect"
46
            />
47
            <ToolbarButton
48
                :to="{
49
                    path: '/cgi-bin/koha/admin/aqcontract.pl',
50
                    query: { booksellerid: vendor.id, op: 'add_form' },
51
                }"
52
                icon="plus"
53
                :title="$__('New contract')"
54
                callback="redirect"
55
            />
56
            <ToolbarButton
38
            <ToolbarButton
57
                :to="{
39
                :to="{
58
                    path: '/cgi-bin/koha/acqui/parcels.pl',
40
                    path: '/cgi-bin/koha/acqui/parcels.pl',
59
- 

Return to bug 38010