Atualizando FinancialCategorys.class.php

This commit is contained in:
Kenio 2025-08-27 09:45:30 -03:00
parent 0adecd3080
commit b2bc52ef45

View file

@ -108,7 +108,7 @@ class FinancialCategories
$this->type = $type;
/** Consulta SQL */
$this->sql = 'select * from financial_categories where type = \''.$this->type.'\'';
$this->sql = 'select * from financial_categories where type = \''.$this->type.'\' order byn description asc';
/** Preparo o SQL para execução */
$this->stmt = $this->connection->connect()->prepare($this->sql);