~marcelo-escobal/geined/Alianza

« back to all changes in this revision

Viewing changes to mov_caja_editar.html

  • Committer: Cualquier Desarrollador
  • Date: 2010-01-29 21:15:22 UTC
  • Revision ID: desarrollo@marte-20100129211522-u97qh9o90mhdap04
Importación inicial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<span style="float: left; text-align: left">
 
2
    <h4>Editar movimiento</h4>
 
3
</span>
 
4
<span style="float: right;text-align: right">
 
5
    <input type="button" onclick="ocultar('caeddiv');" value="x"></button>
 
6
</span>
 
7
<div style="clear: both;"></div>
 
8
<form action="caja_ver.php=accion=actualizar" method="post" onsubmit="ocultar('caeddiv');" >'
 
9
    <?php 
 
10
        include('datos.php');
 
11
        $fil=buscar_registro("mov_caja","id",$_GET['id']); 
 
12
    ?>
 
13
    <table><thead><tr><th>Campo</th><th>Valor</th></tr></thead>
 
14
        <tr><td></td><td><input type="hidden" name="caja_id" value="<?php $_GET['id']; ?>"</td></tr>
 
15
        <tr><td>Detalle:</td><td><input type="text" name="detalle" value="<?php $fil['detalle']; ?>" ></td></tr>
 
16
        <tr><td>Efectivo:</td><td><input type="text" name="efectivo" value="<?php $fil['efectivo']; ?>"></td></tr>
 
17
        <tr><td>Cheques:</td><td><input type="text" name="cheques" value=" <?php $fil['cheques'];?>" ></td></tr>
 
18
        <tr><td>Vouchers:</td><td><input type="text" name="vouchers" value="<?php $fil['vouchers']; ?>" ></td></tr>       
 
19
        <tr><td>Otros:</td><td><input type="text" name="otros" value="<?php $fil['otros']; ?>" ></td></tr>
 
20
    </table>
 
21
    <input type="submit" value="Aceptar">
 
22
</form>