-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuFGerarIndicador.pas
5342 lines (4891 loc) · 237 KB
/
uFGerarIndicador.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//---------------------------------------------------------------------------//
// Projeto: integraEsus
// Sistema de integrador com ESUS para gestão de dados do programa PrevineBrasil
//
// Direitos Autorais Reservados (c) 2023 Marcelo M. Gonçalves
//
// Você pode obter a última versão desse arquivo no GitHub
// URL: https://github.com/marcelomgoncalves/integradorESUS
//
// Este sistema é software livre; você pode redistribuí-la e/ou modificá-la
// sob os termos da Licença Pública Geral Menor do GNU conforme publicada pela
// Free Software Foundation; tanto a versão 2.1 da Licença, ou (a seu critério)
// qualquer versão posterior.
//
// Este sistema é distribuída na expectativa de que seja útil, porém, SEM
// NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
// ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
// Menor do GNU para mais detalhes.
//
// Você deve ter recebido uma cópia da Licença Pública Geral Menor do GNU junto
// com esta biblioteca; se não, escreva para a Free Software Foundation, Inc.,
// no endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
// Você também pode obter uma copia da licença em:
// http://www.opensource.org/licenses/lgpl-license.php
//
// Marcelo M. Gonçalves - marcelomgoncalves@gmail.com
//---------------------------------------------------------------------------//
unit uFGerarIndicador;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.Mask,
RzEdit, RzButton, uni, System.StrUtils, Vcl.ComCtrls, System.Types;
type
TMyObject = class
TipoDocCNS: string;
ValorCNS : string;
TipoDocCPF: string;
ValorCPF : string;
end;
TFGerarIndicador = class(TForm)
Panel1: TPanel;
Panel5: TPanel;
Panel4: TPanel;
Panel2: TPanel;
Panel3: TPanel;
Panel6: TPanel;
Label2: TLabel;
Label3: TLabel;
edDataInicial: TRzDateTimeEdit;
edDataFinal: TRzDateTimeEdit;
Panel7: TPanel;
lblGerados: TLabel;
Panel8: TPanel;
RzBitBtn1: TRzBitBtn;
edIdadeInicial: TEdit;
edIdadeFinal: TEdit;
lblIdadeInicial: TLabel;
lblIdadeFinal: TLabel;
pb1: TProgressBar;
lblStatus: TLabel;
constructor Create(Sender:TComponent; nIndicador:integer); reintroduce;
procedure FormShow(Sender: TObject);
procedure RzBitBtn1Click(Sender: TObject);
private
{ Private declarations }
function GerarIndicador123: boolean;
function GerarIndicador4: boolean;
function GerarIndicador5: boolean;
public
{ Public declarations }
end;
var
FGerarIndicador: TFGerarIndicador;
nrIndicador:integer;
implementation
{$R *.dfm}
uses uDM, uFuncoes;
{ TFGerarIndicador }
constructor TFGerarIndicador.Create(Sender: TComponent; nIndicador: integer);
var
str:String;
begin
inherited Create(Sender);
nrIndicador:=nIndicador;
str:='GERAÇÃO DE DADOS';
case nIndicador of
1: str:=str+' DE GESTANTES - INDICADORES 1/2/3 - PREVINE BRASIL ';
4: str:=str+' DE MULHERES - INDICADOR 4 - PREVINE BRASIL ';
5: str:=str+' DE COBERTURA VACINAL PÓLIOMIELITE INATIVADA E PENTAVALENTE - INDICADOR 5 - PREVINE BRASIL ';
6: str:=str+' DE HIPERTENSOS COM PRESSÃO AFERIDA A CADA SEMESTRE - INDICADOR 6 - PREVINE BRASIL ';
7: str:=str+' DE DIABÉTICOS COM SOLICITAÇÃO DE HEMOGLOBINA GLICADA - INDICADOR 7 - PREVINE BRASIL ';
end;
panel2.caption:=str;
if nrIndicador = 4 then
begin
lblIdadeInicial.visible:=true;
lblIdadeFinal.Visible:=true;
edIdadeInicial.visible:=true;
edIdadeFinal.visible:=true;
end
else
begin
lblIdadeInicial.visible:=false;
lblIdadeFinal.Visible:=false;
edIdadeInicial.visible:=false;
edIdadeFinal.visible:=false;
end
end;
procedure TFGerarIndicador.FormShow(Sender: TObject);
begin
edDataInicial.date:=StrToDate('01/05/2021');
edDataFinal.date:=StrToDate('31/08/2021');
end;
function TFGerarIndicador.GerarIndicador123: boolean;
var
qryAux1,qryAux2,qryAux3,qryAux4,qryAux5,qryTmp,qryTmpGestantes, qryTmpDetGestantes:TUniquery;
filtro:String;
nIndice:double;
nTotalGestantes:integer;
res,x,i,p, conta_duplicados: integer;
strSQL:string;
data_inicial, data_final, dInicial, dFinal:TDateTime;
/////
CNS,CPF,CNSA,CPFA,campo_busca,campo_ordem,cidadao_cpf,
cidadao_cns,cidadao_nome,cidadao_mae,cidadao_cns_res,
cidadao_cpf_res,cidadao_ma,cidadao_sexo,
cind_cpf, cind_cns, cind_cns_res, cind_cpf_res,
cind_micro_area, cnes, ine, nome_equipe, nome_sexo,nome_unidade,
nu_uuid_ficha, nu_uuid_ficha_origem, nu_uuid_dado_transp,
StrCMDSQL,cidadao_obito,cind_obito,campo_busca_res,
nu_celular, ciap_final_gestacao, cid_final_gestacao,cod_unidade_saude :string;
busca_cns, busca_cpf, busca, duplicado, TemErro : boolean;
cidadao_nascimento, calc_20s,
calc_ddp,calc_fimpuerp,data_nascimento, dt_primeira_consulta,
dt_finalizacao_gestacao, calc_dlfg : TDateTime;
cidadao_ativo,cidadao_faleceu, cind_gestante, cind_hipertenso,
cind_diabetico, cind_inativo, num_cind, nrConsultas,
I1_r1, I1_r2, gestacao_finalizada,ig_dias,ig_semanas,ig_meses :integer;
rCNS,rCPF,rCNSA,rCPFA, data_falecimento,tex, dsc_fim_gestacao :string;
MotherList, ChildList: TList;
obj1 : TMyObject;
controle_cbo,procedimentos_s,procedimentos_h, procedimentos : string;
data_L1Trim, data_L2Trim, data_L3Trim: TDateTime; // variaveis de controle de data de trimestres
NCO1Trim, NCO2trim, NCO3trim, exame_avaliado, exame_solicitado: integer; // variaveis de controle de consultas odontologicas
begin // por trimestre
try
TemErro:=false; // Variaveis de verificação de erros na geração
qryAux1:=TUniquery.create(self);
qryAux1.Connection:=Dm.ConexaoEsus;
qryAux1.FetchingAll;
qryAux2:=TUniquery.create(self);
qryAux2.Connection:=Dm.ConexaoEsus;
qryAux2.FetchingAll;
qryAux3:=TUniquery.create(self);
qryAux3.Connection:=Dm.ConexaoEsus; // criando querys auxiliares e temporárias
qryAux4:=TUniquery.create(self);
qryAux4.Connection:=Dm.ConexaoEsus;
qryAux5:=TUniquery.create(self);
qryAux5.Connection:=Dm.ConexaoEsus;
qryTmp :=TUniquery.create(self);
qryTmp.Connection:=Dm.ConexaoLocal;
qryTmpGestantes :=TUniquery.create(self);
qryTmpGestantes.Connection:=Dm.ConexaoLocal;
qryTmpDetGestantes :=TUniquery.create(self);
qryTmpDetGestantes.Connection:=Dm.ConexaoLocal;
///////////////////////////////////////////////////////////// CÓDIGO IMPORTADO
MotherList:=TList.Create;
//ChildList := TList.create;
//MotherList.Add(ChildList);
obj1:= TMyObject.Create;
qryTmp:=TUniquery.create(self);
qryTmp.Connection:=dm.ConexaoLocal;
// Limpar a tabela temporária
strCMDSQL:='DELETE FROM tmp_gestantes';
qryTmp.close;
qryTmp.Sql.Clear;
qryTmp.sql.text:=StrCMDSQL;
qryTmp.ExecSQL;
strCMDSQL:= 'SET GENERATOR GEN_TMP_GESTANTES_ID TO 0 ';
qryTmp.close;
qryTmp.Sql.Clear;
qryTmp.sql.text:=StrCMDSQL;
qryTmp.ExecSQL;
// Limpar a tabela temporária
strCMDSQL:='DELETE FROM tmp_detalhes_gestantes';
qryTmp.close;
qryTmp.Sql.Clear;
qryTmp.sql.text:=StrCMDSQL;
qryTmp.ExecSQL;
strCMDSQL:= 'SET GENERATOR GEN_TMP_DETALHES_GESTANTES_ID TO 0 ';
qryTmp.close;
qryTmp.Sql.Clear;
qryTmp.sql.text:=StrCMDSQL;
qryTmp.ExecSQL;
qryTmpGestantes.close;
qryTmpGestantes.Sql.Text:='SELECT * FROM TMP_GESTANTES order by sequencia';
qryTmpDetGestantes.close;
qryTmpDetGestantes.Sql.Text:='SELECT * FROM TMP_DETALHES_GESTANTES order by id';
// CONSULTA INICIAL
strSQL:='SELECT '+#13+#10+
't1.*, '+#13+#10+
' fat_cidadao_pec.nu_telefone_celular as telefone_celular '+#13+#10+
'FROM '+#13+#10+
'( '+#13+#10+
'SELECT DISTINCT ON (nu_cns, nu_cpf_cidadao) '+#13+#10+
' CASE WHEN nu_cns IS NULL THEN ''0'' '+#13+#10+
' ELSE TRIM(FROM nu_cns) END '+#13+#10+
' nu_cns, '+#13+#10+
' CASE WHEN nu_cpf_cidadao IS NULL THEN ''0'' '+#13+#10+
' ELSE TRIM(FROM nu_cpf_cidadao) END '+#13+#10+
' nu_cpf_cidadao, '+#13+#10+
' CASE WHEN co_dim_cbo_1 = 1 THEN co_dim_cbo_2 '+#13+#10+
' ELSE co_dim_cbo_1 END '+#13+#10+
' co_dim_cbo, '+#13+#10+
' CASE WHEN co_dim_unidade_saude_1 = 1 THEN co_dim_unidade_saude_2 '+#13+#10+
' ELSE co_dim_unidade_saude_1 END '+#13+#10+
' co_dim_unidade_saude, '+#13+#10+
' CASE WHEN co_dim_equipe_1 = 1 THEN co_dim_equipe_2 '+#13+#10+
' ELSE co_dim_equipe_1 END '+#13+#10+
' co_dim_equipe, '+#13+#10+
' dt_nascimento, '+#13+#10+
' TO_CHAR(TO_DATE(co_dim_tempo_dum::varchar,''YYYYMMDD''), ''DD/MM/YYYY'' )::date as co_dim_tempo_dum, '+#13+#10+
' TO_CHAR(TO_DATE(co_dim_tempo::varchar,''YYYYMMDD''), ''DD/MM/YYYY'' )::date as co_dim_tempo, '+#13+#10+
' co_dim_tempo_dum as dtdum, '+#13+#10+
' co_fat_cidadao_pec '+#13+#10+
'FROM '+#13+#10+
' tb_fat_atendimento_individual '+#13+#10+
'WHERE '+#13+#10+
' TO_CHAR(TO_DATE(co_dim_tempo_dum::varchar,''YYYYMMDD''), ''DD/MM/YYYY'' )::date >= :data_inicial AND '+#13+#10+
' TO_CHAR(TO_DATE(co_dim_tempo_dum::varchar,''YYYYMMDD''), ''DD/MM/YYYY'' )::date < :data_final '+#13+#10+
' AND ( '+#13+#10+
' ds_filtro_ciaps LIKE ANY ( '+#13+#10+
' array[ '+#13+#10+
' ''%|W03|%'', '+#13+#10+
' ''%|W05|%'', '+#13+#10+
' ''%|W29|%'', '+#13+#10+
' ''%|W71|%'', '+#13+#10+
' ''%|W78|%'', '+#13+#10+
' ''%|W79|%'', '+#13+#10+
' ''%|W80|%'', '+#13+#10+
' ''%|W81|%'', '+#13+#10+
' ''%|W84|%'', '+#13+#10+
' ''%|W85|%'', '+#13+#10+
' --''%|W72|%'', '+#13+#10+
' --''%|W73|%'', '+#13+#10+
' --''%|W75|%'', '+#13+#10+
' --''%|W76|%'', '+#13+#10+
' ''%|ABP001|%'' '+#13+#10+
' ] '+#13+#10+
' ) OR '+#13+#10+
' ds_filtro_cids LIKE ANY ( '+#13+#10+
' array[ '+#13+#10+
' ''%|O11|%'', '+#13+#10+
' ''%|O120|%'', '+#13+#10+
' ''%|O121|%'', '+#13+#10+
' ''%|O122|%'', '+#13+#10+
' ''%|O13|%'', '+#13+#10+
' ''%|O140|%'', '+#13+#10+
' ''%|O141|%'', '+#13+#10+
' ''%|O149|%'', '+#13+#10+
' ''%|O150|%'', '+#13+#10+
' ''%|O151|%'', '+#13+#10+
' ''%|O159|%'', '+#13+#10+
' ''%|O16|%'', '+#13+#10+
' ''%|O200|%'', '+#13+#10+
' ''%|O208|%'', '+#13+#10+
' ''%|O209|%'', '+#13+#10+
' ''%|O210|%'', '+#13+#10+
' ''%|O211|%'', '+#13+#10+
' ''%|O212|%'', '+#13+#10+
' ''%|O218|%'', '+#13+#10+
' ''%|O219|%'', '+#13+#10+
' ''%|O220|%'', '+#13+#10+
' ''%|O221|%'', '+#13+#10+
' ''%|O222|%'', '+#13+#10+
' ''%|O223|%'', '+#13+#10+
' ''%|O224|%'', '+#13+#10+
' ''%|O225|%'', '+#13+#10+
' ''%|O228|%'', '+#13+#10+
' ''%|O229|%'', '+#13+#10+
' ''%|O230|%'', '+#13+#10+
' ''%|O231|%'', '+#13+#10+
' ''%|O232|%'', '+#13+#10+
' ''%|O233|%'', '+#13+#10+
' ''%|O234|%'', '+#13+#10+
' ''%|O235|%'', '+#13+#10+
' ''%|O239|%'', '+#13+#10+
' ''%|O299|%'', '+#13+#10+
' ''%|O300|%'', '+#13+#10+
' ''%|O301|%'', '+#13+#10+
' ''%|O302|%'', '+#13+#10+
' ''%|O308|%'', '+#13+#10+
' ''%|O309|%'', '+#13+#10+
' ''%|O311|%'', '+#13+#10+
' ''%|O312|%'', '+#13+#10+
' ''%|O318|%'', '+#13+#10+
' ''%|O320|%'', '+#13+#10+
' ''%|O321|%'', '+#13+#10+
' ''%|O322|%'', '+#13+#10+
' ''%|O323|%'', '+#13+#10+
' ''%|O324|%'', '+#13+#10+
' ''%|O325|%'', '+#13+#10+
' ''%|O326|%'', '+#13+#10+
' ''%|O328|%'', '+#13+#10+
' ''%|O329|%'', '+#13+#10+
' ''%|O330|%'', '+#13+#10+
' ''%|O331|%'', '+#13+#10+
' ''%|O332|%'', '+#13+#10+
' ''%|O333|%'', '+#13+#10+
' ''%|O334|%'', '+#13+#10+
' ''%|O335|%'', '+#13+#10+
' ''%|O336|%'', '+#13+#10+
' ''%|O337|%'', '+#13+#10+
' ''%|O338|%'', '+#13+#10+
' ''%|O752|%'', '+#13+#10+
' ''%|O753|%'', '+#13+#10+
' ''%|O990|%'', '+#13+#10+
' ''%|O991|%'', '+#13+#10+
' ''%|O992|%'', '+#13+#10+
' ''%|O993|%'', '+#13+#10+
' ''%|O994|%'', '+#13+#10+
' ''%|O240|%'', '+#13+#10+
' ''%|O241|%'', '+#13+#10+
' ''%|O242|%'', '+#13+#10+
' ''%|O243|%'', '+#13+#10+
' ''%|O244|%'', '+#13+#10+
' ''%|O249|%'', '+#13+#10+
' ''%|O25|%'', '+#13+#10+
' ''%|O260|%'', '+#13+#10+
' ''%|O261|%'', '+#13+#10+
' ''%|O263|%'', '+#13+#10+
' ''%|O264|%'', '+#13+#10+
' ''%|O265|%'', '+#13+#10+
' ''%|O268|%'', '+#13+#10+
' ''%|O269|%'', '+#13+#10+
' ''%|O280|%'', '+#13+#10+
' ''%|O281|%'', '+#13+#10+
' ''%|O282|%'', '+#13+#10+
' ''%|O283|%'', '+#13+#10+
' ''%|O284|%'', '+#13+#10+
' ''%|O285|%'', '+#13+#10+
' ''%|O288|%'', '+#13+#10+
' ''%|O289|%'', '+#13+#10+
' ''%|O290|%'', '+#13+#10+
' ''%|O291|%'', '+#13+#10+
' ''%|O292|%'', '+#13+#10+
' ''%|O293|%'', '+#13+#10+
' ''%|O294|%'', '+#13+#10+
' ''%|O295|%'', '+#13+#10+
' ''%|O296|%'', '+#13+#10+
' ''%|O298|%'', '+#13+#10+
' ''%|O009|%'', '+#13+#10+
' ''%|O339|%'', '+#13+#10+
' ''%|O340|%'', '+#13+#10+
' ''%|O341|%'', '+#13+#10+
' ''%|O342|%'', '+#13+#10+
' ''%|O343|%'', '+#13+#10+
' ''%|O344|%'', '+#13+#10+
' ''%|O345|%'', '+#13+#10+
' ''%|O346|%'', '+#13+#10+
' ''%|O347|%'', '+#13+#10+
' ''%|O348|%'', '+#13+#10+
' ''%|O349|%'', '+#13+#10+
' ''%|O350|%'', '+#13+#10+
' ''%|O351|%'', '+#13+#10+
' ''%|O352|%'', '+#13+#10+
' ''%|O353|%'', '+#13+#10+
' ''%|O354|%'', '+#13+#10+
' ''%|O355|%'', '+#13+#10+
' ''%|O356|%'', '+#13+#10+
' ''%|O357|%'', '+#13+#10+
' ''%|O358|%'', '+#13+#10+
' ''%|O359|%'', '+#13+#10+
' ''%|O360|%'', '+#13+#10+
' ''%|O361|%'', '+#13+#10+
' ''%|O362|%'', '+#13+#10+
' ''%|O363|%'', '+#13+#10+
' ''%|O365|%'', '+#13+#10+
' ''%|O366|%'', '+#13+#10+
' ''%|O367|%'', '+#13+#10+
' ''%|O368|%'', '+#13+#10+
' ''%|O369|%'', '+#13+#10+
' ''%|O40|%'', '+#13+#10+
' ''%|O410|%'', '+#13+#10+
' ''%|O411|%'', '+#13+#10+
' ''%|O418|%'', '+#13+#10+
' ''%|O419|%'', '+#13+#10+
' ''%|O430|%'', '+#13+#10+
' ''%|O431|%'', '+#13+#10+
' ''%|O438|%'', '+#13+#10+
' ''%|O439|%'', '+#13+#10+
' ''%|O440|%'', '+#13+#10+
' ''%|O441|%'', '+#13+#10+
' ''%|O460|%'', '+#13+#10+
' ''%|O468|%'', '+#13+#10+
' ''%|O469|%'', '+#13+#10+
' ''%|O470|%'', '+#13+#10+
' ''%|O471|%'', '+#13+#10+
' ''%|O479|%'', '+#13+#10+
' ''%|O48|%'', '+#13+#10+
' ''%|O995|%'', '+#13+#10+
' ''%|O996|%'', '+#13+#10+
' ''%|O997|%'', '+#13+#10+
' ''%|Z640|%'', '+#13+#10+
' ''%|O00|%'', '+#13+#10+
' ''%|O10|%'', '+#13+#10+
' ''%|O12|%'', '+#13+#10+
' ''%|O14|%'', '+#13+#10+
' ''%|O15|%'', '+#13+#10+
' ''%|O20|%'', '+#13+#10+
' ''%|O21|%'', '+#13+#10+
' ''%|O22|%'', '+#13+#10+
' ''%|O23|%'', '+#13+#10+
' ''%|O24|%'', '+#13+#10+
' ''%|O26|%'', '+#13+#10+
' ''%|O28|%'', '+#13+#10+
' ''%|O29|%'', '+#13+#10+
' ''%|O30|%'', '+#13+#10+
' ''%|O31|%'', '+#13+#10+
' ''%|O32|%'', '+#13+#10+
' ''%|O33|%'', '+#13+#10+
' ''%|O34|%'', '+#13+#10+
' ''%|O35|%'', '+#13+#10+
' ''%|O36|%'', '+#13+#10+
' ''%|O41|%'', '+#13+#10+
' ''%|O43|%'', '+#13+#10+
' ''%|O44|%'', '+#13+#10+
' ''%|O46|%'', '+#13+#10+
' ''%|O47|%'', '+#13+#10+
' ''%|O98|%'', '+#13+#10+
' ''%|Z34|%'', '+#13+#10+
' ''%|Z35|%'', '+#13+#10+
' ''%|Z36|%'', '+#13+#10+
' ''%|Z321|%'', '+#13+#10+
' ''%|Z33|%'', '+#13+#10+
' ''%|Z340|%'', '+#13+#10+
' ''%|Z340|%'', '+#13+#10+
' ''%|Z348|%'', '+#13+#10+
' ''%|Z349|%'', '+#13+#10+
' ''%|Z350|%'', '+#13+#10+
' ''%|Z351|%'', '+#13+#10+
' ''%|Z352|%'', '+#13+#10+
' ''%|Z353|%'', '+#13+#10+
' ''%|Z354|%'', '+#13+#10+
' ''%|Z357|%'', '+#13+#10+
' ''%|Z358|%'', '+#13+#10+
' --''%|Z356|%'', '+#13+#10+
' ''%|Z359|%'''+#13+#10+
' ] '+#13+#10+
' ) '+#13+#10+
' ) '+#13+#10+
'ORDER BY nu_cns, nu_cpf_cidadao '+#13+#10+
') AS t1 '+#13+#10+
'left join tb_fat_cidadao_pec fat_cidadao_pec on (t1.co_fat_cidadao_pec = fat_cidadao_pec.co_seq_fat_cidadao_pec) '+#13+#10+
'ORDER BY co_dim_tempo_dum ';
data_inicial:=edDataInicial.date - 280;
data_final :=edDataFinal.date - 279;
dInicial:=edDataInicial.date;
dFinal:=edDataFinal.date;
qryAux1.close;
qryAux1.sql.clear;
qryAux1.sql.text:=strSQL;
qryAux1.ParamByName('data_inicial').asDateTime:=data_inicial;
qryAux1.ParamByName('data_final').asDateTime:=data_final;
//qryTmpGestantes.DisableControls;
try
qryAux1.open;
if (qryAux1.recordCount > 0) then
begin
while not qryAux1.eof do
begin
CNS := '0';
CPF := '0';
CNSA := '0';
CPFA := '0';
campo_busca := '';
campo_ordem := '';
busca_cns := false;
busca_cpf := false;
busca := false;
CNS := trim(qryAux1.FieldByName('nu_cns').asString);
CPF := trim(qryAux1.FieldByName('nu_cpf_cidadao').asString);
if (length(trim(qryAux1.FieldByName('nu_cns').asString)) = 15) then
begin
busca_cns := true;
CNS := trim(qryAux1.FieldByName('nu_cns').asString);
end;
if (length(trim(qryAux1.FieldByName('nu_cpf_cidadao').asString)) = 11) then
begin
busca_cpf := true;
CPF := trim(qryAux1.FieldByName('nu_cpf_cidadao').asString);
end;
if ((busca_cns) and (busca_cpf)) then
begin
campo_busca := '(nu_cns = ''' + CNS + ''' OR nu_cpf = ''' +CPF+ ''')';
campo_ordem := 'nu_cns, nu_cpf';
busca := true;
end
else
if (busca_cns) then
begin
campo_busca := 'nu_cns = '''+CNS+'''';
campo_ordem := 'nu_cpf DESC';
busca := true;
end
else
if (busca_cpf) then
begin
campo_busca := 'nu_cpf = '''+CPF+'''';
campo_ordem := 'nu_cns DESC';
busca := true;
end;
if (busca) then
begin
nu_celular:=qryAux1.FieldByName('telefone_celular').asString;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// TB_CIDADAO
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
qryAux2.close;
qryAux2.Sql.clear;
strSQL:='SELECT '+#13+#10+
'st_ativo, '+#13+#10+
'CASE WHEN nu_cns IS NULL THEN ''0'''+#13+#10+
' ELSE TRIM(FROM nu_cns) END nu_cns, '+#13+#10+
'CASE WHEN nu_cpf IS NULL THEN ''0''' +#13+#10+
' ELSE TRIM(FROM nu_cpf) END nu_cpf, '+#13+#10+
'no_cidadao, '+#13+#10+
'dt_nascimento, '+#13+#10+
'no_mae, '+#13+#10+
'dt_obito, '+#13+#10+
'st_faleceu, '+#13+#10+
'nu_micro_area, '+#13+#10+
'st_fora_area, '+#13+#10+
'CASE WHEN nu_cns_responsavel IS NULL THEN ''0''' +#13+#10+
' ELSE TRIM(FROM nu_cns_responsavel) END nu_cns_responsavel, '+#13+#10+
'CASE WHEN nu_cpf_responsavel IS NULL THEN ''0''' +#13+#10+
' ELSE TRIM(FROM nu_cpf_responsavel) END nu_cpf_responsavel, '+#13+#10+
'no_sexo '+#13+#10+
'FROM '+#13+#10+
' tb_cidadao '+#13+#10+
'WHERE '+#13+#10+
' st_ativo = 1 AND '+#13+#10+
campo_busca +' '+#13+#10+
'ORDER BY '+ campo_ordem +' '+#13+#10+
'LIMIT 1 ';
cidadao_ativo := 1;
cidadao_cpf := '0';
cidadao_cns := '0';
cidadao_nome := '# GESTANTE NÃO ENCONTRADA NO CADASTRO DE CIDADÃOS #';
cidadao_mae := '** NOME DA MAE FALTANDO OU NÃO CADASTRADO **';
cidadao_nascimento := qryAux1.FieldByName('dt_nascimento').asDateTime;
cidadao_obito := '';
cidadao_faleceu := 0;
cidadao_cns_res := '0';
cidadao_cpf_res := '0';
cidadao_ma := '00';
cidadao_sexo := 'FEMININO';
qryAux2.sql.text:=strSQL;
try
qryAux2.open;
except on ex4:Exception do
begin
showMessage(strSql);
showMessage(ex4.message);
end;
end;
//qryAux2.open; //abrindo a query auxiliar 2
if (qryAux2.recordcount > 0) then
begin
cidadao_ativo := qryAux2.FieldByName('st_ativo').asInteger;
cidadao_cpf := trim(qryAux2.FieldByName('nu_cpf').asString);
cidadao_cns := trim(qryAux2.FieldByName('nu_cns').asString);
cidadao_nome := trim(qryAux2.FieldByName('no_cidadao').asString);
if (length(trim(qryAux2.FieldByName('no_mae').asString)) > 0) then
cidadao_mae := trim(qryAux2.FieldByName('no_mae').asString);
cidadao_nascimento := qryAux2.FieldByName('dt_nascimento').asDateTime;
cidadao_obito := qryAux2.FieldByName('dt_obito').asString;
cidadao_faleceu := qryAux2.FieldByName('st_faleceu').asInteger;
cidadao_cns_res := trim(qryAux2.FieldByName('nu_cns_responsavel').asString);
cidadao_cpf_res := trim(qryAux2.FieldByName('nu_cpf_responsavel').asString);
cidadao_ma := qryAux2.FieldByName('nu_micro_area').asString;
if ((Length(cidadao_ma) = 0) or (cidadao_ma = '0') or (cidadao_ma = '')) then
cidadao_ma := '00';
if (length(cidadao_ma) = 1 ) then
cidadao_ma := '0' + cidadao_ma;
cidadao_sexo := qryAux2.FieldByName('no_sexo').asString;
if not (busca_cns) then
if (length(cidadao_cns) = 15) then
begin
CNS := cidadao_cns;
busca_cns := true;
end;
if not(busca_cpf) then
if (length(cidadao_cpf) = 11) then
begin
CPF := cidadao_cpf;
busca_cpf := true;
end;
end;
if ((busca_cns) and (busca_cpf)) then
campo_busca := '(nu_cns = ''' + CNS + ''' OR nu_cpf_cidadao = ''' + CPF + ''')'
else
if (busca_cns) then
campo_busca := 'nu_cns = ''' + CNS + ''''
else
if (busca_cpf) then
campo_busca := 'nu_cpf_cidadao = ''' + CPF + '''';
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// TB_FAT_CAD_INDIVIDUAL
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
strSQL := 'SELECT '+#13+#10+
'TRIM(FROM t3.nu_cns) as nu_cns, '+#13+#10+
'TRIM(FROM t3.nu_cpf_cidadao) as nu_cpf_cidadao, '+#13+#10+
't3.dt_obito, '+#13+#10+
't3.nu_micro_area, '+#13+#10+
't3.nu_cns_responsavel, '+#13+#10+
't3.nu_cpf_responsavel, '+#13+#10+
't3.st_ficha_inativa, '+#13+#10+
't3.nu_ine, '+#13+#10+
't3.no_equipe, '+#13+#10+
't3.co_seq_dim_unidade_saude, '+#13+#10+
't3.nu_cnes, '+#13+#10+
't3.no_unidade_saude, '+#13+#10+
't3.st_gestante, '+#13+#10+
't3.st_hipertensao_arterial, '+#13+#10+
't3.st_diabete, '+#13+#10+
't3.nu_uuid_ficha, '+#13+#10+
't3.nu_uuid_ficha_origem, '+#13+#10+
't3.nu_uuid_dado_transp, '+#13+#10+
't3.nu_celular, '+#13+#10+
'upper(tb_dim_sexo.ds_sexo) AS ds_sexo, '+#13+#10+
'int ''0'' as teste1, '+#13+#10+
'text ''0'' as teste2 '+#13+#10+
'FROM '+#13+#10+
'( '+#13+#10+
' SELECT '+#13+#10+
' t2.*, '+#13+#10+
' tb_dim_unidade_saude.co_seq_dim_unidade_saude, '+#13+#10+
' tb_dim_unidade_saude.nu_cnes, '+#13+#10+
' tb_dim_unidade_saude.no_unidade_saude '+#13+#10+
' FROM '+#13+#10+
' ( '+#13+#10+
' SELECT '+#13+#10+
' t1.*, '+#13+#10+
' tb_dim_equipe.nu_ine, '+#13+#10+
' tb_dim_equipe.no_equipe '+#13+#10+
' FROM '+#13+#10+
' ( '+#13+#10+
' SELECT '+#13+#10+
' CASE WHEN nu_cns IS NULL THEN ''0'''+#13+#10+
' ELSE nu_cns END '+#13+#10+
' nu_cns, '+#13+#10+
' CASE WHEN nu_cpf_cidadao IS NULL THEN ''0'''+#13+#10+
' ELSE nu_cpf_cidadao END '+#13+#10+
' nu_cpf_cidadao, '+#13+#10+
' co_dim_unidade_saude, '+#13+#10+
' co_dim_equipe, '+#13+#10+
' co_dim_sexo, '+#13+#10+
' dt_obito, '+#13+#10+
' nu_uuid_ficha, '+#13+#10+
' nu_uuid_ficha_origem, '+#13+#10+
' nu_uuid_dado_transp, '+#13+#10+
' nu_celular, '+#13+#10+
' CASE WHEN nu_cns_responsavel IS NULL THEN ''0'''+#13+#10+
' ELSE TRIM(FROM nu_cns_responsavel) END '+#13+#10+
' nu_cns_responsavel, '+#13+#10+
' CASE WHEN nu_cpf_responsavel IS NULL THEN ''0'''+#13+#10+
' ELSE TRIM(FROM nu_cpf_responsavel) END '+#13+#10+
' nu_cpf_responsavel, '+#13+#10+
' CASE WHEN nu_micro_area IS NULL THEN ''00'''+#13+#10+
' ELSE nu_micro_area END '+#13+#10+
' nu_micro_area, '+#13+#10+
' st_ficha_inativa, '+#13+#10+
' CASE WHEN st_gestante IS NULL THEN ''0'''+#13+#10+
' ELSE st_gestante END '+#13+#10+
' st_gestante, '+#13+#10+
' CASE WHEN st_hipertensao_arterial IS NULL THEN ''0'''+#13+#10+
' ELSE st_hipertensao_arterial END '+#13+#10+
' st_hipertensao_arterial, '+#13+#10+
' CASE WHEN st_diabete IS NULL THEN ''0'''+#13+#10+
' ELSE st_diabete END '+#13+#10+
' st_diabete '+#13+#10+
' FROM '+#13+#10+
' tb_fat_cad_individual '+#13+#10+
' WHERE ' + campo_busca + ''+#13+#10+
' ORDER BY co_dim_tempo DESC '+#13+#10+
' LIMIT 1 '+#13+#10+
' ) AS t1 '+#13+#10+
' LEFT JOIN '+#13+#10+
' tb_dim_equipe '+#13+#10+
' ON tb_dim_equipe.co_seq_dim_equipe = t1.co_dim_equipe '+#13+#10+
' ) AS t2 '+#13+#10+
' LEFT JOIN '+#13+#10+
' tb_dim_unidade_saude '+#13+#10+
' ON tb_dim_unidade_saude.co_seq_dim_unidade_saude = t2.co_dim_unidade_saude '+#13+#10+
') AS t3 '+#13+#10+
'LEFT JOIN '+#13+#10+
' tb_dim_sexo '+#13+#10+
'ON tb_dim_sexo.co_seq_dim_sexo = t3.co_dim_sexo ';
cind_cpf := '0';
cind_cns := '0';
cind_gestante := 0;
cind_hipertenso := 0;
cind_diabetico := 0;
cind_obito := '';
cind_cns_res := '0';
cind_cpf_res := '0';
cind_micro_area := '00';
cind_inativo := 0;
cnes := '0000000';
nome_unidade := 'SEM UNIDADE SAUDE';
cod_unidade_saude:='00000000';
ine := '0000000000';
nome_equipe := 'SEM EQUIPE';
nome_sexo := 'FEMININO';
num_cind := 0;
nu_uuid_ficha := '';
nu_uuid_ficha_origem := '';
nu_uuid_dado_transp := '';
//nu_celular:='00000000000';
qryAux3.close;
qryAux3.sql.clear;
qryAux3.sql.text:=strSQL;
try
qryAux3.open;
except on ex4:Exception do
begin
showMessage(strSql);
showMessage(ex4.message);
end;
end;
if (qryAux3.recordCount> 0)then
begin
cind_cpf := trim(qryAux3.FieldByName('nu_cpf_cidadao').asString);
cind_cns := trim(qryAux3.FieldByName('nu_cns').asString);
cind_gestante := qryAux3.FieldByName('st_gestante').asInteger;
cind_hipertenso := qryAux3.FieldByName('st_hipertensao_arterial').asInteger;
cind_diabetico := qryAux3.FieldByName('st_diabete').asInteger;
nu_uuid_ficha := qryAux3.FieldByName('nu_uuid_ficha').asString;
nu_uuid_ficha_origem := qryAux3.FieldByName('nu_uuid_ficha_origem').asString;
nu_uuid_dado_transp := qryAux3.FieldByName('nu_uuid_dado_transp').asString;
cind_obito := qryAux3.FieldByName('dt_obito').asString;
cind_cns_res := qryAux3.FieldByName('nu_cns_responsavel').asString;
cind_cpf_res :=qryAux3.FieldByName('nu_cpf_responsavel').asString;
cind_micro_area := qryAux3.FieldByName('nu_micro_area').asString;
if ((length(cind_micro_area) = 0) or (cind_micro_area = '0') or (cind_micro_area = '')) then
cind_micro_area := '00';
if (length(cind_micro_area) = 1) then cind_micro_area := '0' + cind_micro_area;
if (cind_micro_area = '00') then cind_micro_area := cidadao_ma;
if ((cind_micro_area = 'FA') and (cidadao_ma <> '00')) then
cind_micro_area := cind_micro_area+' '+cidadao_ma;
cind_inativo := qryAux3.FieldByName('st_ficha_inativa').asInteger;
cnes := qryAux3.FieldByName('nu_cnes').asString;
cod_unidade_saude:=qryAux3.FieldByName('co_seq_dim_unidade_saude').asString;
nome_unidade := qryAux3.FieldByName('no_unidade_saude').asString;
ine := qryAux3.FieldByName('nu_ine').asString;
nome_equipe := qryAux3.FieldByName('no_equipe').asString;
nome_sexo := qryAux3.FieldByName('ds_sexo').asString;
if not (busca_cns) then
if (length(cind_cns) = 15) then
begin
CNS := trim(cind_cns);
busca_cns := true;
end;
if not(busca_cpf) then
if (length(cind_cpf) = 11) then
begin
CPF := cind_cpf;
busca_cpf := true;
end;
end; //fim recordcount qryAux3
if (length(cind_cns_res) < 15) then cind_cns_res := cidadao_cns_res;
if (length(cind_cpf_res) < 11) then cind_cpf_res := cidadao_cpf_res;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Duplicados
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
if MotherList.Count>0 then
begin
duplicado := false;
if (length(CNS) = 15) then
for i := 0 to MotherList.Count-1 do
begin
if (TMyObject(TList(MotherList.Items[i])).ValorCNS = CNS) then
begin
duplicado :=true;
if (length(CPF) = 11) then
if (length(TMyObject(TList(MotherList.Items[i])).ValorCPF)<>11) then
TMyObject(TList(MotherList.Items[i])).ValorCPF:=CPF;
end;
end;
if (length(CPF) = 11) then
for I := 0 to MotherList.Count-1 do
begin
if (TMyObject(TList(MotherList.Items[i])).ValorCPF = CPF) then
begin
duplicado :=true;
if (length(TMyObject(TList(MotherList.Items[i])).ValorCNS)<>15) then
if (length(TMyObject(TList(MotherList.Items[i])).ValorCns)<>15) then
TMyObject(TList(MotherList.Items[i])).ValorCns:=CNS;
end;
end
else
duplicado:=false;
end;
if not (duplicado) then
begin
obj1.TipoDocCNS:='CNS';
obj1.ValorCNS:=CNS;
obj1.TipoDocCPF:='CPF';
obj1.ValorCPF:=CPF;
MotherList.add(obj1);
end;
if not (duplicado) then
begin
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Completa CNS ou CPF
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
strSQL := 'SELECT '+#13+#10+
' nu_cns, '+#13+#10+
' nu_cpf '+ #13+#10+
' FROM '+#13+#10+
' tb_cidadao '+#13+#10+
' WHERE '+#13+#10+
' no_cidadao = '+quotedStr(cidadao_nome)+' AND '+#13+#10+
' dt_nascimento = '+quotedStr(formatDateTime('yyyy-mm-dd',cidadao_nascimento))+' AND '+#13+#10+
' no_mae = '+quotedStr(cidadao_mae);
qryaux4.close;
qryaux4.sql.clear;
qryaux4.sql.text:=strSQL;
qryAux4.open;
if (qryAux4.recordcount > 0) then
begin
qryAux4.first;
while not qryAux4.eof do
begin
if (length(qryAux4.FieldByName('nu_cns').asString) = 15) then
begin
if (length(CNS) <> 15) then
CNS := trim(qryAux4.FieldByName('nu_cns').asString)
else
if (CNS <> qryAux4.FieldByName('nu_cns').asString) then
CNSA := trim(qryAux4.FieldByName('nu_cns').asString);
end;
if (length(qryAux4.FieldByName('nu_cpf').asString) = 11) then
begin
if (length(CPF) <> 11) then
CPF := trim(qryAux4.FieldByName('nu_cpf').asString)
else
if (CPF <> qryAux4.FieldByName('nu_cpf').asString) then
CPFA := trim(qryAux4.FieldByName('nu_cpf').asString);
end;
qryaux4.next;
end; // fim while qryaux4
end; // recordcount qryaux4
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Tratamento dos dados
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
calc_20s := qryAux1.FieldByName('co_dim_tempo_dum').asDateTime + 140;
calc_ddp := qryAux1.FieldByName('co_dim_tempo_dum').asDateTime + 280;
calc_fimpuerp := qryAux1.FieldByName('co_dim_tempo_dum').asDateTime + 336;
calc_dlfg := qryAux1.FieldByName('co_dim_tempo_dum').asDateTime + 294;
data_nascimento := qryAux1.FieldByName('dt_nascimento').asDateTime;
data_falecimento := 'null';
if (Length(Trim(cidadao_obito)) > 5) then
data_falecimento := cidadao_obito
else
if (length(trim(cind_obito)) > 5) then
data_falecimento := cind_obito;
cidadao_nome := cidadao_nome;
cidadao_mae := cidadao_mae;
if ((cind_micro_area = '-') or (cind_micro_area = '--') or
(cind_micro_area = '0-')) then
cind_micro_area := '00';
if (ine = '-') then ine := '0000000000';
StrCMDSQL := ' INSERT INTO tmp_gestantes('+#13+#10+
'cns, '+#13+#10+
'cpf,'+#13+#10+
'cns_alternativo, '+#13+#10+
'cpf_alternativo, '+#13+#10+
'data_nascimento, '+#13+#10+
'g_co_dim_tempo_dum, '+#13+#10+
'g_co_dim_tempo, '+#13+#10+
'cidadao_ativo, '+#13+#10+
'data_falecimento, '+#13+#10+
'cidadao_nome, '+#13+#10+
'cidadao_mae, '+#13+#10+
'cidadao_faleceu, '+#13+#10+
'cidadao_sexo, '+#13+#10+
'cind_gestante, '+#13+#10+
'cind_hipertenso, '+#13+#10+
'cind_diabetico, '+#13+#10+
'cind_sexo, '+#13+#10+
'cind_micro_area, '+#13+#10+
'cns_resp, '+#13+#10+
'cpf_resp, '+#13+#10+
'cind_inativo, '+#13+#10+
'cnes, '+#13+#10+
'nome_unidade, '+#13+#10+
'ine, '+#13+#10+
'nome_equipe, '+#13+#10+
'calc_ddp, '+#13+#10+
'calc_20s, '+#13+#10+
'calc_fimpuerp, '+#13+#10+