feat notes

This commit is contained in:
2026-05-22 10:12:56 +02:00
parent 23d3356e6b
commit 7b072a219d
3 changed files with 20 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ class CustomerRepository {
''')
.eq('company_id', companyId)
.eq('is_active', true)
.order('name');
.order('name', ascending: true);
return (response as List).map((c) => CustomerModel.fromMap(c)).toList();
} catch (e) {