sharkbit / BadgeApp

Membership and Calendar program for a Range. Allows tracking of guests and events. And a small merchant portal to buy badges and supplies.
MIT License
3 stars 0 forks source link

Reserving more than 1 Range with Lanes is not a rule! #144

Open tdasto opened 3 years ago

tdasto commented 3 years ago

Line 629

if(OnlyOneLane > 1) { document.getElementById("cal_update_item").disabled = true; $("#error_msg").html('

Only allowed one range with lanes. Found: '+fa_name+'

'); return; } else if(OnlyOneLane == 1) { var lReq = parseInt($("#agccal-lanes_requested").val()); if ( lReq == 0 || lReq > available_lanes) { document.getElementById("cal_update_item").disabled=true; $("#error_msg").html('

Please Choose # of lanes requested. No more than ' + available_lanes + '

'); return; }

tdasto commented 3 years ago

When all OTHER issues are closed and there have been no needed updates to the AGC App for six months, we can then work on this.