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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-4 / +3 lines)
Lines 1509-1523 Link Here
1509
                                .closest('tr')
1509
                                .closest('tr')
1510
                                .find(".pickup_locations").val() === null) {
1510
                                .find(".pickup_locations").val() === null) {
1511
1511
1512
                        msg = (_("- Please select a pickup location for the item") + "\n");
1512
                        msg = _("- Please select a pickup location for the item") + "\n"
1513
                    }
1513
                    }
1514
                }
1514
                }
1515
                else {
1515
                else {
1516
                    msg = (_("- Please select an item to place a hold") + "\n");
1516
                    msg = _("- Please select an item to place a hold") + "\n";
1517
                }
1517
                }
1518
            } else {
1518
            } else {
1519
                if( $("#pickup").length < 1 || $("#pickup").val() == "" || $('#pickup').val() === null ){
1519
                if( $("#pickup").length < 1 || $("#pickup").val() == "" || $('#pickup').val() === null ){
1520
                    msg = (_("- Please select a pickup location for this hold") + "\n");
1520
                    msg = _("- Please select a pickup location for this hold") + "\n";
1521
                }
1521
                }
1522
            }
1522
            }
1523
1523
1524
- 

Return to bug 35769