Ajustando relatorio de movimentações
This commit is contained in:
parent
0750e92c91
commit
1f75cb7769
1 changed files with 15 additions and 2 deletions
|
|
@ -109,8 +109,21 @@ try{
|
|||
$header .= ' <table width="100%" style="margin:none; font-size:11px; font-family:Arial, Helvetica, sans-serif; border-collapse: collapse">';
|
||||
$header .= ' <tr>';
|
||||
$header .= ' <td style="text-align: center; width: 95px"><img src="img/logo2.png" style="max-width:140px; padding: 2px"/></td>';
|
||||
$header .= ' <td colspan="6" style="color: #dedede">';
|
||||
$header .= ' <h2>MOVIMENTAÇÕES FINANCEIRAS - '.($FinancialMovementsValidate->getStatusSearch() == 1 ? 'NÃO PAGOS' : ($FinancialMovementsValidate->getStatusSearch() == 2 ? 'PAGOS' : '')).'</h2>';
|
||||
$header .= ' <td colspan="6" style="color: #666">';
|
||||
$header .= ' <h2>MOVIMENTAÇÕES FINANCEIRAS / ';
|
||||
|
||||
/** Verifica o tipo */
|
||||
if($FinancialMovementsValidate->getType() == 'E'){
|
||||
|
||||
$header .= 'ENTRADAS';
|
||||
|
||||
}elseif($FinancialMovementsValidate->getType() == 'S'){
|
||||
|
||||
$header .= 'SAÍDAS';
|
||||
}
|
||||
|
||||
/** Verifica o status */
|
||||
($FinancialMovementsValidate->getStatusSearch() == 1 ? 'NÃO PAGOS' : ($FinancialMovementsValidate->getStatusSearch() == 2 ? 'PAGOS' : '')).'</h2>';
|
||||
|
||||
/** Verifica se o período de consulta foi informado */
|
||||
if(!empty($FinancialMovementsValidate->getDateStart())){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue