From b2bc52ef4527dbe21c5034b2d16d926233131c2a Mon Sep 17 00:00:00 2001 From: Kenio de Souza Date: Wed, 27 Aug 2025 09:45:30 -0300 Subject: [PATCH] Atualizando FinancialCategorys.class.php --- vendor/model/FinancialCategories.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/model/FinancialCategories.class.php b/vendor/model/FinancialCategories.class.php index 2130da0..4cdf76e 100644 --- a/vendor/model/FinancialCategories.class.php +++ b/vendor/model/FinancialCategories.class.php @@ -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);