BaderNET Posted January 30, 2020 Report Share Posted January 30, 2020 Hi, I'am use phpcvms Version simpilot 5.5.2 And skin : blueIce v2.0 When i try to book flight and add to bids i have this issue : No route passed any help to fix it ? Best Regards, Quote Link to comment Share on other sites More sharing options...
Administrators ProAvia Posted January 30, 2020 Administrators Report Share Posted January 30, 2020 What happens if you switch back to the default crystal skin? When hovering over the add bid button/wording, does the ID also show? .../schedules/addbid/?id=<some number here> Quote Link to comment Share on other sites More sharing options...
flyalaska Posted January 30, 2020 Report Share Posted January 30, 2020 (edited) Did you do any edits, besides the css? I tested the hell out of that skin. I never got any no routes passed. Revert back as ProAvia said. See if you get the error still. Edited January 30, 2020 by flyalaska Quote Link to comment Share on other sites More sharing options...
BaderNET Posted January 30, 2020 Author Report Share Posted January 30, 2020 3 hours ago, ProAvia said: What happens if you switch back to the default crystal skin? When hovering over the add bid button/wording, does the ID also show? .../schedules/addbid/?id=<some number here> I try to back to a default skin but it's seem nothing change?? And when i over the bid button this what i get ? Quote Link to comment Share on other sites More sharing options...
Administrators ProAvia Posted January 31, 2020 Administrators Report Share Posted January 31, 2020 Did you edit any files in the Blue Ice version 2 download? Look in blueIce skin, schedule_results.php file - post lines 54-73 Looking at the default blueIce skin schedule_results.php file, the Addbid function is correct. Quote Link to comment Share on other sites More sharing options...
Yash Posted January 31, 2020 Report Share Posted January 31, 2020 It seems to be jQuery issue. Check the version of the scripts Quote Link to comment Share on other sites More sharing options...
BaderNET Posted January 31, 2020 Author Report Share Posted January 31, 2020 21 hours ago, ProAvia said: Did you edit any files in the Blue Ice version 2 download? Look in blueIce skin, schedule_results.php file - post lines 54-73 Looking at the default blueIce skin schedule_results.php file, the Addbid function is correct. No only change the skin color ?? This the core/templates/schedule_results.php <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <?php if(!$schedule_list) { echo '<p align="center">No routes have been found!</p>'; return; } ?> <table id="tabledlist" class="tablesorter"> <thead> <tr> <th>Flight Info</th> <th>Options</th> </tr> </thead> <tbody> <?php foreach($schedule_list as $schedule) { ?> <tr> <td> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>"><?php echo $schedule->code . $schedule->flightnum?> <?php echo '('.$schedule->depicao.' - '.$schedule->arricao.')'?> </a> <br /> <strong>Departure: </strong><?php echo $schedule->deptime;?> <strong>Arrival: </strong><?php echo $schedule->arrtime;?><br /> <strong>Equipment: </strong><?php echo $schedule->aircraft; ?> (<?php echo $schedule->registration;?>) <strong>Distance: </strong><?php echo $schedule->distance . Config::Get('UNITS');?> <br /> <strong>Days Flown: </strong><?php echo Util::GetDaysCompact($schedule->daysofweek); ?><br /> <?php echo ($schedule->route=='') ? '' : '<strong>Route: </strong>'.$schedule->route.'<br />' ?> <?php echo ($schedule->notes=='') ? '' : '<strong>Notes: </strong>'.html_entity_decode($schedule->notes).'<br />' ?> <?php # Note: this will only show if the above code to # skip the schedule is commented out if($schedule->bidid != 0) { echo 'This route has been bid on'; } ?> </td> <td nowrap> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>">View Details</a><br /> <a href="<?php echo url('/schedules/brief/'.$schedule->id);?>">Pilot Brief</a><br /> <?php # Don't allow overlapping bids and a bid exists if(Config::Get('DISABLE_SCHED_ON_BID') == true && $schedule->bidid != 0) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid/?id='.$schedule->id);?>">Add to Bid</a> <?php } else { if(Auth::LoggedIn()) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> <?php } } ?> </td> </tr> <?php /* END OF ONE TABLE ROW */ } ?> </tbody> </table> <hr> And this the skin /skins/blueIce/schedule_results.php <section class="page-contents"> <div class="container"> <br /> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="<?php echo SITE_URL ?>/index.php">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Crew Center</li> <li class="breadcrumb-item active" aria-current="page">Schedules</li> </ol> </nav> <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <?php if(!$schedule_list) { echo '<p align="center">No routes have been found!</p>'; return; } ?> <script type="text/javascript"> $(document).ready(function() { $('#schedules').DataTable(); } ); </script> <table id="schedules" width="100%" border="0" cellspacing="0" cellpadding="0" class="blueIce_table"> <thead> <tr> <th>Flight Info</th> <th>Options</th> </tr> </thead> <tbody> <?php foreach($schedule_list as $schedule) { ?> <tr> <td> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>"><?php echo $schedule->code . $schedule->flightnum?> <?php echo '('.$schedule->depicao.' - '.$schedule->arricao.')'?> </a> <br /> <strong>Departure: </strong><?php echo $schedule->deptime;?> <strong>Arrival: </strong><?php echo $schedule->arrtime;?><br /> <strong>Equipment: </strong><?php echo $schedule->aircraft; ?> (<?php echo $schedule->registration;?>) <strong>Distance: </strong><?php echo $schedule->distance . Config::Get('UNITS');?> <br /> <strong>Days Flown: </strong><?php echo Util::GetDaysCompact($schedule->daysofweek); ?><br /> <?php echo ($schedule->route=='') ? '' : '<strong>Route: </strong>'.$schedule->route.'<br />' ?> <?php echo ($schedule->notes=='') ? '' : '<strong>Notes: </strong>'.html_entity_decode($schedule->notes).'<br />' ?> <?php # Note: this will only show if the above code to # skip the schedule is commented out if($schedule->bidid != 0) { echo 'This route has been bid on'; } ?> </td> <td nowrap> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>"><span class="badge badge-secondary"><i class="fas fa-search"></i> View Details</a><br /> <a href="<?php echo url('/schedules/brief/'.$schedule->id);?>"><span class="badge badge-secondary"><i class="fas fa-user-tie"></i> Pilot Brief</a><br /> <?php # Don't allow overlapping bids and a bid exists if(Config::Get('DISABLE_SCHED_ON_BID') == true && $schedule->bidid != 0) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid/?id='.$schedule->id);?>"><span class="badge badge-secondary"><i class="fas fa-plus-square"></i> Add to Bid</a> <?php } else { if(Auth::LoggedIn()) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>"><span class="badge badge-secondary"><i class="fas fa-plus-square"></i> Add to Bid</a> <?php } } ?> </td> </tr> <?php /* END OF ONE TABLE ROW */ } ?> </tbody> </table> <hr> </div> </section> What do u think ? Quote Link to comment Share on other sites More sharing options...
flyalaska Posted January 31, 2020 Report Share Posted January 31, 2020 URL please Quote Link to comment Share on other sites More sharing options...
BaderNET Posted January 31, 2020 Author Report Share Posted January 31, 2020 5 minutes ago, flyalaska said: URL please http://www.Qatar-va.org Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.