| Current Path : /var/www/html/mmishra/iws8/html/imaterial/ |
| Current File : /var/www/html/mmishra/iws8/html/imaterial/Z_UpdateChartDetailsBFwd.php |
<?php
/* $Id: Z_UpdateChartDetailsBFwd.php 6941 2014-10-26 23:18:08Z daintree $*/
include ('includes/session.inc');
$Title = _('Recalculation of Brought Forward Balances in Chart Details Table');
include('includes/header.inc');
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if ($_POST['FromPeriod'] > $_POST['ToPeriod']){
prnMsg(_('The selected period from is actually after the period to') . '. ' . _('Please re-select the reporting period'),'error');
unset ($_POST['FromPeriod']);
unset ($_POST['ToPeriod']);
}
if (!isset($_POST['FromPeriod']) OR !isset($_POST['ToPeriod'])){
/*Show a form to allow input of criteria for TB to show */
echo '<table><tr><td>' . _('Select Period From') . ':</td><td><select name="FromPeriod">';
$sql = "SELECT periodno, lastdate_in_period FROM periods ORDER BY periodno";
$Periods = DB_query($sql);
while ($myrow=DB_fetch_array($Periods,$db)){
echo '<option value="' . $myrow['periodno'] . '">' . MonthAndYearFromSQLDate($myrow['lastdate_in_period']) . '</option>';
}
echo '</select></td></tr>';
$sql = "SELECT MAX(periodno) FROM periods";
$MaxPrd = DB_query($sql);
$MaxPrdrow = DB_fetch_row($MaxPrd);
$DefaultToPeriod = (int) ($MaxPrdrow[0]-1);
echo '<tr><td>' . _('Select Period To') . ':</td><td><select name="ToPeriod">';
$RetResult = DB_data_seek($Periods,0);
while ($myrow=DB_fetch_array($Periods,$db)){
if($myrow['periodno']==$DefaultToPeriod){
echo '<option selected="selected" value="' . $myrow['periodno'] . '">' . MonthAndYearFromSQLDate($myrow['lastdate_in_period']) . '</option>';
} else {
echo '<option value="' . $myrow['periodno'] . '">' . MonthAndYearFromSQLDate($myrow['lastdate_in_period']) . '</option>';
}
}
echo '</select></td></tr></table>';
echo '<div class="centre"><input type="submit" name="recalc" value="' . _('Do the Recalculation') . '" /></div>
</div>
</form>';
} else { /*OK do the updates */
for ($i=$_POST['FromPeriod'];$i<=$_POST['ToPeriod'];$i++){
$sql="SELECT accountcode,
period,
budget,
actual,
bfwd,
bfwdbudget
FROM chartdetails
WHERE period ='" . $i . "'";
$ErrMsg = _('Could not retrieve the ChartDetail records because');
$result = DB_query($sql,$ErrMsg);
while ($myrow=DB_fetch_array($result)){
$CFwd = $myrow['bfwd'] + $myrow['actual'];
$CFwdBudget = $myrow['bfwdbudget'] + $myrow['budget'];
echo '<br />' . _('Account Code') . ': ' . $myrow['accountcode'] . ' ' . _('Period') .': ' . $myrow['period'];
$sql = "UPDATE chartdetails SET bfwd='" . $CFwd . "',
bfwdbudget='" . $CFwdBudget . "'
WHERE period='" . ($myrow['period'] +1) . "'
AND accountcode = '" . $myrow['accountcode'] . "'";
$ErrMsg =_('Could not update the chartdetails record because');
$updresult = DB_query($sql,$ErrMsg);
}
} /* end of for loop */
}
include('includes/footer.inc');
?>