bids on scheduled routes

Is it possible to have bids on scheduled routes enabled for one airline and disabled for another airline ? I want my main airline to utilize flight bidding, and the other have the routes to be flown unlimited.

If someone places a bid, whether to disable that or not

Config::Set(‘DISABLE_SCHED_ON_BID’, true);

Config::Set(‘DISABLE_BIDS_ON_BID’, false);

thanks !

I pretty much doubt that.

You can in the schedule_results.tpl check what airline is it and not show the add to bid link, somethin like:

if($schedule->code != 'airline code')
{  
   	echo 'show the link';
}