@inseefr/lunatic 0.1.0-hackathon → 0.1.0-v2
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/lib/index.js +1433 -835
- package/lib/index.js.map +1 -1
- package/package.json +11 -8
- package/src/components/breadcrumb/component.js +29 -29
- package/src/components/button/index.js +1 -1
- package/src/components/button/lunatic-button.js +32 -0
- package/src/components/checkbox/checkbox-boolean/index.js +1 -0
- package/src/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +44 -0
- package/src/components/checkbox/checkbox-group/checkbox-group.js +78 -0
- package/src/components/checkbox/checkbox-group/checkbox-option.js +46 -0
- package/src/components/checkbox/checkbox-group/index.js +1 -0
- package/src/components/checkbox/checkbox-group/lunatic-checkbox-group.js +32 -0
- package/src/components/checkbox/checkbox-one/index.js +1 -0
- package/src/components/checkbox/checkbox-one/lunatic-checkbox-one.js +7 -0
- package/src/components/checkbox/checkbox.scss +1 -73
- package/src/components/checkbox/commons/checkbox-option.js +49 -0
- package/src/components/checkbox/commons/index.js +1 -0
- package/src/components/checkbox/index.js +3 -3
- package/src/components/commons/components/field-container/field-container.js +28 -0
- package/src/components/commons/components/field-container/field-container.scss +0 -0
- package/src/components/commons/components/field-container/index.js +1 -0
- package/src/components/commons/components/fieldset.js +12 -0
- package/src/components/commons/components/input-container.js +30 -0
- package/src/components/commons/components/label.js +14 -0
- package/src/components/commons/components/lunatic-field.js +35 -0
- package/src/components/commons/create-customizable-field.js +13 -0
- package/src/components/commons/index.js +9 -0
- package/src/components/commons/use-on-handle-change.js +16 -0
- package/src/components/commons/use-options-keydown.js +22 -0
- package/src/components/commons/use-previous.js +11 -0
- package/src/components/component-wrapper/controls/component.js +70 -0
- package/src/components/component-wrapper/controls/controls.scss +6 -0
- package/src/components/component-wrapper/controls/index.js +1 -0
- package/src/components/component-wrapper/controls/validators/datepicker.js +33 -0
- package/src/components/component-wrapper/controls/validators/index.js +16 -0
- package/src/components/component-wrapper/controls/validators/input-number.js +23 -0
- package/src/components/{missing-wrapper → component-wrapper}/index.js +1 -1
- package/src/components/{missing-wrapper → component-wrapper/missing}/component.js +72 -12
- package/src/components/component-wrapper/missing/index.js +1 -0
- package/src/components/{missing-wrapper → component-wrapper/missing}/missing.scss +0 -0
- package/src/components/component-wrapper/wrapper.js +23 -0
- package/src/components/components.js +22 -18
- package/src/components/datepicker/datepicker.js +25 -0
- package/src/components/datepicker/index.js +1 -1
- package/src/components/datepicker/lunatic-datepicker.js +50 -0
- package/src/components/declarations/declaration.js +11 -0
- package/src/components/declarations/declarations-after-text.js +8 -0
- package/src/components/declarations/declarations-before-text.js +8 -0
- package/src/components/declarations/declarations-detachable.js +8 -0
- package/src/components/declarations/declarations.js +35 -0
- package/src/components/declarations/index.js +4 -1
- package/src/components/declarations/wrappers/input-declarations-wrapper.js +40 -12
- package/src/components/declarations/wrappers/list-declarations-wrapper.js +235 -232
- package/src/components/dropdown/commons/actions.js +40 -31
- package/src/components/dropdown/commons/components/panel.js +78 -78
- package/src/components/dropdown/commons/reducer.js +152 -149
- package/src/components/dropdown/component.js +121 -115
- package/src/components/dropdown/dropdown-edit/dropdown-edit.js +6 -0
- package/src/components/dropdown/dropdown-simple/dropdown.js +8 -1
- package/src/components/filter-description/component.js +48 -42
- package/src/components/icon/component.js +31 -33
- package/src/components/index.scss +5 -3
- package/src/components/input/index.js +1 -2
- package/src/components/input/input.js +45 -9
- package/src/components/input/input.scss +0 -6
- package/src/components/input/lunatic-input.js +53 -0
- package/src/components/input-number/index.js +1 -0
- package/src/components/input-number/input-number.js +38 -0
- package/src/components/input-number/input-number.scss +0 -0
- package/src/components/input-number/lunatic-input-number.js +50 -0
- package/src/components/loop/{component.js → _old/component.js} +1 -0
- package/src/components/loop/{loop.scss → _old/loop.scss} +0 -0
- package/src/components/loop/{wrapper.js → _old/wrapper.js} +15 -15
- package/src/components/loop/block-for-loop/block-for-loop-ochestrator.js +6 -0
- package/src/components/loop/block-for-loop/block-for-loop.js +91 -0
- package/src/components/loop/block-for-loop/index.js +1 -0
- package/src/components/loop/block-for-loop/row.js +52 -0
- package/src/components/loop/commons/create-loop-orchestrator.js +36 -0
- package/src/components/loop/commons/index.js +2 -0
- package/src/components/loop/commons/row-component.js +52 -0
- package/src/components/loop/index.js +1 -1
- package/src/components/loop/loop.js +78 -0
- package/src/components/loop/roster-for-loop/add-row-button.js +12 -0
- package/src/components/loop/roster-for-loop/body.js +44 -0
- package/src/components/loop/roster-for-loop/header.js +25 -0
- package/src/components/loop/roster-for-loop/html-table/table.js +11 -0
- package/src/components/loop/roster-for-loop/html-table/tbody.js +11 -0
- package/src/components/loop/roster-for-loop/html-table/td.js +14 -0
- package/src/components/loop/roster-for-loop/html-table/th.js +11 -0
- package/src/components/loop/roster-for-loop/html-table/thead.js +11 -0
- package/src/components/loop/roster-for-loop/html-table/tr.js +11 -0
- package/src/components/loop/roster-for-loop/index.js +1 -0
- package/src/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +6 -0
- package/src/components/loop/roster-for-loop/roster-for-loop.js +90 -0
- package/src/components/loop/roster-for-loop/roster-table.js +39 -0
- package/src/components/loop/roster-for-loop/roster.scss +42 -0
- package/src/components/loop/roster-for-loop/row.js +65 -0
- package/src/components/loop-constructor/block/component.js +2 -2
- package/src/components/loop-constructor/block/index.js +1 -1
- package/src/components/loop-constructor/index.js +1 -1
- package/src/components/loop-constructor/roster/component.js +2 -2
- package/src/components/loop-constructor/roster/index.js +1 -1
- package/src/components/loop-constructor/wrapper/body-component.js +6 -0
- package/src/components/loop-constructor/wrapper/build-components.js +33 -33
- package/src/components/loop-constructor/wrapper/index.js +1 -1
- package/src/components/modal/component.js +42 -0
- package/src/components/modal/index.js +1 -0
- package/src/components/modal/modal.scss +33 -0
- package/src/components/radio/index.js +1 -1
- package/src/components/radio/lunatic-radio-group.js +45 -0
- package/src/components/radio/radio-group.js +33 -0
- package/src/components/radio/radio-option.js +87 -0
- package/src/components/radio/radio.scss +52 -52
- package/src/components/sequence/index.js +1 -1
- package/src/components/sequence/sequence.js +75 -0
- package/src/components/subsequence/index.js +1 -1
- package/src/components/subsequence/subsequence.js +73 -0
- package/src/components/suggester/check-store.js +70 -70
- package/src/components/suggester/components/panel/option-container.js +11 -10
- package/src/components/suggester/components/panel/panel.js +20 -6
- package/src/components/suggester/components/selection/label.js +7 -6
- package/src/components/suggester/components/selection/selection.js +36 -11
- package/src/components/suggester/components/suggester-content.js +35 -42
- package/src/components/suggester/components/suggester.js +45 -26
- package/src/components/suggester/{components/create-on-keydown-callback.js → create-on-keydown-callback.js} +28 -28
- package/src/components/suggester/find-best-label/find-best-label.js +3 -1
- package/src/components/suggester/idb-suggester.js +2 -1
- package/src/components/suggester/lunatic-suggester.js +48 -96
- package/src/components/suggester/searching/create-searching.js +3 -1
- package/src/components/suggester/suggester-wrapper.js +75 -9
- package/src/components/switch/index.js +1 -0
- package/src/components/switch/lunatic-switch.js +49 -0
- package/src/components/switch/switch.js +72 -0
- package/src/components/switch/switch.scss +47 -0
- package/src/components/table/table.js +164 -158
- package/src/components/textarea/component.js +11 -5
- package/src/components/tooltip/response.js +58 -52
- package/src/stories/checkbox-boolean/data-forced.json +48 -48
- package/src/stories/checkbox-group/data-vtl.json +102 -102
- package/src/stories/cleaning/cleaning.stories.js +39 -0
- package/src/stories/cleaning/simple-loop.json +911 -0
- package/src/stories/cleaning/simpsons.json +5839 -0
- package/src/stories/datepicker/data.json +45 -43
- package/src/stories/declarations/declarations.stories.js +20 -13
- package/src/stories/icons/icons.stories.js +24 -16
- package/src/stories/loop-constructor/README.md +27 -27
- package/src/stories/loop-constructor/data-input-forced.json +64 -64
- package/src/stories/loop-constructor/data-input.json +100 -100
- package/src/stories/loop-constructor/data-loop-forced.json +66 -66
- package/src/stories/loop-constructor/data-loop-static-forced.json +66 -66
- package/src/stories/loop-constructor/data-loop-static.json +81 -81
- package/src/stories/loop-constructor/data-loop.json +81 -81
- package/src/stories/loop-constructor/data-roster-forced.json +68 -68
- package/src/stories/loop-constructor/data-roster.json +83 -83
- package/src/stories/loop-constructor/loop-constructor.stories.js +180 -180
- package/src/stories/questionnaire/logement-queen.json +23234 -0
- package/src/stories/questionnaire/logement.json +22068 -26812
- package/src/stories/questionnaire/questionnaire.stories.js +86 -29
- package/src/stories/questionnaire/update-external/data.json +1 -0
- package/src/stories/questionnaire/update-external/questionnaire.json +75 -0
- package/src/stories/suggester/bailleurs-sociaux-2021/fetch-bailleurs.js +12 -0
- package/src/stories/suggester/bailleurs-sociaux-2021/index.js +1 -0
- package/src/stories/suggester/data-auto.json +1 -0
- package/src/stories/suggester/data.json +35 -2
- package/src/stories/suggester/lunatic-suggester-mui.scss +27 -0
- package/src/stories/suggester/suggester-material-ui.js +148 -0
- package/src/stories/suggester/suggester-workers.stories.js +48 -1
- package/src/stories/suggester/suggester.stories.js +27 -1
- package/src/stories/switch/README.md +31 -0
- package/src/stories/switch/SwitchMaterialUI.js +35 -0
- package/src/stories/switch/data-forced.json +48 -0
- package/src/stories/switch/data.json +80 -0
- package/src/stories/switch/switch.stories.js +78 -0
- package/src/stories/utils/custom-lunatic.scss +28 -23
- package/src/stories/utils/orchestrator.js +151 -58
- package/src/stories/utils/waiting/index.js +1 -0
- package/src/stories/utils/waiting/preloader.svg +1 -0
- package/src/stories/utils/waiting/waiting.js +21 -0
- package/src/stories/utils/waiting/waiting.scss +21 -0
- package/src/tests/sample.spec.js +5 -0
- package/src/utils/icons/checkbox-checked.icon.js +25 -0
- package/src/utils/icons/checkbox-unchecked.icon.js +25 -0
- package/src/utils/icons/radio-checked.icon.js +25 -0
- package/src/utils/icons/radio-unchecked.icon.js +25 -0
- package/src/utils/lib/controls/index.js +1 -0
- package/src/utils/lib/controls/utils.js +146 -0
- package/src/utils/lib/index.js +20 -19
- package/src/utils/lib/pagination/navigation/shared.js +7 -4
- package/src/utils/lib/responses.js +9 -7
- package/src/utils/lib/tooltip/build-response.js +53 -41
- package/src/utils/store-tools/auto-load.js +2 -1
- package/src/utils/store-tools/create/index.js +2 -1
- package/src/utils/store-tools/create/update-store-info.js +26 -26
- package/src/utils/store-tools/index.js +7 -5
- package/src/utils/suggester-workers/append-to-index/create-append-task.js +3 -1
- package/src/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +56 -0
- package/src/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +56 -0
- package/src/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +11 -11
- package/src/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +10 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +17 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +14 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +12 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +12 -0
- package/src/utils/suggester-workers/commons-tokenizer/{filter-double.js → filters/filter-double.js} +0 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +20 -0
- package/src/utils/suggester-workers/commons-tokenizer/{filter-length.js → filters/filter-length.js} +0 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +18 -0
- package/src/utils/suggester-workers/commons-tokenizer/{filter-stemmer.js → filters/filter-stemmer.js} +2 -2
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +12 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +36 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +12 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +10 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +12 -0
- package/src/utils/suggester-workers/commons-tokenizer/filters/index.js +2 -0
- package/src/utils/suggester-workers/commons-tokenizer/{stop-words.js → filters/stop-words.js} +0 -0
- package/src/utils/suggester-workers/commons-tokenizer/index.js +6 -5
- package/src/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +7 -3
- package/src/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +1 -1
- package/src/utils/suggester-workers/create-worker.js +55 -0
- package/src/utils/suggester-workers/find-best-label/tokenize.js +2 -5
- package/src/utils/suggester-workers/{query-parser → searching/query-parser}/index.js +0 -0
- package/src/utils/suggester-workers/searching/query-parser/query-parser-soft.js +7 -0
- package/src/utils/suggester-workers/{query-parser → searching/query-parser}/query-parser-soft.spec.js +0 -0
- package/src/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +34 -0
- package/src/utils/suggester-workers/searching/resolve-query-parser.js +2 -2
- package/src/utils/suggester-workers/searching/searching.js +2 -2
- package/src/utils/to-expose/{calculated-variables.js → _old/calculated-variables.js} +0 -0
- package/src/utils/to-expose/{handler.js → _old/handler.js} +22 -0
- package/src/utils/to-expose/{init-questionnaire.js → _old/init-questionnaire.js} +0 -0
- package/src/utils/to-expose/{state.js → _old/state.js} +13 -14
- package/src/utils/to-expose/hooks/filter-components.js +106 -106
- package/src/utils/to-expose/hooks/index.js +1 -1
- package/src/utils/to-expose/hooks/lunatic.js +68 -7
- package/src/utils/to-expose/hooks/use-lunatic/actions.js +23 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/check-loops.js +61 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/create-map-pages.js +69 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/execute-condition-filter.js +16 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/execute-expression/create-execute-expression.js +182 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/execute-expression/create-memoizer.js +42 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/execute-expression/create-refresh-calculated.js +50 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/execute-expression/execute-expression.js +60 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/execute-expression/get-expressions-variables.js +22 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/execute-expression/index.js +1 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/fill-component-expressions.js +113 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/fill-components.js +31 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/get-compatible-vtl-expression.js +14 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/get-component-value/get-component-value.js +161 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/get-component-value/index.js +1 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/get-components-from-state.js +24 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/get-page-tag.js +10 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/index.js +12 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/is-First-last-page.js +8 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/is-paginated-loop.js +6 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/load-suggesters.js +59 -0
- package/src/utils/to-expose/hooks/use-lunatic/commons/use-components-from-state.js +20 -0
- package/src/utils/to-expose/hooks/use-lunatic/index.js +1 -0
- package/src/utils/to-expose/hooks/use-lunatic/initial-state.js +22 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/commons/index.js +3 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/commons/is-empty-on-empty-page.js +29 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/commons/resize-array-variable.js +26 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/commons/validate-loop-condition-filter.js +20 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/index.js +1 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-go-next-page.js +129 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-go-previous-page.js +131 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-handle-change/index.js +1 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +69 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.js +22 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +13 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-on-init.js +166 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reduce-on-set-waiting.js +7 -0
- package/src/utils/to-expose/hooks/use-lunatic/reducer/reducer.js +26 -0
- package/src/utils/to-expose/hooks/use-lunatic/use-lunatic.js +79 -0
- package/src/utils/to-expose/index.js +16 -11
- package/src/components/button/component.js +0 -53
- package/src/components/checkbox/boolean.js +0 -172
- package/src/components/checkbox/group.js +0 -231
- package/src/components/checkbox/one.js +0 -11
- package/src/components/datepicker/component.js +0 -11
- package/src/components/input/input-number.js +0 -54
- package/src/components/missing-wrapper/wrapper.js +0 -10
- package/src/components/radio/component.js +0 -9
- package/src/components/sequence/component.js +0 -50
- package/src/components/subsequence/component.js +0 -49
- package/src/tests/components/breadcrumb.spec.js +0 -13
- package/src/tests/components/button.spec.js +0 -11
- package/src/tests/components/checkbox-boolean.spec.js +0 -45
- package/src/tests/components/checkbox-group.spec.js +0 -53
- package/src/tests/components/checkbox-one.spec.js +0 -32
- package/src/tests/components/datepicker.spec.js +0 -22
- package/src/tests/components/declarations-wrappers/input-declarations-wrapper.spec.js +0 -67
- package/src/tests/components/declarations-wrappers/list-declarations-wrapper.spec.js +0 -52
- package/src/tests/components/declarations-wrappers/simple-declarations-wrapper.spec.js +0 -21
- package/src/tests/components/declarations.spec.js +0 -46
- package/src/tests/components/input-number.spec.js +0 -194
- package/src/tests/components/input.spec.js +0 -18
- package/src/tests/components/loops/loop-static.json +0 -66
- package/src/tests/components/loops/loop.json +0 -258
- package/src/tests/components/loops/loop.spec.js +0 -30
- package/src/tests/components/loops/roster-for-loop.spec.js +0 -18
- package/src/tests/components/loops/roster-loop.json +0 -71
- package/src/tests/components/missing-wrapper.spec.js +0 -33
- package/src/tests/components/progress-bar.spec.js +0 -15
- package/src/tests/components/radio.spec.js +0 -27
- package/src/tests/components/sequence.spec.js +0 -9
- package/src/tests/components/subsequence.spec.js +0 -9
- package/src/tests/components/table.spec.js +0 -11
- package/src/tests/components/textarea.spec.js +0 -18
- package/src/tests/components/tooltip.spec.js +0 -25
- package/src/tests/setup/setupTests.js +0 -4
- package/src/tests/utils/lib/alphabet.spec.js +0 -36
- package/src/tests/utils/lib/array.spec.js +0 -22
- package/src/tests/utils/lib/checkbox/group.spec.js +0 -72
- package/src/tests/utils/lib/decorator/title-decorator.spec.js +0 -12
- package/src/tests/utils/lib/input-number.spec.js +0 -18
- package/src/tests/utils/lib/items-positioning.spec.js +0 -17
- package/src/tests/utils/lib/label-position.spec.js +0 -22
- package/src/tests/utils/lib/loops/bindings.spec.js +0 -75
- package/src/tests/utils/lib/loops/shared.spec.js +0 -82
- package/src/tests/utils/lib/missing/missing.spec.js +0 -74
- package/src/tests/utils/lib/missing/mock.js +0 -137
- package/src/tests/utils/lib/pagination/shared.spec.js +0 -42
- package/src/tests/utils/lib/responses.spec.js +0 -64
- package/src/tests/utils/lib/style.spec.js +0 -26
- package/src/tests/utils/lib/table/roster.spec.js +0 -25
- package/src/tests/utils/lib/tooltip/build-response.spec.js +0 -95
- package/src/tests/utils/lib/tooltip/content.spec.js +0 -109
- package/src/tests/utils/to-expose/handler/handler.spec.js +0 -94
- package/src/tests/utils/to-expose/handler/questionnaire.json +0 -158
- package/src/tests/utils/to-expose/handler/results/index.js +0 -6
- package/src/tests/utils/to-expose/handler/results/res-double.json +0 -158
- package/src/tests/utils/to-expose/handler/results/res-input-collected.json +0 -158
- package/src/tests/utils/to-expose/handler/results/res-input-edited.json +0 -158
- package/src/tests/utils/to-expose/handler/results/res-loop.json +0 -158
- package/src/tests/utils/to-expose/handler/results/res-matrix.json +0 -158
- package/src/tests/utils/to-expose/handler/results/res-responses.json +0 -158
- package/src/tests/utils/to-expose/hooks/use-lunatic.spec.js +0 -46
- package/src/tests/utils/to-expose/init-questionnaire/data.json +0 -12
- package/src/tests/utils/to-expose/init-questionnaire/init-questionnaire.spec.js +0 -19
- package/src/tests/utils/to-expose/init-questionnaire/questionnaire.json +0 -148
- package/src/tests/utils/to-expose/init-questionnaire/result.json +0 -181
- package/src/tests/utils/to-expose/interpret/interpret.spec.js +0 -48
- package/src/tests/utils/to-expose/state/questionnaire.json +0 -61
- package/src/tests/utils/to-expose/state/results.js +0 -78
- package/src/tests/utils/to-expose/state/state.spec.js +0 -59
- package/src/utils/suggester-workers/commons-tokenizer/create-tokenizer.js +0 -103
- package/src/utils/suggester-workers/commons-tokenizer/filter-accents-to-lower.js +0 -9
- package/src/utils/suggester-workers/commons-tokenizer/filter-synonyms.js +0 -10
- package/src/utils/suggester-workers/query-parser/query-parser-soft.js +0 -7
- package/src/utils/suggester-workers/query-parser/query-parser-tokenized.js +0 -31
- package/src/utils/suggester-workers/query-parser/query-parser-tokenized.spec.js +0 -32
|
@@ -0,0 +1,911 @@
|
|
|
1
|
+
|
|
2
|
+
{ "id" : "kzwrnj4u",
|
|
3
|
+
"modele" : "QBOUCLSOUS",
|
|
4
|
+
"enoCoreVersion" : "2.3.7",
|
|
5
|
+
"lunaticModelVersion" : "2.2.11",
|
|
6
|
+
"generatingDate" : "11-03-2022 16:19:47",
|
|
7
|
+
"missing" : false,
|
|
8
|
+
"pagination" : "question",
|
|
9
|
+
"maxPage" : "11",
|
|
10
|
+
"label" :
|
|
11
|
+
{ "value" : "QREC BOUCLE Sous-séquence - occ filtrée - boucle sur tableau - VTL - controles ko, reste ok",
|
|
12
|
+
"type" : "VTL|MD" },
|
|
13
|
+
"components" :
|
|
14
|
+
[
|
|
15
|
+
{ "id" : "kewhlkb9",
|
|
16
|
+
"componentType" : "Sequence",
|
|
17
|
+
"page" : "1",
|
|
18
|
+
"label" :
|
|
19
|
+
{ "value" : "\"I - \" || \"Premiere séquence - indépendante - on liste les individus\"",
|
|
20
|
+
"type" : "VTL|MD" },
|
|
21
|
+
"declarations" :
|
|
22
|
+
[
|
|
23
|
+
{ "id" : "kewhlkb9-kewh49to",
|
|
24
|
+
"declarationType" : "INSTRUCTION",
|
|
25
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
26
|
+
"label" :
|
|
27
|
+
{ "value" : "Module hors boucles",
|
|
28
|
+
"type" : "VTL|MD" } } ],
|
|
29
|
+
"conditionFilter" :
|
|
30
|
+
{ "value" : "true" },
|
|
31
|
+
"hierarchy" :
|
|
32
|
+
{ "sequence" :
|
|
33
|
+
{ "id" : "kewhlkb9",
|
|
34
|
+
"page" : "1",
|
|
35
|
+
"label" :
|
|
36
|
+
{ "value" : "\"I - \" || \"Premiere séquence - indépendante - on liste les individus\"",
|
|
37
|
+
"type" : "VTL|MD" } } } },
|
|
38
|
+
|
|
39
|
+
{ "id" : "kewhggmx",
|
|
40
|
+
"componentType" : "RosterForLoop",
|
|
41
|
+
"mandatory" : false,
|
|
42
|
+
"page" : "2",
|
|
43
|
+
"positioning" : "HORIZONTAL",
|
|
44
|
+
"label" :
|
|
45
|
+
{ "value" : "\"➡ 1. \" || \"Faites la liste des individus et mettre au moins un homme de plus de 75 ans pour avoir un filtre en dernière séquence\"",
|
|
46
|
+
"type" : "VTL|MD" },
|
|
47
|
+
"conditionFilter" :
|
|
48
|
+
{ "value" : "true" },
|
|
49
|
+
"hierarchy" :
|
|
50
|
+
{ "sequence" :
|
|
51
|
+
{ "id" : "kewhlkb9",
|
|
52
|
+
"page" : "1",
|
|
53
|
+
"label" :
|
|
54
|
+
{ "value" : "\"I - \" || \"Premiere séquence - indépendante - on liste les individus\"",
|
|
55
|
+
"type" : "VTL|MD" } } },
|
|
56
|
+
"bindingDependencies" :
|
|
57
|
+
[ "EXISTINDIV1",
|
|
58
|
+
"EXISTINDIV2",
|
|
59
|
+
"EXISTINDIV3" ],
|
|
60
|
+
"lines" :
|
|
61
|
+
{ "min" : 1,
|
|
62
|
+
"max" : 10 },
|
|
63
|
+
"headers" :
|
|
64
|
+
[
|
|
65
|
+
{ "headerCell" : true,
|
|
66
|
+
"label" :
|
|
67
|
+
{ "value" : "Prenom de moins de 40 caractères",
|
|
68
|
+
"type" : "VTL|MD" } },
|
|
69
|
+
|
|
70
|
+
{ "headerCell" : true,
|
|
71
|
+
"label" :
|
|
72
|
+
{ "value" : "Age",
|
|
73
|
+
"type" : "VTL|MD" } },
|
|
74
|
+
|
|
75
|
+
{ "headerCell" : true,
|
|
76
|
+
"label" :
|
|
77
|
+
{ "value" : "Sexe",
|
|
78
|
+
"type" : "VTL|MD" } } ],
|
|
79
|
+
"components" :
|
|
80
|
+
[
|
|
81
|
+
{ "componentType" : "Input",
|
|
82
|
+
"maxLength" : 40,
|
|
83
|
+
"id" : "kewhggmx-QOP-khkgvp14",
|
|
84
|
+
"response" :
|
|
85
|
+
{ "name" : "EXISTINDIV1" },
|
|
86
|
+
"bindingDependencies" :
|
|
87
|
+
[ "EXISTINDIV1" ] },
|
|
88
|
+
|
|
89
|
+
{ "componentType" : "InputNumber",
|
|
90
|
+
"min" : 5,
|
|
91
|
+
"max" : 90,
|
|
92
|
+
"decimals" : 0,
|
|
93
|
+
"id" : "kewhggmx-QOP-khkgqcc4",
|
|
94
|
+
"response" :
|
|
95
|
+
{ "name" : "EXISTINDIV2" },
|
|
96
|
+
"bindingDependencies" :
|
|
97
|
+
[ "EXISTINDIV2" ] },
|
|
98
|
+
|
|
99
|
+
{ "componentType" : "CheckboxOne",
|
|
100
|
+
"id" : "kewhggmx-QOP-khkgwi0p",
|
|
101
|
+
"options" :
|
|
102
|
+
[
|
|
103
|
+
{ "value" : "1",
|
|
104
|
+
"label" :
|
|
105
|
+
{ "value" : "homme",
|
|
106
|
+
"type" : "VTL|MD" } },
|
|
107
|
+
|
|
108
|
+
{ "value" : "2",
|
|
109
|
+
"label" :
|
|
110
|
+
{ "value" : "femme",
|
|
111
|
+
"type" : "VTL|MD" } } ],
|
|
112
|
+
"response" :
|
|
113
|
+
{ "name" : "EXISTINDIV3" },
|
|
114
|
+
"bindingDependencies" :
|
|
115
|
+
[ "EXISTINDIV3" ] } ] },
|
|
116
|
+
|
|
117
|
+
{ "id" : "key1u56w",
|
|
118
|
+
"componentType" : "Sequence",
|
|
119
|
+
"page" : "6",
|
|
120
|
+
"label" :
|
|
121
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
122
|
+
"type" : "VTL|MD" },
|
|
123
|
+
"conditionFilter" :
|
|
124
|
+
{ "value" : "true" },
|
|
125
|
+
"hierarchy" :
|
|
126
|
+
{ "sequence" :
|
|
127
|
+
{ "id" : "key1u56w",
|
|
128
|
+
"page" : "6",
|
|
129
|
+
"label" :
|
|
130
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
131
|
+
"type" : "VTL|MD" } } } },
|
|
132
|
+
|
|
133
|
+
{ "id" : "kfmn7uc5",
|
|
134
|
+
"componentType" : "Loop",
|
|
135
|
+
"page" : "7",
|
|
136
|
+
"maxPage" : "9",
|
|
137
|
+
"iterations" : "count(EXISTINDIV1)",
|
|
138
|
+
"depth" : 1,
|
|
139
|
+
"paginatedLoop" : true,
|
|
140
|
+
"conditionFilter" :
|
|
141
|
+
{ "value" : "true" },
|
|
142
|
+
"hierarchy" :
|
|
143
|
+
{ "sequence" :
|
|
144
|
+
{ "id" : "key1u56w",
|
|
145
|
+
"page" : "6",
|
|
146
|
+
"label" :
|
|
147
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
148
|
+
"type" : "VTL|MD" } } },
|
|
149
|
+
"bindingDependencies" :
|
|
150
|
+
[ "EXISTINDIV1",
|
|
151
|
+
"EXISTINDIV2",
|
|
152
|
+
"Q3INTRA",
|
|
153
|
+
"Q5INTRA",
|
|
154
|
+
"Q6INTRA",
|
|
155
|
+
"Q4INTRA",
|
|
156
|
+
"Q1INTRA",
|
|
157
|
+
"Q2INTRA",
|
|
158
|
+
"Q7INTRA1",
|
|
159
|
+
"Q7INTRA2",
|
|
160
|
+
"Q7INTRA3",
|
|
161
|
+
"Q8INTRA" ],
|
|
162
|
+
"loopDependencies" :
|
|
163
|
+
[ "EXISTINDIV1",
|
|
164
|
+
"EXISTINDIV2",
|
|
165
|
+
"EXISTINDIV3" ],
|
|
166
|
+
"components" :
|
|
167
|
+
[
|
|
168
|
+
{ "id" : "kewnbex8",
|
|
169
|
+
"componentType" : "Subsequence",
|
|
170
|
+
"page" : "7.1",
|
|
171
|
+
"goToPage" : "7.1",
|
|
172
|
+
"label" :
|
|
173
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
174
|
+
"type" : "VTL|MD" },
|
|
175
|
+
"declarations" :
|
|
176
|
+
[
|
|
177
|
+
{ "id" : "kewnbex8-kzwrbtpy",
|
|
178
|
+
"declarationType" : "HELP",
|
|
179
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
180
|
+
"label" :
|
|
181
|
+
{ "value" : "declaration pour forcer affichage sous sequence",
|
|
182
|
+
"type" : "VTL|MD" } } ],
|
|
183
|
+
"conditionFilter" :
|
|
184
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
185
|
+
"bindingDependencies" :
|
|
186
|
+
[ "EXISTINDIV2" ] },
|
|
187
|
+
"hierarchy" :
|
|
188
|
+
{ "sequence" :
|
|
189
|
+
{ "id" : "key1u56w",
|
|
190
|
+
"page" : "6",
|
|
191
|
+
"label" :
|
|
192
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
193
|
+
"type" : "VTL|MD" } },
|
|
194
|
+
"subSequence" :
|
|
195
|
+
{ "id" : "kewnbex8",
|
|
196
|
+
"page" : "7.1",
|
|
197
|
+
"label" :
|
|
198
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
199
|
+
"type" : "VTL|MD" } } },
|
|
200
|
+
"bindingDependencies" :
|
|
201
|
+
[ "EXISTINDIV1",
|
|
202
|
+
"EXISTINDIV2",
|
|
203
|
+
"EXISTINDIV3" ] },
|
|
204
|
+
|
|
205
|
+
{ "id" : "kewi0001",
|
|
206
|
+
"componentType" : "InputNumber",
|
|
207
|
+
"mandatory" : true,
|
|
208
|
+
"page" : "7.2",
|
|
209
|
+
"min" : 0,
|
|
210
|
+
"max" : 10,
|
|
211
|
+
"decimals" : 0,
|
|
212
|
+
"label" :
|
|
213
|
+
{ "value" : "\"➡ 2. \" || \"Q1Intra - saisie d’une donnée entre 0 et 10\"",
|
|
214
|
+
"type" : "VTL|MD" },
|
|
215
|
+
"conditionFilter" :
|
|
216
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
217
|
+
"bindingDependencies" :
|
|
218
|
+
[ "EXISTINDIV2" ] },
|
|
219
|
+
"hierarchy" :
|
|
220
|
+
{ "sequence" :
|
|
221
|
+
{ "id" : "key1u56w",
|
|
222
|
+
"page" : "6",
|
|
223
|
+
"label" :
|
|
224
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
225
|
+
"type" : "VTL|MD" } },
|
|
226
|
+
"subSequence" :
|
|
227
|
+
{ "id" : "kewnbex8",
|
|
228
|
+
"page" : "7.1",
|
|
229
|
+
"label" :
|
|
230
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
231
|
+
"type" : "VTL|MD" } } },
|
|
232
|
+
"bindingDependencies" :
|
|
233
|
+
[ "Q1INTRA",
|
|
234
|
+
"EXISTINDIV1",
|
|
235
|
+
"EXISTINDIV2",
|
|
236
|
+
"EXISTINDIV3" ],
|
|
237
|
+
"response" :
|
|
238
|
+
{ "name" : "Q1INTRA" } },
|
|
239
|
+
|
|
240
|
+
{ "id" : "kewj66rp",
|
|
241
|
+
"componentType" : "Input",
|
|
242
|
+
"mandatory" : true,
|
|
243
|
+
"page" : "7.3",
|
|
244
|
+
"maxLength" : 10,
|
|
245
|
+
"label" :
|
|
246
|
+
{ "value" : "\"➡ 3. \" || \"Q2Intra - texte libre moins de 10\"",
|
|
247
|
+
"type" : "VTL|MD" },
|
|
248
|
+
"conditionFilter" :
|
|
249
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
250
|
+
"bindingDependencies" :
|
|
251
|
+
[ "EXISTINDIV2" ] },
|
|
252
|
+
"hierarchy" :
|
|
253
|
+
{ "sequence" :
|
|
254
|
+
{ "id" : "key1u56w",
|
|
255
|
+
"page" : "6",
|
|
256
|
+
"label" :
|
|
257
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
258
|
+
"type" : "VTL|MD" } },
|
|
259
|
+
"subSequence" :
|
|
260
|
+
{ "id" : "kewnbex8",
|
|
261
|
+
"page" : "7.1",
|
|
262
|
+
"label" :
|
|
263
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
264
|
+
"type" : "VTL|MD" } } },
|
|
265
|
+
"bindingDependencies" :
|
|
266
|
+
[ "Q2INTRA",
|
|
267
|
+
"EXISTINDIV1",
|
|
268
|
+
"EXISTINDIV2",
|
|
269
|
+
"EXISTINDIV3" ],
|
|
270
|
+
"response" :
|
|
271
|
+
{ "name" : "Q2INTRA" } },
|
|
272
|
+
|
|
273
|
+
{ "id" : "kewhtaud",
|
|
274
|
+
"componentType" : "Input",
|
|
275
|
+
"mandatory" : true,
|
|
276
|
+
"page" : "7.4",
|
|
277
|
+
"maxLength" : 1,
|
|
278
|
+
"label" :
|
|
279
|
+
{ "value" : "\"➡ 4. \" || \"Q3Intra - test sur la valeur saisie (=\"A\")\"",
|
|
280
|
+
"type" : "VTL|MD" },
|
|
281
|
+
"conditionFilter" :
|
|
282
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
283
|
+
"bindingDependencies" :
|
|
284
|
+
[ "EXISTINDIV2" ] },
|
|
285
|
+
"controls" :
|
|
286
|
+
[
|
|
287
|
+
{ "id" : "kewhtaud-CI-0",
|
|
288
|
+
"criticality" : "WARN",
|
|
289
|
+
"control" : "not(Q3INTRA != \"A\")",
|
|
290
|
+
"errorMessage" : "Question Q3 - Valeur différente de A",
|
|
291
|
+
"bindingDependencies" :
|
|
292
|
+
[ "Q3INTRA" ] } ],
|
|
293
|
+
"hierarchy" :
|
|
294
|
+
{ "sequence" :
|
|
295
|
+
{ "id" : "key1u56w",
|
|
296
|
+
"page" : "6",
|
|
297
|
+
"label" :
|
|
298
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
299
|
+
"type" : "VTL|MD" } },
|
|
300
|
+
"subSequence" :
|
|
301
|
+
{ "id" : "kewnbex8",
|
|
302
|
+
"page" : "7.1",
|
|
303
|
+
"label" :
|
|
304
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
305
|
+
"type" : "VTL|MD" } } },
|
|
306
|
+
"bindingDependencies" :
|
|
307
|
+
[ "Q3INTRA",
|
|
308
|
+
"EXISTINDIV1",
|
|
309
|
+
"EXISTINDIV2",
|
|
310
|
+
"EXISTINDIV3" ],
|
|
311
|
+
"response" :
|
|
312
|
+
{ "name" : "Q3INTRA" } },
|
|
313
|
+
|
|
314
|
+
{ "id" : "kewhvqll",
|
|
315
|
+
"componentType" : "CheckboxOne",
|
|
316
|
+
"mandatory" : false,
|
|
317
|
+
"page" : "7.5",
|
|
318
|
+
"label" :
|
|
319
|
+
{ "value" : "\"➡ 5. \" || \"Q4Intra - QCU - rappelons le nom de \" || EXISTINDIV1",
|
|
320
|
+
"type" : "VTL|MD" },
|
|
321
|
+
"conditionFilter" :
|
|
322
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
323
|
+
"bindingDependencies" :
|
|
324
|
+
[ "EXISTINDIV2" ] },
|
|
325
|
+
"hierarchy" :
|
|
326
|
+
{ "sequence" :
|
|
327
|
+
{ "id" : "key1u56w",
|
|
328
|
+
"page" : "6",
|
|
329
|
+
"label" :
|
|
330
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
331
|
+
"type" : "VTL|MD" } },
|
|
332
|
+
"subSequence" :
|
|
333
|
+
{ "id" : "kewnbex8",
|
|
334
|
+
"page" : "7.1",
|
|
335
|
+
"label" :
|
|
336
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
337
|
+
"type" : "VTL|MD" } } },
|
|
338
|
+
"bindingDependencies" :
|
|
339
|
+
[ "EXISTINDIV1",
|
|
340
|
+
"Q4INTRA",
|
|
341
|
+
"EXISTINDIV2",
|
|
342
|
+
"EXISTINDIV3" ],
|
|
343
|
+
"options" :
|
|
344
|
+
[
|
|
345
|
+
{ "value" : "1",
|
|
346
|
+
"label" :
|
|
347
|
+
{ "value" : "Oui",
|
|
348
|
+
"type" : "VTL|MD" } },
|
|
349
|
+
|
|
350
|
+
{ "value" : "2",
|
|
351
|
+
"label" :
|
|
352
|
+
{ "value" : "Non",
|
|
353
|
+
"type" : "VTL|MD" } } ],
|
|
354
|
+
"response" :
|
|
355
|
+
{ "name" : "Q4INTRA" } },
|
|
356
|
+
|
|
357
|
+
{ "id" : "kewi6sgq",
|
|
358
|
+
"componentType" : "InputNumber",
|
|
359
|
+
"mandatory" : false,
|
|
360
|
+
"page" : "7.6",
|
|
361
|
+
"min" : 0,
|
|
362
|
+
"max" : 20,
|
|
363
|
+
"decimals" : 0,
|
|
364
|
+
"label" :
|
|
365
|
+
{ "value" : "\"➡ 6. \" || \"Q5Intra - question avec controle numérique (donnée entre 0 et 20, controle si différent de 5)\"",
|
|
366
|
+
"type" : "VTL|MD" },
|
|
367
|
+
"conditionFilter" :
|
|
368
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
369
|
+
"bindingDependencies" :
|
|
370
|
+
[ "EXISTINDIV2" ] },
|
|
371
|
+
"controls" :
|
|
372
|
+
[
|
|
373
|
+
{ "id" : "kewi6sgq-CI-0",
|
|
374
|
+
"criticality" : "WARN",
|
|
375
|
+
"control" : "not(cast(Q5INTRA,integer) = 5)",
|
|
376
|
+
"errorMessage" : "valeur différente de 5",
|
|
377
|
+
"bindingDependencies" :
|
|
378
|
+
[ "Q5INTRA" ] } ],
|
|
379
|
+
"hierarchy" :
|
|
380
|
+
{ "sequence" :
|
|
381
|
+
{ "id" : "key1u56w",
|
|
382
|
+
"page" : "6",
|
|
383
|
+
"label" :
|
|
384
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
385
|
+
"type" : "VTL|MD" } },
|
|
386
|
+
"subSequence" :
|
|
387
|
+
{ "id" : "kewnbex8",
|
|
388
|
+
"page" : "7.1",
|
|
389
|
+
"label" :
|
|
390
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
391
|
+
"type" : "VTL|MD" } } },
|
|
392
|
+
"bindingDependencies" :
|
|
393
|
+
[ "Q5INTRA",
|
|
394
|
+
"EXISTINDIV1",
|
|
395
|
+
"EXISTINDIV2",
|
|
396
|
+
"EXISTINDIV3" ],
|
|
397
|
+
"unit" : "€",
|
|
398
|
+
"response" :
|
|
399
|
+
{ "name" : "Q5INTRA" } },
|
|
400
|
+
|
|
401
|
+
{ "id" : "kewy93hc",
|
|
402
|
+
"componentType" : "InputNumber",
|
|
403
|
+
"mandatory" : false,
|
|
404
|
+
"page" : "7.7",
|
|
405
|
+
"min" : 0,
|
|
406
|
+
"max" : 20,
|
|
407
|
+
"decimals" : 0,
|
|
408
|
+
"label" :
|
|
409
|
+
{ "value" : "\"➡ 7. \" || \"Q6Intra - question avec controle numérique à vide (donnée entre 0 et 20, controle si vaut vide)\"",
|
|
410
|
+
"type" : "VTL|MD" },
|
|
411
|
+
"conditionFilter" :
|
|
412
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
413
|
+
"bindingDependencies" :
|
|
414
|
+
[ "EXISTINDIV2" ] },
|
|
415
|
+
"controls" :
|
|
416
|
+
[
|
|
417
|
+
{ "id" : "kewy93hc-CI-0",
|
|
418
|
+
"criticality" : "WARN",
|
|
419
|
+
"control" : "not(isnull(Q6INTRA))",
|
|
420
|
+
"errorMessage" : "Vous devez renseigner le numérique Q6INTRA",
|
|
421
|
+
"bindingDependencies" :
|
|
422
|
+
[ "Q6INTRA" ] } ],
|
|
423
|
+
"hierarchy" :
|
|
424
|
+
{ "sequence" :
|
|
425
|
+
{ "id" : "key1u56w",
|
|
426
|
+
"page" : "6",
|
|
427
|
+
"label" :
|
|
428
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
429
|
+
"type" : "VTL|MD" } },
|
|
430
|
+
"subSequence" :
|
|
431
|
+
{ "id" : "kewnbex8",
|
|
432
|
+
"page" : "7.1",
|
|
433
|
+
"label" :
|
|
434
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
435
|
+
"type" : "VTL|MD" } } },
|
|
436
|
+
"bindingDependencies" :
|
|
437
|
+
[ "Q6INTRA",
|
|
438
|
+
"EXISTINDIV1",
|
|
439
|
+
"EXISTINDIV2",
|
|
440
|
+
"EXISTINDIV3" ],
|
|
441
|
+
"unit" : "€",
|
|
442
|
+
"response" :
|
|
443
|
+
{ "name" : "Q6INTRA" } },
|
|
444
|
+
|
|
445
|
+
{ "id" : "kewi7qdp",
|
|
446
|
+
"componentType" : "CheckboxGroup",
|
|
447
|
+
"page" : "7.8",
|
|
448
|
+
"label" :
|
|
449
|
+
{ "value" : "\"➡ 8. \" || \"Q7Intra - question QCM et comparaison avec réponse QCU Q4Intra (si oui et libelle 1 : controle)\"",
|
|
450
|
+
"type" : "VTL|MD" },
|
|
451
|
+
"conditionFilter" :
|
|
452
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
453
|
+
"bindingDependencies" :
|
|
454
|
+
[ "EXISTINDIV2" ] },
|
|
455
|
+
"controls" :
|
|
456
|
+
[
|
|
457
|
+
{ "id" : "kewi7qdp-CI-0",
|
|
458
|
+
"criticality" : "WARN",
|
|
459
|
+
"control" : "not(nvl(Q4INTRA,\"0\") = \"1\" and nvl($Q4INTRA1$,false) = true)",
|
|
460
|
+
"errorMessage" : "Si QCU Q4 a dit oui et libellé 1 : c’est anormal",
|
|
461
|
+
"bindingDependencies" :
|
|
462
|
+
[ "Q4INTRA" ] } ],
|
|
463
|
+
"hierarchy" :
|
|
464
|
+
{ "sequence" :
|
|
465
|
+
{ "id" : "key1u56w",
|
|
466
|
+
"page" : "6",
|
|
467
|
+
"label" :
|
|
468
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
469
|
+
"type" : "VTL|MD" } },
|
|
470
|
+
"subSequence" :
|
|
471
|
+
{ "id" : "kewnbex8",
|
|
472
|
+
"page" : "7.1",
|
|
473
|
+
"label" :
|
|
474
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
475
|
+
"type" : "VTL|MD" } } },
|
|
476
|
+
"bindingDependencies" :
|
|
477
|
+
[ "Q7INTRA1",
|
|
478
|
+
"Q7INTRA2",
|
|
479
|
+
"Q7INTRA3",
|
|
480
|
+
"EXISTINDIV1",
|
|
481
|
+
"EXISTINDIV2",
|
|
482
|
+
"EXISTINDIV3" ],
|
|
483
|
+
"responses" :
|
|
484
|
+
[
|
|
485
|
+
{ "id" : "kewi7qdp-QOP-khkh0pap",
|
|
486
|
+
"label" :
|
|
487
|
+
{ "value" : "libelle 1",
|
|
488
|
+
"type" : "VTL|MD" },
|
|
489
|
+
"response" :
|
|
490
|
+
{ "name" : "Q7INTRA1" } },
|
|
491
|
+
|
|
492
|
+
{ "id" : "kewi7qdp-QOP-khkgup98",
|
|
493
|
+
"label" :
|
|
494
|
+
{ "value" : "libelle 2",
|
|
495
|
+
"type" : "VTL|MD" },
|
|
496
|
+
"response" :
|
|
497
|
+
{ "name" : "Q7INTRA2" } },
|
|
498
|
+
|
|
499
|
+
{ "id" : "kewi7qdp-QOP-khkgp789",
|
|
500
|
+
"label" :
|
|
501
|
+
{ "value" : "libelle 3",
|
|
502
|
+
"type" : "VTL|MD" },
|
|
503
|
+
"response" :
|
|
504
|
+
{ "name" : "Q7INTRA3" } } ] },
|
|
505
|
+
|
|
506
|
+
{ "id" : "kewinlqn",
|
|
507
|
+
"componentType" : "Datepicker",
|
|
508
|
+
"mandatory" : false,
|
|
509
|
+
"page" : "7.9",
|
|
510
|
+
"min" : "2010-01-01",
|
|
511
|
+
"max" : "2030-12-31",
|
|
512
|
+
"label" :
|
|
513
|
+
{ "value" : "\"➡ 9. \" || \"Q8Intra - dernière question date et rappel pour mémoire de la réponse Q1 : \" || Q1INTRA",
|
|
514
|
+
"type" : "VTL|MD" },
|
|
515
|
+
"conditionFilter" :
|
|
516
|
+
{ "value" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
517
|
+
"bindingDependencies" :
|
|
518
|
+
[ "EXISTINDIV2" ] },
|
|
519
|
+
"hierarchy" :
|
|
520
|
+
{ "sequence" :
|
|
521
|
+
{ "id" : "key1u56w",
|
|
522
|
+
"page" : "6",
|
|
523
|
+
"label" :
|
|
524
|
+
{ "value" : "\"II - \" || \"Boucle sur les individus majeurs, sous-séquence\"",
|
|
525
|
+
"type" : "VTL|MD" } },
|
|
526
|
+
"subSequence" :
|
|
527
|
+
{ "id" : "kewnbex8",
|
|
528
|
+
"page" : "7.1",
|
|
529
|
+
"label" :
|
|
530
|
+
{ "value" : "\"Sous-sequence boucle totale - individu : \" || EXISTINDIV1 || \"agé de \" || EXISTINDIV2 || \" ans\"",
|
|
531
|
+
"type" : "VTL|MD" } } },
|
|
532
|
+
"bindingDependencies" :
|
|
533
|
+
[ "Q1INTRA",
|
|
534
|
+
"Q8INTRA",
|
|
535
|
+
"EXISTINDIV1",
|
|
536
|
+
"EXISTINDIV2",
|
|
537
|
+
"EXISTINDIV3" ],
|
|
538
|
+
"dateFormat" : "YYYY-MM-DD",
|
|
539
|
+
"response" :
|
|
540
|
+
{ "name" : "Q8INTRA" } } ] },
|
|
541
|
+
|
|
542
|
+
{ "id" : "kfco2gq5",
|
|
543
|
+
"componentType" : "Sequence",
|
|
544
|
+
"page" : "8",
|
|
545
|
+
"label" :
|
|
546
|
+
{ "value" : "\"III - \" || \"SEQUENCE INTERMEDIAIRE\"",
|
|
547
|
+
"type" : "VTL|MD" },
|
|
548
|
+
"conditionFilter" :
|
|
549
|
+
{ "value" : "true" },
|
|
550
|
+
"hierarchy" :
|
|
551
|
+
{ "sequence" :
|
|
552
|
+
{ "id" : "kfco2gq5",
|
|
553
|
+
"page" : "8",
|
|
554
|
+
"label" :
|
|
555
|
+
{ "value" : "\"III - \" || \"SEQUENCE INTERMEDIAIRE\"",
|
|
556
|
+
"type" : "VTL|MD" } } } },
|
|
557
|
+
|
|
558
|
+
{ "id" : "kfcnp9re",
|
|
559
|
+
"componentType" : "Textarea",
|
|
560
|
+
"mandatory" : false,
|
|
561
|
+
"page" : "9",
|
|
562
|
+
"maxLength" : 255,
|
|
563
|
+
"label" :
|
|
564
|
+
{ "value" : "\"➡ 10. \" || \"Etes vous content du questionnaire\"",
|
|
565
|
+
"type" : "VTL|MD" },
|
|
566
|
+
"conditionFilter" :
|
|
567
|
+
{ "value" : "true" },
|
|
568
|
+
"hierarchy" :
|
|
569
|
+
{ "sequence" :
|
|
570
|
+
{ "id" : "kfco2gq5",
|
|
571
|
+
"page" : "8",
|
|
572
|
+
"label" :
|
|
573
|
+
{ "value" : "\"III - \" || \"SEQUENCE INTERMEDIAIRE\"",
|
|
574
|
+
"type" : "VTL|MD" } } },
|
|
575
|
+
"bindingDependencies" :
|
|
576
|
+
[ "ETESVOUSCO" ],
|
|
577
|
+
"response" :
|
|
578
|
+
{ "name" : "ETESVOUSCO" } },
|
|
579
|
+
|
|
580
|
+
{ "id" : "COMMENT-SEQ",
|
|
581
|
+
"componentType" : "Sequence",
|
|
582
|
+
"page" : "10",
|
|
583
|
+
"label" :
|
|
584
|
+
{ },
|
|
585
|
+
"conditionFilter" :
|
|
586
|
+
{ "value" : "true" },
|
|
587
|
+
"hierarchy" :
|
|
588
|
+
{ "sequence" :
|
|
589
|
+
{ "id" : "COMMENT-SEQ",
|
|
590
|
+
"page" : "10",
|
|
591
|
+
"label" :
|
|
592
|
+
{ } } } },
|
|
593
|
+
|
|
594
|
+
{ "id" : "COMMENT-QUESTION",
|
|
595
|
+
"componentType" : "Textarea",
|
|
596
|
+
"mandatory" : false,
|
|
597
|
+
"page" : "11",
|
|
598
|
+
"maxLength" : 2000,
|
|
599
|
+
"label" :
|
|
600
|
+
{ },
|
|
601
|
+
"conditionFilter" :
|
|
602
|
+
{ "value" : "true" },
|
|
603
|
+
"hierarchy" :
|
|
604
|
+
{ "sequence" :
|
|
605
|
+
{ "id" : "COMMENT-SEQ",
|
|
606
|
+
"page" : "10",
|
|
607
|
+
"label" :
|
|
608
|
+
{ } } },
|
|
609
|
+
"bindingDependencies" :
|
|
610
|
+
[ "COMMENT_QE" ],
|
|
611
|
+
"response" :
|
|
612
|
+
{ "name" : "COMMENT_QE" } } ],
|
|
613
|
+
"variables" :
|
|
614
|
+
[
|
|
615
|
+
{ "variableType" : "COLLECTED",
|
|
616
|
+
"name" : "COMMENT_QE",
|
|
617
|
+
"componentRef" : "COMMENT-QUESTION",
|
|
618
|
+
"values" :
|
|
619
|
+
{ "PREVIOUS" : null,
|
|
620
|
+
"COLLECTED" : null,
|
|
621
|
+
"FORCED" : null,
|
|
622
|
+
"EDITED" : null,
|
|
623
|
+
"INPUTED" : null } },
|
|
624
|
+
|
|
625
|
+
{ "variableType" : "COLLECTED",
|
|
626
|
+
"name" : "EXISTINDIV1",
|
|
627
|
+
"componentRef" : "kewhggmx",
|
|
628
|
+
"values" :
|
|
629
|
+
{ "PREVIOUS" :
|
|
630
|
+
[ null ],
|
|
631
|
+
"COLLECTED" :
|
|
632
|
+
[ null ],
|
|
633
|
+
"FORCED" :
|
|
634
|
+
[ null ],
|
|
635
|
+
"EDITED" :
|
|
636
|
+
[ null ],
|
|
637
|
+
"INPUTED" :
|
|
638
|
+
[ null ] } },
|
|
639
|
+
|
|
640
|
+
{ "variableType" : "COLLECTED",
|
|
641
|
+
"name" : "EXISTINDIV2",
|
|
642
|
+
"componentRef" : "kewhggmx",
|
|
643
|
+
"values" :
|
|
644
|
+
{ "PREVIOUS" :
|
|
645
|
+
[ null ],
|
|
646
|
+
"COLLECTED" :
|
|
647
|
+
[ null ],
|
|
648
|
+
"FORCED" :
|
|
649
|
+
[ null ],
|
|
650
|
+
"EDITED" :
|
|
651
|
+
[ null ],
|
|
652
|
+
"INPUTED" :
|
|
653
|
+
[ null ] } },
|
|
654
|
+
|
|
655
|
+
{ "variableType" : "COLLECTED",
|
|
656
|
+
"name" : "EXISTINDIV3",
|
|
657
|
+
"componentRef" : "kewhggmx",
|
|
658
|
+
"values" :
|
|
659
|
+
{ "PREVIOUS" :
|
|
660
|
+
[ null ],
|
|
661
|
+
"COLLECTED" :
|
|
662
|
+
[ null ],
|
|
663
|
+
"FORCED" :
|
|
664
|
+
[ null ],
|
|
665
|
+
"EDITED" :
|
|
666
|
+
[ null ],
|
|
667
|
+
"INPUTED" :
|
|
668
|
+
[ null ] } },
|
|
669
|
+
|
|
670
|
+
{ "variableType" : "COLLECTED",
|
|
671
|
+
"name" : "Q1INTRA",
|
|
672
|
+
"componentRef" : "kfmn7uc5",
|
|
673
|
+
"values" :
|
|
674
|
+
{ "PREVIOUS" :
|
|
675
|
+
[ null ],
|
|
676
|
+
"COLLECTED" :
|
|
677
|
+
[ null ],
|
|
678
|
+
"FORCED" :
|
|
679
|
+
[ null ],
|
|
680
|
+
"EDITED" :
|
|
681
|
+
[ null ],
|
|
682
|
+
"INPUTED" :
|
|
683
|
+
[ null ] } },
|
|
684
|
+
|
|
685
|
+
{ "variableType" : "COLLECTED",
|
|
686
|
+
"name" : "Q2INTRA",
|
|
687
|
+
"componentRef" : "kfmn7uc5",
|
|
688
|
+
"values" :
|
|
689
|
+
{ "PREVIOUS" :
|
|
690
|
+
[ null ],
|
|
691
|
+
"COLLECTED" :
|
|
692
|
+
[ null ],
|
|
693
|
+
"FORCED" :
|
|
694
|
+
[ null ],
|
|
695
|
+
"EDITED" :
|
|
696
|
+
[ null ],
|
|
697
|
+
"INPUTED" :
|
|
698
|
+
[ null ] } },
|
|
699
|
+
|
|
700
|
+
{ "variableType" : "COLLECTED",
|
|
701
|
+
"name" : "Q3INTRA",
|
|
702
|
+
"componentRef" : "kfmn7uc5",
|
|
703
|
+
"values" :
|
|
704
|
+
{ "PREVIOUS" :
|
|
705
|
+
[ null ],
|
|
706
|
+
"COLLECTED" :
|
|
707
|
+
[ null ],
|
|
708
|
+
"FORCED" :
|
|
709
|
+
[ null ],
|
|
710
|
+
"EDITED" :
|
|
711
|
+
[ null ],
|
|
712
|
+
"INPUTED" :
|
|
713
|
+
[ null ] } },
|
|
714
|
+
|
|
715
|
+
{ "variableType" : "COLLECTED",
|
|
716
|
+
"name" : "Q4INTRA",
|
|
717
|
+
"componentRef" : "kfmn7uc5",
|
|
718
|
+
"values" :
|
|
719
|
+
{ "PREVIOUS" :
|
|
720
|
+
[ null ],
|
|
721
|
+
"COLLECTED" :
|
|
722
|
+
[ null ],
|
|
723
|
+
"FORCED" :
|
|
724
|
+
[ null ],
|
|
725
|
+
"EDITED" :
|
|
726
|
+
[ null ],
|
|
727
|
+
"INPUTED" :
|
|
728
|
+
[ null ] } },
|
|
729
|
+
|
|
730
|
+
{ "variableType" : "COLLECTED",
|
|
731
|
+
"name" : "Q5INTRA",
|
|
732
|
+
"componentRef" : "kfmn7uc5",
|
|
733
|
+
"values" :
|
|
734
|
+
{ "PREVIOUS" :
|
|
735
|
+
[ null ],
|
|
736
|
+
"COLLECTED" :
|
|
737
|
+
[ null ],
|
|
738
|
+
"FORCED" :
|
|
739
|
+
[ null ],
|
|
740
|
+
"EDITED" :
|
|
741
|
+
[ null ],
|
|
742
|
+
"INPUTED" :
|
|
743
|
+
[ null ] } },
|
|
744
|
+
|
|
745
|
+
{ "variableType" : "COLLECTED",
|
|
746
|
+
"name" : "Q6INTRA",
|
|
747
|
+
"componentRef" : "kfmn7uc5",
|
|
748
|
+
"values" :
|
|
749
|
+
{ "PREVIOUS" :
|
|
750
|
+
[ null ],
|
|
751
|
+
"COLLECTED" :
|
|
752
|
+
[ null ],
|
|
753
|
+
"FORCED" :
|
|
754
|
+
[ null ],
|
|
755
|
+
"EDITED" :
|
|
756
|
+
[ null ],
|
|
757
|
+
"INPUTED" :
|
|
758
|
+
[ null ] } },
|
|
759
|
+
|
|
760
|
+
{ "variableType" : "COLLECTED",
|
|
761
|
+
"name" : "Q7INTRA1",
|
|
762
|
+
"componentRef" : "kfmn7uc5",
|
|
763
|
+
"values" :
|
|
764
|
+
{ "PREVIOUS" :
|
|
765
|
+
[ null ],
|
|
766
|
+
"COLLECTED" :
|
|
767
|
+
[ null ],
|
|
768
|
+
"FORCED" :
|
|
769
|
+
[ null ],
|
|
770
|
+
"EDITED" :
|
|
771
|
+
[ null ],
|
|
772
|
+
"INPUTED" :
|
|
773
|
+
[ null ] } },
|
|
774
|
+
|
|
775
|
+
{ "variableType" : "COLLECTED",
|
|
776
|
+
"name" : "Q7INTRA2",
|
|
777
|
+
"componentRef" : "kfmn7uc5",
|
|
778
|
+
"values" :
|
|
779
|
+
{ "PREVIOUS" :
|
|
780
|
+
[ null ],
|
|
781
|
+
"COLLECTED" :
|
|
782
|
+
[ null ],
|
|
783
|
+
"FORCED" :
|
|
784
|
+
[ null ],
|
|
785
|
+
"EDITED" :
|
|
786
|
+
[ null ],
|
|
787
|
+
"INPUTED" :
|
|
788
|
+
[ null ] } },
|
|
789
|
+
|
|
790
|
+
{ "variableType" : "COLLECTED",
|
|
791
|
+
"name" : "Q7INTRA3",
|
|
792
|
+
"componentRef" : "kfmn7uc5",
|
|
793
|
+
"values" :
|
|
794
|
+
{ "PREVIOUS" :
|
|
795
|
+
[ null ],
|
|
796
|
+
"COLLECTED" :
|
|
797
|
+
[ null ],
|
|
798
|
+
"FORCED" :
|
|
799
|
+
[ null ],
|
|
800
|
+
"EDITED" :
|
|
801
|
+
[ null ],
|
|
802
|
+
"INPUTED" :
|
|
803
|
+
[ null ] } },
|
|
804
|
+
|
|
805
|
+
{ "variableType" : "COLLECTED",
|
|
806
|
+
"name" : "Q8INTRA",
|
|
807
|
+
"componentRef" : "kfmn7uc5",
|
|
808
|
+
"values" :
|
|
809
|
+
{ "PREVIOUS" :
|
|
810
|
+
[ null ],
|
|
811
|
+
"COLLECTED" :
|
|
812
|
+
[ null ],
|
|
813
|
+
"FORCED" :
|
|
814
|
+
[ null ],
|
|
815
|
+
"EDITED" :
|
|
816
|
+
[ null ],
|
|
817
|
+
"INPUTED" :
|
|
818
|
+
[ null ] } },
|
|
819
|
+
|
|
820
|
+
{ "variableType" : "COLLECTED",
|
|
821
|
+
"name" : "ETESVOUSCO",
|
|
822
|
+
"componentRef" : "kfcnp9re",
|
|
823
|
+
"values" :
|
|
824
|
+
{ "PREVIOUS" : null,
|
|
825
|
+
"COLLECTED" : null,
|
|
826
|
+
"FORCED" : null,
|
|
827
|
+
"EDITED" : null,
|
|
828
|
+
"INPUTED" : null } },
|
|
829
|
+
|
|
830
|
+
{ "variableType" : "CALCULATED",
|
|
831
|
+
"name" : "FILTER_RESULT_EXISTINDIV",
|
|
832
|
+
"expression" : "true",
|
|
833
|
+
"inFilter" : "false" },
|
|
834
|
+
|
|
835
|
+
{ "variableType" : "CALCULATED",
|
|
836
|
+
"name" : "FILTER_RESULT_Q1INTRA",
|
|
837
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
838
|
+
"bindingDependencies" :
|
|
839
|
+
[ "EXISTINDIV2" ],
|
|
840
|
+
"shapeFrom" : "Q1INTRA",
|
|
841
|
+
"inFilter" : "false" },
|
|
842
|
+
|
|
843
|
+
{ "variableType" : "CALCULATED",
|
|
844
|
+
"name" : "FILTER_RESULT_Q2INTRA",
|
|
845
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
846
|
+
"bindingDependencies" :
|
|
847
|
+
[ "EXISTINDIV2" ],
|
|
848
|
+
"shapeFrom" : "Q1INTRA",
|
|
849
|
+
"inFilter" : "false" },
|
|
850
|
+
|
|
851
|
+
{ "variableType" : "CALCULATED",
|
|
852
|
+
"name" : "FILTER_RESULT_Q3INTRA",
|
|
853
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
854
|
+
"bindingDependencies" :
|
|
855
|
+
[ "EXISTINDIV2" ],
|
|
856
|
+
"shapeFrom" : "Q1INTRA",
|
|
857
|
+
"inFilter" : "false" },
|
|
858
|
+
|
|
859
|
+
{ "variableType" : "CALCULATED",
|
|
860
|
+
"name" : "FILTER_RESULT_Q4INTRA",
|
|
861
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
862
|
+
"bindingDependencies" :
|
|
863
|
+
[ "EXISTINDIV2" ],
|
|
864
|
+
"shapeFrom" : "Q1INTRA",
|
|
865
|
+
"inFilter" : "false" },
|
|
866
|
+
|
|
867
|
+
{ "variableType" : "CALCULATED",
|
|
868
|
+
"name" : "FILTER_RESULT_Q5INTRA",
|
|
869
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
870
|
+
"bindingDependencies" :
|
|
871
|
+
[ "EXISTINDIV2" ],
|
|
872
|
+
"shapeFrom" : "Q1INTRA",
|
|
873
|
+
"inFilter" : "false" },
|
|
874
|
+
|
|
875
|
+
{ "variableType" : "CALCULATED",
|
|
876
|
+
"name" : "FILTER_RESULT_Q6INTRA",
|
|
877
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
878
|
+
"bindingDependencies" :
|
|
879
|
+
[ "EXISTINDIV2" ],
|
|
880
|
+
"shapeFrom" : "Q1INTRA",
|
|
881
|
+
"inFilter" : "false" },
|
|
882
|
+
|
|
883
|
+
{ "variableType" : "CALCULATED",
|
|
884
|
+
"name" : "FILTER_RESULT_Q7INTRA",
|
|
885
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
886
|
+
"bindingDependencies" :
|
|
887
|
+
[ "EXISTINDIV2" ],
|
|
888
|
+
"shapeFrom" : "Q1INTRA",
|
|
889
|
+
"inFilter" : "false" },
|
|
890
|
+
|
|
891
|
+
{ "variableType" : "CALCULATED",
|
|
892
|
+
"name" : "FILTER_RESULT_Q8INTRA",
|
|
893
|
+
"expression" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
894
|
+
"bindingDependencies" :
|
|
895
|
+
[ "EXISTINDIV2" ],
|
|
896
|
+
"shapeFrom" : "Q1INTRA",
|
|
897
|
+
"inFilter" : "false" },
|
|
898
|
+
|
|
899
|
+
{ "variableType" : "CALCULATED",
|
|
900
|
+
"name" : "FILTER_RESULT_ETESVOUSCO",
|
|
901
|
+
"expression" : "true",
|
|
902
|
+
"inFilter" : "false" } ],
|
|
903
|
+
"cleaning" :
|
|
904
|
+
{ "EXISTINDIV2" :
|
|
905
|
+
{ "Q1INTRA" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
906
|
+
"Q2INTRA" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
907
|
+
"Q3INTRA" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
908
|
+
"Q4INTRA" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
909
|
+
"Q5INTRA" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
910
|
+
"Q6INTRA" : "(not(cast(EXISTINDIV2,integer) < 18))",
|
|
911
|
+
"Q8INTRA" : "(not(cast(EXISTINDIV2,integer) < 18))" } } }
|