Jump to content

schedule issue


RogerB

Recommended Posts

I am running 744.  Some of my charters are still not showing up.  I have tried deactivating and reactivating, didn't work. And I checked the day of the week also. This is really messing up my operation as many of my charters are tied together.  Would some of you other VA's have a look and see if your schedules are doing this?

Link to comment
Share on other sites

This may be your problem:

REASON: One of your pilots has bid on the flight.

From the changelog:

NEW: Added option to allow only one bid per schedule, and hide schedule

To fix:

Go to core/templates/schedule_results.tpl and open it up

You should see the following code near the top:

This will skip over a schedule if it's been bid on
This only runs if the below setting is enabled

If you don't want it to skip, then comment out
this code below by adding // in front of each 
line until the END DISABLE SCHEDULE comment below

If you do that, and want to show some text when
it's been bid on, see the comment below
*/
if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0)
{
	continue;
}

Make the true into a false

I have been having that problem with my VA and soon I will be removing the entire bidding function,

Hope this helps

Mitchell Williamson

Australian Frontier VA Administrator

Link to comment
Share on other sites

  • Administrators

Mitchell, you don't have to do all that. Simply, in the local.config.php, change the line:

Config::Set('DISABLE_SCHED_ON_BID', true);

To false. If it's not there, just add it (it's in the app.config.php). My comment text there was wrong, I'm not sure why I didn't say to just change the line in the config. My bad.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...