Como puedo lograr que la celda que contiene los precios totales este alineada a su cabecera? (sub-total -> 18050)
Esta es la funcion que llamo para mostrar los datos:
Código PHP:
function datos($detalles,$cabtotales,$totales){
$this->SetXY(10,117);
$this->SetFont('Arial','',10);
foreach ($detalles as $columna)
{
$this->Cell(15,7,utf8_decode($columna['cantidad_articulos']),'1',0,'C' );
$this->Cell(100,7,utf8_decode($columna['detalles_articulos']),'1',0,'L' );
$this->Cell(30,7,utf8_decode($columna['precio_unitario']),'1',0,'C' );
$this->Cell(30,7,utf8_decode($columna['precio_total']),'1',0,'C' );
$this->Ln();
}
foreach($cabtotales as $columna)
{
$this->SetX(125);
$this->Cell(30,7,utf8_decode($columna['subtotal']),1, 1 , 'C' ) ;
$this->SetX(125);
$this->Cell(30,7,utf8_decode($columna['ajuste']),1, 1 , 'C' ) ;
$this->SetX(125);
$this->Cell(30,7,utf8_decode($columna['total']),1, 1 , 'C' ) ;
}
foreach ($totales as $columna)
{
$this->SetX(155);
$this->Cell(30,7,$columna['subtotal_fact'],'1',1,'J' );
$this->SetX(155);
$this->Cell(30,7,$columna['iva_fact'],'1',1,'J' );
$this->SetX(155);
$this->Cell(30,7,$columna['total_fact'],'1',1,'J' );
}
}