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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorBaskets.vue (-2 / +15 lines)
Lines 82-89 export default { Link Here
82
        }
82
        }
83
    },
83
    },
84
    methods: {
84
    methods: {
85
        addToBasket({ agreement_id }, dt, event) {
85
        addToBasket({ basket_id }, dt, event) {
86
            event.preventDefault()
86
            event.preventDefault()
87
            location.href =
88
                "/cgi-bin/koha/acqui/basket.pl?basketno=" + basket_id
89
        },
90
        closeBasket({ basket_id }, dt, event) {
91
            event.preventDefault()
92
            location.href =
93
                "/cgi-bin/koha/acqui/basket.pl?basketno=" + basket_id
94
        },
95
        uncertainPrices({ basket_id }, dt, event) {
96
            event.preventDefault()
97
            location.href =
98
                "/cgi-bin/koha/acqui/uncertainprice.pl?booksellerid=" +
99
                basket_id +
100
                "&owner=1"
87
        },
101
        },
88
        tableURL() {
102
        tableURL() {
89
            let url =
103
            let url =
90
- 

Return to bug 38010