Jump to content

Pirep updates Arrival ICAO with Dep ICAO?


Alex

Recommended Posts

.930

My pilots are reporting that even though they file the Pirep correctly giving a correct Dept ICAO and Arr ICAo when it arrives at admin for approval the Arrival filed hs been populated with the Departure ICAO.

I haven't changed anything in the pirep tpl's.

It means that the Fleet table also is not being updated correctly with the last filed pirep position.

Any Clues or is this a BUG!

Thanks

Alex

Link to comment
Share on other sites

  • Administrators

i havent modified any templates other than using obsessblue. The database shows it as being in the correct place, but the fleet list shows departure icao as the current location.

The pirep is submitted manually

Fleet list? Which template? Then instead of being depicao it should be arricao. Sounds like a typo in the mod

Link to comment
Share on other sites

This is the Fleet List tpl. looking at it i dont think there is an error?

h1 align="center"><?php echo SITE_NAME?>Fleet</h1>
<!-- Fleet Table Version 2.0.- - fleet_table.tpl - By Mitchell W
http://forum.phpvms.net/topic/1522-fleet-table/
CHANGES FROM 1.1:
Added image
Added download
-->
<table border="1">
 <!--DWLayoutTable-->
<thead>  
<tr>
<td height="42"><b>Image</b></td>
<td><b>ICAO</b></td>
<td><b>Type</b></td>
<td><b>Registration</b></td>
<td><b>Range</b></td>
<td><b>Cruise Kts</b></td>
<td><b>Max Pax</b></td>
<td><b>Max Cargo</b></td>
<td><b>Total Hours</b></td>
<td width="79"><p><b>Current Location</b></p>  </td>
</tr>
</thead>
<tbody>
<?php foreach ($fleet as $aircraft) 
{
?>
<tr>
<td height="36"><img src="<?php echo $aircraft->imagelink; ?>"></td>
<td><?php echo $aircraft->icao; ?> </td>
<td><?php echo $aircraft->name; ?> </td>
<td><?php echo $aircraft->registration; ?></td>
<td><?php echo $aircraft->range; ?> </td>
<td><?php echo $aircraft->cruise; ?></td>
<td><?php echo $aircraft->maxpax; ?></td>
<td><?php echo $aircraft->maxcargo; ?></td>
<td><?php echo $aircraft->totaltime; ?></td>
<td valign="top"><?php echo $current_location.'-'.$current_location2; ?></td>
<?php
$params = (array('a.registration'=>$aircraft->registration, 'p.accepted'=>PIREP_ACCEPTED));

$pirep = PIREPData::findPIREPS($params);
$current_location = $pirep[0]->arricao;
$current_location2 = $pirep[0]->arrname;
?>
</tr>
<?php } ?>
</tbody>
</table>

Link to comment
Share on other sites

  • Administrators

This should be flipped:

<td valign="top"><?php echo $current_location.'-'.$current_location2; ?></td>
<?php
$params = (array('a.registration'=>$aircraft->registration, 'p.accepted'=>PIREP_ACCEPTED));

$pirep = PIREPData::findPIREPS($params);
$current_location = $pirep[0]->arricao;
$current_location2 = $pirep[0]->arrname;
?>

To

<?php
$params = (array('a.registration'=>$aircraft->registration, 'p.accepted'=>PIREP_ACCEPTED));

$pirep = PIREPData::findPIREPS($params);
$current_location = $pirep[0]->arricao;
$current_location2 = $pirep[0]->arrname;
?>
<td valign="top"><?php echo $current_location.'-'.$current_location2; ?></td>

Otherwise it's looking at the previous iteration

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...