0

私は、holiday_entitlementテーブルの現在のレコードから従業員の休日の資格を取得するスクリプトを持っています。

この資格の数値は、データベース内の各休日リクエストから差し引かれるために使用されます。

例:資格日数= 27

休日リクエスト日数=2>>>>残りの資格日数=25

休日リクエスト日数=4>>>>残りの資格日数=21

休日リクエスト日数=1>>>>残りの資格日数=20など...

私のスクリプトでは、残りの資格日数は$remainderです。

私が苦労しているのは、リクエストが承認されるたびにこの$remainderをholiday_entitlementテーブルに保存できるようにするか、SQLで元のエンタイトルメントの数値から、その従業員、その学年度、および承認された場合のすべてのリクエストを差し引いたものを計算できるようにすることです。

   <?php
    $is_business_result = mysql_query('SELECT * FROM holiday_entitlement WHERE employee = \'' . $username . '\' AND academic_year = \'' . $acyear . '\' ');

    if($is_business = mysql_fetch_array($is_business_result)) {
    echo'<div style="float:left; width:400px;">';

    echo'<table width="100%">
    <tr>
    <td><strong>Name:</strong></td>
    <td>'.$is_business['employee'].'</td>
    </tr>
    <tr>
    <td><strong>Entitlement:</strong></td>
    <td>'.$is_business['new_entitlement'].' '.$is_business['units'].'</td>
    </tr>
    <tr>
    <td><strong>Department / Division:</strong></td>
    <td>'.$is_business['division'].'</td>
    </tr>
    <tr>
    <td><strong>Line Manager:</strong></td>
    <td>'.$is_business['line_manager'].'</td>
    </tr>
    </table>';

    echo'</div>';





    echo'<table class="dataTable" id="business_days_table" cellpadding="2" cellspacing="2" width="100%">
    <thead>
    <th>Start Date</th>
    <th>End Date</th>
    <th>Days to be taken</th>
    <th>Days remaining</th>
    </thead>';

    echo '<tr>';

    echo '<td>-</td>';
    echo '<td>-</td>';
    echo '<td>-</td>';
    echo '<td>'.$is_business['new_entitlement'].'</td>';

    echo '</tr>';


    $input = $is_business['new_entitlement'];
    }

    else {echo 'You currently dont have a record for this academic year. ';}


    $requests_result = mysql_query('SELECT * FROM requests WHERE employee = \'' . $username . '\' AND approved = 1 AND academic_year = \'' . $acyear . '\' ORDER BY start_date ASC');

    $remainder = 0;

    while($requests = mysql_fetch_array($requests_result)) {

    $start_date = new DateTime($requests['start_date']);
    $end_date = new DateTime($requests['end_date']);

    $timestamp_start_date = $start_date->getTimestamp();
    $timestamp_end_date = $end_date->getTimestamp();

    $formatted_start_date = date("d M Y", $timestamp_start_date);           
    $formatted_end_date = date("d M Y", $timestamp_end_date);   

    $remainder = ($remainder == 0) ? $input : $remainder;
    $out = $remainder - $requests['days'];
    if($out < 0){
          break;
    }
    $remainder = $out;


    echo'<tr>';
    echo'<td>'.$formatted_start_date.'</td>';
    echo'<td>'.$formatted_end_date.'</td>';
    echo'<td>'.$requests['days'].'</td>';
    echo'<td>'.$remainder.'</td>';
    echo'</tr>';
    }

    echo'</table>';

    ?>
4

1 に答える 1

1

SQLで、元の資格の数値から、その従業員、その学年度、および承認された場合のすべての要求を差し引いたものを計算します。

これである必要があります:

select new_entitlement-(select sum(days) from requests where employee="sashn" and academic_year=2012 and approved=1) from holiday_entitlement where employee="sashn";

または更新として:

update holiday_entitlement set new_entitlement=27-(select sum(days) from requests where employee="sashn" and academic_year=2012 and approved=1) where employee="sashn" and academic_year=2012;
于 2012-08-16T13:15:10.513 に答える