enviando cadastro cidadão individual

This commit is contained in:
Reginaldo
2023-04-27 23:36:40 -03:00
parent 0ba2af9e2c
commit 684ad80dc2
2 changed files with 8 additions and 0 deletions

View File

@@ -459,4 +459,11 @@ class DBQuerys{
Database db = await DbSqliteLoad().intialDB();
await db.update('CIDADAOS', row,where: "SINCRONIZADO = 'N'");
}
Future updateCadastroIndividuais()async{
Map<String, dynamic> row = {
'SINCRONIZADO' : 'S',
};
Database db = await DbSqliteLoad().intialDB();
await db.update('CADASTROS_INDIVIDUAIS', row,where: "SINCRONIZADO = 'N'");
}
}