Atualizando Informação do título
This commit is contained in:
parent
119b5117b2
commit
7846350ffb
2 changed files with 6 additions and 3 deletions
3
vendor/model/FinancialMovements.class.php
vendored
3
vendor/model/FinancialMovements.class.php
vendored
|
|
@ -532,7 +532,8 @@ class FinancialMovements
|
|||
fm.print,
|
||||
fm.movement_previous,
|
||||
fm.sicoob_response,
|
||||
c.name_fantasy
|
||||
c.name_fantasy,
|
||||
c.cns
|
||||
from financial_movements fm
|
||||
left join companies c on fm.company_id = c.company_id
|
||||
where fm.financial_consolidations_id = :financial_consolidations_id';
|
||||
|
|
|
|||
|
|
@ -70,6 +70,7 @@ try{
|
|||
<th scope="col" class="text-center">Referência</th>
|
||||
<th scope="col" class="text-center">Data Pag.</th>
|
||||
<th scope="col" class="text-center">Cliente</th>
|
||||
<th scope="col" class="text-center">CNS</th>
|
||||
<th scope="col" class="text-center">Descrição</th>
|
||||
<th scope="col" class="text-center">Valor R$</th>
|
||||
</tr>
|
||||
|
|
@ -90,6 +91,7 @@ try{
|
|||
<td class="text-center"><?php echo $Result->reference;?></td>
|
||||
<td class="text-center"><?php echo date('d/m/Y', strtotime($Result->movement_date_paid));?></td>
|
||||
<td class="text-left"><?php echo $Result->name_fantasy;?></td>
|
||||
<td class="text-left"><?php echo $Result->cns;?></td>
|
||||
<td class="text-left"><?php echo $Result->description;?></td>
|
||||
<td class="text-right"><?php echo number_format($Result->movement_value_paid, 2, ',', '.');?></td>
|
||||
</tr>
|
||||
|
|
@ -103,7 +105,7 @@ try{
|
|||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="5" align="right">Total de itens: <?php echo $cont;?> - Total Geral R$ <?php echo number_format($total, 2, ',', '.');?></td>
|
||||
<td colspan="6" class="text-right">Total de itens: <?php echo $cont;?> - Total Geral R$ <?php echo number_format($total, 2, ',', '.');?></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
|
@ -189,7 +191,7 @@ try{
|
|||
'cod' => 201,
|
||||
'data' => $div,
|
||||
'title' => 'Detalhes da Consolidação : '.$Main->setZeros($FinancialConsolidationsValidate->getFinancialConsolidationsId(),3).' - '.date('d/m/Y', strtotime($FinancialConsolidationsResults->import_date)),
|
||||
'width' => 800
|
||||
'width' => 1200
|
||||
);
|
||||
|
||||
/** Envio **/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue