Exemple #1
0
 function DatosBurban(CFactura $oFactura)
 {
     $dFechaLarga = CUtils::fFechaLarga($oFactura->getFecha());
     $sEmpresa = "Burban Publicidad, S.L.";
     $sNIF = "B85516573";
     $x = 115;
     //Arial bold 15
     $this->SetFont('Arial', 'B', 12);
     $this->Cell($x);
     $this->Cell(1, 7, 'FECHA:', 20, 0, 'L');
     $this->Ln();
     $this->SetFont('Arial', '', 12);
     $this->Cell($x);
     $this->Cell(1, 7, $dFechaLarga, 20, 0, 'L');
     $this->Ln();
     $this->Cell($x);
     $this->Cell(1, 6, $sEmpresa, 20, 0, 'L');
     $this->Ln();
     $this->Cell($x);
     $this->Cell(1, 6, $sNIF, 20, 0, 'L');
     $this->Ln(20);
 }
Exemple #2
0
','selCliente');">
    <center>
    <!-- EL FORMULARO PARA CREAR -->
    <div id="divMensaje"><?php 
echo $sWarning;
?>
</div>

    <form id="frmFactura" method="post" action="" class="clsUIAgregar">
        <fieldset>
            <div id="divFrmHead">NUEVA FACTURA</div>
            <div id="divFrmBody">
                <dl>
                    <dt><label>FECHA:</label></dt>
                    <dd><input type="text" id="txtFecha" name="txtFecha" value="<?php 
echo $oFactura->getFecha();
?>
" /></dd>
                    <dt><label>CLIENTE:</label></dt>
                    <dd>
                        <select id="selCliente" name="selCliente">
                            <?php 
for ($i = 0; $i < count($arListaClientes); $i++) {
    ?>
                            <option value="<?php 
    echo $arListaClientes[$i]['IDN'];
    ?>
" >
                            <?php 
    echo $arListaClientes[$i]["EMPRESA"];
    ?>