store requisition
This commit is contained in:
parent
181e89a745
commit
0b7b3ecd9b
@ -175,26 +175,41 @@ span.highlight {
|
||||
<td align="left"><?php echo $record->UOM ?></td>
|
||||
|
||||
<td align="right"><?php echo $record->QuantityRequired ?></td>
|
||||
<?php if($record->Status==0)
|
||||
<?php if(($record->Quantity)-($record->QuantityRequired)<=0)
|
||||
{?>
|
||||
<td align="right" style="color: red" ><?php echo $record->Quantity?></td>
|
||||
<?
|
||||
}?>
|
||||
<?php if($record->Status==1)
|
||||
<?php if(($record->Quantity)-($record->QuantityRequired)>0)
|
||||
{?>
|
||||
<td align="right"><?php echo $record->Quantity?></td>
|
||||
<?
|
||||
}?>
|
||||
|
||||
<td align="left"><?php echo $record->Remarks ?></td>
|
||||
<td align="left"> <input type="text" onchange="SaveIssueQuantity(<?php echo $index ?>,<?php echo $record->QuantityRequired ?>)" id="<?php echo 'issuedQuantity'.$index ?>" name="<?php echo 'issuedQuantity'.$index ?>" class="form required" onkeypress="return isNumberKey(event);"value="<?php echo $record->QuantityIssued; ?>">
|
||||
</td>
|
||||
|
||||
<td align="left">
|
||||
|
||||
<?php if(($record->Quantity)-($record->QuantityRequired)>0)
|
||||
{?>
|
||||
|
||||
|
||||
<input type="text" onchange="SaveIssueQuantity(<?php echo $index ?>,<?php echo $record->QuantityRequired ?>)" id="<?php echo 'issuedQuantity'.$index ?>" name="<?php echo 'issuedQuantity'.$index ?>" class="form required" onkeypress="return isNumberKey(event);"value="<?php echo $record->QuantityIssued; ?>"> <?}?>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
<td align="left"><input type="text" onchange="SaveRemarks(<?php echo $index ?>)" id="<?php echo 'Comments'.$index ?>" name="<?php echo 'Comments'.$index ?>" class="form required" value="<?php echo $record->StoreComments; ?>" >
|
||||
<td align="left">
|
||||
|
||||
<?php if(($record->Quantity)-($record->QuantityRequired)>0)
|
||||
{?>
|
||||
|
||||
<input type="text" onchange="SaveRemarks(<?php echo $index ?>)" id="<?php echo 'Comments'.$index ?>" name="<?php echo 'Comments'.$index ?>" class="form required" value="<?php echo $record->StoreComments; ?>" ><?}?>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</tr>
|
||||
<?php $RowCount = $index; }
|
||||
?>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user