Atualizando financial_movements_save.php
This commit is contained in:
parent
fd226e99d3
commit
02d2d2a8cd
1 changed files with 2 additions and 2 deletions
4
vendor/model/FinancialMovements.class.php
vendored
4
vendor/model/FinancialMovements.class.php
vendored
|
|
@ -980,7 +980,7 @@ class FinancialMovements
|
|||
AND fm.sicoob_response IS NOT NULL
|
||||
AND fm.movement_date_paid IS NULL
|
||||
AND fm.status = 1
|
||||
AND fm.movement_date_scheduled <= CURRENT_DATE';
|
||||
AND fm.movement_date_scheduled < CURRENT_DATE';
|
||||
|
||||
/** Preparo o SQL para execução */
|
||||
$this->stmt = $this->connection->connect()->prepare($this->sql);
|
||||
|
|
@ -1022,7 +1022,7 @@ class FinancialMovements
|
|||
AND fm.sicoob_response IS NOT NULL
|
||||
AND fm.movement_date_paid IS NULL
|
||||
AND fm.status = 1
|
||||
AND fm.movement_date_scheduled <= CURRENT_DATE
|
||||
AND fm.movement_date_scheduled < CURRENT_DATE
|
||||
ORDER BY fm.movement_date_scheduled ASC';
|
||||
|
||||
/** Preparo o SQL para execução */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue