c2-clinical 1.0.132 → 1.0.134
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/__tests__/OnAnswerQuestionsFlowTester.test.js +577 -503
- package/dist/flow/on-answer/ProcessAnswerFlowTester.js +3 -0
- package/dist/models/anthropometry/Anthropometry.d.ts +4 -4
- package/dist/models/anthropometry/Anthropometry.js +1 -1
- package/dist/models/form/FormUnit.d.ts +10 -0
- package/dist/models/form/FormUnit.js +2 -1
- package/package.json +1 -1
|
@@ -5,160 +5,38 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const OnAnswerQuestionsFlowTester_1 = __importDefault(require("../flow/on-answer/OnAnswerQuestionsFlowTester"));
|
|
7
7
|
const answerExample = {
|
|
8
|
-
_id: "
|
|
8
|
+
_id: "68ee6b66dbeb63de67643da9",
|
|
9
9
|
form: "689e029db13c27189bce136d",
|
|
10
|
-
sequence:
|
|
11
|
-
code: "
|
|
12
|
-
description: "
|
|
13
|
-
parent: "
|
|
14
|
-
line:
|
|
10
|
+
sequence: 74,
|
|
11
|
+
code: "DIAMETRO_OSSEO_UMERO",
|
|
12
|
+
description: "Diametro bicondilar umeral - Úmero",
|
|
13
|
+
parent: "68ee6a2cdbeb63de67643d91",
|
|
14
|
+
line: 61,
|
|
15
15
|
column: 1,
|
|
16
16
|
type: "QUESTION",
|
|
17
|
-
typeAnswer: "
|
|
17
|
+
typeAnswer: "OPEN_NUMBER",
|
|
18
18
|
category: "ANTHROPOMETRY",
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
{
|
|
22
|
-
sequence: 1,
|
|
23
|
-
code: "POLLOCK_3",
|
|
24
|
-
description: "Pollock 3 dobras",
|
|
25
|
-
defaultSelection: false,
|
|
26
|
-
active: true,
|
|
27
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
28
|
-
enable: true
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
sequence: 2,
|
|
32
|
-
code: "POLLOCK_7",
|
|
33
|
-
description: "Pollock 7 dobras",
|
|
34
|
-
defaultSelection: false,
|
|
35
|
-
active: true,
|
|
36
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
37
|
-
enable: true
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
sequence: 3,
|
|
41
|
-
code: "PETROSKI",
|
|
42
|
-
description: "Petroski",
|
|
43
|
-
defaultSelection: false,
|
|
44
|
-
active: true,
|
|
45
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
46
|
-
enable: true
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
sequence: 4,
|
|
50
|
-
code: "FAULKNER",
|
|
51
|
-
description: "Faulkner",
|
|
52
|
-
defaultSelection: false,
|
|
53
|
-
active: true,
|
|
54
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
55
|
-
enable: true
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
sequence: 5,
|
|
59
|
-
code: "DURNIN_WOMERSLEY",
|
|
60
|
-
description: "Durnin e Womersley",
|
|
61
|
-
defaultSelection: false,
|
|
62
|
-
active: true,
|
|
63
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
64
|
-
enable: true
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
sequence: 6,
|
|
68
|
-
code: "YUHASZ",
|
|
69
|
-
description: "Yuhasz",
|
|
70
|
-
defaultSelection: false,
|
|
71
|
-
active: true,
|
|
72
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
73
|
-
enable: true
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
sequence: 7,
|
|
77
|
-
code: "GUEDES",
|
|
78
|
-
description: "Guedes",
|
|
79
|
-
defaultSelection: false,
|
|
80
|
-
active: true,
|
|
81
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
82
|
-
enable: true
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
sequence: 8,
|
|
86
|
-
code: "WELTMAN_OBESE",
|
|
87
|
-
description: "Weltman 1988 para obesos - Perimetral",
|
|
88
|
-
defaultSelection: false,
|
|
89
|
-
active: true,
|
|
90
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
91
|
-
enable: true
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
sequence: 99,
|
|
95
|
-
code: "NOONE",
|
|
96
|
-
description: "Nenhuma",
|
|
97
|
-
defaultSelection: false,
|
|
98
|
-
active: true
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
sequence: 10,
|
|
102
|
-
code: "GORAN_1996",
|
|
103
|
-
description: "Goran (1996)",
|
|
104
|
-
defaultSelection: false,
|
|
105
|
-
active: true,
|
|
106
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') < 4",
|
|
107
|
-
enable: false
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
sequence: 11,
|
|
111
|
-
code: "SLAUGHTER_1988",
|
|
112
|
-
description: "Equação de Slaughter (1988) ",
|
|
113
|
-
defaultSelection: false,
|
|
114
|
-
active: true,
|
|
115
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 8 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
116
|
-
enable: true
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
sequence: 12,
|
|
120
|
-
code: "SLAUGHTER_2_1988",
|
|
121
|
-
description: "Equação de Slaughter II (1988) ",
|
|
122
|
-
defaultSelection: false,
|
|
123
|
-
active: true,
|
|
124
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 8 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
125
|
-
enable: true
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
sequence: 12,
|
|
129
|
-
code: "BOILEAU_LOHMAN_SLAUGHTER_1985",
|
|
130
|
-
description: "Equação de Boileau, Lohman e Slaughter (1985) ",
|
|
131
|
-
defaultSelection: false,
|
|
132
|
-
active: true,
|
|
133
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 6 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
134
|
-
enable: true
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
sequence: 13,
|
|
138
|
-
code: "HUANG_2003",
|
|
139
|
-
description: "Equação de Huang (2003) ",
|
|
140
|
-
defaultSelection: false,
|
|
141
|
-
active: true,
|
|
142
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') < 12",
|
|
143
|
-
enable: false
|
|
144
|
-
}
|
|
145
|
-
],
|
|
146
|
-
formulaToEnable: "'${TYPE_ASSESSMENT}' !== 'LACTENT'",
|
|
19
|
+
measurementUnit: "cm",
|
|
20
|
+
formulaToEnable: "true",
|
|
147
21
|
active: true,
|
|
148
22
|
show: true,
|
|
149
23
|
readOnly: false,
|
|
150
24
|
required: false,
|
|
25
|
+
ellegibleForComparison: false,
|
|
26
|
+
options: [],
|
|
151
27
|
validations: [],
|
|
152
28
|
requestGraphicData: [],
|
|
153
|
-
|
|
154
|
-
|
|
29
|
+
tips: [],
|
|
30
|
+
createdAtDateTime: "2025-10-14T15:25:26.642Z",
|
|
31
|
+
updatedAtDateTime: "2025-10-14T15:25:26.642Z",
|
|
155
32
|
__v: 0,
|
|
156
|
-
|
|
157
|
-
|
|
33
|
+
screenPlacement: 1,
|
|
34
|
+
lineId: "39b49515-6fe0-4b9a-aaa2-6c80be77a48e",
|
|
35
|
+
answer: "15"
|
|
158
36
|
};
|
|
159
37
|
const lines = [
|
|
160
38
|
{
|
|
161
|
-
id: "
|
|
39
|
+
id: "8cb5372c-8b63-4f74-a04c-601e862c29c4",
|
|
162
40
|
line: 1,
|
|
163
41
|
collumns: [
|
|
164
42
|
{
|
|
@@ -237,13 +115,14 @@ const lines = [
|
|
|
237
115
|
updatedAtDateTime: "2025-08-14T19:16:25.409Z",
|
|
238
116
|
__v: 0,
|
|
239
117
|
variantView: "BUTTON",
|
|
118
|
+
screenPlacement: 1,
|
|
240
119
|
answer: "TEENAGER",
|
|
241
|
-
lineId: "
|
|
120
|
+
lineId: "8cb5372c-8b63-4f74-a04c-601e862c29c4"
|
|
242
121
|
}
|
|
243
122
|
]
|
|
244
123
|
},
|
|
245
124
|
{
|
|
246
|
-
id: "
|
|
125
|
+
id: "fa9544e9-c284-4007-a1f9-f572f895cd75",
|
|
247
126
|
line: 2,
|
|
248
127
|
collumns: [
|
|
249
128
|
{
|
|
@@ -267,9 +146,10 @@ const lines = [
|
|
|
267
146
|
createdAtDateTime: "2025-08-14T19:23:14.001Z",
|
|
268
147
|
updatedAtDateTime: "2025-08-14T19:23:14.001Z",
|
|
269
148
|
__v: 0,
|
|
149
|
+
screenPlacement: 1,
|
|
270
150
|
lines: [
|
|
271
151
|
{
|
|
272
|
-
id: "
|
|
152
|
+
id: "5da32ff8-f9cf-49e6-8a24-8231a28a9737",
|
|
273
153
|
line: 3,
|
|
274
154
|
collumns: [
|
|
275
155
|
{
|
|
@@ -304,7 +184,8 @@ const lines = [
|
|
|
304
184
|
updatedAtDateTime: "2025-08-14T19:29:04.576Z",
|
|
305
185
|
__v: 0,
|
|
306
186
|
ellegibleForComparison: true,
|
|
307
|
-
|
|
187
|
+
screenPlacement: 1,
|
|
188
|
+
lineId: "5da32ff8-f9cf-49e6-8a24-8231a28a9737",
|
|
308
189
|
answer: "80"
|
|
309
190
|
},
|
|
310
191
|
{
|
|
@@ -345,13 +226,14 @@ const lines = [
|
|
|
345
226
|
updatedAtDateTime: "2025-08-14T19:30:35.000Z",
|
|
346
227
|
__v: 0,
|
|
347
228
|
formulaToDescription: "'${TYPE_ASSESSMENT}' === 'LACTENT' ? 'Comprimento' : 'Altura/Estatura'",
|
|
348
|
-
|
|
349
|
-
|
|
229
|
+
screenPlacement: 1,
|
|
230
|
+
lineId: "5da32ff8-f9cf-49e6-8a24-8231a28a9737",
|
|
231
|
+
answer: "190"
|
|
350
232
|
}
|
|
351
233
|
]
|
|
352
234
|
},
|
|
353
235
|
{
|
|
354
|
-
id: "
|
|
236
|
+
id: "fbd05160-163a-4467-82e6-caf525c9ae19",
|
|
355
237
|
line: 4,
|
|
356
238
|
collumns: [
|
|
357
239
|
{
|
|
@@ -377,9 +259,10 @@ const lines = [
|
|
|
377
259
|
createdAtDateTime: "2025-08-14T19:48:27.237Z",
|
|
378
260
|
updatedAtDateTime: "2025-08-14T19:48:27.237Z",
|
|
379
261
|
__v: 0,
|
|
262
|
+
screenPlacement: 1,
|
|
380
263
|
lines: [
|
|
381
264
|
{
|
|
382
|
-
id: "
|
|
265
|
+
id: "db3c79c5-e7aa-4550-ace5-3397a0d1529b",
|
|
383
266
|
line: 5,
|
|
384
267
|
collumns: [
|
|
385
268
|
{
|
|
@@ -409,9 +292,10 @@ const lines = [
|
|
|
409
292
|
createdAtDateTime: "2025-08-19T14:39:47.424Z",
|
|
410
293
|
updatedAtDateTime: "2025-08-19T17:32:32.159Z",
|
|
411
294
|
__v: 0,
|
|
295
|
+
screenPlacement: 1,
|
|
412
296
|
lines: [
|
|
413
297
|
{
|
|
414
|
-
id: "
|
|
298
|
+
id: "cf64c327-a647-4ba5-821d-fc97f7cc1470",
|
|
415
299
|
line: 6,
|
|
416
300
|
collumns: [
|
|
417
301
|
{
|
|
@@ -446,12 +330,13 @@ const lines = [
|
|
|
446
330
|
createdAtDateTime: "2025-08-19T16:59:49.814Z",
|
|
447
331
|
updatedAtDateTime: "2025-08-19T16:59:49.814Z",
|
|
448
332
|
__v: 0,
|
|
449
|
-
|
|
333
|
+
screenPlacement: 1,
|
|
334
|
+
lineId: "cf64c327-a647-4ba5-821d-fc97f7cc1470"
|
|
450
335
|
}
|
|
451
336
|
]
|
|
452
337
|
},
|
|
453
338
|
{
|
|
454
|
-
id: "
|
|
339
|
+
id: "18696e09-85b6-4121-8f77-4eeebef495e1",
|
|
455
340
|
line: 7,
|
|
456
341
|
collumns: [
|
|
457
342
|
{
|
|
@@ -477,12 +362,13 @@ const lines = [
|
|
|
477
362
|
createdAtDateTime: "2025-08-19T17:05:23.199Z",
|
|
478
363
|
updatedAtDateTime: "2025-08-19T17:05:23.199Z",
|
|
479
364
|
__v: 0,
|
|
480
|
-
|
|
365
|
+
screenPlacement: 1,
|
|
366
|
+
lineId: "18696e09-85b6-4121-8f77-4eeebef495e1"
|
|
481
367
|
}
|
|
482
368
|
]
|
|
483
369
|
},
|
|
484
370
|
{
|
|
485
|
-
id: "
|
|
371
|
+
id: "ec9567cc-0c83-4411-a957-12a54c454168",
|
|
486
372
|
line: 11,
|
|
487
373
|
collumns: [
|
|
488
374
|
{
|
|
@@ -509,17 +395,18 @@ const lines = [
|
|
|
509
395
|
createdAtDateTime: "2025-08-19T17:24:59.277Z",
|
|
510
396
|
updatedAtDateTime: "2025-08-19T17:24:59.277Z",
|
|
511
397
|
__v: 0,
|
|
512
|
-
|
|
398
|
+
screenPlacement: 1,
|
|
399
|
+
lineId: "ec9567cc-0c83-4411-a957-12a54c454168"
|
|
513
400
|
}
|
|
514
401
|
]
|
|
515
402
|
}
|
|
516
403
|
],
|
|
517
|
-
lineId: "
|
|
404
|
+
lineId: "db3c79c5-e7aa-4550-ace5-3397a0d1529b"
|
|
518
405
|
}
|
|
519
406
|
]
|
|
520
407
|
}
|
|
521
408
|
],
|
|
522
|
-
lineId: "
|
|
409
|
+
lineId: "fbd05160-163a-4467-82e6-caf525c9ae19"
|
|
523
410
|
},
|
|
524
411
|
{
|
|
525
412
|
_id: "689e3dc6e7fafb681db6f7b1",
|
|
@@ -544,9 +431,10 @@ const lines = [
|
|
|
544
431
|
createdAtDateTime: "2025-08-14T19:49:26.020Z",
|
|
545
432
|
updatedAtDateTime: "2025-08-14T19:49:26.020Z",
|
|
546
433
|
__v: 0,
|
|
434
|
+
screenPlacement: 1,
|
|
547
435
|
lines: [
|
|
548
436
|
{
|
|
549
|
-
id: "
|
|
437
|
+
id: "9de74d40-a099-4fa4-a071-9d4bf535d1ff",
|
|
550
438
|
line: 12,
|
|
551
439
|
collumns: [
|
|
552
440
|
{
|
|
@@ -576,9 +464,10 @@ const lines = [
|
|
|
576
464
|
createdAtDateTime: "2025-08-19T17:30:16.280Z",
|
|
577
465
|
updatedAtDateTime: "2025-08-19T17:32:57.240Z",
|
|
578
466
|
__v: 0,
|
|
467
|
+
screenPlacement: 1,
|
|
579
468
|
lines: [
|
|
580
469
|
{
|
|
581
|
-
id: "
|
|
470
|
+
id: "4af14f92-2cce-48e4-a784-247e2a6a42bd",
|
|
582
471
|
line: 13,
|
|
583
472
|
collumns: [
|
|
584
473
|
{
|
|
@@ -604,12 +493,13 @@ const lines = [
|
|
|
604
493
|
createdAtDateTime: "2025-08-19T19:13:08.141Z",
|
|
605
494
|
updatedAtDateTime: "2025-08-19T19:13:08.141Z",
|
|
606
495
|
__v: 0,
|
|
607
|
-
|
|
496
|
+
screenPlacement: 1,
|
|
497
|
+
lineId: "4af14f92-2cce-48e4-a784-247e2a6a42bd"
|
|
608
498
|
}
|
|
609
499
|
]
|
|
610
500
|
},
|
|
611
501
|
{
|
|
612
|
-
id: "
|
|
502
|
+
id: "48407482-5b1c-4f42-9211-4b4d1cc6c07b",
|
|
613
503
|
line: 14,
|
|
614
504
|
collumns: [
|
|
615
505
|
{
|
|
@@ -644,12 +534,13 @@ const lines = [
|
|
|
644
534
|
createdAtDateTime: "2025-08-19T19:16:50.471Z",
|
|
645
535
|
updatedAtDateTime: "2025-08-19T19:16:50.471Z",
|
|
646
536
|
__v: 0,
|
|
647
|
-
|
|
537
|
+
screenPlacement: 1,
|
|
538
|
+
lineId: "48407482-5b1c-4f42-9211-4b4d1cc6c07b"
|
|
648
539
|
}
|
|
649
540
|
]
|
|
650
541
|
},
|
|
651
542
|
{
|
|
652
|
-
id: "
|
|
543
|
+
id: "f6bc3fb2-f8d7-4cb5-b433-d61161de58b0",
|
|
653
544
|
line: 15,
|
|
654
545
|
collumns: [
|
|
655
546
|
{
|
|
@@ -676,28 +567,187 @@ const lines = [
|
|
|
676
567
|
createdAtDateTime: "2025-08-19T19:18:38.430Z",
|
|
677
568
|
updatedAtDateTime: "2025-08-19T19:18:38.430Z",
|
|
678
569
|
__v: 0,
|
|
570
|
+
screenPlacement: 1,
|
|
679
571
|
answer: 0,
|
|
680
|
-
lineId: "
|
|
572
|
+
lineId: "f6bc3fb2-f8d7-4cb5-b433-d61161de58b0"
|
|
681
573
|
}
|
|
682
574
|
]
|
|
683
575
|
}
|
|
684
576
|
],
|
|
685
|
-
lineId: "
|
|
577
|
+
lineId: "9de74d40-a099-4fa4-a071-9d4bf535d1ff"
|
|
686
578
|
}
|
|
687
579
|
]
|
|
688
580
|
}
|
|
689
581
|
],
|
|
690
|
-
lineId: "
|
|
582
|
+
lineId: "fbd05160-163a-4467-82e6-caf525c9ae19"
|
|
691
583
|
}
|
|
692
584
|
]
|
|
693
585
|
}
|
|
694
586
|
],
|
|
695
|
-
lineId: "
|
|
587
|
+
lineId: "fa9544e9-c284-4007-a1f9-f572f895cd75"
|
|
696
588
|
}
|
|
697
589
|
]
|
|
698
590
|
},
|
|
699
591
|
{
|
|
700
|
-
id: "
|
|
592
|
+
id: "427037ec-b57d-42c1-8721-249ef5b1c9bc",
|
|
593
|
+
line: 16,
|
|
594
|
+
collumns: [
|
|
595
|
+
{
|
|
596
|
+
_id: "68a4d0c02e90c3294e993549",
|
|
597
|
+
form: "689e029db13c27189bce136d",
|
|
598
|
+
sequence: 18,
|
|
599
|
+
code: "FORMULA_PERCENT_FAT",
|
|
600
|
+
description: "Escolha uma fórmula para o cálculo do % gordura",
|
|
601
|
+
line: 16,
|
|
602
|
+
column: 1,
|
|
603
|
+
type: "QUESTION",
|
|
604
|
+
typeAnswer: "CHOICE_SINGLE",
|
|
605
|
+
category: "ANTHROPOMETRY",
|
|
606
|
+
variantView: "LIST",
|
|
607
|
+
options: [
|
|
608
|
+
{
|
|
609
|
+
sequence: 1,
|
|
610
|
+
code: "POLLOCK_3_DOBRAS",
|
|
611
|
+
description: "Pollock 3 dobras",
|
|
612
|
+
defaultSelection: false,
|
|
613
|
+
active: true,
|
|
614
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
615
|
+
enable: true
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
sequence: 2,
|
|
619
|
+
code: "POLLOCK_7_DOBRAS",
|
|
620
|
+
description: "Pollock 7 dobras",
|
|
621
|
+
defaultSelection: false,
|
|
622
|
+
active: true,
|
|
623
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
624
|
+
enable: true
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
sequence: 3,
|
|
628
|
+
code: "PETROSKI",
|
|
629
|
+
description: "Petroski",
|
|
630
|
+
defaultSelection: false,
|
|
631
|
+
active: true,
|
|
632
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
633
|
+
enable: true
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
sequence: 4,
|
|
637
|
+
code: "FAULKNER",
|
|
638
|
+
description: "Faulkner",
|
|
639
|
+
defaultSelection: false,
|
|
640
|
+
active: true,
|
|
641
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
642
|
+
enable: true
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
sequence: 5,
|
|
646
|
+
code: "DURNIN_WOMERSLEY",
|
|
647
|
+
description: "Durnin e Womersley",
|
|
648
|
+
defaultSelection: false,
|
|
649
|
+
active: true,
|
|
650
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
651
|
+
enable: true
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
sequence: 6,
|
|
655
|
+
code: "YUHASZ",
|
|
656
|
+
description: "Yuhasz",
|
|
657
|
+
defaultSelection: false,
|
|
658
|
+
active: true,
|
|
659
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
660
|
+
enable: true
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
sequence: 7,
|
|
664
|
+
code: "GUEDES",
|
|
665
|
+
description: "Guedes",
|
|
666
|
+
defaultSelection: false,
|
|
667
|
+
active: true,
|
|
668
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
669
|
+
enable: true
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
sequence: 8,
|
|
673
|
+
code: "WELTMAN_OBESE",
|
|
674
|
+
description: "Weltman 1988 para obesos - Perimetral",
|
|
675
|
+
defaultSelection: false,
|
|
676
|
+
active: true,
|
|
677
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
678
|
+
enable: true
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
sequence: 99,
|
|
682
|
+
code: "NOONE",
|
|
683
|
+
description: "Nenhuma",
|
|
684
|
+
defaultSelection: false,
|
|
685
|
+
active: true
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
sequence: 10,
|
|
689
|
+
code: "GORAN_1996",
|
|
690
|
+
description: "Goran (1996)",
|
|
691
|
+
defaultSelection: false,
|
|
692
|
+
active: true,
|
|
693
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') < 4",
|
|
694
|
+
enable: false
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
sequence: 11,
|
|
698
|
+
code: "SLAUGHTER_1988",
|
|
699
|
+
description: "Equação de Slaughter (1988) ",
|
|
700
|
+
defaultSelection: false,
|
|
701
|
+
active: true,
|
|
702
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 8 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
703
|
+
enable: true
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
sequence: 12,
|
|
707
|
+
code: "SLAUGHTER_2_1988",
|
|
708
|
+
description: "Equação de Slaughter II (1988) ",
|
|
709
|
+
defaultSelection: false,
|
|
710
|
+
active: true,
|
|
711
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 8 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
712
|
+
enable: true
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
sequence: 12,
|
|
716
|
+
code: "BOILEAU_LOHMAN_SLAUGHTER_1985",
|
|
717
|
+
description: "Equação de Boileau, Lohman e Slaughter (1985) ",
|
|
718
|
+
defaultSelection: false,
|
|
719
|
+
active: true,
|
|
720
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 6 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
721
|
+
enable: true
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
sequence: 13,
|
|
725
|
+
code: "HUANG_2003",
|
|
726
|
+
description: "Equação de Huang (2003) ",
|
|
727
|
+
defaultSelection: false,
|
|
728
|
+
active: true,
|
|
729
|
+
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') < 12",
|
|
730
|
+
enable: false
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
formulaToEnable: "'${TYPE_ASSESSMENT}' !== 'LACTENT'",
|
|
734
|
+
active: true,
|
|
735
|
+
show: true,
|
|
736
|
+
readOnly: false,
|
|
737
|
+
required: false,
|
|
738
|
+
validations: [],
|
|
739
|
+
requestGraphicData: [],
|
|
740
|
+
createdAtDateTime: "2025-08-19T19:30:08.554Z",
|
|
741
|
+
updatedAtDateTime: "2025-08-19T19:30:08.554Z",
|
|
742
|
+
__v: 0,
|
|
743
|
+
screenPlacement: 1,
|
|
744
|
+
lineId: "427037ec-b57d-42c1-8721-249ef5b1c9bc",
|
|
745
|
+
answer: "POLLOCK_7_DOBRAS"
|
|
746
|
+
}
|
|
747
|
+
]
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
id: "7755359f-7ce3-4270-a969-7af4e8216051",
|
|
701
751
|
line: 17,
|
|
702
752
|
collumns: [
|
|
703
753
|
{
|
|
@@ -729,166 +779,10 @@ const lines = [
|
|
|
729
779
|
createdAtDateTime: "2025-10-10T18:42:17.043Z",
|
|
730
780
|
updatedAtDateTime: "2025-10-10T18:42:17.043Z",
|
|
731
781
|
__v: 0,
|
|
782
|
+
screenPlacement: 1,
|
|
732
783
|
lines: [
|
|
733
784
|
{
|
|
734
|
-
id: "
|
|
735
|
-
line: 16,
|
|
736
|
-
collumns: [
|
|
737
|
-
{
|
|
738
|
-
_id: "68a4d0c02e90c3294e993549",
|
|
739
|
-
form: "689e029db13c27189bce136d",
|
|
740
|
-
sequence: 18,
|
|
741
|
-
code: "FORMULA_PERCENT_FAT",
|
|
742
|
-
description: "Escolha uma fórmula para o cálculo do % gordura",
|
|
743
|
-
parent: "68e9538912a9fe7d491619b2",
|
|
744
|
-
line: 16,
|
|
745
|
-
column: 1,
|
|
746
|
-
type: "QUESTION",
|
|
747
|
-
typeAnswer: "CHOICE_SINGLE",
|
|
748
|
-
category: "ANTHROPOMETRY",
|
|
749
|
-
variantView: "LIST",
|
|
750
|
-
options: [
|
|
751
|
-
{
|
|
752
|
-
sequence: 1,
|
|
753
|
-
code: "POLLOCK_3",
|
|
754
|
-
description: "Pollock 3 dobras",
|
|
755
|
-
defaultSelection: false,
|
|
756
|
-
active: true,
|
|
757
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
758
|
-
enable: true
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
sequence: 2,
|
|
762
|
-
code: "POLLOCK_7",
|
|
763
|
-
description: "Pollock 7 dobras",
|
|
764
|
-
defaultSelection: false,
|
|
765
|
-
active: true,
|
|
766
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
767
|
-
enable: true
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
sequence: 3,
|
|
771
|
-
code: "PETROSKI",
|
|
772
|
-
description: "Petroski",
|
|
773
|
-
defaultSelection: false,
|
|
774
|
-
active: true,
|
|
775
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
776
|
-
enable: true
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
sequence: 4,
|
|
780
|
-
code: "FAULKNER",
|
|
781
|
-
description: "Faulkner",
|
|
782
|
-
defaultSelection: false,
|
|
783
|
-
active: true,
|
|
784
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
785
|
-
enable: true
|
|
786
|
-
},
|
|
787
|
-
{
|
|
788
|
-
sequence: 5,
|
|
789
|
-
code: "DURNIN_WOMERSLEY",
|
|
790
|
-
description: "Durnin e Womersley",
|
|
791
|
-
defaultSelection: false,
|
|
792
|
-
active: true,
|
|
793
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
794
|
-
enable: true
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
sequence: 6,
|
|
798
|
-
code: "YUHASZ",
|
|
799
|
-
description: "Yuhasz",
|
|
800
|
-
defaultSelection: false,
|
|
801
|
-
active: true,
|
|
802
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
803
|
-
enable: true
|
|
804
|
-
},
|
|
805
|
-
{
|
|
806
|
-
sequence: 7,
|
|
807
|
-
code: "GUEDES",
|
|
808
|
-
description: "Guedes",
|
|
809
|
-
defaultSelection: false,
|
|
810
|
-
active: true,
|
|
811
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
812
|
-
enable: true
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
sequence: 8,
|
|
816
|
-
code: "WELTMAN_OBESE",
|
|
817
|
-
description: "Weltman 1988 para obesos - Perimetral",
|
|
818
|
-
defaultSelection: false,
|
|
819
|
-
active: true,
|
|
820
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 12",
|
|
821
|
-
enable: true
|
|
822
|
-
},
|
|
823
|
-
{
|
|
824
|
-
sequence: 99,
|
|
825
|
-
code: "NOONE",
|
|
826
|
-
description: "Nenhuma",
|
|
827
|
-
defaultSelection: false,
|
|
828
|
-
active: true
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
sequence: 10,
|
|
832
|
-
code: "GORAN_1996",
|
|
833
|
-
description: "Goran (1996)",
|
|
834
|
-
defaultSelection: false,
|
|
835
|
-
active: true,
|
|
836
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') < 4",
|
|
837
|
-
enable: false
|
|
838
|
-
},
|
|
839
|
-
{
|
|
840
|
-
sequence: 11,
|
|
841
|
-
code: "SLAUGHTER_1988",
|
|
842
|
-
description: "Equação de Slaughter (1988) ",
|
|
843
|
-
defaultSelection: false,
|
|
844
|
-
active: true,
|
|
845
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 8 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
846
|
-
enable: true
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
sequence: 12,
|
|
850
|
-
code: "SLAUGHTER_2_1988",
|
|
851
|
-
description: "Equação de Slaughter II (1988) ",
|
|
852
|
-
defaultSelection: false,
|
|
853
|
-
active: true,
|
|
854
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 8 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
855
|
-
enable: true
|
|
856
|
-
},
|
|
857
|
-
{
|
|
858
|
-
sequence: 12,
|
|
859
|
-
code: "BOILEAU_LOHMAN_SLAUGHTER_1985",
|
|
860
|
-
description: "Equação de Boileau, Lohman e Slaughter (1985) ",
|
|
861
|
-
defaultSelection: false,
|
|
862
|
-
active: true,
|
|
863
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') >= 6 && Number('${PATIENT_AGE_IN_YEARS}') < 19",
|
|
864
|
-
enable: true
|
|
865
|
-
},
|
|
866
|
-
{
|
|
867
|
-
sequence: 13,
|
|
868
|
-
code: "HUANG_2003",
|
|
869
|
-
description: "Equação de Huang (2003) ",
|
|
870
|
-
defaultSelection: false,
|
|
871
|
-
active: true,
|
|
872
|
-
formulaToEnable: "Number('${PATIENT_AGE_IN_YEARS}') < 12",
|
|
873
|
-
enable: false
|
|
874
|
-
}
|
|
875
|
-
],
|
|
876
|
-
formulaToEnable: "'${TYPE_ASSESSMENT}' !== 'LACTENT'",
|
|
877
|
-
active: true,
|
|
878
|
-
show: true,
|
|
879
|
-
readOnly: false,
|
|
880
|
-
required: false,
|
|
881
|
-
validations: [],
|
|
882
|
-
requestGraphicData: [],
|
|
883
|
-
createdAtDateTime: "2025-08-19T19:30:08.554Z",
|
|
884
|
-
updatedAtDateTime: "2025-08-19T19:30:08.554Z",
|
|
885
|
-
__v: 0,
|
|
886
|
-
lineId: "c9875285-f9e8-4cae-bce8-f17ce0def720"
|
|
887
|
-
}
|
|
888
|
-
]
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
id: "8190157e-949e-403f-970e-0f363c18f89c",
|
|
785
|
+
id: "5761162a-10c9-4286-8025-f1506a13e651",
|
|
892
786
|
line: 18,
|
|
893
787
|
collumns: [
|
|
894
788
|
{
|
|
@@ -911,17 +805,11 @@ const lines = [
|
|
|
911
805
|
ellegibleForComparison: false,
|
|
912
806
|
options: [],
|
|
913
807
|
validations: [
|
|
914
|
-
{
|
|
915
|
-
type: "VALIDATION",
|
|
916
|
-
typeOutput: "TEXT",
|
|
917
|
-
formulaToMessage: "['CHILD','TEENAGER'].includes('${TYPE_ASSESSMENT}') ? 'Dobra obrigatória' : ''",
|
|
918
|
-
message: "Dobra obrigatória"
|
|
919
|
-
},
|
|
920
808
|
{
|
|
921
809
|
type: "WARNING",
|
|
922
810
|
typeOutput: "TEXT",
|
|
923
|
-
formulaToMessage: "['GORAN_1996', 'SLAUGHTER_1988', 'SLAUGHTER_2_1988','BOILEAU_LOHMAN_SLAUGHTER_1985'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado
|
|
924
|
-
message: ""
|
|
811
|
+
formulaToMessage: "['POLLOCK_7_DOBRAS', 'GORAN_1996', 'SLAUGHTER_1988', 'SLAUGHTER_2_1988','BOILEAU_LOHMAN_SLAUGHTER_1985'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado na fórmula % gordura selecionada' : ''",
|
|
812
|
+
message: "Usado na fórmula % gordura selecionada"
|
|
925
813
|
}
|
|
926
814
|
],
|
|
927
815
|
requestGraphicData: [],
|
|
@@ -929,7 +817,9 @@ const lines = [
|
|
|
929
817
|
createdAtDateTime: "2025-10-10T18:46:55.789Z",
|
|
930
818
|
updatedAtDateTime: "2025-10-10T18:46:55.789Z",
|
|
931
819
|
__v: 0,
|
|
932
|
-
|
|
820
|
+
screenPlacement: 1,
|
|
821
|
+
lineId: "5761162a-10c9-4286-8025-f1506a13e651",
|
|
822
|
+
answer: "12"
|
|
933
823
|
},
|
|
934
824
|
{
|
|
935
825
|
_id: "68e9551412a9fe7d491619c3",
|
|
@@ -962,12 +852,14 @@ const lines = [
|
|
|
962
852
|
createdAtDateTime: "2025-10-10T18:48:52.252Z",
|
|
963
853
|
updatedAtDateTime: "2025-10-10T18:48:52.252Z",
|
|
964
854
|
__v: 0,
|
|
965
|
-
|
|
855
|
+
screenPlacement: 1,
|
|
856
|
+
lineId: "5761162a-10c9-4286-8025-f1506a13e651",
|
|
857
|
+
answer: "12"
|
|
966
858
|
}
|
|
967
859
|
]
|
|
968
860
|
},
|
|
969
861
|
{
|
|
970
|
-
id: "
|
|
862
|
+
id: "bd0d3ee6-92dd-4f9b-b47f-bffa76657799",
|
|
971
863
|
line: 19,
|
|
972
864
|
collumns: [
|
|
973
865
|
{
|
|
@@ -991,10 +883,10 @@ const lines = [
|
|
|
991
883
|
options: [],
|
|
992
884
|
validations: [
|
|
993
885
|
{
|
|
994
|
-
type: "
|
|
886
|
+
type: "WARNING",
|
|
995
887
|
typeOutput: "TEXT",
|
|
996
|
-
formulaToMessage: "['
|
|
997
|
-
message: "
|
|
888
|
+
formulaToMessage: "['POLLOCK_7_DOBRAS'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado na fórmula % gordura selecionada' : ''",
|
|
889
|
+
message: "Usado na fórmula % gordura selecionada"
|
|
998
890
|
}
|
|
999
891
|
],
|
|
1000
892
|
requestGraphicData: [],
|
|
@@ -1002,7 +894,9 @@ const lines = [
|
|
|
1002
894
|
createdAtDateTime: "2025-10-10T18:49:29.115Z",
|
|
1003
895
|
updatedAtDateTime: "2025-10-10T18:49:29.115Z",
|
|
1004
896
|
__v: 0,
|
|
1005
|
-
|
|
897
|
+
screenPlacement: 1,
|
|
898
|
+
lineId: "bd0d3ee6-92dd-4f9b-b47f-bffa76657799",
|
|
899
|
+
answer: "12"
|
|
1006
900
|
},
|
|
1007
901
|
{
|
|
1008
902
|
_id: "68e9556312a9fe7d491619d3",
|
|
@@ -1023,18 +917,27 @@ const lines = [
|
|
|
1023
917
|
required: false,
|
|
1024
918
|
ellegibleForComparison: false,
|
|
1025
919
|
options: [],
|
|
1026
|
-
validations: [
|
|
920
|
+
validations: [
|
|
921
|
+
{
|
|
922
|
+
type: "WARNING",
|
|
923
|
+
typeOutput: "TEXT",
|
|
924
|
+
formulaToMessage: "['POLLOCK_7_DOBRAS'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado na fórmula % gordura selecionada' : ''",
|
|
925
|
+
message: "Usado na fórmula % gordura selecionada"
|
|
926
|
+
}
|
|
927
|
+
],
|
|
1027
928
|
requestGraphicData: [],
|
|
1028
929
|
tips: [],
|
|
1029
930
|
createdAtDateTime: "2025-10-10T18:50:11.725Z",
|
|
1030
931
|
updatedAtDateTime: "2025-10-10T18:50:11.725Z",
|
|
1031
932
|
__v: 0,
|
|
1032
|
-
|
|
933
|
+
screenPlacement: 1,
|
|
934
|
+
lineId: "bd0d3ee6-92dd-4f9b-b47f-bffa76657799",
|
|
935
|
+
answer: "12"
|
|
1033
936
|
}
|
|
1034
937
|
]
|
|
1035
938
|
},
|
|
1036
939
|
{
|
|
1037
|
-
id: "
|
|
940
|
+
id: "c78049c1-ba5b-4824-ad4d-b3eed4f8d28e",
|
|
1038
941
|
line: 20,
|
|
1039
942
|
collumns: [
|
|
1040
943
|
{
|
|
@@ -1056,13 +959,22 @@ const lines = [
|
|
|
1056
959
|
required: false,
|
|
1057
960
|
ellegibleForComparison: false,
|
|
1058
961
|
options: [],
|
|
1059
|
-
validations: [
|
|
962
|
+
validations: [
|
|
963
|
+
{
|
|
964
|
+
type: "WARNING",
|
|
965
|
+
typeOutput: "TEXT",
|
|
966
|
+
formulaToMessage: "['POLLOCK_7_DOBRAS'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado na fórmula % gordura selecionada' : ''",
|
|
967
|
+
message: "Usado na fórmula % gordura selecionada"
|
|
968
|
+
}
|
|
969
|
+
],
|
|
1060
970
|
requestGraphicData: [],
|
|
1061
971
|
tips: [],
|
|
1062
972
|
createdAtDateTime: "2025-10-10T18:50:35.230Z",
|
|
1063
973
|
updatedAtDateTime: "2025-10-10T18:50:35.230Z",
|
|
1064
974
|
__v: 0,
|
|
1065
|
-
|
|
975
|
+
screenPlacement: 1,
|
|
976
|
+
lineId: "c78049c1-ba5b-4824-ad4d-b3eed4f8d28e",
|
|
977
|
+
answer: "12"
|
|
1066
978
|
},
|
|
1067
979
|
{
|
|
1068
980
|
_id: "68e955ae12a9fe7d491619e3",
|
|
@@ -1089,12 +1001,13 @@ const lines = [
|
|
|
1089
1001
|
createdAtDateTime: "2025-10-10T18:51:26.796Z",
|
|
1090
1002
|
updatedAtDateTime: "2025-10-10T18:51:26.796Z",
|
|
1091
1003
|
__v: 0,
|
|
1092
|
-
|
|
1004
|
+
screenPlacement: 1,
|
|
1005
|
+
lineId: "c78049c1-ba5b-4824-ad4d-b3eed4f8d28e"
|
|
1093
1006
|
}
|
|
1094
1007
|
]
|
|
1095
1008
|
},
|
|
1096
1009
|
{
|
|
1097
|
-
id: "
|
|
1010
|
+
id: "c1c625f6-2b52-4f9a-b6a7-d5d649a0fe22",
|
|
1098
1011
|
line: 21,
|
|
1099
1012
|
collumns: [
|
|
1100
1013
|
{
|
|
@@ -1116,13 +1029,22 @@ const lines = [
|
|
|
1116
1029
|
required: false,
|
|
1117
1030
|
ellegibleForComparison: false,
|
|
1118
1031
|
options: [],
|
|
1119
|
-
validations: [
|
|
1032
|
+
validations: [
|
|
1033
|
+
{
|
|
1034
|
+
type: "WARNING",
|
|
1035
|
+
typeOutput: "TEXT",
|
|
1036
|
+
formulaToMessage: "['POLLOCK_7_DOBRAS'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado na fórmula % gordura selecionada' : ''",
|
|
1037
|
+
message: "Usado na fórmula % gordura selecionada"
|
|
1038
|
+
}
|
|
1039
|
+
],
|
|
1120
1040
|
requestGraphicData: [],
|
|
1121
1041
|
tips: [],
|
|
1122
1042
|
createdAtDateTime: "2025-10-10T18:51:46.056Z",
|
|
1123
1043
|
updatedAtDateTime: "2025-10-10T18:51:46.056Z",
|
|
1124
1044
|
__v: 0,
|
|
1125
|
-
|
|
1045
|
+
screenPlacement: 1,
|
|
1046
|
+
lineId: "c1c625f6-2b52-4f9a-b6a7-d5d649a0fe22",
|
|
1047
|
+
answer: "12"
|
|
1126
1048
|
},
|
|
1127
1049
|
{
|
|
1128
1050
|
_id: "68e955d112a9fe7d491619f3",
|
|
@@ -1143,18 +1065,27 @@ const lines = [
|
|
|
1143
1065
|
required: false,
|
|
1144
1066
|
ellegibleForComparison: false,
|
|
1145
1067
|
options: [],
|
|
1146
|
-
validations: [
|
|
1068
|
+
validations: [
|
|
1069
|
+
{
|
|
1070
|
+
type: "WARNING",
|
|
1071
|
+
typeOutput: "TEXT",
|
|
1072
|
+
formulaToMessage: "['POLLOCK_7_DOBRAS'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado na fórmula % gordura selecionada' : ''",
|
|
1073
|
+
message: "Usado na fórmula % gordura selecionada"
|
|
1074
|
+
}
|
|
1075
|
+
],
|
|
1147
1076
|
requestGraphicData: [],
|
|
1148
1077
|
tips: [],
|
|
1149
1078
|
createdAtDateTime: "2025-10-10T18:52:01.389Z",
|
|
1150
1079
|
updatedAtDateTime: "2025-10-10T18:52:01.389Z",
|
|
1151
1080
|
__v: 0,
|
|
1152
|
-
|
|
1081
|
+
screenPlacement: 1,
|
|
1082
|
+
lineId: "c1c625f6-2b52-4f9a-b6a7-d5d649a0fe22",
|
|
1083
|
+
answer: "12"
|
|
1153
1084
|
}
|
|
1154
1085
|
]
|
|
1155
1086
|
},
|
|
1156
1087
|
{
|
|
1157
|
-
id: "
|
|
1088
|
+
id: "f70f5daa-664f-4437-a3c9-6ed4289798b5",
|
|
1158
1089
|
line: 22,
|
|
1159
1090
|
collumns: [
|
|
1160
1091
|
{
|
|
@@ -1176,20 +1107,14 @@ const lines = [
|
|
|
1176
1107
|
required: false,
|
|
1177
1108
|
ellegibleForComparison: false,
|
|
1178
1109
|
options: [],
|
|
1179
|
-
validations: [
|
|
1180
|
-
{
|
|
1181
|
-
type: "VALIDATION",
|
|
1182
|
-
typeOutput: "TEXT",
|
|
1183
|
-
formulaToMessage: "['CHILD','TEENAGER'].includes('${TYPE_ASSESSMENT}') ? 'Dobra obrigatória' : ''",
|
|
1184
|
-
message: "Dobra obrigatória"
|
|
1185
|
-
}
|
|
1186
|
-
],
|
|
1110
|
+
validations: [],
|
|
1187
1111
|
requestGraphicData: [],
|
|
1188
1112
|
tips: [],
|
|
1189
1113
|
createdAtDateTime: "2025-10-10T18:52:19.230Z",
|
|
1190
1114
|
updatedAtDateTime: "2025-10-10T18:52:19.230Z",
|
|
1191
1115
|
__v: 0,
|
|
1192
|
-
|
|
1116
|
+
screenPlacement: 1,
|
|
1117
|
+
lineId: "f70f5daa-664f-4437-a3c9-6ed4289798b5"
|
|
1193
1118
|
},
|
|
1194
1119
|
{
|
|
1195
1120
|
_id: "68e955ef12a9fe7d49161a03",
|
|
@@ -1210,23 +1135,32 @@ const lines = [
|
|
|
1210
1135
|
required: false,
|
|
1211
1136
|
ellegibleForComparison: false,
|
|
1212
1137
|
options: [],
|
|
1213
|
-
validations: [
|
|
1138
|
+
validations: [
|
|
1139
|
+
{
|
|
1140
|
+
type: "WARNING",
|
|
1141
|
+
typeOutput: "TEXT",
|
|
1142
|
+
formulaToMessage: "['POLLOCK_7_DOBRAS'].includes('${FORMULA_PERCENT_FAT}') ? 'Usado na fórmula % gordura selecionada' : ''",
|
|
1143
|
+
message: "Usado na fórmula % gordura selecionada"
|
|
1144
|
+
}
|
|
1145
|
+
],
|
|
1214
1146
|
requestGraphicData: [],
|
|
1215
1147
|
tips: [],
|
|
1216
1148
|
createdAtDateTime: "2025-10-10T18:52:31.625Z",
|
|
1217
1149
|
updatedAtDateTime: "2025-10-10T18:52:31.625Z",
|
|
1218
1150
|
__v: 0,
|
|
1219
|
-
|
|
1151
|
+
screenPlacement: 1,
|
|
1152
|
+
lineId: "f70f5daa-664f-4437-a3c9-6ed4289798b5",
|
|
1153
|
+
answer: "12"
|
|
1220
1154
|
}
|
|
1221
1155
|
]
|
|
1222
1156
|
}
|
|
1223
1157
|
],
|
|
1224
|
-
lineId: "
|
|
1158
|
+
lineId: "7755359f-7ce3-4270-a969-7af4e8216051"
|
|
1225
1159
|
}
|
|
1226
1160
|
]
|
|
1227
1161
|
},
|
|
1228
1162
|
{
|
|
1229
|
-
id: "
|
|
1163
|
+
id: "31bb2201-1b57-4dfa-a39e-08699cbb2199",
|
|
1230
1164
|
line: 28,
|
|
1231
1165
|
collumns: [
|
|
1232
1166
|
{
|
|
@@ -1258,9 +1192,10 @@ const lines = [
|
|
|
1258
1192
|
createdAtDateTime: "2025-10-10T19:03:53.273Z",
|
|
1259
1193
|
updatedAtDateTime: "2025-10-10T19:03:53.273Z",
|
|
1260
1194
|
__v: 0,
|
|
1195
|
+
screenPlacement: 1,
|
|
1261
1196
|
lines: [
|
|
1262
1197
|
{
|
|
1263
|
-
id: "
|
|
1198
|
+
id: "8f9a240b-966b-44e3-bf96-868296bf5a81",
|
|
1264
1199
|
line: 29,
|
|
1265
1200
|
collumns: [
|
|
1266
1201
|
{
|
|
@@ -1288,7 +1223,8 @@ const lines = [
|
|
|
1288
1223
|
createdAtDateTime: "2025-10-10T19:04:56.964Z",
|
|
1289
1224
|
updatedAtDateTime: "2025-10-10T19:04:56.964Z",
|
|
1290
1225
|
__v: 0,
|
|
1291
|
-
|
|
1226
|
+
screenPlacement: 1,
|
|
1227
|
+
lineId: "8f9a240b-966b-44e3-bf96-868296bf5a81"
|
|
1292
1228
|
},
|
|
1293
1229
|
{
|
|
1294
1230
|
_id: "68e9593e12a9fe7d49161a1b",
|
|
@@ -1315,12 +1251,13 @@ const lines = [
|
|
|
1315
1251
|
createdAtDateTime: "2025-10-10T19:06:38.701Z",
|
|
1316
1252
|
updatedAtDateTime: "2025-10-10T19:06:38.701Z",
|
|
1317
1253
|
__v: 0,
|
|
1318
|
-
|
|
1254
|
+
screenPlacement: 1,
|
|
1255
|
+
lineId: "8f9a240b-966b-44e3-bf96-868296bf5a81"
|
|
1319
1256
|
}
|
|
1320
1257
|
]
|
|
1321
1258
|
},
|
|
1322
1259
|
{
|
|
1323
|
-
id: "
|
|
1260
|
+
id: "0bfd2508-38f1-441b-96fb-f8586c781469",
|
|
1324
1261
|
line: 30,
|
|
1325
1262
|
collumns: [
|
|
1326
1263
|
{
|
|
@@ -1348,7 +1285,8 @@ const lines = [
|
|
|
1348
1285
|
createdAtDateTime: "2025-10-10T19:07:08.298Z",
|
|
1349
1286
|
updatedAtDateTime: "2025-10-10T19:07:08.298Z",
|
|
1350
1287
|
__v: 0,
|
|
1351
|
-
|
|
1288
|
+
screenPlacement: 1,
|
|
1289
|
+
lineId: "0bfd2508-38f1-441b-96fb-f8586c781469"
|
|
1352
1290
|
},
|
|
1353
1291
|
{
|
|
1354
1292
|
_id: "68e9598412a9fe7d49161a29",
|
|
@@ -1375,12 +1313,13 @@ const lines = [
|
|
|
1375
1313
|
createdAtDateTime: "2025-10-10T19:07:48.462Z",
|
|
1376
1314
|
updatedAtDateTime: "2025-10-10T19:07:48.462Z",
|
|
1377
1315
|
__v: 0,
|
|
1378
|
-
|
|
1316
|
+
screenPlacement: 1,
|
|
1317
|
+
lineId: "0bfd2508-38f1-441b-96fb-f8586c781469"
|
|
1379
1318
|
}
|
|
1380
1319
|
]
|
|
1381
1320
|
},
|
|
1382
1321
|
{
|
|
1383
|
-
id: "
|
|
1322
|
+
id: "379352e7-0013-4085-9eec-b3d4a3191978",
|
|
1384
1323
|
line: 31,
|
|
1385
1324
|
collumns: [
|
|
1386
1325
|
{
|
|
@@ -1408,7 +1347,8 @@ const lines = [
|
|
|
1408
1347
|
createdAtDateTime: "2025-10-10T19:08:11.991Z",
|
|
1409
1348
|
updatedAtDateTime: "2025-10-10T19:08:11.991Z",
|
|
1410
1349
|
__v: 0,
|
|
1411
|
-
|
|
1350
|
+
screenPlacement: 1,
|
|
1351
|
+
lineId: "379352e7-0013-4085-9eec-b3d4a3191978"
|
|
1412
1352
|
},
|
|
1413
1353
|
{
|
|
1414
1354
|
_id: "68e959b212a9fe7d49161a37",
|
|
@@ -1435,12 +1375,13 @@ const lines = [
|
|
|
1435
1375
|
createdAtDateTime: "2025-10-10T19:08:34.808Z",
|
|
1436
1376
|
updatedAtDateTime: "2025-10-10T19:08:34.808Z",
|
|
1437
1377
|
__v: 0,
|
|
1438
|
-
|
|
1378
|
+
screenPlacement: 1,
|
|
1379
|
+
lineId: "379352e7-0013-4085-9eec-b3d4a3191978"
|
|
1439
1380
|
}
|
|
1440
1381
|
]
|
|
1441
1382
|
},
|
|
1442
1383
|
{
|
|
1443
|
-
id: "
|
|
1384
|
+
id: "01b3e01f-980c-45bb-83c6-fa9d45c1118c",
|
|
1444
1385
|
line: 32,
|
|
1445
1386
|
collumns: [
|
|
1446
1387
|
{
|
|
@@ -1468,7 +1409,8 @@ const lines = [
|
|
|
1468
1409
|
createdAtDateTime: "2025-10-10T19:09:09.857Z",
|
|
1469
1410
|
updatedAtDateTime: "2025-10-10T19:09:09.857Z",
|
|
1470
1411
|
__v: 0,
|
|
1471
|
-
|
|
1412
|
+
screenPlacement: 1,
|
|
1413
|
+
lineId: "01b3e01f-980c-45bb-83c6-fa9d45c1118c"
|
|
1472
1414
|
},
|
|
1473
1415
|
{
|
|
1474
1416
|
_id: "68e959e312a9fe7d49161a45",
|
|
@@ -1495,12 +1437,13 @@ const lines = [
|
|
|
1495
1437
|
createdAtDateTime: "2025-10-10T19:09:23.240Z",
|
|
1496
1438
|
updatedAtDateTime: "2025-10-10T19:09:23.240Z",
|
|
1497
1439
|
__v: 0,
|
|
1498
|
-
|
|
1440
|
+
screenPlacement: 1,
|
|
1441
|
+
lineId: "01b3e01f-980c-45bb-83c6-fa9d45c1118c"
|
|
1499
1442
|
}
|
|
1500
1443
|
]
|
|
1501
1444
|
},
|
|
1502
1445
|
{
|
|
1503
|
-
id: "
|
|
1446
|
+
id: "6f8948f3-1cb6-4724-b7ea-c61f6083ea6e",
|
|
1504
1447
|
line: 33,
|
|
1505
1448
|
collumns: [
|
|
1506
1449
|
{
|
|
@@ -1528,7 +1471,8 @@ const lines = [
|
|
|
1528
1471
|
createdAtDateTime: "2025-10-10T19:10:03.245Z",
|
|
1529
1472
|
updatedAtDateTime: "2025-10-10T19:10:03.245Z",
|
|
1530
1473
|
__v: 0,
|
|
1531
|
-
|
|
1474
|
+
screenPlacement: 1,
|
|
1475
|
+
lineId: "6f8948f3-1cb6-4724-b7ea-c61f6083ea6e"
|
|
1532
1476
|
},
|
|
1533
1477
|
{
|
|
1534
1478
|
_id: "68e95a1312a9fe7d49161a53",
|
|
@@ -1555,12 +1499,13 @@ const lines = [
|
|
|
1555
1499
|
createdAtDateTime: "2025-10-10T19:10:11.522Z",
|
|
1556
1500
|
updatedAtDateTime: "2025-10-10T19:10:11.522Z",
|
|
1557
1501
|
__v: 0,
|
|
1558
|
-
|
|
1502
|
+
screenPlacement: 1,
|
|
1503
|
+
lineId: "6f8948f3-1cb6-4724-b7ea-c61f6083ea6e"
|
|
1559
1504
|
}
|
|
1560
1505
|
]
|
|
1561
1506
|
},
|
|
1562
1507
|
{
|
|
1563
|
-
id: "
|
|
1508
|
+
id: "2f36e7e4-fc01-44a8-965f-733fe33c14de",
|
|
1564
1509
|
line: 34,
|
|
1565
1510
|
collumns: [
|
|
1566
1511
|
{
|
|
@@ -1588,7 +1533,8 @@ const lines = [
|
|
|
1588
1533
|
createdAtDateTime: "2025-10-10T19:10:44.784Z",
|
|
1589
1534
|
updatedAtDateTime: "2025-10-10T19:10:44.784Z",
|
|
1590
1535
|
__v: 0,
|
|
1591
|
-
|
|
1536
|
+
screenPlacement: 1,
|
|
1537
|
+
lineId: "2f36e7e4-fc01-44a8-965f-733fe33c14de"
|
|
1592
1538
|
},
|
|
1593
1539
|
{
|
|
1594
1540
|
_id: "68e95a3d12a9fe7d49161a61",
|
|
@@ -1615,12 +1561,13 @@ const lines = [
|
|
|
1615
1561
|
createdAtDateTime: "2025-10-10T19:10:53.388Z",
|
|
1616
1562
|
updatedAtDateTime: "2025-10-10T19:10:53.388Z",
|
|
1617
1563
|
__v: 0,
|
|
1618
|
-
|
|
1564
|
+
screenPlacement: 1,
|
|
1565
|
+
lineId: "2f36e7e4-fc01-44a8-965f-733fe33c14de"
|
|
1619
1566
|
}
|
|
1620
1567
|
]
|
|
1621
1568
|
},
|
|
1622
1569
|
{
|
|
1623
|
-
id: "
|
|
1570
|
+
id: "eb38367e-a81d-4194-8bcf-ea47813f36f8",
|
|
1624
1571
|
line: 35,
|
|
1625
1572
|
collumns: [
|
|
1626
1573
|
{
|
|
@@ -1648,7 +1595,8 @@ const lines = [
|
|
|
1648
1595
|
createdAtDateTime: "2025-10-10T19:11:28.688Z",
|
|
1649
1596
|
updatedAtDateTime: "2025-10-10T19:11:28.688Z",
|
|
1650
1597
|
__v: 0,
|
|
1651
|
-
|
|
1598
|
+
screenPlacement: 1,
|
|
1599
|
+
lineId: "eb38367e-a81d-4194-8bcf-ea47813f36f8"
|
|
1652
1600
|
},
|
|
1653
1601
|
{
|
|
1654
1602
|
_id: "68e95a6912a9fe7d49161a6f",
|
|
@@ -1675,12 +1623,13 @@ const lines = [
|
|
|
1675
1623
|
createdAtDateTime: "2025-10-10T19:11:37.257Z",
|
|
1676
1624
|
updatedAtDateTime: "2025-10-10T19:11:37.257Z",
|
|
1677
1625
|
__v: 0,
|
|
1678
|
-
|
|
1626
|
+
screenPlacement: 1,
|
|
1627
|
+
lineId: "eb38367e-a81d-4194-8bcf-ea47813f36f8"
|
|
1679
1628
|
}
|
|
1680
1629
|
]
|
|
1681
1630
|
},
|
|
1682
1631
|
{
|
|
1683
|
-
id: "
|
|
1632
|
+
id: "4d5ef4c1-456a-4ae4-974d-e4a5a0f83a2b",
|
|
1684
1633
|
line: 36,
|
|
1685
1634
|
collumns: [
|
|
1686
1635
|
{
|
|
@@ -1708,7 +1657,8 @@ const lines = [
|
|
|
1708
1657
|
createdAtDateTime: "2025-10-10T19:12:09.936Z",
|
|
1709
1658
|
updatedAtDateTime: "2025-10-10T19:12:09.936Z",
|
|
1710
1659
|
__v: 0,
|
|
1711
|
-
|
|
1660
|
+
screenPlacement: 1,
|
|
1661
|
+
lineId: "4d5ef4c1-456a-4ae4-974d-e4a5a0f83a2b"
|
|
1712
1662
|
},
|
|
1713
1663
|
{
|
|
1714
1664
|
_id: "68e95a9712a9fe7d49161a7d",
|
|
@@ -1735,12 +1685,13 @@ const lines = [
|
|
|
1735
1685
|
createdAtDateTime: "2025-10-10T19:12:23.040Z",
|
|
1736
1686
|
updatedAtDateTime: "2025-10-10T19:12:23.040Z",
|
|
1737
1687
|
__v: 0,
|
|
1738
|
-
|
|
1688
|
+
screenPlacement: 1,
|
|
1689
|
+
lineId: "4d5ef4c1-456a-4ae4-974d-e4a5a0f83a2b"
|
|
1739
1690
|
}
|
|
1740
1691
|
]
|
|
1741
1692
|
},
|
|
1742
1693
|
{
|
|
1743
|
-
id: "
|
|
1694
|
+
id: "a2629ffe-a423-46ee-a946-1d45301cccc2",
|
|
1744
1695
|
line: 37,
|
|
1745
1696
|
collumns: [
|
|
1746
1697
|
{
|
|
@@ -1768,7 +1719,8 @@ const lines = [
|
|
|
1768
1719
|
createdAtDateTime: "2025-10-10T19:12:44.577Z",
|
|
1769
1720
|
updatedAtDateTime: "2025-10-10T19:12:44.577Z",
|
|
1770
1721
|
__v: 0,
|
|
1771
|
-
|
|
1722
|
+
screenPlacement: 1,
|
|
1723
|
+
lineId: "a2629ffe-a423-46ee-a946-1d45301cccc2"
|
|
1772
1724
|
},
|
|
1773
1725
|
{
|
|
1774
1726
|
_id: "68e95ab512a9fe7d49161a8b",
|
|
@@ -1795,12 +1747,13 @@ const lines = [
|
|
|
1795
1747
|
createdAtDateTime: "2025-10-10T19:12:53.890Z",
|
|
1796
1748
|
updatedAtDateTime: "2025-10-10T19:12:53.890Z",
|
|
1797
1749
|
__v: 0,
|
|
1798
|
-
|
|
1750
|
+
screenPlacement: 1,
|
|
1751
|
+
lineId: "a2629ffe-a423-46ee-a946-1d45301cccc2"
|
|
1799
1752
|
}
|
|
1800
1753
|
]
|
|
1801
1754
|
},
|
|
1802
1755
|
{
|
|
1803
|
-
id: "
|
|
1756
|
+
id: "574e8a3d-d513-40e8-bef8-0240081ccfdd",
|
|
1804
1757
|
line: 38,
|
|
1805
1758
|
collumns: [
|
|
1806
1759
|
{
|
|
@@ -1828,7 +1781,8 @@ const lines = [
|
|
|
1828
1781
|
createdAtDateTime: "2025-10-10T19:13:16.856Z",
|
|
1829
1782
|
updatedAtDateTime: "2025-10-10T19:13:16.856Z",
|
|
1830
1783
|
__v: 0,
|
|
1831
|
-
|
|
1784
|
+
screenPlacement: 1,
|
|
1785
|
+
lineId: "574e8a3d-d513-40e8-bef8-0240081ccfdd"
|
|
1832
1786
|
},
|
|
1833
1787
|
{
|
|
1834
1788
|
_id: "68e95ad412a9fe7d49161a99",
|
|
@@ -1855,17 +1809,18 @@ const lines = [
|
|
|
1855
1809
|
createdAtDateTime: "2025-10-10T19:13:24.433Z",
|
|
1856
1810
|
updatedAtDateTime: "2025-10-10T19:13:24.433Z",
|
|
1857
1811
|
__v: 0,
|
|
1858
|
-
|
|
1812
|
+
screenPlacement: 1,
|
|
1813
|
+
lineId: "574e8a3d-d513-40e8-bef8-0240081ccfdd"
|
|
1859
1814
|
}
|
|
1860
1815
|
]
|
|
1861
1816
|
}
|
|
1862
1817
|
],
|
|
1863
|
-
lineId: "
|
|
1818
|
+
lineId: "31bb2201-1b57-4dfa-a39e-08699cbb2199"
|
|
1864
1819
|
}
|
|
1865
1820
|
]
|
|
1866
1821
|
},
|
|
1867
1822
|
{
|
|
1868
|
-
id: "
|
|
1823
|
+
id: "74870cfd-b1ac-4663-9e78-b0be48267a21",
|
|
1869
1824
|
line: 39,
|
|
1870
1825
|
collumns: [
|
|
1871
1826
|
{
|
|
@@ -1891,9 +1846,10 @@ const lines = [
|
|
|
1891
1846
|
createdAtDateTime: "2025-10-14T13:38:04.253Z",
|
|
1892
1847
|
updatedAtDateTime: "2025-10-14T13:38:04.253Z",
|
|
1893
1848
|
__v: 0,
|
|
1849
|
+
screenPlacement: 1,
|
|
1894
1850
|
lines: [
|
|
1895
1851
|
{
|
|
1896
|
-
id: "
|
|
1852
|
+
id: "41c1b70e-6747-43c8-b9d8-736cdd8fd3c7",
|
|
1897
1853
|
line: 40,
|
|
1898
1854
|
collumns: [
|
|
1899
1855
|
{
|
|
@@ -1947,7 +1903,8 @@ const lines = [
|
|
|
1947
1903
|
createdAtDateTime: "2025-10-14T13:56:15.048Z",
|
|
1948
1904
|
updatedAtDateTime: "2025-10-14T13:56:15.048Z",
|
|
1949
1905
|
__v: 0,
|
|
1950
|
-
|
|
1906
|
+
screenPlacement: 1,
|
|
1907
|
+
lineId: "41c1b70e-6747-43c8-b9d8-736cdd8fd3c7"
|
|
1951
1908
|
},
|
|
1952
1909
|
{
|
|
1953
1910
|
_id: "68ee573cdbeb63de67643cff",
|
|
@@ -1974,12 +1931,13 @@ const lines = [
|
|
|
1974
1931
|
createdAtDateTime: "2025-10-14T13:59:24.863Z",
|
|
1975
1932
|
updatedAtDateTime: "2025-10-14T13:59:24.863Z",
|
|
1976
1933
|
__v: 0,
|
|
1977
|
-
|
|
1934
|
+
screenPlacement: 1,
|
|
1935
|
+
lineId: "41c1b70e-6747-43c8-b9d8-736cdd8fd3c7"
|
|
1978
1936
|
}
|
|
1979
1937
|
]
|
|
1980
1938
|
},
|
|
1981
1939
|
{
|
|
1982
|
-
id: "
|
|
1940
|
+
id: "3a42d8b0-ea05-447e-98d1-f3fd93c5e331",
|
|
1983
1941
|
line: 41,
|
|
1984
1942
|
collumns: [
|
|
1985
1943
|
{
|
|
@@ -2007,9 +1965,10 @@ const lines = [
|
|
|
2007
1965
|
createdAtDateTime: "2025-10-14T14:01:36.927Z",
|
|
2008
1966
|
updatedAtDateTime: "2025-10-14T14:01:36.927Z",
|
|
2009
1967
|
__v: 0,
|
|
1968
|
+
screenPlacement: 1,
|
|
2010
1969
|
lines: [
|
|
2011
1970
|
{
|
|
2012
|
-
id: "
|
|
1971
|
+
id: "f14394b7-1ae8-4b1a-90a7-5f2b88c27ed3",
|
|
2013
1972
|
line: 42,
|
|
2014
1973
|
collumns: [
|
|
2015
1974
|
{
|
|
@@ -2041,9 +2000,10 @@ const lines = [
|
|
|
2041
2000
|
createdAtDateTime: "2025-10-14T14:28:32.411Z",
|
|
2042
2001
|
updatedAtDateTime: "2025-10-14T14:28:32.411Z",
|
|
2043
2002
|
__v: 0,
|
|
2003
|
+
screenPlacement: 1,
|
|
2044
2004
|
lines: [
|
|
2045
2005
|
{
|
|
2046
|
-
id: "
|
|
2006
|
+
id: "93866472-aa0d-46e1-b842-1a39c1eacd47",
|
|
2047
2007
|
line: 43,
|
|
2048
2008
|
collumns: [
|
|
2049
2009
|
{
|
|
@@ -2071,12 +2031,13 @@ const lines = [
|
|
|
2071
2031
|
createdAtDateTime: "2025-10-14T14:37:56.829Z",
|
|
2072
2032
|
updatedAtDateTime: "2025-10-14T14:37:56.829Z",
|
|
2073
2033
|
__v: 0,
|
|
2074
|
-
|
|
2034
|
+
screenPlacement: 1,
|
|
2035
|
+
lineId: "93866472-aa0d-46e1-b842-1a39c1eacd47"
|
|
2075
2036
|
}
|
|
2076
2037
|
]
|
|
2077
2038
|
},
|
|
2078
2039
|
{
|
|
2079
|
-
id: "
|
|
2040
|
+
id: "12fafc78-3a74-4db4-80b8-307b6454a632",
|
|
2080
2041
|
line: 44,
|
|
2081
2042
|
collumns: [
|
|
2082
2043
|
{
|
|
@@ -2104,12 +2065,13 @@ const lines = [
|
|
|
2104
2065
|
createdAtDateTime: "2025-10-14T14:39:41.427Z",
|
|
2105
2066
|
updatedAtDateTime: "2025-10-14T14:39:41.427Z",
|
|
2106
2067
|
__v: 0,
|
|
2107
|
-
|
|
2068
|
+
screenPlacement: 1,
|
|
2069
|
+
lineId: "12fafc78-3a74-4db4-80b8-307b6454a632"
|
|
2108
2070
|
}
|
|
2109
2071
|
]
|
|
2110
2072
|
},
|
|
2111
2073
|
{
|
|
2112
|
-
id: "
|
|
2074
|
+
id: "d0f7b18e-2de6-43a4-903a-0acca669e4e7",
|
|
2113
2075
|
line: 45,
|
|
2114
2076
|
collumns: [
|
|
2115
2077
|
{
|
|
@@ -2137,12 +2099,13 @@ const lines = [
|
|
|
2137
2099
|
createdAtDateTime: "2025-10-14T14:40:16.803Z",
|
|
2138
2100
|
updatedAtDateTime: "2025-10-14T14:40:16.803Z",
|
|
2139
2101
|
__v: 0,
|
|
2140
|
-
|
|
2102
|
+
screenPlacement: 1,
|
|
2103
|
+
lineId: "d0f7b18e-2de6-43a4-903a-0acca669e4e7"
|
|
2141
2104
|
}
|
|
2142
2105
|
]
|
|
2143
2106
|
},
|
|
2144
2107
|
{
|
|
2145
|
-
id: "
|
|
2108
|
+
id: "cb992e9f-ac99-49dd-8e4b-1f997502550b",
|
|
2146
2109
|
line: 46,
|
|
2147
2110
|
collumns: [
|
|
2148
2111
|
{
|
|
@@ -2170,12 +2133,13 @@ const lines = [
|
|
|
2170
2133
|
createdAtDateTime: "2025-10-14T14:41:41.543Z",
|
|
2171
2134
|
updatedAtDateTime: "2025-10-14T14:41:41.543Z",
|
|
2172
2135
|
__v: 0,
|
|
2173
|
-
|
|
2136
|
+
screenPlacement: 1,
|
|
2137
|
+
lineId: "cb992e9f-ac99-49dd-8e4b-1f997502550b"
|
|
2174
2138
|
}
|
|
2175
2139
|
]
|
|
2176
2140
|
},
|
|
2177
2141
|
{
|
|
2178
|
-
id: "
|
|
2142
|
+
id: "a842221f-7273-4887-9793-6c7412748042",
|
|
2179
2143
|
line: 47,
|
|
2180
2144
|
collumns: [
|
|
2181
2145
|
{
|
|
@@ -2205,27 +2169,28 @@ const lines = [
|
|
|
2205
2169
|
createdAtDateTime: "2025-10-14T14:52:29.560Z",
|
|
2206
2170
|
updatedAtDateTime: "2025-10-14T14:52:29.560Z",
|
|
2207
2171
|
__v: 0,
|
|
2208
|
-
|
|
2172
|
+
screenPlacement: 1,
|
|
2173
|
+
lineId: "a842221f-7273-4887-9793-6c7412748042"
|
|
2209
2174
|
}
|
|
2210
2175
|
]
|
|
2211
2176
|
}
|
|
2212
2177
|
],
|
|
2213
|
-
lineId: "
|
|
2178
|
+
lineId: "f14394b7-1ae8-4b1a-90a7-5f2b88c27ed3"
|
|
2214
2179
|
}
|
|
2215
2180
|
]
|
|
2216
2181
|
}
|
|
2217
2182
|
],
|
|
2218
|
-
lineId: "
|
|
2183
|
+
lineId: "3a42d8b0-ea05-447e-98d1-f3fd93c5e331"
|
|
2219
2184
|
}
|
|
2220
2185
|
]
|
|
2221
2186
|
}
|
|
2222
2187
|
],
|
|
2223
|
-
lineId: "
|
|
2188
|
+
lineId: "74870cfd-b1ac-4663-9e78-b0be48267a21"
|
|
2224
2189
|
}
|
|
2225
2190
|
]
|
|
2226
2191
|
},
|
|
2227
2192
|
{
|
|
2228
|
-
id: "
|
|
2193
|
+
id: "696f0021-c620-4c3f-bf17-f767a2e69457",
|
|
2229
2194
|
line: 48,
|
|
2230
2195
|
collumns: [
|
|
2231
2196
|
{
|
|
@@ -2251,9 +2216,10 @@ const lines = [
|
|
|
2251
2216
|
createdAtDateTime: "2025-10-14T15:06:49.746Z",
|
|
2252
2217
|
updatedAtDateTime: "2025-10-14T15:06:49.746Z",
|
|
2253
2218
|
__v: 0,
|
|
2219
|
+
screenPlacement: 1,
|
|
2254
2220
|
lines: [
|
|
2255
2221
|
{
|
|
2256
|
-
id: "
|
|
2222
|
+
id: "d44c119a-34ee-4db7-a191-64a2c462ac54",
|
|
2257
2223
|
line: 49,
|
|
2258
2224
|
collumns: [
|
|
2259
2225
|
{
|
|
@@ -2282,12 +2248,13 @@ const lines = [
|
|
|
2282
2248
|
createdAtDateTime: "2025-10-14T15:10:31.255Z",
|
|
2283
2249
|
updatedAtDateTime: "2025-10-14T15:10:31.255Z",
|
|
2284
2250
|
__v: 0,
|
|
2285
|
-
|
|
2251
|
+
screenPlacement: 1,
|
|
2252
|
+
lineId: "d44c119a-34ee-4db7-a191-64a2c462ac54"
|
|
2286
2253
|
}
|
|
2287
2254
|
]
|
|
2288
2255
|
},
|
|
2289
2256
|
{
|
|
2290
|
-
id: "
|
|
2257
|
+
id: "c2affdca-afaa-427c-aac4-3863251b7e78",
|
|
2291
2258
|
line: 50,
|
|
2292
2259
|
collumns: [
|
|
2293
2260
|
{
|
|
@@ -2316,12 +2283,13 @@ const lines = [
|
|
|
2316
2283
|
createdAtDateTime: "2025-10-14T15:10:54.092Z",
|
|
2317
2284
|
updatedAtDateTime: "2025-10-14T15:10:54.092Z",
|
|
2318
2285
|
__v: 0,
|
|
2319
|
-
|
|
2286
|
+
screenPlacement: 1,
|
|
2287
|
+
lineId: "c2affdca-afaa-427c-aac4-3863251b7e78"
|
|
2320
2288
|
}
|
|
2321
2289
|
]
|
|
2322
2290
|
},
|
|
2323
2291
|
{
|
|
2324
|
-
id: "
|
|
2292
|
+
id: "5a5d0f88-fa20-41c2-9b6a-43733246ac40",
|
|
2325
2293
|
line: 51,
|
|
2326
2294
|
collumns: [
|
|
2327
2295
|
{
|
|
@@ -2350,12 +2318,13 @@ const lines = [
|
|
|
2350
2318
|
createdAtDateTime: "2025-10-14T15:11:24.687Z",
|
|
2351
2319
|
updatedAtDateTime: "2025-10-14T15:11:24.687Z",
|
|
2352
2320
|
__v: 0,
|
|
2353
|
-
|
|
2321
|
+
screenPlacement: 1,
|
|
2322
|
+
lineId: "5a5d0f88-fa20-41c2-9b6a-43733246ac40"
|
|
2354
2323
|
}
|
|
2355
2324
|
]
|
|
2356
2325
|
},
|
|
2357
2326
|
{
|
|
2358
|
-
id: "
|
|
2327
|
+
id: "37518e71-bea6-4720-9219-4b4edd475238",
|
|
2359
2328
|
line: 52,
|
|
2360
2329
|
collumns: [
|
|
2361
2330
|
{
|
|
@@ -2384,12 +2353,13 @@ const lines = [
|
|
|
2384
2353
|
createdAtDateTime: "2025-10-14T15:12:31.633Z",
|
|
2385
2354
|
updatedAtDateTime: "2025-10-14T15:12:31.633Z",
|
|
2386
2355
|
__v: 0,
|
|
2387
|
-
|
|
2356
|
+
screenPlacement: 1,
|
|
2357
|
+
lineId: "37518e71-bea6-4720-9219-4b4edd475238"
|
|
2388
2358
|
}
|
|
2389
2359
|
]
|
|
2390
2360
|
},
|
|
2391
2361
|
{
|
|
2392
|
-
id: "
|
|
2362
|
+
id: "16a0e54d-0962-4289-bca4-21be55956761",
|
|
2393
2363
|
line: 53,
|
|
2394
2364
|
collumns: [
|
|
2395
2365
|
{
|
|
@@ -2418,12 +2388,13 @@ const lines = [
|
|
|
2418
2388
|
createdAtDateTime: "2025-10-14T15:13:22.962Z",
|
|
2419
2389
|
updatedAtDateTime: "2025-10-14T15:13:22.962Z",
|
|
2420
2390
|
__v: 0,
|
|
2421
|
-
|
|
2391
|
+
screenPlacement: 1,
|
|
2392
|
+
lineId: "16a0e54d-0962-4289-bca4-21be55956761"
|
|
2422
2393
|
}
|
|
2423
2394
|
]
|
|
2424
2395
|
},
|
|
2425
2396
|
{
|
|
2426
|
-
id: "
|
|
2397
|
+
id: "5503fb45-b0f1-41fb-b6b3-5260696c153b",
|
|
2427
2398
|
line: 54,
|
|
2428
2399
|
collumns: [
|
|
2429
2400
|
{
|
|
@@ -2452,12 +2423,13 @@ const lines = [
|
|
|
2452
2423
|
createdAtDateTime: "2025-10-14T15:13:51.002Z",
|
|
2453
2424
|
updatedAtDateTime: "2025-10-14T15:13:51.002Z",
|
|
2454
2425
|
__v: 0,
|
|
2455
|
-
|
|
2426
|
+
screenPlacement: 1,
|
|
2427
|
+
lineId: "5503fb45-b0f1-41fb-b6b3-5260696c153b"
|
|
2456
2428
|
}
|
|
2457
2429
|
]
|
|
2458
2430
|
},
|
|
2459
2431
|
{
|
|
2460
|
-
id: "
|
|
2432
|
+
id: "9f43357f-4254-4e74-b264-f04a9c434e01",
|
|
2461
2433
|
line: 55,
|
|
2462
2434
|
collumns: [
|
|
2463
2435
|
{
|
|
@@ -2486,12 +2458,13 @@ const lines = [
|
|
|
2486
2458
|
createdAtDateTime: "2025-10-14T15:14:23.633Z",
|
|
2487
2459
|
updatedAtDateTime: "2025-10-14T15:14:23.633Z",
|
|
2488
2460
|
__v: 0,
|
|
2489
|
-
|
|
2461
|
+
screenPlacement: 1,
|
|
2462
|
+
lineId: "9f43357f-4254-4e74-b264-f04a9c434e01"
|
|
2490
2463
|
}
|
|
2491
2464
|
]
|
|
2492
2465
|
},
|
|
2493
2466
|
{
|
|
2494
|
-
id: "
|
|
2467
|
+
id: "567fb50a-1cd8-4396-b046-0001c380adcb",
|
|
2495
2468
|
line: 56,
|
|
2496
2469
|
collumns: [
|
|
2497
2470
|
{
|
|
@@ -2520,12 +2493,13 @@ const lines = [
|
|
|
2520
2493
|
createdAtDateTime: "2025-10-14T15:15:03.250Z",
|
|
2521
2494
|
updatedAtDateTime: "2025-10-14T15:15:03.250Z",
|
|
2522
2495
|
__v: 0,
|
|
2523
|
-
|
|
2496
|
+
screenPlacement: 1,
|
|
2497
|
+
lineId: "567fb50a-1cd8-4396-b046-0001c380adcb"
|
|
2524
2498
|
}
|
|
2525
2499
|
]
|
|
2526
2500
|
},
|
|
2527
2501
|
{
|
|
2528
|
-
id: "
|
|
2502
|
+
id: "e485074a-94a8-4b16-a596-634665467b69",
|
|
2529
2503
|
line: 57,
|
|
2530
2504
|
collumns: [
|
|
2531
2505
|
{
|
|
@@ -2554,17 +2528,18 @@ const lines = [
|
|
|
2554
2528
|
createdAtDateTime: "2025-10-14T15:15:35.293Z",
|
|
2555
2529
|
updatedAtDateTime: "2025-10-14T15:15:35.293Z",
|
|
2556
2530
|
__v: 0,
|
|
2557
|
-
|
|
2531
|
+
screenPlacement: 1,
|
|
2532
|
+
lineId: "e485074a-94a8-4b16-a596-634665467b69"
|
|
2558
2533
|
}
|
|
2559
2534
|
]
|
|
2560
2535
|
}
|
|
2561
2536
|
],
|
|
2562
|
-
lineId: "
|
|
2537
|
+
lineId: "696f0021-c620-4c3f-bf17-f767a2e69457"
|
|
2563
2538
|
}
|
|
2564
2539
|
]
|
|
2565
2540
|
},
|
|
2566
2541
|
{
|
|
2567
|
-
id: "
|
|
2542
|
+
id: "33239b9a-ea44-4b05-814b-83aa32e42b9c",
|
|
2568
2543
|
line: 58,
|
|
2569
2544
|
collumns: [
|
|
2570
2545
|
{
|
|
@@ -2590,9 +2565,10 @@ const lines = [
|
|
|
2590
2565
|
createdAtDateTime: "2025-10-14T15:20:12.601Z",
|
|
2591
2566
|
updatedAtDateTime: "2025-10-14T15:20:12.601Z",
|
|
2592
2567
|
__v: 0,
|
|
2568
|
+
screenPlacement: 1,
|
|
2593
2569
|
lines: [
|
|
2594
2570
|
{
|
|
2595
|
-
id: "
|
|
2571
|
+
id: "000d235d-7afc-4517-bb61-6f1e340566f0",
|
|
2596
2572
|
line: 59,
|
|
2597
2573
|
collumns: [
|
|
2598
2574
|
{
|
|
@@ -2621,12 +2597,14 @@ const lines = [
|
|
|
2621
2597
|
createdAtDateTime: "2025-10-14T15:24:33.030Z",
|
|
2622
2598
|
updatedAtDateTime: "2025-10-14T15:24:33.030Z",
|
|
2623
2599
|
__v: 0,
|
|
2624
|
-
|
|
2600
|
+
screenPlacement: 1,
|
|
2601
|
+
lineId: "000d235d-7afc-4517-bb61-6f1e340566f0",
|
|
2602
|
+
answer: "10"
|
|
2625
2603
|
}
|
|
2626
2604
|
]
|
|
2627
2605
|
},
|
|
2628
2606
|
{
|
|
2629
|
-
id: "
|
|
2607
|
+
id: "56456ab1-8ac2-401c-8596-efbc3dacb5fc",
|
|
2630
2608
|
line: 60,
|
|
2631
2609
|
collumns: [
|
|
2632
2610
|
{
|
|
@@ -2655,12 +2633,14 @@ const lines = [
|
|
|
2655
2633
|
createdAtDateTime: "2025-10-14T15:25:04.292Z",
|
|
2656
2634
|
updatedAtDateTime: "2025-10-14T15:25:04.292Z",
|
|
2657
2635
|
__v: 0,
|
|
2658
|
-
|
|
2636
|
+
screenPlacement: 1,
|
|
2637
|
+
lineId: "56456ab1-8ac2-401c-8596-efbc3dacb5fc",
|
|
2638
|
+
answer: "15"
|
|
2659
2639
|
}
|
|
2660
2640
|
]
|
|
2661
2641
|
},
|
|
2662
2642
|
{
|
|
2663
|
-
id: "
|
|
2643
|
+
id: "39b49515-6fe0-4b9a-aaa2-6c80be77a48e",
|
|
2664
2644
|
line: 61,
|
|
2665
2645
|
collumns: [
|
|
2666
2646
|
{
|
|
@@ -2689,17 +2669,19 @@ const lines = [
|
|
|
2689
2669
|
createdAtDateTime: "2025-10-14T15:25:26.642Z",
|
|
2690
2670
|
updatedAtDateTime: "2025-10-14T15:25:26.642Z",
|
|
2691
2671
|
__v: 0,
|
|
2692
|
-
|
|
2672
|
+
screenPlacement: 1,
|
|
2673
|
+
lineId: "39b49515-6fe0-4b9a-aaa2-6c80be77a48e",
|
|
2674
|
+
answer: "15"
|
|
2693
2675
|
}
|
|
2694
2676
|
]
|
|
2695
2677
|
}
|
|
2696
2678
|
],
|
|
2697
|
-
lineId: "
|
|
2679
|
+
lineId: "33239b9a-ea44-4b05-814b-83aa32e42b9c"
|
|
2698
2680
|
}
|
|
2699
2681
|
]
|
|
2700
2682
|
},
|
|
2701
2683
|
{
|
|
2702
|
-
id: "
|
|
2684
|
+
id: "a9fa72fe-5106-4c93-ac09-b6ee2c4cfd5e",
|
|
2703
2685
|
line: 62,
|
|
2704
2686
|
collumns: [
|
|
2705
2687
|
{
|
|
@@ -2725,9 +2707,10 @@ const lines = [
|
|
|
2725
2707
|
createdAtDateTime: "2025-10-14T17:39:08.358Z",
|
|
2726
2708
|
updatedAtDateTime: "2025-10-14T17:39:08.358Z",
|
|
2727
2709
|
__v: 0,
|
|
2710
|
+
screenPlacement: 1,
|
|
2728
2711
|
lines: [
|
|
2729
2712
|
{
|
|
2730
|
-
id: "
|
|
2713
|
+
id: "e8c51658-e55b-415b-b64a-d24e5fdf8bc4",
|
|
2731
2714
|
line: 63,
|
|
2732
2715
|
collumns: [
|
|
2733
2716
|
{
|
|
@@ -2761,7 +2744,8 @@ const lines = [
|
|
|
2761
2744
|
createdAtDateTime: "2025-10-14T17:57:21.200Z",
|
|
2762
2745
|
updatedAtDateTime: "2025-10-14T17:57:21.200Z",
|
|
2763
2746
|
__v: 0,
|
|
2764
|
-
|
|
2747
|
+
screenPlacement: 1,
|
|
2748
|
+
lineId: "e8c51658-e55b-415b-b64a-d24e5fdf8bc4"
|
|
2765
2749
|
},
|
|
2766
2750
|
{
|
|
2767
2751
|
_id: "68ee8f2c80b7d807773414f6",
|
|
@@ -2794,7 +2778,8 @@ const lines = [
|
|
|
2794
2778
|
createdAtDateTime: "2025-10-14T17:58:04.986Z",
|
|
2795
2779
|
updatedAtDateTime: "2025-10-14T17:58:04.986Z",
|
|
2796
2780
|
__v: 0,
|
|
2797
|
-
|
|
2781
|
+
screenPlacement: 1,
|
|
2782
|
+
lineId: "e8c51658-e55b-415b-b64a-d24e5fdf8bc4"
|
|
2798
2783
|
},
|
|
2799
2784
|
{
|
|
2800
2785
|
_id: "68ee8f4c80b7d807773414fd",
|
|
@@ -2827,7 +2812,8 @@ const lines = [
|
|
|
2827
2812
|
createdAtDateTime: "2025-10-14T17:58:36.838Z",
|
|
2828
2813
|
updatedAtDateTime: "2025-10-14T17:58:36.838Z",
|
|
2829
2814
|
__v: 0,
|
|
2830
|
-
|
|
2815
|
+
screenPlacement: 1,
|
|
2816
|
+
lineId: "e8c51658-e55b-415b-b64a-d24e5fdf8bc4"
|
|
2831
2817
|
},
|
|
2832
2818
|
{
|
|
2833
2819
|
_id: "68ee8f5c80b7d80777341504",
|
|
@@ -2860,17 +2846,18 @@ const lines = [
|
|
|
2860
2846
|
createdAtDateTime: "2025-10-14T17:58:52.521Z",
|
|
2861
2847
|
updatedAtDateTime: "2025-10-14T17:58:52.521Z",
|
|
2862
2848
|
__v: 0,
|
|
2863
|
-
|
|
2849
|
+
screenPlacement: 1,
|
|
2850
|
+
lineId: "e8c51658-e55b-415b-b64a-d24e5fdf8bc4"
|
|
2864
2851
|
}
|
|
2865
2852
|
]
|
|
2866
2853
|
}
|
|
2867
2854
|
],
|
|
2868
|
-
lineId: "
|
|
2855
|
+
lineId: "a9fa72fe-5106-4c93-ac09-b6ee2c4cfd5e"
|
|
2869
2856
|
}
|
|
2870
2857
|
]
|
|
2871
2858
|
},
|
|
2872
2859
|
{
|
|
2873
|
-
id: "
|
|
2860
|
+
id: "ba96a504-7101-45ea-b787-429b9f6a0260",
|
|
2874
2861
|
line: 64,
|
|
2875
2862
|
collumns: [
|
|
2876
2863
|
{
|
|
@@ -2908,7 +2895,8 @@ const lines = [
|
|
|
2908
2895
|
},
|
|
2909
2896
|
{
|
|
2910
2897
|
headerText: "Classificação",
|
|
2911
|
-
fieldName: "
|
|
2898
|
+
fieldName: "classificationLabel",
|
|
2899
|
+
fieldColor: "classificationColor",
|
|
2912
2900
|
_id: "68ef9a31fbcea8e6b466aeb9"
|
|
2913
2901
|
}
|
|
2914
2902
|
]
|
|
@@ -2923,7 +2911,7 @@ const lines = [
|
|
|
2923
2911
|
screenPlacement: 2,
|
|
2924
2912
|
lines: [
|
|
2925
2913
|
{
|
|
2926
|
-
id: "
|
|
2914
|
+
id: "55e8bcfe-93c2-4e58-8fec-89963f90199f",
|
|
2927
2915
|
line: 65,
|
|
2928
2916
|
collumns: [
|
|
2929
2917
|
{
|
|
@@ -2940,7 +2928,7 @@ const lines = [
|
|
|
2940
2928
|
category: "ANTHROPOMETRY",
|
|
2941
2929
|
measurementUnit: "Kg",
|
|
2942
2930
|
formulaToAnswer: "${CURRENT_WEIGHT}",
|
|
2943
|
-
formulaToReferenceValue: "",
|
|
2931
|
+
formulaToReferenceValue: "Number('${HEIGHT_IN_CM}') ? (25 * ( (Number('${HEIGHT_IN_CM}') / 100)**2)) + ' kg' : undefined",
|
|
2944
2932
|
formulaToClassification: "",
|
|
2945
2933
|
formulaToEnable: "true",
|
|
2946
2934
|
active: true,
|
|
@@ -2956,13 +2944,15 @@ const lines = [
|
|
|
2956
2944
|
updatedAtDateTime: "2025-10-15T13:19:22.615Z",
|
|
2957
2945
|
__v: 0,
|
|
2958
2946
|
screenPlacement: 2,
|
|
2959
|
-
|
|
2947
|
+
formulaToClassificationLabel: "",
|
|
2948
|
+
lineId: "55e8bcfe-93c2-4e58-8fec-89963f90199f",
|
|
2949
|
+
referenceValue: "90.25 kg",
|
|
2960
2950
|
answer: 80
|
|
2961
2951
|
}
|
|
2962
2952
|
]
|
|
2963
2953
|
},
|
|
2964
2954
|
{
|
|
2965
|
-
id: "
|
|
2955
|
+
id: "16f5433d-94ef-4b10-8dee-d875bea5b479",
|
|
2966
2956
|
line: 66,
|
|
2967
2957
|
collumns: [
|
|
2968
2958
|
{
|
|
@@ -2978,7 +2968,7 @@ const lines = [
|
|
|
2978
2968
|
typeAnswer: "OPEN_NUMBER",
|
|
2979
2969
|
category: "ANTHROPOMETRY",
|
|
2980
2970
|
measurementUnit: "m",
|
|
2981
|
-
formulaToAnswer: "Number('${HEIGHT_IN_CM}') / 100",
|
|
2971
|
+
formulaToAnswer: "Number('${HEIGHT_IN_CM}') ? Number('${HEIGHT_IN_CM}') / 100 : undefined",
|
|
2982
2972
|
formulaToReferenceValue: "",
|
|
2983
2973
|
formulaToClassification: "",
|
|
2984
2974
|
formulaToEnable: "true",
|
|
@@ -2995,13 +2985,14 @@ const lines = [
|
|
|
2995
2985
|
updatedAtDateTime: "2025-10-15T13:21:03.178Z",
|
|
2996
2986
|
__v: 0,
|
|
2997
2987
|
screenPlacement: 2,
|
|
2998
|
-
|
|
2999
|
-
|
|
2988
|
+
formulaToClassificationLabel: "",
|
|
2989
|
+
lineId: "16f5433d-94ef-4b10-8dee-d875bea5b479",
|
|
2990
|
+
answer: 1.9
|
|
3000
2991
|
}
|
|
3001
2992
|
]
|
|
3002
2993
|
},
|
|
3003
2994
|
{
|
|
3004
|
-
id: "
|
|
2995
|
+
id: "7343c9ec-c8a1-4ffd-97ee-c33404781674",
|
|
3005
2996
|
line: 67,
|
|
3006
2997
|
collumns: [
|
|
3007
2998
|
{
|
|
@@ -3017,9 +3008,8 @@ const lines = [
|
|
|
3017
3008
|
typeAnswer: "OPEN_NUMBER",
|
|
3018
3009
|
category: "ANTHROPOMETRY",
|
|
3019
3010
|
measurementUnit: "kg / m²",
|
|
3020
|
-
formulaToAnswer: "
|
|
3021
|
-
formulaToReferenceValue: "
|
|
3022
|
-
formulaToClassification: "const imc = (Number('${CURRENT_WEIGHT}') ? Number('${CURRENT_WEIGHT}') : 0) / ((Number('${HEIGHT_IN_CM}') ? Number('${HEIGHT_IN_CM}') / 100 : 0)**2); imc < 18.5 ? 'Abaixo do peso' : imc < 25 ? 'Peso normal' : imc < 30 ? 'Sobrepeso' : imc < 35 ? 'Obesidade grau 1' : imc < 40 ? 'Obesidade grau 2' : 'Obesidade grau 3'",
|
|
3011
|
+
formulaToAnswer: "Number('${CURRENT_WEIGHT}') && Number('${HEIGHT_IN_CM}') ? Number('${CURRENT_WEIGHT}') / ((Number('${HEIGHT_IN_CM}') / 100)**2) : undefined",
|
|
3012
|
+
formulaToReferenceValue: "'18,5 a 24,9 kg / m²'",
|
|
3023
3013
|
formulaToEnable: "true",
|
|
3024
3014
|
active: true,
|
|
3025
3015
|
show: true,
|
|
@@ -3034,14 +3024,18 @@ const lines = [
|
|
|
3034
3024
|
updatedAtDateTime: "2025-10-15T14:00:18.038Z",
|
|
3035
3025
|
__v: 0,
|
|
3036
3026
|
screenPlacement: 2,
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3027
|
+
formulaToClassificationLabel: "Number('${CURRENT_WEIGHT}') && Number('${HEIGHT_IN_CM}') ? Number('${CURRENT_IMC_TABLE_RESULT}') < 18.5 ? 'Abaixo' : Number('${CURRENT_IMC_TABLE_RESULT}') < 25 ? 'Normal' : Number('${CURRENT_IMC_TABLE_RESULT}') < 30 ? 'Sobrepeso' : Number('${CURRENT_IMC_TABLE_RESULT}') < 35 ? 'Obesidade 1' : Number('${CURRENT_IMC_TABLE_RESULT}') < 40 ? 'Obesidade 2' : 'Obesidade 3' : undefined",
|
|
3028
|
+
formulaToClassificationColor: "Number('${CURRENT_WEIGHT}') && Number('${HEIGHT_IN_CM}') ? Number('${CURRENT_IMC_TABLE_RESULT}') < 18.5 ? '#FFF6E9' : Number('${CURRENT_IMC_TABLE_RESULT}') < 25 ? '#C4DBEE' : '#FFF6E9' : undefined",
|
|
3029
|
+
lineId: "7343c9ec-c8a1-4ffd-97ee-c33404781674",
|
|
3030
|
+
referenceValue: "18,5 a 24,9 kg / m²",
|
|
3031
|
+
classificationLabel: "Normal",
|
|
3032
|
+
classificationColor: "#C4DBEE",
|
|
3033
|
+
answer: 22.1606648199446
|
|
3040
3034
|
}
|
|
3041
3035
|
]
|
|
3042
3036
|
},
|
|
3043
3037
|
{
|
|
3044
|
-
id: "
|
|
3038
|
+
id: "bb3c4adb-b1f8-4b40-aac6-1cde152289e2",
|
|
3045
3039
|
line: 68,
|
|
3046
3040
|
collumns: [
|
|
3047
3041
|
{
|
|
@@ -3057,8 +3051,7 @@ const lines = [
|
|
|
3057
3051
|
typeAnswer: "OPEN_NUMBER",
|
|
3058
3052
|
category: "ANTHROPOMETRY",
|
|
3059
3053
|
formulaToAnswer: "Number('${CIRCUNFERENCIA_CINTURA}') && Number('${CIRCUNFERENCIA_QUADRIL}') ? Number('${CIRCUNFERENCIA_CINTURA}') / Number('${CIRCUNFERENCIA_QUADRIL}'): undefined",
|
|
3060
|
-
formulaToReferenceValue: "< 0.85
|
|
3061
|
-
formulaToClassification: "const rcq = Number('${CIRCUNFERENCIA_CINTURA}') && Number('${CIRCUNFERENCIA_QUADRIL}') ? Number('${CIRCUNFERENCIA_CINTURA}') / Number('${CIRCUNFERENCIA_QUADRIL}'): undefined; rcq < 0.5 ? 'Limitrofe' : rcq < 0.85 ? 'Normal' : rcq >= 0.85 ? 'Acima' : 'Não definido'",
|
|
3054
|
+
formulaToReferenceValue: "'${PATIENT_GENRE}' === 'FEMALE' ? '< 0.85' : '< 0.9'",
|
|
3062
3055
|
formulaToEnable: "true",
|
|
3063
3056
|
active: true,
|
|
3064
3057
|
show: true,
|
|
@@ -3073,29 +3066,69 @@ const lines = [
|
|
|
3073
3066
|
updatedAtDateTime: "2025-10-15T14:13:55.504Z",
|
|
3074
3067
|
__v: 0,
|
|
3075
3068
|
screenPlacement: 2,
|
|
3076
|
-
|
|
3069
|
+
formulaToClassificationLabel: "Number('${RCQ_TABLE_RESULT}') ? Number('${RCQ_TABLE_RESULT}') > 0.9 && '${PATIENT_GENRE}' === 'MALE' ? 'Elevado' : Number('${RCQ_TABLE_RESULT}') <= 0.9 && '${PATIENT_GENRE}' === 'MALE' ? 'Normal' : Number('${RCQ_TABLE_RESULT}') > 0.85 && '${PATIENT_GENRE}' === 'FEMALE' ? 'Elevado' : Number('${RCQ_TABLE_RESULT}') <= 0.85 && '${PATIENT_GENRE}' === 'FEMALE' ? 'Normal' : undefined : undefined",
|
|
3070
|
+
formulaToClassificationColor: "Number('${RCQ_TABLE_RESULT}') ? Number('${RCQ_TABLE_RESULT}') > 0.9 && '${PATIENT_GENRE}' === 'MALE' ? '#ffe9e9' : Number('${RCQ_TABLE_RESULT}') <= 0.9 && '${PATIENT_GENRE}' === 'MALE' ? '#ecf6ff' : Number('${RCQ_TABLE_RESULT}') > 0.85 && '${PATIENT_GENRE}' === 'FEMALE' ? '#ffe9e9' : Number('${RCQ_TABLE_RESULT}') <= 0.85 && '${PATIENT_GENRE}' === 'FEMALE' ? '#ecf6ff' : undefined : undefined",
|
|
3071
|
+
referenceValue: "< 0.85",
|
|
3072
|
+
lineId: "bb3c4adb-b1f8-4b40-aac6-1cde152289e2"
|
|
3077
3073
|
}
|
|
3078
3074
|
]
|
|
3079
3075
|
},
|
|
3080
3076
|
{
|
|
3081
|
-
id: "
|
|
3077
|
+
id: "1b06dcd3-bdcc-4062-8add-7eb4cb817778",
|
|
3082
3078
|
line: 69,
|
|
3079
|
+
collumns: [
|
|
3080
|
+
{
|
|
3081
|
+
_id: "691354158ff24f6dd8e020f6",
|
|
3082
|
+
form: "689e029db13c27189bce136d",
|
|
3083
|
+
sequence: 84,
|
|
3084
|
+
code: "RCA_TABLE_RESULT",
|
|
3085
|
+
description: "Relação Cintura/Altura (RCA)",
|
|
3086
|
+
parent: "68ef9a31fbcea8e6b466aeb5",
|
|
3087
|
+
line: 69,
|
|
3088
|
+
column: 1,
|
|
3089
|
+
type: "QUESTION",
|
|
3090
|
+
typeAnswer: "OPEN_NUMBER",
|
|
3091
|
+
category: "ANTHROPOMETRY",
|
|
3092
|
+
formulaToAnswer: "Number('${CIRCUNFERENCIA_CINTURA}') && Number('${HEIGHT_IN_CM}') ? Number('${CIRCUNFERENCIA_CINTURA}') / Number('${HEIGHT_IN_CM}'): undefined",
|
|
3093
|
+
formulaToReferenceValue: "'< 0.5'",
|
|
3094
|
+
formulaToEnable: "true",
|
|
3095
|
+
active: true,
|
|
3096
|
+
show: true,
|
|
3097
|
+
readOnly: false,
|
|
3098
|
+
required: false,
|
|
3099
|
+
ellegibleForComparison: false,
|
|
3100
|
+
options: [],
|
|
3101
|
+
validations: [],
|
|
3102
|
+
requestGraphicData: [],
|
|
3103
|
+
tips: [],
|
|
3104
|
+
createdAtDateTime: "2025-11-11T14:13:55.504Z",
|
|
3105
|
+
updatedAtDateTime: "2025-11-11T14:13:55.504Z",
|
|
3106
|
+
__v: 0,
|
|
3107
|
+
screenPlacement: 2,
|
|
3108
|
+
formulaToClassificationLabel: "Number('${RCA_TABLE_RESULT}') ? Number('${RCA_TABLE_RESULT}') > 0.5 ? 'Elevado' : 'Normal' : undefined",
|
|
3109
|
+
formulaToClassificationColor: "Number('${RCA_TABLE_RESULT}') ? Number('${RCA_TABLE_RESULT}') > 0.5 ? '#ffe9e9' : '#ecf6ff' : undefined",
|
|
3110
|
+
lineId: "1b06dcd3-bdcc-4062-8add-7eb4cb817778",
|
|
3111
|
+
referenceValue: "< 0.5"
|
|
3112
|
+
}
|
|
3113
|
+
]
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
id: "0116d700-ade9-4746-9e67-a6b8a697f13a",
|
|
3117
|
+
line: 70,
|
|
3083
3118
|
collumns: [
|
|
3084
3119
|
{
|
|
3085
3120
|
_id: "68efac6ffbcea8e6b466aee4",
|
|
3086
3121
|
form: "689e029db13c27189bce136d",
|
|
3087
3122
|
sequence: 85,
|
|
3088
|
-
code: "
|
|
3089
|
-
description: "
|
|
3123
|
+
code: "AMBC_TABLE_RESULT",
|
|
3124
|
+
description: "Área muscular do braço corrigida (AMBc)",
|
|
3090
3125
|
parent: "68ef9a31fbcea8e6b466aeb5",
|
|
3091
|
-
line:
|
|
3126
|
+
line: 70,
|
|
3092
3127
|
column: 1,
|
|
3093
3128
|
type: "QUESTION",
|
|
3094
3129
|
typeAnswer: "OPEN_NUMBER",
|
|
3095
3130
|
category: "ANTHROPOMETRY",
|
|
3096
|
-
formulaToAnswer: "Number('${
|
|
3097
|
-
formulaToReferenceValue: "< 0.85 (feminino)",
|
|
3098
|
-
formulaToClassification: "const rcq = Number('${CIRCUNFERENCIA_CINTURA}') && Number('${CIRCUNFERENCIA_QUADRIL}') ? Number('${CIRCUNFERENCIA_CINTURA}') / Number('${CIRCUNFERENCIA_QUADRIL}'): undefined; rcq < 0.5 ? 'Limitrofe' : rcq < 0.85 ? 'Adequado' : rcq >= 0.85 ? 'Acima' : 'Não definido'",
|
|
3131
|
+
formulaToAnswer: "Number('${CIRCUNFERENCIA_BRACO_DIR_RELAXADO}') && Number('${DOBRA_TRICEPTAL}') ? '${PATIENT_GENRE}' === 'MALE' ? (((Number('${CIRCUNFERENCIA_BRACO_DIR_RELAXADO}') - (3.14 * (Number('${DOBRA_TRICEPTAL}') / 10))) ** 2) / (4 * 3.14)) - 10 : '${PATIENT_GENRE}' === 'FEMALE' ? (((Number('${CIRCUNFERENCIA_BRACO_DIR_RELAXADO}') - (3.14 * (Number('${DOBRA_TRICEPTAL}') / 10))) ** 2) / (4 * 3.14)) - 6.5 : undefined : undefined",
|
|
3099
3132
|
formulaToEnable: "true",
|
|
3100
3133
|
active: true,
|
|
3101
3134
|
show: true,
|
|
@@ -3110,17 +3143,18 @@ const lines = [
|
|
|
3110
3143
|
updatedAtDateTime: "2025-10-15T14:15:11.490Z",
|
|
3111
3144
|
__v: 0,
|
|
3112
3145
|
screenPlacement: 2,
|
|
3113
|
-
|
|
3146
|
+
measurementUnit: "cm²",
|
|
3147
|
+
lineId: "0116d700-ade9-4746-9e67-a6b8a697f13a"
|
|
3114
3148
|
}
|
|
3115
3149
|
]
|
|
3116
3150
|
}
|
|
3117
3151
|
],
|
|
3118
|
-
lineId: "
|
|
3152
|
+
lineId: "ba96a504-7101-45ea-b787-429b9f6a0260"
|
|
3119
3153
|
}
|
|
3120
3154
|
]
|
|
3121
3155
|
},
|
|
3122
3156
|
{
|
|
3123
|
-
id: "
|
|
3157
|
+
id: "51c9ce3c-be60-4c1e-9054-a90c0a687915",
|
|
3124
3158
|
line: 70,
|
|
3125
3159
|
collumns: [
|
|
3126
3160
|
{
|
|
@@ -3158,7 +3192,7 @@ const lines = [
|
|
|
3158
3192
|
},
|
|
3159
3193
|
{
|
|
3160
3194
|
headerText: "Classificação",
|
|
3161
|
-
fieldName: "
|
|
3195
|
+
fieldName: "classificationLabel",
|
|
3162
3196
|
_id: "68efad48fbcea8e6b466aef0"
|
|
3163
3197
|
}
|
|
3164
3198
|
]
|
|
@@ -3173,7 +3207,7 @@ const lines = [
|
|
|
3173
3207
|
screenPlacement: 2,
|
|
3174
3208
|
lines: [
|
|
3175
3209
|
{
|
|
3176
|
-
id: "
|
|
3210
|
+
id: "414bcceb-7976-4bf6-8fed-b6922f37df9f",
|
|
3177
3211
|
line: 71,
|
|
3178
3212
|
collumns: [
|
|
3179
3213
|
{
|
|
@@ -3203,12 +3237,13 @@ const lines = [
|
|
|
3203
3237
|
updatedAtDateTime: "2025-10-15T14:20:47.735Z",
|
|
3204
3238
|
__v: 0,
|
|
3205
3239
|
screenPlacement: 2,
|
|
3206
|
-
lineId: "
|
|
3240
|
+
lineId: "414bcceb-7976-4bf6-8fed-b6922f37df9f",
|
|
3241
|
+
answer: "POLLOCK_7_DOBRAS"
|
|
3207
3242
|
}
|
|
3208
3243
|
]
|
|
3209
3244
|
},
|
|
3210
3245
|
{
|
|
3211
|
-
id: "
|
|
3246
|
+
id: "2067ce39-f250-4e48-bc26-55820a608a90",
|
|
3212
3247
|
line: 72,
|
|
3213
3248
|
collumns: [
|
|
3214
3249
|
{
|
|
@@ -3221,18 +3256,17 @@ const lines = [
|
|
|
3221
3256
|
line: 72,
|
|
3222
3257
|
column: 1,
|
|
3223
3258
|
type: "QUESTION",
|
|
3224
|
-
typeAnswer: "
|
|
3259
|
+
typeAnswer: "OPEN_NUMBER_PERCENT",
|
|
3225
3260
|
category: "ANTHROPOMETRY",
|
|
3226
3261
|
measurementUnit: "%",
|
|
3227
|
-
formulaToAnswer: "'${
|
|
3262
|
+
formulaToAnswer: "'${CURRENT_WEIGHT}';'${HEIGHT_IN_CM}'; '${DOBRA_ABDOMINAL}';'${DOBRA_AXILAR_MEDIO}';'${DOBRA_COXA}';'${DOBRA_SUBESCAPULAR}';'${DOBRA_SUPRAILIACA}';'${DOBRA_TRICEPTAL}';'${DOBRA_PEITORAL}';Number('${BIOIMPEDANCIA_PERCENTUAL_GORDURA}') > 0 ? '${BIOIMPEDANCE_FAT_PERCENT}' : '${FORMULA_PERCENT_FAT}' === 'POLLOCK_7_DOBRAS' ? isNaN('${FORMULA_POLLOCK_7_DOBRAS}') ? undefined : '${FORMULA_POLLOCK_7_DOBRAS}' : '${FORMULA_PERCENT_FAT}' === 'POLLOCK_3_DOBRAS' ? '${POLLOCK_3_DOBRAS}' : '${FORMULA_PERCENT_FAT}' === 'PETROSKI' ? '${PETROSKI}' : '${FORMULA_PERCENT_FAT}' === 'DURNIN_WOMERSLEY' ? '${DURNIN_WOMERSLEY}' : '${FORMULA_PERCENT_FAT}' === 'FAULKNER' ? '${FAULKNER}' : '${FORMULA_PERCENT_FAT}' === 'YUHASZ' ? '${YUHASZ}' : '${FORMULA_PERCENT_FAT}' === 'WELTMAN_1988_OBESOS' ? '${WELTMAN_1988_OBESOS}' : '${FORMULA_PERCENT_FAT}' === 'GUEDES' ? '${GUEDES}' : undefined",
|
|
3228
3263
|
formulaToReferenceValue: "'${PATIENT_GENRE}' === 'MALE' ? '18% - 25%' : '20% - 28%'",
|
|
3229
|
-
formulaToClassification: "const percentFat = '${CIRCUNFERENCIA_CINTURA}';'${CIRCUNFERENCIA_ABDOMEN}';'${CURRENT_WEIGHT}';'${HEIGHT_IN_CM}'; '${Q23A}';'${Q24A}';'${Q25A}';'${Q26A}';'${Q151A}';'${Q28A}';'${Q29A}';'${Q30A}';'${Q31A}';'${Q130A}';Number('${BIOIMPEDANCIA_PERCENTUAL_GORDURA}') > 0 ? '${BIOIMPEDANCE_FAT_PERCENT}' : '${FORMULA_PERCENT_FAT}' === 'POLLOCK_7_DOBRAS' ? ${POLLOCK_7_DOBRAS} : '${FORMULA_PERCENT_FAT}' === 'POLLOCK_3_DOBRAS' ? ${POLLOCK_3_DOBRAS} : '${FORMULA_PERCENT_FAT}' === 'PETROSKI' ? ${PETROSKI} : '${FORMULA_PERCENT_FAT}' === 'DURNIN_WOMERSLEY' ? ${DURNIN_WOMERSLEY} : '${FORMULA_PERCENT_FAT}' === 'FAULKNER' ? ${FAULKNER} : '${FORMULA_PERCENT_FAT}' === 'YUHASZ' ? ${YUHASZ} : '${FORMULA_PERCENT_FAT}' === 'WELTMAN_1988_OBESOS' ? ${WELTMAN_1988_OBESOS} : '${FORMULA_PERCENT_FAT}' === 'GUEDES' ? ${GUEDES} : undefined; percentFat < 12 ? 'Abaixo' : percentFat < 18 ? 'Abaixo 1' : percentFat < 28 ? 'Adequado' : 'Acima'",
|
|
3230
3264
|
formulaToEnable: "true",
|
|
3231
3265
|
active: true,
|
|
3232
3266
|
show: true,
|
|
3233
3267
|
readOnly: false,
|
|
3234
3268
|
required: false,
|
|
3235
|
-
ellegibleForComparison:
|
|
3269
|
+
ellegibleForComparison: true,
|
|
3236
3270
|
options: [],
|
|
3237
3271
|
validations: [],
|
|
3238
3272
|
requestGraphicData: [],
|
|
@@ -3242,12 +3276,13 @@ const lines = [
|
|
|
3242
3276
|
__v: 0,
|
|
3243
3277
|
screenPlacement: 2,
|
|
3244
3278
|
referenceValue: "20% - 28%",
|
|
3245
|
-
lineId: "
|
|
3279
|
+
lineId: "2067ce39-f250-4e48-bc26-55820a608a90",
|
|
3280
|
+
answer: "0.17113422122000888"
|
|
3246
3281
|
}
|
|
3247
3282
|
]
|
|
3248
3283
|
},
|
|
3249
3284
|
{
|
|
3250
|
-
id: "
|
|
3285
|
+
id: "166a4a66-ea1a-4187-be98-f1c956dcab47",
|
|
3251
3286
|
line: 73,
|
|
3252
3287
|
collumns: [
|
|
3253
3288
|
{
|
|
@@ -3278,12 +3313,13 @@ const lines = [
|
|
|
3278
3313
|
updatedAtDateTime: "2025-10-15T14:40:04.251Z",
|
|
3279
3314
|
__v: 0,
|
|
3280
3315
|
screenPlacement: 2,
|
|
3281
|
-
lineId: "
|
|
3316
|
+
lineId: "166a4a66-ea1a-4187-be98-f1c956dcab47",
|
|
3317
|
+
answer: 13.69073769760071
|
|
3282
3318
|
}
|
|
3283
3319
|
]
|
|
3284
3320
|
},
|
|
3285
3321
|
{
|
|
3286
|
-
id: "
|
|
3322
|
+
id: "8ee86ed3-7fff-4750-82d2-8b7a384b1cf3",
|
|
3287
3323
|
line: 74,
|
|
3288
3324
|
collumns: [
|
|
3289
3325
|
{
|
|
@@ -3299,7 +3335,7 @@ const lines = [
|
|
|
3299
3335
|
typeAnswer: "OPEN_NUMBER",
|
|
3300
3336
|
category: "ANTHROPOMETRY",
|
|
3301
3337
|
measurementUnit: "Kg",
|
|
3302
|
-
formulaToAnswer: "${
|
|
3338
|
+
formulaToAnswer: "3.02 * ((((Number('${HEIGHT_IN_CM}') / 100)**2)*(Number('${DIAMETRO_OSSEO_PUNHO}') + Number('${DIAMETRO_OSSEO_JOELHO}') + Number('${DIAMETRO_OSSEO_UMERO}'))*400)**0.712)",
|
|
3303
3339
|
formulaToEnable: "true",
|
|
3304
3340
|
active: true,
|
|
3305
3341
|
show: true,
|
|
@@ -3314,17 +3350,17 @@ const lines = [
|
|
|
3314
3350
|
updatedAtDateTime: "2025-10-15T14:40:38.237Z",
|
|
3315
3351
|
__v: 0,
|
|
3316
3352
|
screenPlacement: 2,
|
|
3317
|
-
lineId: "
|
|
3353
|
+
lineId: "8ee86ed3-7fff-4750-82d2-8b7a384b1cf3"
|
|
3318
3354
|
}
|
|
3319
3355
|
]
|
|
3320
3356
|
}
|
|
3321
3357
|
],
|
|
3322
|
-
lineId: "
|
|
3358
|
+
lineId: "51c9ce3c-be60-4c1e-9054-a90c0a687915"
|
|
3323
3359
|
}
|
|
3324
3360
|
]
|
|
3325
3361
|
},
|
|
3326
3362
|
{
|
|
3327
|
-
id: "
|
|
3363
|
+
id: "5f2c0254-9f62-4ded-bc85-e4d1196f6918",
|
|
3328
3364
|
line: 75,
|
|
3329
3365
|
collumns: [
|
|
3330
3366
|
{
|
|
@@ -3351,13 +3387,14 @@ const lines = [
|
|
|
3351
3387
|
createdAtDateTime: "2025-10-15T19:58:38.981Z",
|
|
3352
3388
|
updatedAtDateTime: "2025-10-15T19:58:38.981Z",
|
|
3353
3389
|
__v: 0,
|
|
3390
|
+
screenPlacement: 1,
|
|
3354
3391
|
answer: "2011-09-22T03:00:00.000Z",
|
|
3355
|
-
lineId: "
|
|
3392
|
+
lineId: "5f2c0254-9f62-4ded-bc85-e4d1196f6918"
|
|
3356
3393
|
}
|
|
3357
3394
|
]
|
|
3358
3395
|
},
|
|
3359
3396
|
{
|
|
3360
|
-
id: "
|
|
3397
|
+
id: "42d0b61d-769b-4d1e-bd25-d7344ca01778",
|
|
3361
3398
|
line: 76,
|
|
3362
3399
|
collumns: [
|
|
3363
3400
|
{
|
|
@@ -3384,13 +3421,14 @@ const lines = [
|
|
|
3384
3421
|
createdAtDateTime: "2025-10-15T19:59:29.284Z",
|
|
3385
3422
|
updatedAtDateTime: "2025-10-15T19:59:29.284Z",
|
|
3386
3423
|
__v: 0,
|
|
3424
|
+
screenPlacement: 1,
|
|
3387
3425
|
answer: "FEMALE",
|
|
3388
|
-
lineId: "
|
|
3426
|
+
lineId: "42d0b61d-769b-4d1e-bd25-d7344ca01778"
|
|
3389
3427
|
}
|
|
3390
3428
|
]
|
|
3391
3429
|
},
|
|
3392
3430
|
{
|
|
3393
|
-
id: "
|
|
3431
|
+
id: "2f681c28-eebf-464f-bd8c-31910b82d5f9",
|
|
3394
3432
|
line: 77,
|
|
3395
3433
|
collumns: [
|
|
3396
3434
|
{
|
|
@@ -3418,13 +3456,14 @@ const lines = [
|
|
|
3418
3456
|
createdAtDateTime: "2025-10-15T20:01:51.754Z",
|
|
3419
3457
|
updatedAtDateTime: "2025-10-15T20:01:51.754Z",
|
|
3420
3458
|
__v: 0,
|
|
3459
|
+
screenPlacement: 1,
|
|
3421
3460
|
answer: 14,
|
|
3422
|
-
lineId: "
|
|
3461
|
+
lineId: "2f681c28-eebf-464f-bd8c-31910b82d5f9"
|
|
3423
3462
|
}
|
|
3424
3463
|
]
|
|
3425
3464
|
},
|
|
3426
3465
|
{
|
|
3427
|
-
id: "
|
|
3466
|
+
id: "ee11b211-090c-4c1f-9232-980e869f8f92",
|
|
3428
3467
|
line: 78,
|
|
3429
3468
|
collumns: [
|
|
3430
3469
|
{
|
|
@@ -3452,8 +3491,43 @@ const lines = [
|
|
|
3452
3491
|
createdAtDateTime: "2025-10-15T20:02:14.980Z",
|
|
3453
3492
|
updatedAtDateTime: "2025-10-15T20:02:14.980Z",
|
|
3454
3493
|
__v: 0,
|
|
3494
|
+
screenPlacement: 1,
|
|
3455
3495
|
answer: 169,
|
|
3456
|
-
lineId: "
|
|
3496
|
+
lineId: "ee11b211-090c-4c1f-9232-980e869f8f92"
|
|
3497
|
+
}
|
|
3498
|
+
]
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
id: "a3133667-bd26-4f8d-b6a0-46ff027bdef1",
|
|
3502
|
+
line: 80,
|
|
3503
|
+
collumns: [
|
|
3504
|
+
{
|
|
3505
|
+
_id: "6913683bbd480d6d34a9bcca",
|
|
3506
|
+
form: "689e029db13c27189bce136d",
|
|
3507
|
+
sequence: 97,
|
|
3508
|
+
code: "FORMULA_POLLOCK_7_DOBRAS",
|
|
3509
|
+
description: "Equação Pollock 7 dobras",
|
|
3510
|
+
line: 80,
|
|
3511
|
+
column: 1,
|
|
3512
|
+
type: "QUESTION",
|
|
3513
|
+
typeAnswer: "OPEN_NUMBER_PERCENT",
|
|
3514
|
+
category: "ANTHROPOMETRY",
|
|
3515
|
+
formulaToAnswer: "(4.95 / ('${PATIENT_GENRE}' === 'FEMALE' ? 1.097 - (0.00046971 * (Number('${DOBRA_ABDOMINAL}') + Number('${DOBRA_AXILAR_MEDIO}') + Number('${DOBRA_COXA}') + Number('${DOBRA_SUBESCAPULAR}') + Number('${DOBRA_SUPRAILIACA}') + Number('${DOBRA_TRICEPTAL}') + Number('${DOBRA_PEITORAL}'))) + (0.00000056 * ((Number('${DOBRA_ABDOMINAL}') + Number('${DOBRA_AXILAR_MEDIO}') + Number('${DOBRA_COXA}') + Number('${DOBRA_SUBESCAPULAR}') + Number('${DOBRA_SUPRAILIACA}') + Number('${DOBRA_TRICEPTAL}') + Number('${DOBRA_PEITORAL}'))**2)) - (0.00012828 * Number('${PATIENT_AGE_IN_YEARS}')) : 1.112 - (0.0004349 * (Number('${DOBRA_ABDOMINAL}') + Number('${DOBRA_AXILAR_MEDIO}') + Number('${DOBRA_COXA}') + Number('${DOBRA_SUBESCAPULAR}') + Number('${DOBRA_SUPRAILIACA}') + Number('${DOBRA_TRICEPTAL}') + Number('${DOBRA_PEITORAL}'))) + (0.00000055 * ((Number('${DOBRA_ABDOMINAL}') + Number('${DOBRA_AXILAR_MEDIO}') + Number('${DOBRA_COXA}') + Number('${DOBRA_SUBESCAPULAR}') + Number('${DOBRA_SUPRAILIACA}') + Number('${DOBRA_TRICEPTAL}') + Number('${DOBRA_PEITORAL}'))**2)) - (0.00028826 * Number('${PATIENT_AGE_IN_YEARS}')))) - 4.5",
|
|
3516
|
+
formulaToEnable: "true",
|
|
3517
|
+
active: true,
|
|
3518
|
+
show: false,
|
|
3519
|
+
readOnly: false,
|
|
3520
|
+
required: false,
|
|
3521
|
+
ellegibleForComparison: false,
|
|
3522
|
+
options: [],
|
|
3523
|
+
validations: [],
|
|
3524
|
+
requestGraphicData: [],
|
|
3525
|
+
tips: [],
|
|
3526
|
+
createdAtDateTime: "2025-11-11T16:45:47.480Z",
|
|
3527
|
+
updatedAtDateTime: "2025-11-11T16:45:47.480Z",
|
|
3528
|
+
__v: 0,
|
|
3529
|
+
answer: 0.17113422122000888,
|
|
3530
|
+
lineId: "a3133667-bd26-4f8d-b6a0-46ff027bdef1"
|
|
3457
3531
|
}
|
|
3458
3532
|
]
|
|
3459
3533
|
}
|