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 31-54 Link Here
31
                action="edit"
31
                action="edit"
32
                @go-to-edit-resource="goToResourceEdit"
32
                @go-to-edit-resource="goToResourceEdit"
33
            />
33
            />
34
            <ToolbarButton
35
                :to="{
36
                    path: '/cgi-bin/koha/acqui/basketheader.pl',
37
                    query: { booksellerid: vendor.id, op: 'add_form' },
38
                }"
39
                icon="plus"
40
                :title="$__('New basket')"
41
                callback="redirect"
42
            />
43
            <ToolbarButton
44
                :to="{
45
                    path: '/cgi-bin/koha/admin/aqcontract.pl',
46
                    query: { booksellerid: vendor.id, op: 'add_form' },
47
                }"
48
                icon="plus"
49
                :title="$__('New contract')"
50
                callback="redirect"
51
            />
52
            <ToolbarButton
34
            <ToolbarButton
53
                :to="{
35
                :to="{
54
                    path: '/cgi-bin/koha/acqui/parcels.pl',
36
                    path: '/cgi-bin/koha/acqui/parcels.pl',
55
- 

Return to bug 38010