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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorList.vue (-2 / +1 lines)
Lines 142-148 export default { Link Here
142
        },
142
        },
143
        doReceive({ id }, dt, event) {
143
        doReceive({ id }, dt, event) {
144
            event.preventDefault();
144
            event.preventDefault();
145
            window.open(`/cgi-bin/koha/acqui/parcels.pl?booksellerid=${id}`);
145
            window.location.href = `/cgi-bin/koha/acqui/parcels.pl?booksellerid=${id}`;
146
        },
146
        },
147
        doEdit({ id }, dt, event) {
147
        doEdit({ id }, dt, event) {
148
            this.$router.push({
148
            this.$router.push({
149
- 

Return to bug 40318