Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-03 12:05:47 +02:00
parent 4559db620d
commit 6bb65e8296
13 changed files with 832 additions and 815 deletions

View File

@@ -98,7 +98,7 @@ class StoreRepository {
)
''')
.eq('company_id', companyId)
.order('nome');
.order('name');
return (response as List).map((m) => StoreModel.fromMap(m)).toList();
} catch (e) {

View File

@@ -191,7 +191,7 @@ class _StoreCardState extends State<StoreCard> {
(p) => p.id == provider.id,
);
return CheckboxListTile(
title: Text(provider.nome),
title: Text(provider.name),
value: isAssociated,
onChanged: (selected) {
if (selected == true) {