Atualizando página inicial
This commit is contained in:
parent
d4903402d3
commit
871adb9d22
2 changed files with 4 additions and 2 deletions
4
vendor/model/FinancialMovements.class.php
vendored
4
vendor/model/FinancialMovements.class.php
vendored
|
|
@ -1485,7 +1485,9 @@ class FinancialMovements
|
|||
{
|
||||
|
||||
/** Consulta SQL */
|
||||
$this->sql = 'SELECT fm.*
|
||||
$this->sql = 'SELECT fm.description as output,
|
||||
fm.movement_date_scheduled,
|
||||
fm.movement_value
|
||||
FROM financial_movements fm
|
||||
LEFT JOIN companies c ON fm.company_id = c.company_id
|
||||
WHERE fm.financial_outputs_id > 0
|
||||
|
|
|
|||
|
|
@ -372,7 +372,7 @@ try{
|
|||
?>
|
||||
|
||||
<tr>
|
||||
<td><?php echo $Result->descriprion;?></td>
|
||||
<td><?php echo $Result->description;?></td>
|
||||
<td class="text-center" width="30"><?php echo $Result->movement_date_scheduled;?></td>
|
||||
<td><?php echo $Result->movement_value;?></td>
|
||||
<td class="text-center" width="20"><button type="button" class="btn btn-light btn-sm" onclick="request('FOLDER=view&TABLE=clients_budgets&ACTION=clients_budgets_form&company_id=<?php echo $Result->company_id;?>', '#loadContent', true, '', '', '', 'Preparando formulário', 'blue', 'circle', 'sm', true)" data-toggle="tooltip" data-placement="left" title="Gerenciar orçamento"><i class="fas fa-ellipsis-v"></i></button></td>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue