@inseefr/lunatic 2.3.1 → 2.4.1-beta
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/LICENSE +21 -21
- package/README.md +169 -22
- package/lib/components/button/__snapshots__/lunatic-button.spec.jsx.snap +80 -0
- package/lib/components/button/button.scss +24 -0
- package/lib/components/button/index.js +13 -0
- package/lib/components/button/lunatic-button.js +56 -0
- package/lib/components/button/lunatic-button.spec.js +87 -0
- package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.js +55 -0
- package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.spec.js +57 -0
- package/lib/components/checkbox/checkbox-boolean/index.js +13 -0
- package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +58 -0
- package/lib/components/checkbox/checkbox-group/checkbox-group-content.js +41 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.js +51 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.spec.js +44 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group.js +52 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group.scss +12 -0
- package/lib/components/checkbox/checkbox-group/index.js +13 -0
- package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +64 -0
- package/lib/components/checkbox/checkbox-one/html/checkbox-one.js +54 -0
- package/lib/components/checkbox/checkbox-one/html/checkbox-one.scss +19 -0
- package/lib/components/checkbox/checkbox-one/html/checkbox-one.spec.js +51 -0
- package/lib/components/checkbox/checkbox-one/index.js +13 -0
- package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +58 -0
- package/lib/components/checkbox/commons/checkbox-option.js +89 -0
- package/lib/components/checkbox/commons/checkbox-option.scss +19 -0
- package/lib/components/checkbox/commons/checkbox-option.spec.js +71 -0
- package/lib/components/checkbox/commons/getShortcutKey.js +11 -0
- package/lib/components/checkbox/commons/index.js +13 -0
- package/lib/components/checkbox/index.js +27 -0
- package/lib/components/commons/build-style-object.js +25 -0
- package/lib/components/commons/components/combo-box/combo-box-container.js +33 -0
- package/lib/components/commons/components/combo-box/combo-box-container.spec.js +45 -0
- package/lib/components/commons/components/combo-box/combo-box-content.js +63 -0
- package/lib/components/commons/components/combo-box/combo-box.js +199 -0
- package/lib/components/commons/components/combo-box/combo-box.scss +206 -0
- package/lib/components/commons/components/combo-box/index.js +13 -0
- package/lib/components/commons/components/combo-box/panel/index.js +13 -0
- package/lib/components/commons/components/combo-box/panel/option-container.js +61 -0
- package/lib/components/commons/components/combo-box/panel/option-container.spec.js +27 -0
- package/lib/components/commons/components/combo-box/panel/panel-container.js +28 -0
- package/lib/components/commons/components/combo-box/panel/panel-container.spec.js +59 -0
- package/lib/components/commons/components/combo-box/panel/panel.js +63 -0
- package/lib/components/commons/components/combo-box/panel/panel.spec.js +93 -0
- package/lib/components/commons/components/combo-box/selection/__snapshots__/selection.spec.jsx.snap +81 -0
- package/lib/components/commons/components/combo-box/selection/delete.js +55 -0
- package/lib/components/commons/components/combo-box/selection/delete.spec.js +88 -0
- package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.js +29 -0
- package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.spec.js +57 -0
- package/lib/components/commons/components/combo-box/selection/index.js +13 -0
- package/lib/components/commons/components/combo-box/selection/input.js +56 -0
- package/lib/components/commons/components/combo-box/selection/label-selection.js +32 -0
- package/lib/components/commons/components/combo-box/selection/label-selection.spec.js +45 -0
- package/lib/components/commons/components/combo-box/selection/selection-container.js +39 -0
- package/lib/components/commons/components/combo-box/selection/selection-container.spec.js +53 -0
- package/lib/components/commons/components/combo-box/selection/selection.js +60 -0
- package/lib/components/commons/components/combo-box/selection/selection.spec.js +104 -0
- package/lib/components/commons/components/combo-box/state-management/actions.js +82 -0
- package/lib/components/commons/components/combo-box/state-management/combo-box-context.js +16 -0
- package/lib/components/commons/components/combo-box/state-management/index.js +33 -0
- package/lib/components/commons/components/combo-box/state-management/initial-state.js +14 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/index.js +13 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-blur.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-change.js +22 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-delete.js +21 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-focus.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-init.js +38 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/index.js +13 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/keyboard-key-codes.js +18 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-down.js +32 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-up.js +32 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-end.js +25 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-enter.js +21 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-escape.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-home.js +25 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-tab.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/reduce-on-keydown.js +40 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-select.js +22 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reducer.js +41 -0
- package/lib/components/commons/components/default-label-renderer.js +47 -0
- package/lib/components/commons/components/default-label-renderer.spec.js +43 -0
- package/lib/components/commons/components/default-option-renderer.js +44 -0
- package/lib/components/commons/components/default-option-renderer.spec.js +65 -0
- package/lib/components/commons/components/description.js +52 -0
- package/lib/components/commons/components/description.spec.js +45 -0
- package/lib/components/commons/components/dragger/dragger.js +95 -0
- package/lib/components/commons/components/dragger/dragger.scss +8 -0
- package/lib/components/commons/components/dragger/dragger.spec.js +80 -0
- package/lib/components/commons/components/dragger/index.js +13 -0
- package/lib/components/commons/components/errors/errors.js +53 -0
- package/lib/components/commons/components/errors/errors.scss +5 -0
- package/lib/components/commons/components/errors/errors.spec.js +40 -0
- package/lib/components/commons/components/errors/index.js +13 -0
- package/lib/components/commons/components/fab/fab.js +50 -0
- package/lib/components/commons/components/fab/fab.scss +32 -0
- package/lib/components/commons/components/fab/fab.spec.js +76 -0
- package/lib/components/commons/components/fab/index.js +13 -0
- package/lib/components/commons/components/field-container/field-container.js +41 -0
- package/lib/components/commons/components/field-container/filed-container.spec.js +37 -0
- package/lib/components/commons/components/field-container/index.js +13 -0
- package/lib/components/commons/components/fieldset.js +30 -0
- package/lib/components/commons/components/fieldset.scss +5 -0
- package/lib/components/commons/components/fieldset.spec.js +51 -0
- package/lib/components/commons/components/html-table/index.js +48 -0
- package/lib/components/commons/components/html-table/table.js +32 -0
- package/lib/components/commons/components/html-table/table.scss +27 -0
- package/lib/components/commons/components/html-table/table.spec.js +25 -0
- package/lib/components/commons/components/html-table/tbody.js +32 -0
- package/lib/components/commons/components/html-table/tbody.spec.js +34 -0
- package/lib/components/commons/components/html-table/td.js +43 -0
- package/lib/components/commons/components/html-table/td.spec.js +43 -0
- package/lib/components/commons/components/html-table/th.js +41 -0
- package/lib/components/commons/components/html-table/th.spec.js +46 -0
- package/lib/components/commons/components/html-table/thead.js +31 -0
- package/lib/components/commons/components/html-table/thead.spec.js +30 -0
- package/lib/components/commons/components/html-table/tr.js +33 -0
- package/lib/components/commons/components/html-table/tr.spec.js +45 -0
- package/lib/components/commons/components/is-network/index.js +13 -0
- package/lib/components/commons/components/is-network/is-network.js +53 -0
- package/lib/components/commons/components/is-network/is-network.spec.js +34 -0
- package/lib/components/commons/components/is-network/use-online-status.js +46 -0
- package/lib/components/commons/components/is-network/use-online-status.spec.js +45 -0
- package/lib/components/commons/components/label/index.js +13 -0
- package/lib/components/commons/components/label/label.js +35 -0
- package/lib/components/commons/components/label/label.scss +6 -0
- package/lib/components/commons/components/label/label.spec.js +78 -0
- package/lib/components/commons/components/lunatic-component-with-label.js +88 -0
- package/lib/components/commons/components/lunatic-component-without-label.js +87 -0
- package/lib/components/commons/components/md-label/index.js +13 -0
- package/lib/components/commons/components/md-label/link.js +54 -0
- package/lib/components/commons/components/md-label/md-label.js +45 -0
- package/lib/components/commons/components/missing/index.js +13 -0
- package/lib/components/commons/components/missing/missing.js +87 -0
- package/lib/components/commons/components/missing/missing.scss +30 -0
- package/lib/components/commons/components/missing/missing.spec.js +81 -0
- package/lib/components/commons/components/nothing-to-display.js +16 -0
- package/lib/components/commons/components/nothing-to-display.spec.js +16 -0
- package/lib/components/commons/components/orchestrated-component.js +62 -0
- package/lib/components/commons/components/variable-status/img/index.js +20 -0
- package/lib/components/commons/components/variable-status/index.js +13 -0
- package/lib/components/commons/components/variable-status/variable-status.js +85 -0
- package/lib/components/commons/components/variable-status/variable-status.scss +39 -0
- package/lib/components/commons/components/variable-status/variable-status.spec.js +24 -0
- package/lib/components/commons/create-customizable-field.js +29 -0
- package/lib/components/commons/create-row-orchestrator.js +51 -0
- package/lib/components/commons/icons/checkbox-checked.icon.js +39 -0
- package/lib/components/commons/icons/checkbox-unchecked.icon.js +39 -0
- package/lib/components/commons/icons/closed.icon.js +36 -0
- package/lib/components/commons/icons/cross.icon.js +36 -0
- package/lib/components/commons/icons/index.js +76 -0
- package/lib/components/commons/icons/load.icon.js +36 -0
- package/lib/components/commons/icons/lunatic-icon.js +21 -0
- package/lib/components/commons/icons/lunatic-icon.scss +3 -0
- package/lib/components/commons/icons/network.icon.js +36 -0
- package/lib/components/commons/icons/on-drag.icon.js +36 -0
- package/lib/components/commons/icons/opened.icon.js +36 -0
- package/lib/components/commons/icons/radio-checked.icon.js +39 -0
- package/lib/components/commons/icons/radio-unchecked.icon.js +39 -0
- package/lib/components/commons/index.js +131 -0
- package/lib/components/commons/prop-types/declarations.js +19 -0
- package/lib/components/commons/prop-types/index.js +41 -0
- package/lib/components/commons/prop-types/lines.js +13 -0
- package/lib/components/commons/prop-types/options.js +13 -0
- package/lib/components/commons/prop-types/response.js +13 -0
- package/lib/components/commons/prop-types/value-type.js +14 -0
- package/lib/components/commons/safety-label.js +26 -0
- package/lib/components/commons/use-document-add-event-listener.js +84 -0
- package/lib/components/commons/use-on-handle-change.js +19 -0
- package/lib/components/commons/use-on-handle-change.spec.js +46 -0
- package/lib/components/commons/use-options-keydown.js +24 -0
- package/lib/components/commons/use-previous.js +16 -0
- package/lib/components/components.js +171 -0
- package/lib/components/datepicker/html/datepicker-container.js +18 -0
- package/lib/components/datepicker/html/datepicker-input.js +37 -0
- package/lib/components/datepicker/html/datepicker.js +69 -0
- package/lib/components/datepicker/html/datepicker.scss +1 -0
- package/lib/components/datepicker/index.js +13 -0
- package/lib/components/datepicker/lunatic-datepicker.js +61 -0
- package/lib/components/declarations/declaration.js +22 -0
- package/lib/components/declarations/declaration.spec.js +30 -0
- package/lib/components/declarations/declarations-after-text.js +25 -0
- package/lib/components/declarations/declarations-before-text.js +25 -0
- package/lib/components/declarations/declarations-detachable.js +25 -0
- package/lib/components/declarations/declarations.js +50 -0
- package/lib/components/declarations/declarations.scss +36 -0
- package/lib/components/declarations/declarations.spec.js +79 -0
- package/lib/components/declarations/index.js +43 -0
- package/lib/components/dropdown/html/dropdown-simple/dropdown-simple.js +39 -0
- package/lib/components/dropdown/html/dropdown-simple/index.js +13 -0
- package/lib/components/dropdown/html/dropdown-simple/simple-label-renderer.js +46 -0
- package/lib/components/dropdown/html/dropdown-simple/simple-option-renderer.js +45 -0
- package/lib/components/dropdown/html/dropdown-writable/dropdown-writable.js +62 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/filter-options.js +37 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/get-label.js +24 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/letters-matching.js +29 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/match.js +22 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/prepare-prefix.js +13 -0
- package/lib/components/dropdown/html/dropdown-writable/index.js +13 -0
- package/lib/components/dropdown/html/dropdown-writable/writable-label-renderer.js +52 -0
- package/lib/components/dropdown/html/dropdown-writable/writable-option-renderer.js +146 -0
- package/lib/components/dropdown/html/dropdown.js +51 -0
- package/lib/components/dropdown/html/dropdown.scss +41 -0
- package/lib/components/dropdown/index.js +13 -0
- package/lib/components/dropdown/lunatic-dropdown.js +75 -0
- package/lib/components/filter-description/component.js +22 -0
- package/lib/components/filter-description/component.spec.js +23 -0
- package/lib/components/filter-description/index.js +13 -0
- package/lib/components/index.js +28 -0
- package/lib/components/index.scss +136 -0
- package/lib/components/input/html/input.js +79 -0
- package/lib/components/input/html/input.scss +42 -0
- package/lib/components/input/index.js +13 -0
- package/lib/components/input/lunatic-input.js +57 -0
- package/lib/components/input-number/html/__snapshots__/inpute-number.spec.jsx.snap +92 -0
- package/lib/components/input-number/html/input-number-default.js +78 -0
- package/lib/components/input-number/html/input-number-thousand.js +54 -0
- package/lib/components/input-number/html/input-number.js +102 -0
- package/lib/components/input-number/html/input-number.scss +11 -0
- package/lib/components/input-number/html/inpute-number.spec.js +110 -0
- package/lib/components/input-number/index.js +13 -0
- package/lib/components/input-number/lunatic-input-number.js +64 -0
- package/lib/components/loop/block-for-loop/block-for-loop-ochestrator.js +12 -0
- package/lib/components/loop/block-for-loop/block-for-loop.js +140 -0
- package/lib/components/loop/block-for-loop/index.js +13 -0
- package/lib/components/loop/block-for-loop/row.js +66 -0
- package/lib/components/loop/commons/get-init-length.js +16 -0
- package/lib/components/loop/commons/handle-row-button.js +22 -0
- package/lib/components/loop/commons/index.js +20 -0
- package/lib/components/loop/commons/row-component.js +70 -0
- package/lib/components/loop/index.js +13 -0
- package/lib/components/loop/loop.js +82 -0
- package/lib/components/loop/roster-for-loop/body.js +56 -0
- package/lib/components/loop/roster-for-loop/header.js +34 -0
- package/lib/components/loop/roster-for-loop/index.js +13 -0
- package/lib/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +12 -0
- package/lib/components/loop/roster-for-loop/roster-for-loop.js +124 -0
- package/lib/components/loop/roster-for-loop/roster-table.js +48 -0
- package/lib/components/loop/roster-for-loop/roster.scss +42 -0
- package/lib/components/loop/roster-for-loop/row.js +73 -0
- package/lib/components/modal-controls/close-or-skip.js +41 -0
- package/lib/components/modal-controls/close-or-skip.spec.js +52 -0
- package/lib/components/modal-controls/index.js +13 -0
- package/lib/components/modal-controls/modal-container.js +22 -0
- package/lib/components/modal-controls/modal-container.spec.js +24 -0
- package/lib/components/modal-controls/modal-controls.js +78 -0
- package/lib/components/modal-controls/modal-controls.scss +48 -0
- package/lib/components/modal-controls/modal-controls.spec.js +77 -0
- package/lib/components/pairwise-links/index.js +13 -0
- package/lib/components/pairwise-links/orchestrator.js +70 -0
- package/lib/components/pairwise-links/pairwise-links.js +65 -0
- package/lib/components/pairwise-links/row.js +78 -0
- package/lib/components/radio/html/dist/radio-group.css +12 -0
- package/lib/components/radio/html/radio-group-content.js +45 -0
- package/lib/components/radio/html/radio-group-content.spec.js +86 -0
- package/lib/components/radio/html/radio-group.js +67 -0
- package/lib/components/radio/html/radio-group.scss +21 -0
- package/lib/components/radio/html/radio-option.js +105 -0
- package/lib/components/radio/html/radio-option.spec.js +80 -0
- package/lib/components/radio/index.js +13 -0
- package/lib/components/radio/lunatic-radio-group.js +64 -0
- package/lib/components/radio/radio-group.js +48 -0
- package/lib/components/radio/radio.scss +19 -0
- package/lib/components/roundabout/components/roundabout-container.js +20 -0
- package/lib/components/roundabout/components/roundabout-container.spec.js +23 -0
- package/lib/components/roundabout/components/roundabout-it-button.js +80 -0
- package/lib/components/roundabout/components/roundabout-it-button.spec.js +102 -0
- package/lib/components/roundabout/components/roundabout-it-container.js +19 -0
- package/lib/components/roundabout/components/roundabout-it-container.spec.js +23 -0
- package/lib/components/roundabout/components/roundabout-it-title.js +19 -0
- package/lib/components/roundabout/components/roundabout-it-title.spec.js +18 -0
- package/lib/components/roundabout/components/roundabout-label.js +19 -0
- package/lib/components/roundabout/components/roundabout-label.spec.js +18 -0
- package/lib/components/roundabout/components/roundabout-pending.js +18 -0
- package/lib/components/roundabout/components/roundabout-pending.spec.js +15 -0
- package/lib/components/roundabout/components/roundabout.scss +16 -0
- package/lib/components/roundabout/index.js +13 -0
- package/lib/components/roundabout/lunatic-roundabout.js +62 -0
- package/lib/components/roundabout/redirect.js +23 -0
- package/lib/components/roundabout/redirect.spec.js +19 -0
- package/lib/components/roundabout/roundabout.js +89 -0
- package/lib/components/roundabout/roundabout.spec.js +71 -0
- package/lib/components/sequence/index.js +13 -0
- package/lib/components/sequence/sequence.js +37 -0
- package/lib/components/sequence/sequence.scss +10 -0
- package/lib/components/sequence/sequence.spec.js +79 -0
- package/lib/components/subsequence/index.js +13 -0
- package/lib/components/subsequence/subsequence.js +35 -0
- package/lib/components/subsequence/subsequence.spec.js +79 -0
- package/lib/components/suggester/find-best-label/find-best-label.js +55 -0
- package/lib/components/suggester/find-best-label/index.js +13 -0
- package/lib/components/suggester/html/alert-icon.svg +2 -0
- package/lib/components/suggester/html/default-style.scss +175 -0
- package/lib/components/suggester/html/notification.js +31 -0
- package/lib/components/suggester/html/suggester.js +142 -0
- package/lib/components/suggester/html/wait-icon.svg +17 -0
- package/lib/components/suggester/html/warn-icon.svg +1 -0
- package/lib/components/suggester/idb-suggester/check-store.js +107 -0
- package/lib/components/suggester/idb-suggester/dist/index.dev.js +12 -0
- package/lib/components/suggester/idb-suggester/idb-suggester.js +90 -0
- package/lib/components/suggester/idb-suggester/index.js +12 -0
- package/lib/components/suggester/idb-suggester/suggester-notification.js +61 -0
- package/lib/components/suggester/idb-suggester/suggester-status.js +52 -0
- package/lib/components/suggester/index.js +13 -0
- package/lib/components/suggester/lunatic-suggester.js +106 -0
- package/lib/components/suggester/searching/create-searching.js +73 -0
- package/lib/components/suggester/searching/index.js +13 -0
- package/lib/components/suggester-loader-widget/index.js +13 -0
- package/lib/components/suggester-loader-widget/loader-row.js +129 -0
- package/lib/components/suggester-loader-widget/loader.js +136 -0
- package/lib/components/suggester-loader-widget/progress.js +41 -0
- package/lib/components/suggester-loader-widget/tools/action-tool.js +30 -0
- package/lib/components/suggester-loader-widget/tools/index.js +20 -0
- package/lib/components/suggester-loader-widget/tools/tools.js +18 -0
- package/lib/components/suggester-loader-widget/widget-container.js +44 -0
- package/lib/components/suggester-loader-widget/widget.js +145 -0
- package/lib/components/suggester-loader-widget/widget.scss +176 -0
- package/lib/components/switch/html/switch.js +95 -0
- package/lib/components/switch/html/switch.scss +47 -0
- package/lib/components/switch/index.js +13 -0
- package/lib/components/switch/lunatic-switch.js +66 -0
- package/lib/components/table/cell.js +102 -0
- package/lib/components/table/header.js +40 -0
- package/lib/components/table/index.js +13 -0
- package/lib/components/table/lunatic-table.js +97 -0
- package/lib/components/table/row.js +43 -0
- package/lib/components/table/table-orchestrator.js +48 -0
- package/lib/components/textarea/html/textarea.js +54 -0
- package/lib/components/textarea/html/textarea.scss +8 -0
- package/lib/components/textarea/index.js +13 -0
- package/lib/components/textarea/lunatic-textarea.js +72 -0
- package/lib/components/type.js +5 -0
- package/lib/constants/component-types.js +8 -0
- package/lib/constants/declarations.js +28 -0
- package/lib/constants/event-types.js +29 -0
- package/lib/constants/index.js +60 -0
- package/lib/constants/supported-preferences.js +13 -0
- package/lib/constants/value-types.js +16 -0
- package/lib/constants/variable-types.js +12 -0
- package/lib/dist/index.dev.js +31 -0
- package/lib/i18n/build-dictionary.js +59 -0
- package/lib/i18n/dictionary.js +34 -0
- package/lib/i18n/index.js +28 -0
- package/lib/i18n/inputNumberProps.js +20 -0
- package/lib/index.js +28 -33
- package/lib/insee.d.js +1 -0
- package/lib/src/components/commons/components/md-label/index.d.ts +1 -0
- package/lib/src/components/commons/components/md-label/link.d.ts +7 -0
- package/lib/src/components/commons/components/md-label/md-label.d.ts +8 -0
- package/lib/src/components/type.d.ts +195 -0
- package/lib/src/constants/component-types.d.ts +1 -0
- package/lib/src/constants/declarations.d.ts +9 -0
- package/lib/src/constants/event-types.d.ts +10 -0
- package/lib/src/constants/index.d.ts +5 -0
- package/lib/src/constants/supported-preferences.d.ts +1 -0
- package/lib/src/constants/value-types.d.ts +5 -0
- package/lib/src/constants/variable-types.d.ts +2 -0
- package/lib/src/i18n/build-dictionary.d.ts +24 -0
- package/lib/src/i18n/dictionary.d.ts +37 -0
- package/lib/src/i18n/index.d.ts +7 -0
- package/lib/src/i18n/inputNumberProps.d.ts +13 -0
- package/lib/src/index.d.ts +3 -0
- package/lib/src/type.utils.d.ts +1 -0
- package/lib/src/use-lunatic/actions.d.ts +289 -0
- package/lib/src/use-lunatic/commons/calculated-variables.d.ts +8 -0
- package/lib/src/use-lunatic/commons/check-loops.d.ts +3 -0
- package/lib/src/use-lunatic/commons/check-pager.d.ts +5 -0
- package/lib/src/use-lunatic/commons/compile-controls.d.ts +7 -0
- package/lib/src/use-lunatic/commons/compose.d.ts +3 -0
- package/lib/src/use-lunatic/commons/create-map-pages.d.ts +7 -0
- package/lib/src/use-lunatic/commons/execute-condition-filter.d.ts +3 -0
- package/lib/src/use-lunatic/commons/execute-expression/create-execute-expression.d.ts +9 -0
- package/lib/src/use-lunatic/commons/execute-expression/create-memoizer.d.ts +8 -0
- package/lib/src/use-lunatic/commons/execute-expression/create-refresh-calculated.d.ts +24 -0
- package/lib/src/use-lunatic/commons/execute-expression/execute-expression.d.ts +11 -0
- package/lib/src/use-lunatic/commons/execute-expression/execute-expression.spec.d.ts +1 -0
- package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.d.ts +7 -0
- package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.spec.d.ts +1 -0
- package/lib/src/use-lunatic/commons/execute-expression/get-safety-expression.d.ts +6 -0
- package/lib/src/use-lunatic/commons/execute-expression/index.d.ts +1 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.d.ts +9 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.spec.d.ts +1 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-component-value.d.ts +6 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-components.d.ts +12 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +699 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-management.d.ts +6 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-missing-response.d.ts +11 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-pagination.d.ts +9 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +571 -0
- package/lib/src/use-lunatic/commons/fill-components/index.d.ts +1 -0
- package/lib/src/use-lunatic/commons/get-compatible-vtl-expression.d.ts +6 -0
- package/lib/src/use-lunatic/commons/get-component-value/get-component-value.d.ts +6 -0
- package/lib/src/use-lunatic/commons/get-component-value/index.d.ts +1 -0
- package/lib/src/use-lunatic/commons/get-components-from-state.d.ts +7 -0
- package/lib/src/use-lunatic/commons/get-data.d.ts +26 -0
- package/lib/src/use-lunatic/commons/get-errors-without-empty-value.d.ts +6 -0
- package/lib/src/use-lunatic/commons/getOverview.d.ts +19 -0
- package/lib/src/use-lunatic/commons/index.d.ts +13 -0
- package/lib/src/use-lunatic/commons/is-First-last-page.d.ts +6 -0
- package/lib/src/use-lunatic/commons/is-paginated-loop.d.ts +6 -0
- package/lib/src/use-lunatic/commons/is-roundabout.d.ts +2 -0
- package/lib/src/use-lunatic/commons/page-tag.d.ts +12 -0
- package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +4 -0
- package/lib/src/use-lunatic/hooks/use-loop-variables.d.ts +5 -0
- package/lib/src/use-lunatic/index.d.ts +1 -0
- package/lib/src/use-lunatic/initial-state.d.ts +3 -0
- package/lib/src/use-lunatic/lunatic-context.d.ts +31 -0
- package/lib/src/use-lunatic/reducer/commons/index.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/commons/is-empty-on-empty-page.d.ts +3 -0
- package/lib/src/use-lunatic/reducer/commons/is-loop-component.d.ts +12 -0
- package/lib/src/use-lunatic/reducer/commons/resize-array-variable.d.ts +5 -0
- package/lib/src/use-lunatic/reducer/commons/validate-condition-filter.d.ts +6 -0
- package/lib/src/use-lunatic/reducer/index.d.ts +1 -0
- package/lib/src/use-lunatic/reducer/overview/overview-on-change.d.ts +2 -0
- package/lib/src/use-lunatic/reducer/overview/overview-on-init.d.ts +99 -0
- package/lib/src/use-lunatic/reducer/reduce-go-next-page.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-go-previous-page.d.ts +3 -0
- package/lib/src/use-lunatic/reducer/reduce-go-to-page.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/index.d.ts +1 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.d.ts +7 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.d.ts +1 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.d.ts +15 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-missing.d.ts +7 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-resizing.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.d.ts +14 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.d.ts +9 -0
- package/lib/src/use-lunatic/reducer/reduce-on-init.d.ts +15 -0
- package/lib/src/use-lunatic/reducer/reduce-on-set-waiting.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-roundabout.d.ts +99 -0
- package/lib/src/use-lunatic/reducer/reduce-update-state.d.ts +3 -0
- package/lib/src/use-lunatic/reducer/reducer.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/validate-controls/validation-utils.d.ts +6 -0
- package/lib/src/use-lunatic/type-source.d.ts +281 -0
- package/lib/src/use-lunatic/type.d.ts +143 -0
- package/lib/src/use-lunatic/use-lunatic.d.ts +84 -0
- package/lib/src/use-lunatic/use-lunatic.test.d.ts +1 -0
- package/lib/src/use-lunatic/use-suggesters.d.ts +19 -0
- package/lib/src/utils/constants/features.d.ts +3 -0
- package/lib/src/utils/constants/index.d.ts +5 -0
- package/lib/src/utils/constants/links.d.ts +2 -0
- package/lib/src/utils/constants/missing.d.ts +2 -0
- package/lib/src/utils/constants/variable-status.d.ts +5 -0
- package/lib/src/utils/constants/variable-types.d.ts +1 -0
- package/lib/src/utils/idb-tools/clear-store.d.ts +2 -0
- package/lib/src/utils/idb-tools/get-idb.d.ts +2 -0
- package/lib/src/utils/idb-tools/insert-entity.d.ts +2 -0
- package/lib/src/utils/is-element.d.ts +3 -0
- package/lib/src/utils/is-object.d.ts +4 -0
- package/lib/src/utils/object.d.ts +4 -0
- package/lib/src/utils/store-tools/constantes.d.ts +21 -0
- package/lib/src/utils/store-tools/initStore.d.ts +2 -0
- package/lib/src/utils/store-tools/open-or-create-store.d.ts +2 -0
- package/lib/src/utils/suggester-workers/append-to-index/create-append-task.d.ts +7 -0
- package/lib/src/utils/suggester-workers/create-worker-ts.d.ts +1 -0
- package/lib/src/utils/to-number.d.ts +4 -0
- package/lib/src/utils/vtl/dataset-builder.d.ts +5 -0
- package/lib/src/utils/vtl/index.d.ts +1 -0
- package/lib/stories/Introduction.stories.mdx +114 -0
- package/lib/stories/checkbox-boolean/checkboxBoolean.stories.js +34 -0
- package/lib/stories/checkbox-boolean/source.json +58 -0
- package/lib/stories/checkbox-group/checkbox-group.stories.js +34 -0
- package/lib/stories/checkbox-group/source.json +86 -0
- package/lib/stories/checkbox-one/checkboxOne.stories.js +43 -0
- package/lib/stories/checkbox-one/source.json +52 -0
- package/lib/stories/checkboxGroup/checkboxGroup.stories.js +43 -0
- package/lib/stories/checkboxGroup/source.json +403 -0
- package/lib/stories/custom-mui/checkbox-boolean-mui.js +32 -0
- package/lib/stories/custom-mui/checkbox-group-mui.js +68 -0
- package/lib/stories/custom-mui/checkbox-one-mui.js +16 -0
- package/lib/stories/custom-mui/index.js +111 -0
- package/lib/stories/custom-mui/input-mui.js +52 -0
- package/lib/stories/custom-mui/input-number-mui.js +40 -0
- package/lib/stories/custom-mui/radio-mui.js +62 -0
- package/lib/stories/custom-mui/suggester-mui/index.js +13 -0
- package/lib/stories/custom-mui/suggester-mui/suggester-mui.js +304 -0
- package/lib/stories/custom-mui/switch-mui.js +47 -0
- package/lib/stories/custom-mui/table-mui.js +28 -0
- package/lib/stories/custom-mui/tbody-mui.js +23 -0
- package/lib/stories/custom-mui/td-mui.js +25 -0
- package/lib/stories/custom-mui/textarea-mui.js +43 -0
- package/lib/stories/custom-mui/th-mui.js +24 -0
- package/lib/stories/custom-mui/thead-mui.js +23 -0
- package/lib/stories/custom-mui/tr-mui.js +33 -0
- package/lib/stories/date-picker/data.json +3 -0
- package/lib/stories/date-picker/datepicker.stories.js +38 -0
- package/lib/stories/date-picker/source.json +110 -0
- package/lib/stories/declaration/data.json +1 -0
- package/lib/stories/declaration/input.stories.js +36 -0
- package/lib/stories/declaration/source.json +74 -0
- package/lib/stories/dropdown/data.json +16 -0
- package/lib/stories/dropdown/dropdown.stories.js +39 -0
- package/lib/stories/dropdown/source.json +158 -0
- package/lib/stories/filter-description/filter-description.stories.js +50 -0
- package/lib/stories/filter-description/source-options.json +81 -0
- package/lib/stories/filter-description/source.json +11 -0
- package/lib/stories/input/data.json +1 -0
- package/lib/stories/input/input.stories.js +36 -0
- package/lib/stories/input/source.json +91 -0
- package/lib/stories/input-number/input-number.stories.js +56 -0
- package/lib/stories/input-number/source-euros.json +37 -0
- package/lib/stories/input-number/source-thansand.json +34 -0
- package/lib/stories/input-number/source.json +33 -0
- package/lib/stories/loop/block-for-loop.stories.js +41 -0
- package/lib/stories/loop/roster-for-loop.stories.js +34 -0
- package/lib/stories/loop/source-bloc.json +114 -0
- package/lib/stories/loop/source-roster.json +114 -0
- package/lib/stories/loop/source-with-header.json +127 -0
- package/lib/stories/overview/data.json +1 -0
- package/lib/stories/overview/overview.stories.js +37 -0
- package/lib/stories/overview/source.json +28 -0
- package/lib/stories/overview/sourceWithHierarchy.json +6290 -0
- package/lib/stories/pairwise/data.json +12 -0
- package/lib/stories/pairwise/links.json +270 -0
- package/lib/stories/pairwise/pairwise-links.stories.js +137 -0
- package/lib/stories/paste-questionnaire/source.json +6290 -0
- package/lib/stories/paste-questionnaire/test.stories.js +84 -0
- package/lib/stories/questionnaires/logement/data.json +2686 -0
- package/lib/stories/questionnaires/logement/logement.stories.js +76 -0
- package/lib/stories/questionnaires/logement/source-sequence.json +34181 -0
- package/lib/stories/questionnaires/logement/source-sum.json +34612 -0
- package/lib/stories/questionnaires/logement/source.json +34191 -0
- package/lib/stories/questionnaires/recensement/data.json +12 -0
- package/lib/stories/questionnaires/recensement/recensement.stories.js +52 -0
- package/lib/stories/questionnaires/recensement/source.json +15190 -0
- package/lib/stories/questionnaires/rp/data.json +5 -0
- package/lib/stories/questionnaires/rp/rp.stories.js +37 -0
- package/lib/stories/questionnaires/rp/source.json +262 -0
- package/lib/stories/questionnaires/simpsons/simpsons.stories.js +553 -0
- package/lib/stories/questionnaires/simpsons/source.json +6296 -0
- package/lib/stories/questionnaires-test/V2_DeclarationsSimples.json +848 -0
- package/lib/stories/questionnaires-test/V2_MinMaxSum_Boucles.json +509 -0
- package/lib/stories/questionnaires-test/V2_QuestSimple_Boucles.json +4091 -0
- package/lib/stories/questionnaires-test/V2_TCMRallyeGames.json +2892 -0
- package/lib/stories/questionnaires-test/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +666 -0
- package/lib/stories/questionnaires-test/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +1966 -0
- package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees2_PasPageFin.json +709 -0
- package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees_PasPageFin.json +533 -0
- package/lib/stories/questionnaires-test/controls/boucles-n.json +202 -0
- package/lib/stories/questionnaires-test/controls/controls.stories.js +97 -0
- package/lib/stories/questionnaires-test/test-dylan.json +558 -0
- package/lib/stories/questionnaires-test/test.stories.js +93 -0
- package/lib/stories/radio/radio.stories.js +43 -0
- package/lib/stories/radio/source.json +51 -0
- package/lib/stories/roundabout/data.json +25 -0
- package/lib/stories/roundabout/roundabout.stories.js +36 -0
- package/lib/stories/roundabout/source.json +273 -0
- package/lib/stories/suggester/simple.json +146 -0
- package/lib/stories/suggester/source.json +254 -0
- package/lib/stories/suggester/suggester-workers.stories.js +208 -0
- package/lib/stories/suggester/suggester.stories.js +84 -0
- package/lib/stories/switch/README.md +31 -0
- package/lib/stories/switch/data-forced.json +48 -0
- package/lib/stories/switch/source.json +80 -0
- package/lib/stories/switch/switch.stories.js +39 -0
- package/lib/stories/table/data-roster.json +1 -0
- package/lib/stories/table/data.json +1 -0
- package/lib/stories/table/source-roster.json +513 -0
- package/lib/stories/table/source.json +31 -0
- package/lib/stories/table/table-dynamique.json +67 -0
- package/lib/stories/table/table.stories.js +63 -0
- package/lib/stories/textarea/data.json +1 -0
- package/lib/stories/textarea/source.json +51 -0
- package/lib/stories/textarea/textarea.stories.js +36 -0
- package/lib/stories/utils/custom-lunatic.scss +28 -0
- package/lib/stories/utils/default-arg-types.js +22 -0
- package/lib/stories/utils/options.js +32 -0
- package/lib/stories/utils/orchestrator.js +263 -0
- package/lib/stories/utils/orchestrator.scss +5 -0
- package/lib/stories/utils/overview.js +54 -0
- package/lib/stories/utils/overview.scss +30 -0
- package/lib/stories/utils/waiting/index.js +13 -0
- package/lib/stories/utils/waiting/preloader.svg +1 -0
- package/lib/stories/utils/waiting/waiting.js +33 -0
- package/lib/stories/utils/waiting/waiting.scss +21 -0
- package/lib/tests/utils/lunatic.d.ts +11 -0
- package/lib/type.utils.js +5 -0
- package/lib/use-lunatic/actions.js +60 -0
- package/lib/use-lunatic/commons/calculated-variables.js +104 -0
- package/lib/use-lunatic/commons/check-loops.js +99 -0
- package/lib/use-lunatic/commons/check-pager.js +24 -0
- package/lib/use-lunatic/commons/compile-controls.js +72 -0
- package/lib/use-lunatic/commons/compose.js +20 -0
- package/lib/use-lunatic/commons/create-map-pages.js +81 -0
- package/lib/use-lunatic/commons/execute-condition-filter.js +27 -0
- package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +268 -0
- package/lib/use-lunatic/commons/execute-expression/create-memoizer.js +63 -0
- package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.js +148 -0
- package/lib/use-lunatic/commons/execute-expression/execute-expression.js +91 -0
- package/lib/use-lunatic/commons/execute-expression/execute-expression.spec.js +38 -0
- package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.js +40 -0
- package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.spec.js +31 -0
- package/lib/use-lunatic/commons/execute-expression/get-safety-expression.js +35 -0
- package/lib/use-lunatic/commons/execute-expression/index.js +13 -0
- package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +111 -0
- package/lib/use-lunatic/commons/fill-components/fill-component-expressions.spec.js +42 -0
- package/lib/use-lunatic/commons/fill-components/fill-component-value.js +22 -0
- package/lib/use-lunatic/commons/fill-components/fill-components.js +45 -0
- package/lib/use-lunatic/commons/fill-components/fill-from-state.js +30 -0
- package/lib/use-lunatic/commons/fill-components/fill-management.js +23 -0
- package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +35 -0
- package/lib/use-lunatic/commons/fill-components/fill-pagination.js +24 -0
- package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +46 -0
- package/lib/use-lunatic/commons/fill-components/index.js +13 -0
- package/lib/use-lunatic/commons/get-compatible-vtl-expression.js +28 -0
- package/lib/use-lunatic/commons/get-component-value/get-component-value.js +176 -0
- package/lib/use-lunatic/commons/get-component-value/index.js +13 -0
- package/lib/use-lunatic/commons/get-components-from-state.js +47 -0
- package/lib/use-lunatic/commons/get-data.js +80 -0
- package/lib/use-lunatic/commons/get-errors-without-empty-value.js +25 -0
- package/lib/use-lunatic/commons/getOverview.js +40 -0
- package/lib/use-lunatic/commons/index.js +109 -0
- package/lib/use-lunatic/commons/is-First-last-page.js +18 -0
- package/lib/use-lunatic/commons/is-paginated-loop.js +11 -0
- package/lib/use-lunatic/commons/is-roundabout.js +10 -0
- package/lib/use-lunatic/commons/load-suggesters.js +158 -0
- package/lib/use-lunatic/commons/page-tag.js +72 -0
- package/lib/use-lunatic/commons/use-components-from-state.js +41 -0
- package/lib/use-lunatic/hooks/use-loop-variables.js +26 -0
- package/lib/use-lunatic/index.js +13 -0
- package/lib/use-lunatic/initial-state.js +49 -0
- package/lib/use-lunatic/lunatic-context.js +83 -0
- package/lib/use-lunatic/reducer/commons/index.js +44 -0
- package/lib/use-lunatic/reducer/commons/is-empty-on-empty-page.js +32 -0
- package/lib/use-lunatic/reducer/commons/is-loop-component.js +10 -0
- package/lib/use-lunatic/reducer/commons/resize-array-variable.js +32 -0
- package/lib/use-lunatic/reducer/commons/validate-condition-filter.js +29 -0
- package/lib/use-lunatic/reducer/index.js +13 -0
- package/lib/use-lunatic/reducer/overview/overview-on-change.js +49 -0
- package/lib/use-lunatic/reducer/overview/overview-on-init.js +104 -0
- package/lib/use-lunatic/reducer/reduce-go-next-page.js +181 -0
- package/lib/use-lunatic/reducer/reduce-go-previous-page.js +146 -0
- package/lib/use-lunatic/reducer/reduce-go-to-page.js +79 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/__mocks__/source-cleaning-loop.json +926 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/index.js +13 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.js +72 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.js +46 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +115 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.js +89 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-missing.js +88 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-resizing.js +113 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.js +44 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +28 -0
- package/lib/use-lunatic/reducer/reduce-on-init.js +238 -0
- package/lib/use-lunatic/reducer/reduce-on-set-waiting.js +21 -0
- package/lib/use-lunatic/reducer/reduce-roundabout.js +29 -0
- package/lib/use-lunatic/reducer/reduce-update-state.js +22 -0
- package/lib/use-lunatic/reducer/reducer.js +37 -0
- package/lib/use-lunatic/reducer/validate-controls/validation-utils.js +62 -0
- package/lib/use-lunatic/type-source.js +24 -0
- package/lib/use-lunatic/type.js +5 -0
- package/lib/use-lunatic/use-lunatic.js +189 -0
- package/lib/use-lunatic/use-lunatic.test.js +168 -0
- package/lib/use-lunatic/use-suggesters.js +158 -0
- package/lib/utils/constants/alphabet.js +8 -0
- package/lib/utils/constants/features.js +12 -0
- package/lib/utils/constants/index.js +60 -0
- package/lib/utils/constants/links.js +10 -0
- package/lib/utils/constants/missing.js +10 -0
- package/lib/utils/constants/variable-status.js +16 -0
- package/lib/utils/constants/variable-types.js +8 -0
- package/lib/utils/idb-tools/clear-store.js +40 -0
- package/lib/utils/idb-tools/create-db-opener.js +47 -0
- package/lib/utils/idb-tools/create-open-db.js +29 -0
- package/lib/utils/idb-tools/get-entity.js +21 -0
- package/lib/utils/idb-tools/get-idb.js +13 -0
- package/lib/utils/idb-tools/idb-bulk-insert.js +134 -0
- package/lib/utils/idb-tools/index.js +64 -0
- package/lib/utils/idb-tools/insert-entity.js +21 -0
- package/lib/utils/idb-tools/open-db.js +24 -0
- package/lib/utils/idb-tools/open-or-create-db.js +42 -0
- package/lib/utils/is-element.js +10 -0
- package/lib/utils/is-object.js +13 -0
- package/lib/utils/object.js +31 -0
- package/lib/utils/store-tools/auto-load.js +162 -0
- package/lib/utils/store-tools/clear-store-data.js +33 -0
- package/lib/utils/store-tools/clear-store-info.js +33 -0
- package/lib/utils/store-tools/constantes.js +31 -0
- package/lib/utils/store-tools/create/create.js +51 -0
- package/lib/utils/store-tools/create/index.js +20 -0
- package/lib/utils/store-tools/create/update-store-info.js +27 -0
- package/lib/utils/store-tools/get-store-count.js +24 -0
- package/lib/utils/store-tools/index.js +54 -0
- package/lib/utils/store-tools/initStore.js +56 -0
- package/lib/utils/store-tools/open-or-create-store.js +52 -0
- package/lib/utils/store-tools/use-store-index.js +58 -0
- package/lib/utils/suggester-workers/append-to-index/append.js +78 -0
- package/lib/utils/suggester-workers/append-to-index/append.worker.js +33 -0
- package/lib/utils/suggester-workers/append-to-index/create-append-task.js +66 -0
- package/lib/utils/suggester-workers/append-to-index/dist/append.worker.dev.js +37 -0
- package/lib/utils/suggester-workers/append-to-index/dist/create-append-task.js +69 -0
- package/lib/utils/suggester-workers/append-to-index/dist/index.dev.js +24 -0
- package/lib/utils/suggester-workers/append-to-index/index.js +20 -0
- package/lib/utils/suggester-workers/append-to-index/prepare-entities.js +88 -0
- package/lib/utils/suggester-workers/append-to-index/store-messages.js +45 -0
- package/lib/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +54 -0
- package/lib/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +77 -0
- package/lib/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +36 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +21 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +36 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +19 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +17 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.js +25 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +24 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +24 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.js +23 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +17 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +53 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +16 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/index.js +20 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/stop-words.js +9 -0
- package/lib/utils/suggester-workers/commons-tokenizer/get-regexp-from-pattern.js +14 -0
- package/lib/utils/suggester-workers/commons-tokenizer/get-stemmer.js +23 -0
- package/lib/utils/suggester-workers/commons-tokenizer/index.js +69 -0
- package/lib/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +18 -0
- package/lib/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +12 -0
- package/lib/utils/suggester-workers/create-worker-ts.js +54 -0
- package/lib/utils/suggester-workers/create-worker.js +54 -0
- package/lib/utils/suggester-workers/find-best-label/find-best-label.js +63 -0
- package/lib/utils/suggester-workers/find-best-label/find-best-label.worker.js +53 -0
- package/lib/utils/suggester-workers/find-best-label/index.js +1 -0
- package/lib/utils/suggester-workers/find-best-label/tokenize.js +45 -0
- package/lib/utils/suggester-workers/find-best-label/tokenize.spec.js +25 -0
- package/lib/utils/suggester-workers/searching/compute-score.js +36 -0
- package/lib/utils/suggester-workers/searching/get-db.js +48 -0
- package/lib/utils/suggester-workers/searching/index.js +13 -0
- package/lib/utils/suggester-workers/searching/order/create-alphanumeric-orderer.js +28 -0
- package/lib/utils/suggester-workers/searching/order/index.js +25 -0
- package/lib/utils/suggester-workers/searching/query-parser/index.js +20 -0
- package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.js +12 -0
- package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.spec.js +27 -0
- package/lib/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +35 -0
- package/lib/utils/suggester-workers/searching/resolve-query-parser.js +57 -0
- package/lib/utils/suggester-workers/searching/search-in-index.js +22 -0
- package/lib/utils/suggester-workers/searching/searching.js +141 -0
- package/lib/utils/suggester-workers/searching/searching.worker.js +20 -0
- package/lib/utils/to-number.js +18 -0
- package/lib/utils/vtl/dataset-builder.js +27 -0
- package/lib/utils/vtl/index.js +13 -0
- package/package.json +164 -143
- package/lib/index.js.map +0 -1
- package/src/components/breadcrumb/breadcrumb.scss +0 -20
- package/src/components/breadcrumb/component.js +0 -29
- package/src/components/breadcrumb/index.js +0 -1
- package/src/components/button/button.scss +0 -24
- package/src/components/button/component.js +0 -25
- package/src/components/button/index.js +0 -1
- package/src/components/checkbox/boolean.js +0 -152
- package/src/components/checkbox/checkbox.scss +0 -71
- package/src/components/checkbox/group.js +0 -187
- package/src/components/checkbox/index.js +0 -3
- package/src/components/checkbox/one.js +0 -10
- package/src/components/components.js +0 -17
- package/src/components/datepicker/component.js +0 -10
- package/src/components/datepicker/datepicker.scss +0 -1
- package/src/components/datepicker/index.js +0 -1
- package/src/components/declarations/component.js +0 -38
- package/src/components/declarations/declarations.scss +0 -38
- package/src/components/declarations/index.js +0 -1
- package/src/components/declarations/wrappers/index.js +0 -3
- package/src/components/declarations/wrappers/input-declarations-wrapper.js +0 -229
- package/src/components/declarations/wrappers/list-declarations-wrapper.js +0 -203
- package/src/components/declarations/wrappers/simple-declarations-wrapper.js +0 -54
- package/src/components/dropdown/commons/actions.js +0 -56
- package/src/components/dropdown/commons/children-to-option.js +0 -9
- package/src/components/dropdown/commons/cleaner-callbacks.js +0 -58
- package/src/components/dropdown/commons/components/closed.icon.js +0 -24
- package/src/components/dropdown/commons/components/dropdown-container.js +0 -29
- package/src/components/dropdown/commons/components/dropdown-field.js +0 -46
- package/src/components/dropdown/commons/components/dropdown.js +0 -183
- package/src/components/dropdown/commons/components/label.js +0 -28
- package/src/components/dropdown/commons/components/opened.icon.js +0 -24
- package/src/components/dropdown/commons/components/panel.js +0 -78
- package/src/components/dropdown/commons/event-callbacks/index.js +0 -5
- package/src/components/dropdown/commons/event-callbacks/on-keydown-callback.js +0 -29
- package/src/components/dropdown/commons/event-callbacks/on-mousedown-callback.js +0 -11
- package/src/components/dropdown/commons/reducer.js +0 -149
- package/src/components/dropdown/commons/tools/index.js +0 -17
- package/src/components/dropdown/component.js +0 -125
- package/src/components/dropdown/dropdown-edit/cross.icon.js +0 -20
- package/src/components/dropdown/dropdown-edit/dropdown-edit.js +0 -190
- package/src/components/dropdown/dropdown-edit/icone.js +0 -33
- package/src/components/dropdown/dropdown-edit/index.js +0 -11
- package/src/components/dropdown/dropdown-edit/option.js +0 -62
- package/src/components/dropdown/dropdown-edit/prefix-tools.js +0 -51
- package/src/components/dropdown/dropdown-simple/dropdown.js +0 -155
- package/src/components/dropdown/dropdown-simple/index.js +0 -20
- package/src/components/dropdown/dropdown-simple/option.js +0 -15
- package/src/components/dropdown/dropdown.scss +0 -175
- package/src/components/dropdown/index.js +0 -1
- package/src/components/filter-description/component.js +0 -41
- package/src/components/filter-description/index.js +0 -1
- package/src/components/icon/assets/checkbox-checked.js +0 -16
- package/src/components/icon/assets/checkbox-unchecked.js +0 -16
- package/src/components/icon/assets/index.js +0 -4
- package/src/components/icon/assets/radio-checked.js +0 -16
- package/src/components/icon/assets/radio-unchecked.js +0 -16
- package/src/components/icon/component.js +0 -33
- package/src/components/icon/icon.scss +0 -13
- package/src/components/icon/index.js +0 -1
- package/src/components/index.js +0 -4
- package/src/components/index.scss +0 -141
- package/src/components/input/index.js +0 -2
- package/src/components/input/input-number.js +0 -44
- package/src/components/input/input.js +0 -10
- package/src/components/input/input.scss +0 -35
- package/src/components/loop/component.js +0 -105
- package/src/components/loop/index.js +0 -1
- package/src/components/loop/loop.scss +0 -11
- package/src/components/loop/paginated-component.js +0 -205
- package/src/components/loop/wrapper.js +0 -15
- package/src/components/loop-constructor/block/block.scss +0 -8
- package/src/components/loop-constructor/block/component.js +0 -8
- package/src/components/loop-constructor/block/index.js +0 -1
- package/src/components/loop-constructor/index.js +0 -1
- package/src/components/loop-constructor/roster/component.js +0 -7
- package/src/components/loop-constructor/roster/index.js +0 -1
- package/src/components/loop-constructor/wrapper/body-component.js +0 -118
- package/src/components/loop-constructor/wrapper/build-components.js +0 -33
- package/src/components/loop-constructor/wrapper/component.js +0 -154
- package/src/components/loop-constructor/wrapper/index.js +0 -1
- package/src/components/progress-bar/component.js +0 -28
- package/src/components/progress-bar/index.js +0 -1
- package/src/components/progress-bar/progress-bar.scss +0 -52
- package/src/components/radio/component.js +0 -8
- package/src/components/radio/index.js +0 -1
- package/src/components/radio/radio.scss +0 -57
- package/src/components/sequence/component.js +0 -41
- package/src/components/sequence/index.js +0 -1
- package/src/components/sequence/sequence.scss +0 -8
- package/src/components/subsequence/component.js +0 -47
- package/src/components/subsequence/index.js +0 -1
- package/src/components/suggester/component.js +0 -103
- package/src/components/suggester/index.js +0 -1
- package/src/components/table/index.js +0 -1
- package/src/components/table/table.js +0 -162
- package/src/components/table/table.scss +0 -24
- package/src/components/textarea/component.js +0 -10
- package/src/components/textarea/index.js +0 -1
- package/src/components/textarea/textarea.scss +0 -6
- package/src/components/tooltip/img/index.js +0 -4
- package/src/components/tooltip/index.js +0 -1
- package/src/components/tooltip/response.js +0 -52
- package/src/components/tooltip/tooltip.scss +0 -27
- package/src/constants/component-types.js +0 -1
- package/src/constants/declarations.js +0 -14
- package/src/constants/index.js +0 -4
- package/src/constants/supported-preferences.js +0 -10
- package/src/constants/value-types.js +0 -5
- package/src/constants/variable-types.js +0 -4
- package/src/stories/breadcrumb/README.md +0 -14
- package/src/stories/breadcrumb/breadcrumb.stories.js +0 -19
- package/src/stories/button/README.md +0 -14
- package/src/stories/button/button.stories.js +0 -27
- package/src/stories/checkbox-boolean/README.md +0 -27
- package/src/stories/checkbox-boolean/checkbox-boolean.stories.js +0 -30
- package/src/stories/checkbox-boolean/data.json +0 -48
- package/src/stories/checkbox-group/README.md +0 -29
- package/src/stories/checkbox-group/checkbox-group.stories.js +0 -35
- package/src/stories/checkbox-group/data-vtl.json +0 -89
- package/src/stories/checkbox-group/data.json +0 -89
- package/src/stories/checkbox-one/README.md +0 -31
- package/src/stories/checkbox-one/checkbox-one.stories.js +0 -32
- package/src/stories/checkbox-one/data-vtl.json +0 -33
- package/src/stories/checkbox-one/data.json +0 -33
- package/src/stories/datepicker/README.md +0 -31
- package/src/stories/datepicker/data.json +0 -28
- package/src/stories/datepicker/datepicker.stories.js +0 -36
- package/src/stories/declarations/README.md +0 -19
- package/src/stories/declarations/declarations.stories.js +0 -112
- package/src/stories/dropdown/README.md +0 -44
- package/src/stories/dropdown/data-naf.json +0 -6963
- package/src/stories/dropdown/data-props.json +0 -81
- package/src/stories/dropdown/data.json +0 -78
- package/src/stories/dropdown/dropdown.stories.js +0 -65
- package/src/stories/filter-description/README.md +0 -15
- package/src/stories/filter-description/filter-description.stories.js +0 -53
- package/src/stories/input/README.md +0 -33
- package/src/stories/input/data.json +0 -28
- package/src/stories/input/input.stories.js +0 -44
- package/src/stories/input-number/README.md +0 -37
- package/src/stories/input-number/data.json +0 -30
- package/src/stories/input-number/input-number.stories.js +0 -53
- package/src/stories/loop/README.md +0 -25
- package/src/stories/loop/loop.stories.js +0 -80
- package/src/stories/loop/with-loop/data-loop-deeper.json +0 -298
- package/src/stories/loop/with-loop/data-loop.json +0 -211
- package/src/stories/loop/with-loop/data-vqs.json +0 -1384
- package/src/stories/loop/with-loop/index.js +0 -3
- package/src/stories/loop/with-roster/data-loop-deeper.json +0 -298
- package/src/stories/loop/with-roster/data-loop.json +0 -213
- package/src/stories/loop/with-roster/data-vqs.json +0 -1383
- package/src/stories/loop/with-roster/index.js +0 -3
- package/src/stories/loop-constructor/README.md +0 -27
- package/src/stories/loop-constructor/data-input.json +0 -64
- package/src/stories/loop-constructor/data-loop.json +0 -66
- package/src/stories/loop-constructor/data-roster.json +0 -68
- package/src/stories/loop-constructor/loop-constructor.stories.js +0 -59
- package/src/stories/pagination/deeper-loop.json +0 -327
- package/src/stories/pagination/pagination.stories.js +0 -57
- package/src/stories/pagination/simple-loop.json +0 -277
- package/src/stories/pagination/simpsons-question.json +0 -4262
- package/src/stories/pagination/simpsons-sequence.json +0 -4362
- package/src/stories/progress-bar/README.md +0 -13
- package/src/stories/progress-bar/progress-bar.stories.js +0 -24
- package/src/stories/questionnaire/fat.json +0 -6558
- package/src/stories/questionnaire/questionnaire.stories.js +0 -25
- package/src/stories/radio/README.md +0 -31
- package/src/stories/radio/data-vtl.json +0 -32
- package/src/stories/radio/data.json +0 -32
- package/src/stories/radio/radio.stories.js +0 -35
- package/src/stories/sequence/README.md +0 -18
- package/src/stories/sequence/sequence.stories.js +0 -28
- package/src/stories/subsequence/README.md +0 -18
- package/src/stories/subsequence/subsequence.stories.js +0 -28
- package/src/stories/suggester/README.md +0 -29
- package/src/stories/suggester/data-vtl.json +0 -28
- package/src/stories/suggester/data.json +0 -28
- package/src/stories/suggester/suggester.stories.js +0 -38
- package/src/stories/table/README.md +0 -29
- package/src/stories/table/data-default.json +0 -19
- package/src/stories/table/data-one-axis-one-measure.json +0 -124
- package/src/stories/table/data-one-axis-two-measures.json +0 -193
- package/src/stories/table/data-one-hierarchical-axis.json +0 -204
- package/src/stories/table/data-roster.json +0 -471
- package/src/stories/table/data-two-axis-one-measure.json +0 -492
- package/src/stories/table/table.stories.js +0 -77
- package/src/stories/textarea/README.md +0 -33
- package/src/stories/textarea/data-forced.json +0 -28
- package/src/stories/textarea/data.json +0 -28
- package/src/stories/textarea/textarea.stories.js +0 -67
- package/src/stories/tooltip-response/README.md +0 -14
- package/src/stories/tooltip-response/md-link.json +0 -31
- package/src/stories/tooltip-response/md-tooltip.json +0 -31
- package/src/stories/tooltip-response/tooltip.stories.js +0 -83
- package/src/stories/utils/custom-lunatic.scss +0 -23
- package/src/stories/utils/img/arrow.png +0 -0
- package/src/stories/utils/img/check_box.svg +0 -1
- package/src/stories/utils/img/check_box_outline.svg +0 -1
- package/src/stories/utils/img/lunatic-logo.png +0 -0
- package/src/stories/utils/img/menu-down.svg +0 -1
- package/src/stories/utils/img/menu-up.svg +0 -1
- package/src/stories/utils/img/radio_button_checked.svg +0 -1
- package/src/stories/utils/img/radio_button_unchecked.svg +0 -1
- package/src/stories/utils/options.js +0 -25
- package/src/stories/utils/orchestrator.js +0 -83
- 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/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/checkbox/group.spec.js +0 -72
- package/src/tests/utils/lib/decorator/title-decorator.spec.js +0 -12
- 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 -60
- package/src/tests/utils/lib/loops/shared.spec.js +0 -78
- 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 -86
- package/src/tests/utils/to-expose/handler/questionnaire.json +0 -154
- package/src/tests/utils/to-expose/handler/results/index.js +0 -6
- package/src/tests/utils/to-expose/handler/results/res-double.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-input-collected.json +0 -154
- package/src/tests/utils/to-expose/handler/results/res-input-edited.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-loop.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-matrix.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-responses.json +0 -157
- 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 -129
- package/src/tests/utils/to-expose/init-questionnaire/result.json +0 -162
- package/src/tests/utils/to-expose/interpret/interpret.spec.js +0 -66
- 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/lib/alphabet.js +0 -1
- package/src/utils/lib/checkbox/group.js +0 -21
- package/src/utils/lib/checkbox/index.js +0 -1
- package/src/utils/lib/decorator/index.js +0 -1
- package/src/utils/lib/decorator/title-decorator.js +0 -16
- package/src/utils/lib/index.js +0 -13
- package/src/utils/lib/label-position.js +0 -12
- package/src/utils/lib/loops/bindings.js +0 -53
- package/src/utils/lib/loops/build-components.js +0 -33
- package/src/utils/lib/loops/index.js +0 -3
- package/src/utils/lib/loops/shared.js +0 -43
- package/src/utils/lib/memo-check.js +0 -24
- package/src/utils/lib/options-positioning.js +0 -9
- package/src/utils/lib/pagination/flow.js +0 -2
- package/src/utils/lib/pagination/index.js +0 -2
- package/src/utils/lib/pagination/navigation/index.js +0 -1
- package/src/utils/lib/pagination/navigation/shared.js +0 -107
- package/src/utils/lib/prop-types/declarations.js +0 -22
- package/src/utils/lib/prop-types/index.js +0 -5
- package/src/utils/lib/prop-types/lines.js +0 -6
- package/src/utils/lib/prop-types/options.js +0 -8
- package/src/utils/lib/prop-types/response.js +0 -6
- package/src/utils/lib/prop-types/value-type.js +0 -9
- package/src/utils/lib/responses.js +0 -9
- package/src/utils/lib/style.js +0 -10
- package/src/utils/lib/table/index.js +0 -1
- package/src/utils/lib/table/roster.js +0 -23
- package/src/utils/lib/tooltip/build-response.js +0 -41
- package/src/utils/lib/tooltip/content.js +0 -55
- package/src/utils/lib/tooltip/index.js +0 -6
- package/src/utils/to-expose/handler.js +0 -99
- package/src/utils/to-expose/hook.js +0 -153
- package/src/utils/to-expose/index.js +0 -11
- package/src/utils/to-expose/init-questionnaire.js +0 -116
- package/src/utils/to-expose/interpret/index.js +0 -1
- package/src/utils/to-expose/interpret/main.js +0 -36
- package/src/utils/to-expose/interpret/md.js +0 -42
- package/src/utils/to-expose/interpret/vtl.js +0 -43
- package/src/utils/to-expose/state.js +0 -58
- /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/edited.png +0 -0
- /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/forced.png +0 -0
|
@@ -0,0 +1,4091 @@
|
|
|
1
|
+
|
|
2
|
+
{ "id" : "l1uiijww",
|
|
3
|
+
"modele" : "REFLUNATIC",
|
|
4
|
+
"enoCoreVersion" : "2.3.7-dev-lunatic-v2",
|
|
5
|
+
"lunaticModelVersion" : "2.2.13-dev-lunatic-v2",
|
|
6
|
+
"generatingDate" : "22-07-2022 13:26:17",
|
|
7
|
+
"missing" : false,
|
|
8
|
+
"pagination" : "question",
|
|
9
|
+
"maxPage" : "34",
|
|
10
|
+
"label" :
|
|
11
|
+
{ "value" : "Lunatic - questionnaire de référence simple - VTL",
|
|
12
|
+
"type" : "VTL|MD" },
|
|
13
|
+
"components" :
|
|
14
|
+
[
|
|
15
|
+
{ "id" : "jfaz9kv9",
|
|
16
|
+
"componentType" : "Sequence",
|
|
17
|
+
"page" : "1",
|
|
18
|
+
"label" :
|
|
19
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
20
|
+
"type" : "VTL|MD" },
|
|
21
|
+
"declarations" :
|
|
22
|
+
[
|
|
23
|
+
{ "id" : "jfaz9kv9-jfazqgv2",
|
|
24
|
+
"declarationType" : "INSTRUCTION",
|
|
25
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
26
|
+
"label" :
|
|
27
|
+
{ "value" : "Cette séquence comprend les questions ouvertes (ceci est une déclaration de type consigne, associée au titre de séquence).",
|
|
28
|
+
"type" : "VTL|MD" } },
|
|
29
|
+
|
|
30
|
+
{ "id" : "jfaz9kv9-l1uiu9hq",
|
|
31
|
+
"declarationType" : "HELP",
|
|
32
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
33
|
+
"label" :
|
|
34
|
+
{ "value" : "Cette séquence comprend les questions ouvertes (ceci est une déclaration de type aide, associée au titre de séquence).",
|
|
35
|
+
"type" : "VTL|MD" } } ],
|
|
36
|
+
"conditionFilter" :
|
|
37
|
+
{ "value" : "true",
|
|
38
|
+
"type" : "VTL" },
|
|
39
|
+
"hierarchy" :
|
|
40
|
+
{ "sequence" :
|
|
41
|
+
{ "id" : "jfaz9kv9",
|
|
42
|
+
"page" : "1",
|
|
43
|
+
"label" :
|
|
44
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
45
|
+
"type" : "VTL|MD" } } } },
|
|
46
|
+
|
|
47
|
+
{ "id" : "jfazmcp8",
|
|
48
|
+
"componentType" : "Subsequence",
|
|
49
|
+
"page" : "2",
|
|
50
|
+
"goToPage" : "2",
|
|
51
|
+
"label" :
|
|
52
|
+
{ "value" : "Titre de la première sous-séquence",
|
|
53
|
+
"type" : "VTL|MD" },
|
|
54
|
+
"declarations" :
|
|
55
|
+
[
|
|
56
|
+
{ "id" : "jfazmcp8-kk47fewm",
|
|
57
|
+
"declarationType" : "INSTRUCTION",
|
|
58
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
59
|
+
"label" :
|
|
60
|
+
{ "value" : "Ceci est une déclaration de type consigne, associée au titre de sous-séquence.",
|
|
61
|
+
"type" : "VTL|MD" } },
|
|
62
|
+
|
|
63
|
+
{ "id" : "jfazmcp8-l1uiw60f",
|
|
64
|
+
"declarationType" : "HELP",
|
|
65
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
66
|
+
"label" :
|
|
67
|
+
{ "value" : "Ceci est une déclaration de type aide, associée au titre de sous-séquence.",
|
|
68
|
+
"type" : "VTL|MD" } } ],
|
|
69
|
+
"conditionFilter" :
|
|
70
|
+
{ "value" : "true",
|
|
71
|
+
"type" : "VTL" },
|
|
72
|
+
"hierarchy" :
|
|
73
|
+
{ "sequence" :
|
|
74
|
+
{ "id" : "jfaz9kv9",
|
|
75
|
+
"page" : "1",
|
|
76
|
+
"label" :
|
|
77
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
78
|
+
"type" : "VTL|MD" } },
|
|
79
|
+
"subSequence" :
|
|
80
|
+
{ "id" : "jfazmcp8",
|
|
81
|
+
"page" : "2",
|
|
82
|
+
"label" :
|
|
83
|
+
{ "value" : "Titre de la première sous-séquence",
|
|
84
|
+
"type" : "VTL|MD" } } } },
|
|
85
|
+
|
|
86
|
+
{ "id" : "jfazk91m",
|
|
87
|
+
"componentType" : "CheckboxBoolean",
|
|
88
|
+
"mandatory" : false,
|
|
89
|
+
"page" : "3",
|
|
90
|
+
"label" :
|
|
91
|
+
{ "value" : "\"➡ 1. \" || \"Je suis un booleen qui filtre le reste\"",
|
|
92
|
+
"type" : "VTL|MD" },
|
|
93
|
+
"declarations" :
|
|
94
|
+
[
|
|
95
|
+
{ "id" : "jfazk91m-l1vvxe3l",
|
|
96
|
+
"declarationType" : "HELP",
|
|
97
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
98
|
+
"label" :
|
|
99
|
+
{ "value" : "\"Je suis un test de mise en forme : combien de lignes pour cette déclaration ? 4 ?\" \"* un tiret\" \"* deux tirets\" \"Tout va bien\"",
|
|
100
|
+
"type" : "VTL|MD" } } ],
|
|
101
|
+
"conditionFilter" :
|
|
102
|
+
{ "value" : "true",
|
|
103
|
+
"type" : "VTL" },
|
|
104
|
+
"hierarchy" :
|
|
105
|
+
{ "sequence" :
|
|
106
|
+
{ "id" : "jfaz9kv9",
|
|
107
|
+
"page" : "1",
|
|
108
|
+
"label" :
|
|
109
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
110
|
+
"type" : "VTL|MD" } },
|
|
111
|
+
"subSequence" :
|
|
112
|
+
{ "id" : "jfazmcp8",
|
|
113
|
+
"page" : "2",
|
|
114
|
+
"label" :
|
|
115
|
+
{ "value" : "Titre de la première sous-séquence",
|
|
116
|
+
"type" : "VTL|MD" } } },
|
|
117
|
+
"bindingDependencies" :
|
|
118
|
+
[ "COCHECASE" ],
|
|
119
|
+
"response" :
|
|
120
|
+
{ "name" : "COCHECASE" } },
|
|
121
|
+
|
|
122
|
+
{ "id" : "jfazsitt",
|
|
123
|
+
"componentType" : "Subsequence",
|
|
124
|
+
"goToPage" : "4",
|
|
125
|
+
"label" :
|
|
126
|
+
{ "value" : "Sous-séquence - questions de type Texte",
|
|
127
|
+
"type" : "VTL|MD" },
|
|
128
|
+
"conditionFilter" :
|
|
129
|
+
{ "value" : "(COCHECASE = true)",
|
|
130
|
+
"type" : "VTL",
|
|
131
|
+
"bindingDependencies" :
|
|
132
|
+
[ "COCHECASE" ] },
|
|
133
|
+
"hierarchy" :
|
|
134
|
+
{ "sequence" :
|
|
135
|
+
{ "id" : "jfaz9kv9",
|
|
136
|
+
"page" : "1",
|
|
137
|
+
"label" :
|
|
138
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
139
|
+
"type" : "VTL|MD" } },
|
|
140
|
+
"subSequence" :
|
|
141
|
+
{ "id" : "jfazsitt",
|
|
142
|
+
"page" : "4",
|
|
143
|
+
"label" :
|
|
144
|
+
{ "value" : "Sous-séquence - questions de type Texte",
|
|
145
|
+
"type" : "VTL|MD" } } } },
|
|
146
|
+
|
|
147
|
+
{ "id" : "jfazww20",
|
|
148
|
+
"componentType" : "Input",
|
|
149
|
+
"mandatory" : false,
|
|
150
|
+
"page" : "4",
|
|
151
|
+
"maxLength" : 10,
|
|
152
|
+
"label" :
|
|
153
|
+
{ "value" : "\"➡ 2. \" || \"Je suis le libellé de la question de type texte de longueur inférieure à 250 caractères (10 ici)\"",
|
|
154
|
+
"type" : "VTL|MD" },
|
|
155
|
+
"conditionFilter" :
|
|
156
|
+
{ "value" : "(COCHECASE = true)",
|
|
157
|
+
"type" : "VTL",
|
|
158
|
+
"bindingDependencies" :
|
|
159
|
+
[ "COCHECASE" ] },
|
|
160
|
+
"hierarchy" :
|
|
161
|
+
{ "sequence" :
|
|
162
|
+
{ "id" : "jfaz9kv9",
|
|
163
|
+
"page" : "1",
|
|
164
|
+
"label" :
|
|
165
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
166
|
+
"type" : "VTL|MD" } },
|
|
167
|
+
"subSequence" :
|
|
168
|
+
{ "id" : "jfazsitt",
|
|
169
|
+
"page" : "4",
|
|
170
|
+
"label" :
|
|
171
|
+
{ "value" : "Sous-séquence - questions de type Texte",
|
|
172
|
+
"type" : "VTL|MD" } } },
|
|
173
|
+
"bindingDependencies" :
|
|
174
|
+
[ "TEXTE10" ],
|
|
175
|
+
"response" :
|
|
176
|
+
{ "name" : "TEXTE10" } },
|
|
177
|
+
|
|
178
|
+
{ "id" : "jfazwjyv",
|
|
179
|
+
"componentType" : "Input",
|
|
180
|
+
"mandatory" : false,
|
|
181
|
+
"page" : "5",
|
|
182
|
+
"maxLength" : 249,
|
|
183
|
+
"label" :
|
|
184
|
+
{ "value" : "\"➡ 3. \" || \"Je suis le libellé de la question de type texte de longueur 249\"",
|
|
185
|
+
"type" : "VTL|MD" },
|
|
186
|
+
"conditionFilter" :
|
|
187
|
+
{ "value" : "(COCHECASE = true)",
|
|
188
|
+
"type" : "VTL",
|
|
189
|
+
"bindingDependencies" :
|
|
190
|
+
[ "COCHECASE" ] },
|
|
191
|
+
"hierarchy" :
|
|
192
|
+
{ "sequence" :
|
|
193
|
+
{ "id" : "jfaz9kv9",
|
|
194
|
+
"page" : "1",
|
|
195
|
+
"label" :
|
|
196
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
197
|
+
"type" : "VTL|MD" } },
|
|
198
|
+
"subSequence" :
|
|
199
|
+
{ "id" : "jfazsitt",
|
|
200
|
+
"page" : "4",
|
|
201
|
+
"label" :
|
|
202
|
+
{ "value" : "Sous-séquence - questions de type Texte",
|
|
203
|
+
"type" : "VTL|MD" } } },
|
|
204
|
+
"bindingDependencies" :
|
|
205
|
+
[ "TEXTELONG249" ],
|
|
206
|
+
"response" :
|
|
207
|
+
{ "name" : "TEXTELONG249" } },
|
|
208
|
+
|
|
209
|
+
{ "id" : "kzwqst6c",
|
|
210
|
+
"componentType" : "Textarea",
|
|
211
|
+
"mandatory" : false,
|
|
212
|
+
"page" : "6",
|
|
213
|
+
"maxLength" : 250,
|
|
214
|
+
"label" :
|
|
215
|
+
{ "value" : "\"➡ 4. \" || \"Je suis le libellé de la question de type texte de longueur supérieure à 250 caractères ici 250\"",
|
|
216
|
+
"type" : "VTL|MD" },
|
|
217
|
+
"conditionFilter" :
|
|
218
|
+
{ "value" : "(COCHECASE = true)",
|
|
219
|
+
"type" : "VTL",
|
|
220
|
+
"bindingDependencies" :
|
|
221
|
+
[ "COCHECASE" ] },
|
|
222
|
+
"hierarchy" :
|
|
223
|
+
{ "sequence" :
|
|
224
|
+
{ "id" : "jfaz9kv9",
|
|
225
|
+
"page" : "1",
|
|
226
|
+
"label" :
|
|
227
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
228
|
+
"type" : "VTL|MD" } },
|
|
229
|
+
"subSequence" :
|
|
230
|
+
{ "id" : "jfazsitt",
|
|
231
|
+
"page" : "4",
|
|
232
|
+
"label" :
|
|
233
|
+
{ "value" : "Sous-séquence - questions de type Texte",
|
|
234
|
+
"type" : "VTL|MD" } } },
|
|
235
|
+
"bindingDependencies" :
|
|
236
|
+
[ "TEXTELONG250" ],
|
|
237
|
+
"response" :
|
|
238
|
+
{ "name" : "TEXTELONG250" } },
|
|
239
|
+
|
|
240
|
+
{ "id" : "kk2fu72i",
|
|
241
|
+
"componentType" : "Input",
|
|
242
|
+
"mandatory" : false,
|
|
243
|
+
"page" : "7",
|
|
244
|
+
"maxLength" : 9,
|
|
245
|
+
"label" :
|
|
246
|
+
{ "value" : "\"➡ 5. \" || \"Quel est votre SIREN (sur 9 caractères) ? (cible : ajouter une regexp \/ non fait pour l’instant)\"",
|
|
247
|
+
"type" : "VTL|MD" },
|
|
248
|
+
"declarations" :
|
|
249
|
+
[
|
|
250
|
+
{ "id" : "kk2fu72i-kk47ngyp",
|
|
251
|
+
"declarationType" : "INSTRUCTION",
|
|
252
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
253
|
+
"label" :
|
|
254
|
+
{ "value" : "Ceci est une déclaration de type consigne, associée au titre de question.",
|
|
255
|
+
"type" : "VTL|MD" } } ],
|
|
256
|
+
"conditionFilter" :
|
|
257
|
+
{ "value" : "(COCHECASE = true)",
|
|
258
|
+
"type" : "VTL",
|
|
259
|
+
"bindingDependencies" :
|
|
260
|
+
[ "COCHECASE" ] },
|
|
261
|
+
"controls" :
|
|
262
|
+
[
|
|
263
|
+
{ "id" : "kk2fu72i-CI-0",
|
|
264
|
+
"criticality" : "WARN",
|
|
265
|
+
"control" :
|
|
266
|
+
{ "value" : "not(SIREN = \"000000000\")",
|
|
267
|
+
"type" : "VTL" },
|
|
268
|
+
"errorMessage" :
|
|
269
|
+
{ "value" : "Cette réponse n’est pas un SIREN ",
|
|
270
|
+
"type" : "VTL|MD" },
|
|
271
|
+
"bindingDependencies" :
|
|
272
|
+
[ "SIREN" ] } ],
|
|
273
|
+
"hierarchy" :
|
|
274
|
+
{ "sequence" :
|
|
275
|
+
{ "id" : "jfaz9kv9",
|
|
276
|
+
"page" : "1",
|
|
277
|
+
"label" :
|
|
278
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
279
|
+
"type" : "VTL|MD" } },
|
|
280
|
+
"subSequence" :
|
|
281
|
+
{ "id" : "jfazsitt",
|
|
282
|
+
"page" : "4",
|
|
283
|
+
"label" :
|
|
284
|
+
{ "value" : "Sous-séquence - questions de type Texte",
|
|
285
|
+
"type" : "VTL|MD" } } },
|
|
286
|
+
"bindingDependencies" :
|
|
287
|
+
[ "SIREN" ],
|
|
288
|
+
"response" :
|
|
289
|
+
{ "name" : "SIREN" } },
|
|
290
|
+
|
|
291
|
+
{ "id" : "jfjhggkx",
|
|
292
|
+
"componentType" : "Subsequence",
|
|
293
|
+
"goToPage" : "8",
|
|
294
|
+
"label" :
|
|
295
|
+
{ "value" : "Numériques",
|
|
296
|
+
"type" : "VTL|MD" },
|
|
297
|
+
"conditionFilter" :
|
|
298
|
+
{ "value" : "(COCHECASE = true)",
|
|
299
|
+
"type" : "VTL",
|
|
300
|
+
"bindingDependencies" :
|
|
301
|
+
[ "COCHECASE" ] },
|
|
302
|
+
"hierarchy" :
|
|
303
|
+
{ "sequence" :
|
|
304
|
+
{ "id" : "jfaz9kv9",
|
|
305
|
+
"page" : "1",
|
|
306
|
+
"label" :
|
|
307
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
308
|
+
"type" : "VTL|MD" } },
|
|
309
|
+
"subSequence" :
|
|
310
|
+
{ "id" : "jfjhggkx",
|
|
311
|
+
"page" : "8",
|
|
312
|
+
"label" :
|
|
313
|
+
{ "value" : "Numériques",
|
|
314
|
+
"type" : "VTL|MD" } } } },
|
|
315
|
+
|
|
316
|
+
{ "id" : "jfjh1ndk",
|
|
317
|
+
"componentType" : "InputNumber",
|
|
318
|
+
"mandatory" : false,
|
|
319
|
+
"page" : "8",
|
|
320
|
+
"min" : 10,
|
|
321
|
+
"max" : 100,
|
|
322
|
+
"decimals" : 0,
|
|
323
|
+
"label" :
|
|
324
|
+
{ "value" : "\"➡ 6. \" || \"Nombre entier sans unité, entre 10 et 100.\"",
|
|
325
|
+
"type" : "VTL|MD" },
|
|
326
|
+
"declarations" :
|
|
327
|
+
[
|
|
328
|
+
{ "id" : "jfjh1ndk-kyisnj3g",
|
|
329
|
+
"declarationType" : "HELP",
|
|
330
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
331
|
+
"label" :
|
|
332
|
+
{ "value" : "Aide : controle si saisie > 50",
|
|
333
|
+
"type" : "VTL|MD" } } ],
|
|
334
|
+
"conditionFilter" :
|
|
335
|
+
{ "value" : "(COCHECASE = true)",
|
|
336
|
+
"type" : "VTL",
|
|
337
|
+
"bindingDependencies" :
|
|
338
|
+
[ "COCHECASE" ] },
|
|
339
|
+
"controls" :
|
|
340
|
+
[
|
|
341
|
+
{ "id" : "jfjh1ndk-CI-0",
|
|
342
|
+
"criticality" : "WARN",
|
|
343
|
+
"control" :
|
|
344
|
+
{ "value" : "not(cast(nvl(INTEGER,\"0\"),integer) > 50)",
|
|
345
|
+
"type" : "VTL" },
|
|
346
|
+
"errorMessage" :
|
|
347
|
+
{ "value" : "Bizarre que > 50",
|
|
348
|
+
"type" : "VTL|MD" },
|
|
349
|
+
"bindingDependencies" :
|
|
350
|
+
[ "INTEGER" ] } ],
|
|
351
|
+
"hierarchy" :
|
|
352
|
+
{ "sequence" :
|
|
353
|
+
{ "id" : "jfaz9kv9",
|
|
354
|
+
"page" : "1",
|
|
355
|
+
"label" :
|
|
356
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
357
|
+
"type" : "VTL|MD" } },
|
|
358
|
+
"subSequence" :
|
|
359
|
+
{ "id" : "jfjhggkx",
|
|
360
|
+
"page" : "8",
|
|
361
|
+
"label" :
|
|
362
|
+
{ "value" : "Numériques",
|
|
363
|
+
"type" : "VTL|MD" } } },
|
|
364
|
+
"bindingDependencies" :
|
|
365
|
+
[ "INTEGER" ],
|
|
366
|
+
"response" :
|
|
367
|
+
{ "name" : "INTEGER" } },
|
|
368
|
+
|
|
369
|
+
{ "id" : "jfjhb2pz",
|
|
370
|
+
"componentType" : "InputNumber",
|
|
371
|
+
"mandatory" : false,
|
|
372
|
+
"page" : "9",
|
|
373
|
+
"min" : 10,
|
|
374
|
+
"max" : 100,
|
|
375
|
+
"decimals" : 2,
|
|
376
|
+
"label" :
|
|
377
|
+
{ "value" : "\"➡ 7. \" || \"Numérique décimal (2) sans unité, entre 10 et 100\"",
|
|
378
|
+
"type" : "VTL|MD" },
|
|
379
|
+
"conditionFilter" :
|
|
380
|
+
{ "value" : "(COCHECASE = true)",
|
|
381
|
+
"type" : "VTL",
|
|
382
|
+
"bindingDependencies" :
|
|
383
|
+
[ "COCHECASE" ] },
|
|
384
|
+
"hierarchy" :
|
|
385
|
+
{ "sequence" :
|
|
386
|
+
{ "id" : "jfaz9kv9",
|
|
387
|
+
"page" : "1",
|
|
388
|
+
"label" :
|
|
389
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
390
|
+
"type" : "VTL|MD" } },
|
|
391
|
+
"subSequence" :
|
|
392
|
+
{ "id" : "jfjhggkx",
|
|
393
|
+
"page" : "8",
|
|
394
|
+
"label" :
|
|
395
|
+
{ "value" : "Numériques",
|
|
396
|
+
"type" : "VTL|MD" } } },
|
|
397
|
+
"bindingDependencies" :
|
|
398
|
+
[ "FLOAT" ],
|
|
399
|
+
"response" :
|
|
400
|
+
{ "name" : "FLOAT" } },
|
|
401
|
+
|
|
402
|
+
{ "id" : "l1ujlrg4",
|
|
403
|
+
"componentType" : "InputNumber",
|
|
404
|
+
"mandatory" : false,
|
|
405
|
+
"page" : "10",
|
|
406
|
+
"min" : -1000,
|
|
407
|
+
"max" : 1000,
|
|
408
|
+
"decimals" : 0,
|
|
409
|
+
"label" :
|
|
410
|
+
{ "value" : "\"➡ 8. \" || \"Numérique négatif, entre -1000 et -1000\"",
|
|
411
|
+
"type" : "VTL|MD" },
|
|
412
|
+
"conditionFilter" :
|
|
413
|
+
{ "value" : "(COCHECASE = true)",
|
|
414
|
+
"type" : "VTL",
|
|
415
|
+
"bindingDependencies" :
|
|
416
|
+
[ "COCHECASE" ] },
|
|
417
|
+
"hierarchy" :
|
|
418
|
+
{ "sequence" :
|
|
419
|
+
{ "id" : "jfaz9kv9",
|
|
420
|
+
"page" : "1",
|
|
421
|
+
"label" :
|
|
422
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
423
|
+
"type" : "VTL|MD" } },
|
|
424
|
+
"subSequence" :
|
|
425
|
+
{ "id" : "jfjhggkx",
|
|
426
|
+
"page" : "8",
|
|
427
|
+
"label" :
|
|
428
|
+
{ "value" : "Numériques",
|
|
429
|
+
"type" : "VTL|MD" } } },
|
|
430
|
+
"bindingDependencies" :
|
|
431
|
+
[ "FLOATNEG" ],
|
|
432
|
+
"response" :
|
|
433
|
+
{ "name" : "FLOATNEG" } },
|
|
434
|
+
|
|
435
|
+
{ "id" : "jfjtbqh1",
|
|
436
|
+
"componentType" : "InputNumber",
|
|
437
|
+
"mandatory" : false,
|
|
438
|
+
"page" : "11",
|
|
439
|
+
"min" : 0,
|
|
440
|
+
"max" : 10,
|
|
441
|
+
"decimals" : 0,
|
|
442
|
+
"label" :
|
|
443
|
+
{ "value" : "\"➡ 9. \" || \"Nombre sans decimal, avec unité, entre 0 et 10\"",
|
|
444
|
+
"type" : "VTL|MD" },
|
|
445
|
+
"conditionFilter" :
|
|
446
|
+
{ "value" : "(COCHECASE = true)",
|
|
447
|
+
"type" : "VTL",
|
|
448
|
+
"bindingDependencies" :
|
|
449
|
+
[ "COCHECASE" ] },
|
|
450
|
+
"hierarchy" :
|
|
451
|
+
{ "sequence" :
|
|
452
|
+
{ "id" : "jfaz9kv9",
|
|
453
|
+
"page" : "1",
|
|
454
|
+
"label" :
|
|
455
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
456
|
+
"type" : "VTL|MD" } },
|
|
457
|
+
"subSequence" :
|
|
458
|
+
{ "id" : "jfjhggkx",
|
|
459
|
+
"page" : "8",
|
|
460
|
+
"label" :
|
|
461
|
+
{ "value" : "Numériques",
|
|
462
|
+
"type" : "VTL|MD" } } },
|
|
463
|
+
"bindingDependencies" :
|
|
464
|
+
[ "UNIT" ],
|
|
465
|
+
"unit" : "k€",
|
|
466
|
+
"response" :
|
|
467
|
+
{ "name" : "UNIT" } },
|
|
468
|
+
|
|
469
|
+
{ "id" : "kyiseu7q",
|
|
470
|
+
"componentType" : "InputNumber",
|
|
471
|
+
"mandatory" : false,
|
|
472
|
+
"page" : "12",
|
|
473
|
+
"min" : 0,
|
|
474
|
+
"max" : 10,
|
|
475
|
+
"decimals" : 2,
|
|
476
|
+
"label" :
|
|
477
|
+
{ "value" : "\"➡ 10. \" || \"Nombre avec unité, avec décimal, entre 0 et 10.\"",
|
|
478
|
+
"type" : "VTL|MD" },
|
|
479
|
+
"declarations" :
|
|
480
|
+
[
|
|
481
|
+
{ "id" : "kyiseu7q-l1uu2ui0",
|
|
482
|
+
"declarationType" : "HELP",
|
|
483
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
484
|
+
"label" :
|
|
485
|
+
{ "value" : "Controle avec variable précédente (si UNIT > UNITD)",
|
|
486
|
+
"type" : "VTL|MD" } } ],
|
|
487
|
+
"conditionFilter" :
|
|
488
|
+
{ "value" : "(COCHECASE = true)",
|
|
489
|
+
"type" : "VTL",
|
|
490
|
+
"bindingDependencies" :
|
|
491
|
+
[ "COCHECASE" ] },
|
|
492
|
+
"controls" :
|
|
493
|
+
[
|
|
494
|
+
{ "id" : "kyiseu7q-CI-0",
|
|
495
|
+
"criticality" : "WARN",
|
|
496
|
+
"control" :
|
|
497
|
+
{ "value" : "not(cast(nvl(UNIT,\"0\"),number) > cast(nvl(UNITD,\"0\"),number))",
|
|
498
|
+
"type" : "VTL" },
|
|
499
|
+
"errorMessage" :
|
|
500
|
+
{ "value" : "UNIT > UNITD ",
|
|
501
|
+
"type" : "VTL|MD" },
|
|
502
|
+
"bindingDependencies" :
|
|
503
|
+
[ "UNIT",
|
|
504
|
+
"UNITD" ] } ],
|
|
505
|
+
"hierarchy" :
|
|
506
|
+
{ "sequence" :
|
|
507
|
+
{ "id" : "jfaz9kv9",
|
|
508
|
+
"page" : "1",
|
|
509
|
+
"label" :
|
|
510
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
511
|
+
"type" : "VTL|MD" } },
|
|
512
|
+
"subSequence" :
|
|
513
|
+
{ "id" : "jfjhggkx",
|
|
514
|
+
"page" : "8",
|
|
515
|
+
"label" :
|
|
516
|
+
{ "value" : "Numériques",
|
|
517
|
+
"type" : "VTL|MD" } } },
|
|
518
|
+
"bindingDependencies" :
|
|
519
|
+
[ "UNITD" ],
|
|
520
|
+
"unit" : "k€",
|
|
521
|
+
"response" :
|
|
522
|
+
{ "name" : "UNITD" } },
|
|
523
|
+
|
|
524
|
+
{ "id" : "jfjeuskc",
|
|
525
|
+
"componentType" : "Subsequence",
|
|
526
|
+
"goToPage" : "13",
|
|
527
|
+
"label" :
|
|
528
|
+
{ "value" : "Autres formats de réponse",
|
|
529
|
+
"type" : "VTL|MD" },
|
|
530
|
+
"conditionFilter" :
|
|
531
|
+
{ "value" : "(COCHECASE = true)",
|
|
532
|
+
"type" : "VTL",
|
|
533
|
+
"bindingDependencies" :
|
|
534
|
+
[ "COCHECASE" ] },
|
|
535
|
+
"hierarchy" :
|
|
536
|
+
{ "sequence" :
|
|
537
|
+
{ "id" : "jfaz9kv9",
|
|
538
|
+
"page" : "1",
|
|
539
|
+
"label" :
|
|
540
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
541
|
+
"type" : "VTL|MD" } },
|
|
542
|
+
"subSequence" :
|
|
543
|
+
{ "id" : "jfjeuskc",
|
|
544
|
+
"page" : "13",
|
|
545
|
+
"label" :
|
|
546
|
+
{ "value" : "Autres formats de réponse",
|
|
547
|
+
"type" : "VTL|MD" } } } },
|
|
548
|
+
|
|
549
|
+
{ "id" : "jfjfckyw",
|
|
550
|
+
"componentType" : "Datepicker",
|
|
551
|
+
"mandatory" : false,
|
|
552
|
+
"page" : "13",
|
|
553
|
+
"min" : "1980-01-01",
|
|
554
|
+
"max" : "2022-01-01",
|
|
555
|
+
"label" :
|
|
556
|
+
{ "value" : "\"➡ 11. \" || \"Date AAAAMMJJ entre 1980 01 01 et 2022 01 01\"",
|
|
557
|
+
"type" : "VTL|MD" },
|
|
558
|
+
"conditionFilter" :
|
|
559
|
+
{ "value" : "(COCHECASE = true)",
|
|
560
|
+
"type" : "VTL",
|
|
561
|
+
"bindingDependencies" :
|
|
562
|
+
[ "COCHECASE" ] },
|
|
563
|
+
"hierarchy" :
|
|
564
|
+
{ "sequence" :
|
|
565
|
+
{ "id" : "jfaz9kv9",
|
|
566
|
+
"page" : "1",
|
|
567
|
+
"label" :
|
|
568
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
569
|
+
"type" : "VTL|MD" } },
|
|
570
|
+
"subSequence" :
|
|
571
|
+
{ "id" : "jfjeuskc",
|
|
572
|
+
"page" : "13",
|
|
573
|
+
"label" :
|
|
574
|
+
{ "value" : "Autres formats de réponse",
|
|
575
|
+
"type" : "VTL|MD" } } },
|
|
576
|
+
"bindingDependencies" :
|
|
577
|
+
[ "DATE" ],
|
|
578
|
+
"dateFormat" : "YYYY-MM-DD",
|
|
579
|
+
"response" :
|
|
580
|
+
{ "name" : "DATE" } },
|
|
581
|
+
|
|
582
|
+
{ "id" : "kvl6bpxb",
|
|
583
|
+
"componentType" : "Datepicker",
|
|
584
|
+
"mandatory" : false,
|
|
585
|
+
"page" : "14",
|
|
586
|
+
"min" : "1900",
|
|
587
|
+
"max" : "2022",
|
|
588
|
+
"label" :
|
|
589
|
+
{ "value" : "\"➡ 12. \" || \"Date AAAA entre 1900 et 2022\"",
|
|
590
|
+
"type" : "VTL|MD" },
|
|
591
|
+
"conditionFilter" :
|
|
592
|
+
{ "value" : "(COCHECASE = true)",
|
|
593
|
+
"type" : "VTL",
|
|
594
|
+
"bindingDependencies" :
|
|
595
|
+
[ "COCHECASE" ] },
|
|
596
|
+
"hierarchy" :
|
|
597
|
+
{ "sequence" :
|
|
598
|
+
{ "id" : "jfaz9kv9",
|
|
599
|
+
"page" : "1",
|
|
600
|
+
"label" :
|
|
601
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
602
|
+
"type" : "VTL|MD" } },
|
|
603
|
+
"subSequence" :
|
|
604
|
+
{ "id" : "jfjeuskc",
|
|
605
|
+
"page" : "13",
|
|
606
|
+
"label" :
|
|
607
|
+
{ "value" : "Autres formats de réponse",
|
|
608
|
+
"type" : "VTL|MD" } } },
|
|
609
|
+
"bindingDependencies" :
|
|
610
|
+
[ "DAAAA" ],
|
|
611
|
+
"dateFormat" : "YYYY",
|
|
612
|
+
"response" :
|
|
613
|
+
{ "name" : "DAAAA" } },
|
|
614
|
+
|
|
615
|
+
{ "id" : "jfjeud07",
|
|
616
|
+
"componentType" : "CheckboxBoolean",
|
|
617
|
+
"mandatory" : false,
|
|
618
|
+
"page" : "15",
|
|
619
|
+
"label" :
|
|
620
|
+
{ "value" : "\"➡ 13. \" || \"Booléen\"",
|
|
621
|
+
"type" : "VTL|MD" },
|
|
622
|
+
"conditionFilter" :
|
|
623
|
+
{ "value" : "(COCHECASE = true)",
|
|
624
|
+
"type" : "VTL",
|
|
625
|
+
"bindingDependencies" :
|
|
626
|
+
[ "COCHECASE" ] },
|
|
627
|
+
"hierarchy" :
|
|
628
|
+
{ "sequence" :
|
|
629
|
+
{ "id" : "jfaz9kv9",
|
|
630
|
+
"page" : "1",
|
|
631
|
+
"label" :
|
|
632
|
+
{ "value" : "Sequence 1 - Questions ouvertes",
|
|
633
|
+
"type" : "VTL|MD" } },
|
|
634
|
+
"subSequence" :
|
|
635
|
+
{ "id" : "jfjeuskc",
|
|
636
|
+
"page" : "13",
|
|
637
|
+
"label" :
|
|
638
|
+
{ "value" : "Autres formats de réponse",
|
|
639
|
+
"type" : "VTL|MD" } } },
|
|
640
|
+
"bindingDependencies" :
|
|
641
|
+
[ "BOOLEN" ],
|
|
642
|
+
"response" :
|
|
643
|
+
{ "name" : "BOOLEN" } },
|
|
644
|
+
|
|
645
|
+
{ "id" : "jfjew4oy",
|
|
646
|
+
"componentType" : "Sequence",
|
|
647
|
+
"page" : "16",
|
|
648
|
+
"label" :
|
|
649
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
650
|
+
"type" : "VTL|MD" },
|
|
651
|
+
"conditionFilter" :
|
|
652
|
+
{ "value" : "(COCHECASE = true)",
|
|
653
|
+
"type" : "VTL",
|
|
654
|
+
"bindingDependencies" :
|
|
655
|
+
[ "COCHECASE" ] },
|
|
656
|
+
"hierarchy" :
|
|
657
|
+
{ "sequence" :
|
|
658
|
+
{ "id" : "jfjew4oy",
|
|
659
|
+
"page" : "16",
|
|
660
|
+
"label" :
|
|
661
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
662
|
+
"type" : "VTL|MD" } } } },
|
|
663
|
+
|
|
664
|
+
{ "id" : "jfkxouu8",
|
|
665
|
+
"componentType" : "Subsequence",
|
|
666
|
+
"page" : "17",
|
|
667
|
+
"goToPage" : "17",
|
|
668
|
+
"label" :
|
|
669
|
+
{ "value" : "Questions à choix unique",
|
|
670
|
+
"type" : "VTL|MD" },
|
|
671
|
+
"declarations" :
|
|
672
|
+
[
|
|
673
|
+
{ "id" : "jfkxouu8-l1ujjzks",
|
|
674
|
+
"declarationType" : "HELP",
|
|
675
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
676
|
+
"label" :
|
|
677
|
+
{ "value" : "Description des QCU",
|
|
678
|
+
"type" : "VTL|MD" } } ],
|
|
679
|
+
"conditionFilter" :
|
|
680
|
+
{ "value" : "(COCHECASE = true)",
|
|
681
|
+
"type" : "VTL",
|
|
682
|
+
"bindingDependencies" :
|
|
683
|
+
[ "COCHECASE" ] },
|
|
684
|
+
"hierarchy" :
|
|
685
|
+
{ "sequence" :
|
|
686
|
+
{ "id" : "jfjew4oy",
|
|
687
|
+
"page" : "16",
|
|
688
|
+
"label" :
|
|
689
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
690
|
+
"type" : "VTL|MD" } },
|
|
691
|
+
"subSequence" :
|
|
692
|
+
{ "id" : "jfkxouu8",
|
|
693
|
+
"page" : "17",
|
|
694
|
+
"label" :
|
|
695
|
+
{ "value" : "Questions à choix unique",
|
|
696
|
+
"type" : "VTL|MD" } } } },
|
|
697
|
+
|
|
698
|
+
{ "id" : "jfjepz6i",
|
|
699
|
+
"componentType" : "Radio",
|
|
700
|
+
"mandatory" : false,
|
|
701
|
+
"page" : "18",
|
|
702
|
+
"label" :
|
|
703
|
+
{ "value" : "\"➡ 1. \" || \"Question à choix unique - présentation bouton radio\"",
|
|
704
|
+
"type" : "VTL|MD" },
|
|
705
|
+
"conditionFilter" :
|
|
706
|
+
{ "value" : "(COCHECASE = true)",
|
|
707
|
+
"type" : "VTL",
|
|
708
|
+
"bindingDependencies" :
|
|
709
|
+
[ "COCHECASE" ] },
|
|
710
|
+
"hierarchy" :
|
|
711
|
+
{ "sequence" :
|
|
712
|
+
{ "id" : "jfjew4oy",
|
|
713
|
+
"page" : "16",
|
|
714
|
+
"label" :
|
|
715
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
716
|
+
"type" : "VTL|MD" } },
|
|
717
|
+
"subSequence" :
|
|
718
|
+
{ "id" : "jfkxouu8",
|
|
719
|
+
"page" : "17",
|
|
720
|
+
"label" :
|
|
721
|
+
{ "value" : "Questions à choix unique",
|
|
722
|
+
"type" : "VTL|MD" } } },
|
|
723
|
+
"bindingDependencies" :
|
|
724
|
+
[ "CHECKBOXONERADIO" ],
|
|
725
|
+
"options" :
|
|
726
|
+
[
|
|
727
|
+
{ "value" : "1",
|
|
728
|
+
"label" :
|
|
729
|
+
{ "value" : "code1",
|
|
730
|
+
"type" : "VTL|MD" } },
|
|
731
|
+
|
|
732
|
+
{ "value" : "2",
|
|
733
|
+
"label" :
|
|
734
|
+
{ "value" : "code2",
|
|
735
|
+
"type" : "VTL|MD" } },
|
|
736
|
+
|
|
737
|
+
{ "value" : "3",
|
|
738
|
+
"label" :
|
|
739
|
+
{ "value" : "code3",
|
|
740
|
+
"type" : "VTL|MD" } },
|
|
741
|
+
|
|
742
|
+
{ "value" : "4",
|
|
743
|
+
"label" :
|
|
744
|
+
{ "value" : "code4",
|
|
745
|
+
"type" : "VTL|MD" } },
|
|
746
|
+
|
|
747
|
+
{ "value" : "5",
|
|
748
|
+
"label" :
|
|
749
|
+
{ "value" : "autre et libellé un peu long pour valider",
|
|
750
|
+
"type" : "VTL|MD" } } ],
|
|
751
|
+
"response" :
|
|
752
|
+
{ "name" : "CHECKBOXONERADIO" } },
|
|
753
|
+
|
|
754
|
+
{ "id" : "jfjero7b",
|
|
755
|
+
"componentType" : "CheckboxOne",
|
|
756
|
+
"mandatory" : false,
|
|
757
|
+
"page" : "19",
|
|
758
|
+
"label" :
|
|
759
|
+
{ "value" : "\"➡ 2. \" || \"Question à choix unique - présentation case à cocher\"",
|
|
760
|
+
"type" : "VTL|MD" },
|
|
761
|
+
"conditionFilter" :
|
|
762
|
+
{ "value" : "(COCHECASE = true)",
|
|
763
|
+
"type" : "VTL",
|
|
764
|
+
"bindingDependencies" :
|
|
765
|
+
[ "COCHECASE" ] },
|
|
766
|
+
"hierarchy" :
|
|
767
|
+
{ "sequence" :
|
|
768
|
+
{ "id" : "jfjew4oy",
|
|
769
|
+
"page" : "16",
|
|
770
|
+
"label" :
|
|
771
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
772
|
+
"type" : "VTL|MD" } },
|
|
773
|
+
"subSequence" :
|
|
774
|
+
{ "id" : "jfkxouu8",
|
|
775
|
+
"page" : "17",
|
|
776
|
+
"label" :
|
|
777
|
+
{ "value" : "Questions à choix unique",
|
|
778
|
+
"type" : "VTL|MD" } } },
|
|
779
|
+
"bindingDependencies" :
|
|
780
|
+
[ "CHECKBOXONECOCHER" ],
|
|
781
|
+
"options" :
|
|
782
|
+
[
|
|
783
|
+
{ "value" : "1",
|
|
784
|
+
"label" :
|
|
785
|
+
{ "value" : "code1",
|
|
786
|
+
"type" : "VTL|MD" } },
|
|
787
|
+
|
|
788
|
+
{ "value" : "2",
|
|
789
|
+
"label" :
|
|
790
|
+
{ "value" : "code2",
|
|
791
|
+
"type" : "VTL|MD" } },
|
|
792
|
+
|
|
793
|
+
{ "value" : "3",
|
|
794
|
+
"label" :
|
|
795
|
+
{ "value" : "code3",
|
|
796
|
+
"type" : "VTL|MD" } },
|
|
797
|
+
|
|
798
|
+
{ "value" : "4",
|
|
799
|
+
"label" :
|
|
800
|
+
{ "value" : "code4",
|
|
801
|
+
"type" : "VTL|MD" } },
|
|
802
|
+
|
|
803
|
+
{ "value" : "5",
|
|
804
|
+
"label" :
|
|
805
|
+
{ "value" : "autre et libellé un peu long pour valider",
|
|
806
|
+
"type" : "VTL|MD" } } ],
|
|
807
|
+
"response" :
|
|
808
|
+
{ "name" : "CHECKBOXONECOCHER" } },
|
|
809
|
+
|
|
810
|
+
{ "id" : "jfjfae9f",
|
|
811
|
+
"componentType" : "Dropdown",
|
|
812
|
+
"mandatory" : false,
|
|
813
|
+
"page" : "20",
|
|
814
|
+
"label" :
|
|
815
|
+
{ "value" : "\"➡ 3. \" || \"Question à choix unique - présentation liste déroulante\"",
|
|
816
|
+
"type" : "VTL|MD" },
|
|
817
|
+
"conditionFilter" :
|
|
818
|
+
{ "value" : "(COCHECASE = true)",
|
|
819
|
+
"type" : "VTL",
|
|
820
|
+
"bindingDependencies" :
|
|
821
|
+
[ "COCHECASE" ] },
|
|
822
|
+
"hierarchy" :
|
|
823
|
+
{ "sequence" :
|
|
824
|
+
{ "id" : "jfjew4oy",
|
|
825
|
+
"page" : "16",
|
|
826
|
+
"label" :
|
|
827
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
828
|
+
"type" : "VTL|MD" } },
|
|
829
|
+
"subSequence" :
|
|
830
|
+
{ "id" : "jfkxouu8",
|
|
831
|
+
"page" : "17",
|
|
832
|
+
"label" :
|
|
833
|
+
{ "value" : "Questions à choix unique",
|
|
834
|
+
"type" : "VTL|MD" } } },
|
|
835
|
+
"bindingDependencies" :
|
|
836
|
+
[ "DROPDOWN" ],
|
|
837
|
+
"options" :
|
|
838
|
+
[
|
|
839
|
+
{ "value" : "1",
|
|
840
|
+
"label" :
|
|
841
|
+
{ "value" : "code1",
|
|
842
|
+
"type" : "VTL|MD" } },
|
|
843
|
+
|
|
844
|
+
{ "value" : "2",
|
|
845
|
+
"label" :
|
|
846
|
+
{ "value" : "code2",
|
|
847
|
+
"type" : "VTL|MD" } },
|
|
848
|
+
|
|
849
|
+
{ "value" : "3",
|
|
850
|
+
"label" :
|
|
851
|
+
{ "value" : "code3",
|
|
852
|
+
"type" : "VTL|MD" } },
|
|
853
|
+
|
|
854
|
+
{ "value" : "4",
|
|
855
|
+
"label" :
|
|
856
|
+
{ "value" : "code4",
|
|
857
|
+
"type" : "VTL|MD" } },
|
|
858
|
+
|
|
859
|
+
{ "value" : "5",
|
|
860
|
+
"label" :
|
|
861
|
+
{ "value" : "autre et libellé un peu long pour valider",
|
|
862
|
+
"type" : "VTL|MD" } } ],
|
|
863
|
+
"response" :
|
|
864
|
+
{ "name" : "DROPDOWN" } },
|
|
865
|
+
|
|
866
|
+
{ "id" : "jfkxuinz",
|
|
867
|
+
"componentType" : "Subsequence",
|
|
868
|
+
"page" : "21",
|
|
869
|
+
"goToPage" : "21",
|
|
870
|
+
"label" :
|
|
871
|
+
{ "value" : "Questions à choix multiple",
|
|
872
|
+
"type" : "VTL|MD" },
|
|
873
|
+
"declarations" :
|
|
874
|
+
[
|
|
875
|
+
{ "id" : "jfkxuinz-l1ujnhsh",
|
|
876
|
+
"declarationType" : "HELP",
|
|
877
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
878
|
+
"label" :
|
|
879
|
+
{ "value" : "Liste des QCM",
|
|
880
|
+
"type" : "VTL|MD" } } ],
|
|
881
|
+
"conditionFilter" :
|
|
882
|
+
{ "value" : "(COCHECASE = true)",
|
|
883
|
+
"type" : "VTL",
|
|
884
|
+
"bindingDependencies" :
|
|
885
|
+
[ "COCHECASE" ] },
|
|
886
|
+
"hierarchy" :
|
|
887
|
+
{ "sequence" :
|
|
888
|
+
{ "id" : "jfjew4oy",
|
|
889
|
+
"page" : "16",
|
|
890
|
+
"label" :
|
|
891
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
892
|
+
"type" : "VTL|MD" } },
|
|
893
|
+
"subSequence" :
|
|
894
|
+
{ "id" : "jfkxuinz",
|
|
895
|
+
"page" : "21",
|
|
896
|
+
"label" :
|
|
897
|
+
{ "value" : "Questions à choix multiple",
|
|
898
|
+
"type" : "VTL|MD" } } } },
|
|
899
|
+
|
|
900
|
+
{ "id" : "jfkxh2lf",
|
|
901
|
+
"componentType" : "CheckboxGroup",
|
|
902
|
+
"page" : "22",
|
|
903
|
+
"label" :
|
|
904
|
+
{ "value" : "\"➡ 4. \" || \"Question à choix multiple - réponse booléen\"",
|
|
905
|
+
"type" : "VTL|MD" },
|
|
906
|
+
"conditionFilter" :
|
|
907
|
+
{ "value" : "(COCHECASE = true)",
|
|
908
|
+
"type" : "VTL",
|
|
909
|
+
"bindingDependencies" :
|
|
910
|
+
[ "COCHECASE" ] },
|
|
911
|
+
"hierarchy" :
|
|
912
|
+
{ "sequence" :
|
|
913
|
+
{ "id" : "jfjew4oy",
|
|
914
|
+
"page" : "16",
|
|
915
|
+
"label" :
|
|
916
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
917
|
+
"type" : "VTL|MD" } },
|
|
918
|
+
"subSequence" :
|
|
919
|
+
{ "id" : "jfkxuinz",
|
|
920
|
+
"page" : "21",
|
|
921
|
+
"label" :
|
|
922
|
+
{ "value" : "Questions à choix multiple",
|
|
923
|
+
"type" : "VTL|MD" } } },
|
|
924
|
+
"bindingDependencies" :
|
|
925
|
+
[ "QCM_BOOLEEN1",
|
|
926
|
+
"QCM_BOOLEEN2",
|
|
927
|
+
"QCM_BOOLEEN3",
|
|
928
|
+
"QCM_BOOLEEN4",
|
|
929
|
+
"QCM_BOOLEEN5",
|
|
930
|
+
"QCM_BOOLEEN6" ],
|
|
931
|
+
"responses" :
|
|
932
|
+
[
|
|
933
|
+
{ "id" : "jfkxh2lf-QOP-l1ujvup1",
|
|
934
|
+
"label" :
|
|
935
|
+
{ "value" : "choix 1",
|
|
936
|
+
"type" : "VTL|MD" },
|
|
937
|
+
"response" :
|
|
938
|
+
{ "name" : "QCM_BOOLEEN1" } },
|
|
939
|
+
|
|
940
|
+
{ "id" : "jfkxh2lf-QOP-l1ujn7ub",
|
|
941
|
+
"label" :
|
|
942
|
+
{ "value" : "choix 2",
|
|
943
|
+
"type" : "VTL|MD" },
|
|
944
|
+
"response" :
|
|
945
|
+
{ "name" : "QCM_BOOLEEN2" } },
|
|
946
|
+
|
|
947
|
+
{ "id" : "jfkxh2lf-QOP-l1ujqshv",
|
|
948
|
+
"label" :
|
|
949
|
+
{ "value" : "choix 3",
|
|
950
|
+
"type" : "VTL|MD" },
|
|
951
|
+
"response" :
|
|
952
|
+
{ "name" : "QCM_BOOLEEN3" } },
|
|
953
|
+
|
|
954
|
+
{ "id" : "jfkxh2lf-QOP-l1ujm40x",
|
|
955
|
+
"label" :
|
|
956
|
+
{ "value" : "choix 4",
|
|
957
|
+
"type" : "VTL|MD" },
|
|
958
|
+
"response" :
|
|
959
|
+
{ "name" : "QCM_BOOLEEN4" } },
|
|
960
|
+
|
|
961
|
+
{ "id" : "jfkxh2lf-QOP-l1ujqfdi",
|
|
962
|
+
"label" :
|
|
963
|
+
{ "value" : "choix 5",
|
|
964
|
+
"type" : "VTL|MD" },
|
|
965
|
+
"response" :
|
|
966
|
+
{ "name" : "QCM_BOOLEEN5" } },
|
|
967
|
+
|
|
968
|
+
{ "id" : "jfkxh2lf-QOP-l1ujiycn",
|
|
969
|
+
"label" :
|
|
970
|
+
{ "value" : "et un choix 6 dont la modalité est plus longue",
|
|
971
|
+
"type" : "VTL|MD" },
|
|
972
|
+
"response" :
|
|
973
|
+
{ "name" : "QCM_BOOLEEN6" } } ] },
|
|
974
|
+
|
|
975
|
+
{ "id" : "jfkxybfe",
|
|
976
|
+
"componentType" : "Table",
|
|
977
|
+
"mandatory" : false,
|
|
978
|
+
"page" : "23",
|
|
979
|
+
"positioning" : "HORIZONTAL",
|
|
980
|
+
"label" :
|
|
981
|
+
{ "value" : "\"➡ 5. \" || \"Question à choix multiple - réponse oui\/non case à cocher\"",
|
|
982
|
+
"type" : "VTL|MD" },
|
|
983
|
+
"conditionFilter" :
|
|
984
|
+
{ "value" : "(COCHECASE = true)",
|
|
985
|
+
"type" : "VTL",
|
|
986
|
+
"bindingDependencies" :
|
|
987
|
+
[ "COCHECASE" ] },
|
|
988
|
+
"hierarchy" :
|
|
989
|
+
{ "sequence" :
|
|
990
|
+
{ "id" : "jfjew4oy",
|
|
991
|
+
"page" : "16",
|
|
992
|
+
"label" :
|
|
993
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
994
|
+
"type" : "VTL|MD" } },
|
|
995
|
+
"subSequence" :
|
|
996
|
+
{ "id" : "jfkxuinz",
|
|
997
|
+
"page" : "21",
|
|
998
|
+
"label" :
|
|
999
|
+
{ "value" : "Questions à choix multiple",
|
|
1000
|
+
"type" : "VTL|MD" } } },
|
|
1001
|
+
"bindingDependencies" :
|
|
1002
|
+
[ "QCM_LISTEON1",
|
|
1003
|
+
"QCM_LISTEON2",
|
|
1004
|
+
"QCM_LISTEON3",
|
|
1005
|
+
"QCM_LISTEON4",
|
|
1006
|
+
"QCM_LISTEON5",
|
|
1007
|
+
"QCM_LISTEON6" ],
|
|
1008
|
+
"body" :
|
|
1009
|
+
[
|
|
1010
|
+
[
|
|
1011
|
+
{ "value" : "1",
|
|
1012
|
+
"label" :
|
|
1013
|
+
{ "value" : "choix 1",
|
|
1014
|
+
"type" : "VTL|MD" } },
|
|
1015
|
+
|
|
1016
|
+
{ "componentType" : "CheckboxOne",
|
|
1017
|
+
"id" : "jfkxybfe-QOP-l1ujy9o3",
|
|
1018
|
+
"options" :
|
|
1019
|
+
[
|
|
1020
|
+
{ "value" : "1",
|
|
1021
|
+
"label" :
|
|
1022
|
+
{ "value" : "Oui",
|
|
1023
|
+
"type" : "VTL|MD" } },
|
|
1024
|
+
|
|
1025
|
+
{ "value" : "2",
|
|
1026
|
+
"label" :
|
|
1027
|
+
{ "value" : "Non",
|
|
1028
|
+
"type" : "VTL|MD" } } ],
|
|
1029
|
+
"response" :
|
|
1030
|
+
{ "name" : "QCM_LISTEON1" },
|
|
1031
|
+
"bindingDependencies" :
|
|
1032
|
+
[ "QCM_LISTEON1" ] } ],
|
|
1033
|
+
|
|
1034
|
+
[
|
|
1035
|
+
{ "value" : "2",
|
|
1036
|
+
"label" :
|
|
1037
|
+
{ "value" : "choix 2",
|
|
1038
|
+
"type" : "VTL|MD" } },
|
|
1039
|
+
|
|
1040
|
+
{ "componentType" : "CheckboxOne",
|
|
1041
|
+
"id" : "jfkxybfe-QOP-l1uju9zu",
|
|
1042
|
+
"options" :
|
|
1043
|
+
[
|
|
1044
|
+
{ "value" : "1",
|
|
1045
|
+
"label" :
|
|
1046
|
+
{ "value" : "Oui",
|
|
1047
|
+
"type" : "VTL|MD" } },
|
|
1048
|
+
|
|
1049
|
+
{ "value" : "2",
|
|
1050
|
+
"label" :
|
|
1051
|
+
{ "value" : "Non",
|
|
1052
|
+
"type" : "VTL|MD" } } ],
|
|
1053
|
+
"response" :
|
|
1054
|
+
{ "name" : "QCM_LISTEON2" },
|
|
1055
|
+
"bindingDependencies" :
|
|
1056
|
+
[ "QCM_LISTEON2" ] } ],
|
|
1057
|
+
|
|
1058
|
+
[
|
|
1059
|
+
{ "value" : "3",
|
|
1060
|
+
"label" :
|
|
1061
|
+
{ "value" : "choix 3",
|
|
1062
|
+
"type" : "VTL|MD" } },
|
|
1063
|
+
|
|
1064
|
+
{ "componentType" : "CheckboxOne",
|
|
1065
|
+
"id" : "jfkxybfe-QOP-l1ujv3qw",
|
|
1066
|
+
"options" :
|
|
1067
|
+
[
|
|
1068
|
+
{ "value" : "1",
|
|
1069
|
+
"label" :
|
|
1070
|
+
{ "value" : "Oui",
|
|
1071
|
+
"type" : "VTL|MD" } },
|
|
1072
|
+
|
|
1073
|
+
{ "value" : "2",
|
|
1074
|
+
"label" :
|
|
1075
|
+
{ "value" : "Non",
|
|
1076
|
+
"type" : "VTL|MD" } } ],
|
|
1077
|
+
"response" :
|
|
1078
|
+
{ "name" : "QCM_LISTEON3" },
|
|
1079
|
+
"bindingDependencies" :
|
|
1080
|
+
[ "QCM_LISTEON3" ] } ],
|
|
1081
|
+
|
|
1082
|
+
[
|
|
1083
|
+
{ "value" : "4",
|
|
1084
|
+
"label" :
|
|
1085
|
+
{ "value" : "choix 4",
|
|
1086
|
+
"type" : "VTL|MD" } },
|
|
1087
|
+
|
|
1088
|
+
{ "componentType" : "CheckboxOne",
|
|
1089
|
+
"id" : "jfkxybfe-QOP-l1uk0q0x",
|
|
1090
|
+
"options" :
|
|
1091
|
+
[
|
|
1092
|
+
{ "value" : "1",
|
|
1093
|
+
"label" :
|
|
1094
|
+
{ "value" : "Oui",
|
|
1095
|
+
"type" : "VTL|MD" } },
|
|
1096
|
+
|
|
1097
|
+
{ "value" : "2",
|
|
1098
|
+
"label" :
|
|
1099
|
+
{ "value" : "Non",
|
|
1100
|
+
"type" : "VTL|MD" } } ],
|
|
1101
|
+
"response" :
|
|
1102
|
+
{ "name" : "QCM_LISTEON4" },
|
|
1103
|
+
"bindingDependencies" :
|
|
1104
|
+
[ "QCM_LISTEON4" ] } ],
|
|
1105
|
+
|
|
1106
|
+
[
|
|
1107
|
+
{ "value" : "5",
|
|
1108
|
+
"label" :
|
|
1109
|
+
{ "value" : "choix 5",
|
|
1110
|
+
"type" : "VTL|MD" } },
|
|
1111
|
+
|
|
1112
|
+
{ "componentType" : "CheckboxOne",
|
|
1113
|
+
"id" : "jfkxybfe-QOP-l1ujsmmt",
|
|
1114
|
+
"options" :
|
|
1115
|
+
[
|
|
1116
|
+
{ "value" : "1",
|
|
1117
|
+
"label" :
|
|
1118
|
+
{ "value" : "Oui",
|
|
1119
|
+
"type" : "VTL|MD" } },
|
|
1120
|
+
|
|
1121
|
+
{ "value" : "2",
|
|
1122
|
+
"label" :
|
|
1123
|
+
{ "value" : "Non",
|
|
1124
|
+
"type" : "VTL|MD" } } ],
|
|
1125
|
+
"response" :
|
|
1126
|
+
{ "name" : "QCM_LISTEON5" },
|
|
1127
|
+
"bindingDependencies" :
|
|
1128
|
+
[ "QCM_LISTEON5" ] } ],
|
|
1129
|
+
|
|
1130
|
+
[
|
|
1131
|
+
{ "value" : "6",
|
|
1132
|
+
"label" :
|
|
1133
|
+
{ "value" : "et un choix 6 dont la modalité est plus longue",
|
|
1134
|
+
"type" : "VTL|MD" } },
|
|
1135
|
+
|
|
1136
|
+
{ "componentType" : "CheckboxOne",
|
|
1137
|
+
"id" : "jfkxybfe-QOP-l1ujw41k",
|
|
1138
|
+
"options" :
|
|
1139
|
+
[
|
|
1140
|
+
{ "value" : "1",
|
|
1141
|
+
"label" :
|
|
1142
|
+
{ "value" : "Oui",
|
|
1143
|
+
"type" : "VTL|MD" } },
|
|
1144
|
+
|
|
1145
|
+
{ "value" : "2",
|
|
1146
|
+
"label" :
|
|
1147
|
+
{ "value" : "Non",
|
|
1148
|
+
"type" : "VTL|MD" } } ],
|
|
1149
|
+
"response" :
|
|
1150
|
+
{ "name" : "QCM_LISTEON6" },
|
|
1151
|
+
"bindingDependencies" :
|
|
1152
|
+
[ "QCM_LISTEON6" ] } ] ] },
|
|
1153
|
+
|
|
1154
|
+
{ "id" : "jfkyw9o1",
|
|
1155
|
+
"componentType" : "Table",
|
|
1156
|
+
"mandatory" : false,
|
|
1157
|
+
"page" : "24",
|
|
1158
|
+
"positioning" : "HORIZONTAL",
|
|
1159
|
+
"label" :
|
|
1160
|
+
{ "value" : "\"➡ 6. \" || \"Question à choix multiple - réponse oui\/non radio\"",
|
|
1161
|
+
"type" : "VTL|MD" },
|
|
1162
|
+
"conditionFilter" :
|
|
1163
|
+
{ "value" : "(COCHECASE = true)",
|
|
1164
|
+
"type" : "VTL",
|
|
1165
|
+
"bindingDependencies" :
|
|
1166
|
+
[ "COCHECASE" ] },
|
|
1167
|
+
"hierarchy" :
|
|
1168
|
+
{ "sequence" :
|
|
1169
|
+
{ "id" : "jfjew4oy",
|
|
1170
|
+
"page" : "16",
|
|
1171
|
+
"label" :
|
|
1172
|
+
{ "value" : "Sequence 2 - Questions à choix unique et questions à choix multiple",
|
|
1173
|
+
"type" : "VTL|MD" } },
|
|
1174
|
+
"subSequence" :
|
|
1175
|
+
{ "id" : "jfkxuinz",
|
|
1176
|
+
"page" : "21",
|
|
1177
|
+
"label" :
|
|
1178
|
+
{ "value" : "Questions à choix multiple",
|
|
1179
|
+
"type" : "VTL|MD" } } },
|
|
1180
|
+
"bindingDependencies" :
|
|
1181
|
+
[ "QCM_LISTEONRADIO1",
|
|
1182
|
+
"QCM_LISTEONRADIO2",
|
|
1183
|
+
"QCM_LISTEONRADIO3",
|
|
1184
|
+
"QCM_LISTEONRADIO4",
|
|
1185
|
+
"QCM_LISTEONRADIO5",
|
|
1186
|
+
"QCM_LISTEONRADIO6" ],
|
|
1187
|
+
"body" :
|
|
1188
|
+
[
|
|
1189
|
+
[
|
|
1190
|
+
{ "value" : "1",
|
|
1191
|
+
"label" :
|
|
1192
|
+
{ "value" : "choix 1",
|
|
1193
|
+
"type" : "VTL|MD" } },
|
|
1194
|
+
|
|
1195
|
+
{ "componentType" : "Radio",
|
|
1196
|
+
"id" : "jfkyw9o1-QOP-l1uk0wyz",
|
|
1197
|
+
"options" :
|
|
1198
|
+
[
|
|
1199
|
+
{ "value" : "1",
|
|
1200
|
+
"label" :
|
|
1201
|
+
{ "value" : "Oui",
|
|
1202
|
+
"type" : "VTL|MD" } },
|
|
1203
|
+
|
|
1204
|
+
{ "value" : "2",
|
|
1205
|
+
"label" :
|
|
1206
|
+
{ "value" : "Non",
|
|
1207
|
+
"type" : "VTL|MD" } } ],
|
|
1208
|
+
"response" :
|
|
1209
|
+
{ "name" : "QCM_LISTEONRADIO1" },
|
|
1210
|
+
"bindingDependencies" :
|
|
1211
|
+
[ "QCM_LISTEONRADIO1" ] } ],
|
|
1212
|
+
|
|
1213
|
+
[
|
|
1214
|
+
{ "value" : "2",
|
|
1215
|
+
"label" :
|
|
1216
|
+
{ "value" : "choix 2",
|
|
1217
|
+
"type" : "VTL|MD" } },
|
|
1218
|
+
|
|
1219
|
+
{ "componentType" : "Radio",
|
|
1220
|
+
"id" : "jfkyw9o1-QOP-l1uji4r3",
|
|
1221
|
+
"options" :
|
|
1222
|
+
[
|
|
1223
|
+
{ "value" : "1",
|
|
1224
|
+
"label" :
|
|
1225
|
+
{ "value" : "Oui",
|
|
1226
|
+
"type" : "VTL|MD" } },
|
|
1227
|
+
|
|
1228
|
+
{ "value" : "2",
|
|
1229
|
+
"label" :
|
|
1230
|
+
{ "value" : "Non",
|
|
1231
|
+
"type" : "VTL|MD" } } ],
|
|
1232
|
+
"response" :
|
|
1233
|
+
{ "name" : "QCM_LISTEONRADIO2" },
|
|
1234
|
+
"bindingDependencies" :
|
|
1235
|
+
[ "QCM_LISTEONRADIO2" ] } ],
|
|
1236
|
+
|
|
1237
|
+
[
|
|
1238
|
+
{ "value" : "3",
|
|
1239
|
+
"label" :
|
|
1240
|
+
{ "value" : "choix 3",
|
|
1241
|
+
"type" : "VTL|MD" } },
|
|
1242
|
+
|
|
1243
|
+
{ "componentType" : "Radio",
|
|
1244
|
+
"id" : "jfkyw9o1-QOP-l1ujyy91",
|
|
1245
|
+
"options" :
|
|
1246
|
+
[
|
|
1247
|
+
{ "value" : "1",
|
|
1248
|
+
"label" :
|
|
1249
|
+
{ "value" : "Oui",
|
|
1250
|
+
"type" : "VTL|MD" } },
|
|
1251
|
+
|
|
1252
|
+
{ "value" : "2",
|
|
1253
|
+
"label" :
|
|
1254
|
+
{ "value" : "Non",
|
|
1255
|
+
"type" : "VTL|MD" } } ],
|
|
1256
|
+
"response" :
|
|
1257
|
+
{ "name" : "QCM_LISTEONRADIO3" },
|
|
1258
|
+
"bindingDependencies" :
|
|
1259
|
+
[ "QCM_LISTEONRADIO3" ] } ],
|
|
1260
|
+
|
|
1261
|
+
[
|
|
1262
|
+
{ "value" : "4",
|
|
1263
|
+
"label" :
|
|
1264
|
+
{ "value" : "choix 4",
|
|
1265
|
+
"type" : "VTL|MD" } },
|
|
1266
|
+
|
|
1267
|
+
{ "componentType" : "Radio",
|
|
1268
|
+
"id" : "jfkyw9o1-QOP-l1uk283o",
|
|
1269
|
+
"options" :
|
|
1270
|
+
[
|
|
1271
|
+
{ "value" : "1",
|
|
1272
|
+
"label" :
|
|
1273
|
+
{ "value" : "Oui",
|
|
1274
|
+
"type" : "VTL|MD" } },
|
|
1275
|
+
|
|
1276
|
+
{ "value" : "2",
|
|
1277
|
+
"label" :
|
|
1278
|
+
{ "value" : "Non",
|
|
1279
|
+
"type" : "VTL|MD" } } ],
|
|
1280
|
+
"response" :
|
|
1281
|
+
{ "name" : "QCM_LISTEONRADIO4" },
|
|
1282
|
+
"bindingDependencies" :
|
|
1283
|
+
[ "QCM_LISTEONRADIO4" ] } ],
|
|
1284
|
+
|
|
1285
|
+
[
|
|
1286
|
+
{ "value" : "5",
|
|
1287
|
+
"label" :
|
|
1288
|
+
{ "value" : "choix 5",
|
|
1289
|
+
"type" : "VTL|MD" } },
|
|
1290
|
+
|
|
1291
|
+
{ "componentType" : "Radio",
|
|
1292
|
+
"id" : "jfkyw9o1-QOP-l1ujy83p",
|
|
1293
|
+
"options" :
|
|
1294
|
+
[
|
|
1295
|
+
{ "value" : "1",
|
|
1296
|
+
"label" :
|
|
1297
|
+
{ "value" : "Oui",
|
|
1298
|
+
"type" : "VTL|MD" } },
|
|
1299
|
+
|
|
1300
|
+
{ "value" : "2",
|
|
1301
|
+
"label" :
|
|
1302
|
+
{ "value" : "Non",
|
|
1303
|
+
"type" : "VTL|MD" } } ],
|
|
1304
|
+
"response" :
|
|
1305
|
+
{ "name" : "QCM_LISTEONRADIO5" },
|
|
1306
|
+
"bindingDependencies" :
|
|
1307
|
+
[ "QCM_LISTEONRADIO5" ] } ],
|
|
1308
|
+
|
|
1309
|
+
[
|
|
1310
|
+
{ "value" : "6",
|
|
1311
|
+
"label" :
|
|
1312
|
+
{ "value" : "et un choix 6 dont la modalité est plus longue",
|
|
1313
|
+
"type" : "VTL|MD" } },
|
|
1314
|
+
|
|
1315
|
+
{ "componentType" : "Radio",
|
|
1316
|
+
"id" : "jfkyw9o1-QOP-l1ujstez",
|
|
1317
|
+
"options" :
|
|
1318
|
+
[
|
|
1319
|
+
{ "value" : "1",
|
|
1320
|
+
"label" :
|
|
1321
|
+
{ "value" : "Oui",
|
|
1322
|
+
"type" : "VTL|MD" } },
|
|
1323
|
+
|
|
1324
|
+
{ "value" : "2",
|
|
1325
|
+
"label" :
|
|
1326
|
+
{ "value" : "Non",
|
|
1327
|
+
"type" : "VTL|MD" } } ],
|
|
1328
|
+
"response" :
|
|
1329
|
+
{ "name" : "QCM_LISTEONRADIO6" },
|
|
1330
|
+
"bindingDependencies" :
|
|
1331
|
+
[ "QCM_LISTEONRADIO6" ] } ] ] },
|
|
1332
|
+
|
|
1333
|
+
{ "id" : "jfkyvabw",
|
|
1334
|
+
"componentType" : "Sequence",
|
|
1335
|
+
"page" : "25",
|
|
1336
|
+
"label" :
|
|
1337
|
+
{ "value" : "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
|
|
1338
|
+
"type" : "VTL|MD" },
|
|
1339
|
+
"conditionFilter" :
|
|
1340
|
+
{ "value" : "(COCHECASE = true)",
|
|
1341
|
+
"type" : "VTL",
|
|
1342
|
+
"bindingDependencies" :
|
|
1343
|
+
[ "COCHECASE" ] },
|
|
1344
|
+
"hierarchy" :
|
|
1345
|
+
{ "sequence" :
|
|
1346
|
+
{ "id" : "jfkyvabw",
|
|
1347
|
+
"page" : "25",
|
|
1348
|
+
"label" :
|
|
1349
|
+
{ "value" : "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
|
|
1350
|
+
"type" : "VTL|MD" } } } },
|
|
1351
|
+
|
|
1352
|
+
{ "id" : "jfkzltkm",
|
|
1353
|
+
"componentType" : "Table",
|
|
1354
|
+
"mandatory" : false,
|
|
1355
|
+
"page" : "26",
|
|
1356
|
+
"positioning" : "HORIZONTAL",
|
|
1357
|
+
"label" :
|
|
1358
|
+
{ "value" : "\"➡ 1. \" || \"Tableau un axe simple, une mesure\"",
|
|
1359
|
+
"type" : "VTL|MD" },
|
|
1360
|
+
"conditionFilter" :
|
|
1361
|
+
{ "value" : "(COCHECASE = true)",
|
|
1362
|
+
"type" : "VTL",
|
|
1363
|
+
"bindingDependencies" :
|
|
1364
|
+
[ "COCHECASE" ] },
|
|
1365
|
+
"hierarchy" :
|
|
1366
|
+
{ "sequence" :
|
|
1367
|
+
{ "id" : "jfkyvabw",
|
|
1368
|
+
"page" : "25",
|
|
1369
|
+
"label" :
|
|
1370
|
+
{ "value" : "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
|
|
1371
|
+
"type" : "VTL|MD" } } },
|
|
1372
|
+
"bindingDependencies" :
|
|
1373
|
+
[ "TABLEAU1A1M11",
|
|
1374
|
+
"TABLEAU1A1M21",
|
|
1375
|
+
"TABLEAU1A1M31",
|
|
1376
|
+
"TABLEAU1A1M41",
|
|
1377
|
+
"TABLEAU1A1M51",
|
|
1378
|
+
"TABLEAU1A1M61" ],
|
|
1379
|
+
"header" :
|
|
1380
|
+
[
|
|
1381
|
+
{ "label" :
|
|
1382
|
+
{ "value" : "",
|
|
1383
|
+
"type" : "VTL|MD" } },
|
|
1384
|
+
|
|
1385
|
+
{ "label" :
|
|
1386
|
+
{ "value" : "Quantité de bidules",
|
|
1387
|
+
"type" : "VTL|MD" } } ],
|
|
1388
|
+
"body" :
|
|
1389
|
+
[
|
|
1390
|
+
[
|
|
1391
|
+
{ "value" : "1",
|
|
1392
|
+
"label" :
|
|
1393
|
+
{ "value" : "choix 1",
|
|
1394
|
+
"type" : "VTL|MD" } },
|
|
1395
|
+
|
|
1396
|
+
{ "componentType" : "InputNumber",
|
|
1397
|
+
"min" : 0,
|
|
1398
|
+
"max" : 999,
|
|
1399
|
+
"decimals" : 0,
|
|
1400
|
+
"id" : "jfkzltkm-QOP-l1uk0wsy",
|
|
1401
|
+
"response" :
|
|
1402
|
+
{ "name" : "TABLEAU1A1M11" },
|
|
1403
|
+
"bindingDependencies" :
|
|
1404
|
+
[ "TABLEAU1A1M11" ] } ],
|
|
1405
|
+
|
|
1406
|
+
[
|
|
1407
|
+
{ "value" : "2",
|
|
1408
|
+
"label" :
|
|
1409
|
+
{ "value" : "choix 2",
|
|
1410
|
+
"type" : "VTL|MD" } },
|
|
1411
|
+
|
|
1412
|
+
{ "componentType" : "InputNumber",
|
|
1413
|
+
"min" : 0,
|
|
1414
|
+
"max" : 999,
|
|
1415
|
+
"decimals" : 0,
|
|
1416
|
+
"id" : "jfkzltkm-QOP-l1uk035v",
|
|
1417
|
+
"response" :
|
|
1418
|
+
{ "name" : "TABLEAU1A1M21" },
|
|
1419
|
+
"bindingDependencies" :
|
|
1420
|
+
[ "TABLEAU1A1M21" ] } ],
|
|
1421
|
+
|
|
1422
|
+
[
|
|
1423
|
+
{ "value" : "3",
|
|
1424
|
+
"label" :
|
|
1425
|
+
{ "value" : "choix 3",
|
|
1426
|
+
"type" : "VTL|MD" } },
|
|
1427
|
+
|
|
1428
|
+
{ "componentType" : "InputNumber",
|
|
1429
|
+
"min" : 0,
|
|
1430
|
+
"max" : 999,
|
|
1431
|
+
"decimals" : 0,
|
|
1432
|
+
"id" : "jfkzltkm-QOP-l1uji2i3",
|
|
1433
|
+
"response" :
|
|
1434
|
+
{ "name" : "TABLEAU1A1M31" },
|
|
1435
|
+
"bindingDependencies" :
|
|
1436
|
+
[ "TABLEAU1A1M31" ] } ],
|
|
1437
|
+
|
|
1438
|
+
[
|
|
1439
|
+
{ "value" : "4",
|
|
1440
|
+
"label" :
|
|
1441
|
+
{ "value" : "choix 4",
|
|
1442
|
+
"type" : "VTL|MD" } },
|
|
1443
|
+
|
|
1444
|
+
{ "componentType" : "InputNumber",
|
|
1445
|
+
"min" : 0,
|
|
1446
|
+
"max" : 999,
|
|
1447
|
+
"decimals" : 0,
|
|
1448
|
+
"id" : "jfkzltkm-QOP-l1ujl8ac",
|
|
1449
|
+
"response" :
|
|
1450
|
+
{ "name" : "TABLEAU1A1M41" },
|
|
1451
|
+
"bindingDependencies" :
|
|
1452
|
+
[ "TABLEAU1A1M41" ] } ],
|
|
1453
|
+
|
|
1454
|
+
[
|
|
1455
|
+
{ "value" : "5",
|
|
1456
|
+
"label" :
|
|
1457
|
+
{ "value" : "choix 5",
|
|
1458
|
+
"type" : "VTL|MD" } },
|
|
1459
|
+
|
|
1460
|
+
{ "componentType" : "InputNumber",
|
|
1461
|
+
"min" : 0,
|
|
1462
|
+
"max" : 999,
|
|
1463
|
+
"decimals" : 0,
|
|
1464
|
+
"id" : "jfkzltkm-QOP-l1ujpn8e",
|
|
1465
|
+
"response" :
|
|
1466
|
+
{ "name" : "TABLEAU1A1M51" },
|
|
1467
|
+
"bindingDependencies" :
|
|
1468
|
+
[ "TABLEAU1A1M51" ] } ],
|
|
1469
|
+
|
|
1470
|
+
[
|
|
1471
|
+
{ "value" : "6",
|
|
1472
|
+
"label" :
|
|
1473
|
+
{ "value" : "et un choix 6 dont la modalité est plus longue",
|
|
1474
|
+
"type" : "VTL|MD" } },
|
|
1475
|
+
|
|
1476
|
+
{ "componentType" : "InputNumber",
|
|
1477
|
+
"min" : 0,
|
|
1478
|
+
"max" : 999,
|
|
1479
|
+
"decimals" : 0,
|
|
1480
|
+
"id" : "jfkzltkm-QOP-l1ujm5dq",
|
|
1481
|
+
"response" :
|
|
1482
|
+
{ "name" : "TABLEAU1A1M61" },
|
|
1483
|
+
"bindingDependencies" :
|
|
1484
|
+
[ "TABLEAU1A1M61" ] } ] ] },
|
|
1485
|
+
|
|
1486
|
+
{ "id" : "jfkzpexn",
|
|
1487
|
+
"componentType" : "Table",
|
|
1488
|
+
"mandatory" : false,
|
|
1489
|
+
"page" : "27",
|
|
1490
|
+
"positioning" : "HORIZONTAL",
|
|
1491
|
+
"label" :
|
|
1492
|
+
{ "value" : "\"➡ 2. \" || \"Tableau un axe simple, plusieurs mesures\"",
|
|
1493
|
+
"type" : "VTL|MD" },
|
|
1494
|
+
"conditionFilter" :
|
|
1495
|
+
{ "value" : "(COCHECASE = true)",
|
|
1496
|
+
"type" : "VTL",
|
|
1497
|
+
"bindingDependencies" :
|
|
1498
|
+
[ "COCHECASE" ] },
|
|
1499
|
+
"hierarchy" :
|
|
1500
|
+
{ "sequence" :
|
|
1501
|
+
{ "id" : "jfkyvabw",
|
|
1502
|
+
"page" : "25",
|
|
1503
|
+
"label" :
|
|
1504
|
+
{ "value" : "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
|
|
1505
|
+
"type" : "VTL|MD" } } },
|
|
1506
|
+
"bindingDependencies" :
|
|
1507
|
+
[ "TABLEAU1A3M11",
|
|
1508
|
+
"TABLEAU1A3M12",
|
|
1509
|
+
"TABLEAU1A3M13",
|
|
1510
|
+
"TABLEAU1A3M21",
|
|
1511
|
+
"TABLEAU1A3M22",
|
|
1512
|
+
"TABLEAU1A3M23",
|
|
1513
|
+
"TABLEAU1A3M31",
|
|
1514
|
+
"TABLEAU1A3M32",
|
|
1515
|
+
"TABLEAU1A3M33",
|
|
1516
|
+
"TABLEAU1A3M41",
|
|
1517
|
+
"TABLEAU1A3M42",
|
|
1518
|
+
"TABLEAU1A3M43",
|
|
1519
|
+
"TABLEAU1A3M51",
|
|
1520
|
+
"TABLEAU1A3M52",
|
|
1521
|
+
"TABLEAU1A3M53",
|
|
1522
|
+
"TABLEAU1A3M61",
|
|
1523
|
+
"TABLEAU1A3M62",
|
|
1524
|
+
"TABLEAU1A3M63" ],
|
|
1525
|
+
"header" :
|
|
1526
|
+
[
|
|
1527
|
+
{ "label" :
|
|
1528
|
+
{ "value" : "",
|
|
1529
|
+
"type" : "VTL|MD" } },
|
|
1530
|
+
|
|
1531
|
+
{ "label" :
|
|
1532
|
+
{ "value" : "Quantité de bidules",
|
|
1533
|
+
"type" : "VTL|MD" } },
|
|
1534
|
+
|
|
1535
|
+
{ "label" :
|
|
1536
|
+
{ "value" : "aimez vous les bidules",
|
|
1537
|
+
"type" : "VTL|MD" } },
|
|
1538
|
+
|
|
1539
|
+
{ "label" :
|
|
1540
|
+
{ "value" : "nom",
|
|
1541
|
+
"type" : "VTL|MD" } } ],
|
|
1542
|
+
"body" :
|
|
1543
|
+
[
|
|
1544
|
+
[
|
|
1545
|
+
{ "value" : "1",
|
|
1546
|
+
"label" :
|
|
1547
|
+
{ "value" : "choix 1",
|
|
1548
|
+
"type" : "VTL|MD" } },
|
|
1549
|
+
|
|
1550
|
+
{ "componentType" : "InputNumber",
|
|
1551
|
+
"min" : 0,
|
|
1552
|
+
"max" : 999,
|
|
1553
|
+
"decimals" : 0,
|
|
1554
|
+
"id" : "jfkzpexn-QOP-l1ujy3o3",
|
|
1555
|
+
"response" :
|
|
1556
|
+
{ "name" : "TABLEAU1A3M11" },
|
|
1557
|
+
"bindingDependencies" :
|
|
1558
|
+
[ "TABLEAU1A3M11" ] },
|
|
1559
|
+
|
|
1560
|
+
{ "componentType" : "CheckboxOne",
|
|
1561
|
+
"id" : "jfkzpexn-QOP-l1ujjvof",
|
|
1562
|
+
"options" :
|
|
1563
|
+
[
|
|
1564
|
+
{ "value" : "1",
|
|
1565
|
+
"label" :
|
|
1566
|
+
{ "value" : "Oui",
|
|
1567
|
+
"type" : "VTL|MD" } },
|
|
1568
|
+
|
|
1569
|
+
{ "value" : "2",
|
|
1570
|
+
"label" :
|
|
1571
|
+
{ "value" : "Non",
|
|
1572
|
+
"type" : "VTL|MD" } } ],
|
|
1573
|
+
"response" :
|
|
1574
|
+
{ "name" : "TABLEAU1A3M12" },
|
|
1575
|
+
"bindingDependencies" :
|
|
1576
|
+
[ "TABLEAU1A3M12" ] },
|
|
1577
|
+
|
|
1578
|
+
{ "componentType" : "Input",
|
|
1579
|
+
"maxLength" : 25,
|
|
1580
|
+
"id" : "jfkzpexn-QOP-l1uk1a4u",
|
|
1581
|
+
"response" :
|
|
1582
|
+
{ "name" : "TABLEAU1A3M13" },
|
|
1583
|
+
"bindingDependencies" :
|
|
1584
|
+
[ "TABLEAU1A3M13" ] } ],
|
|
1585
|
+
|
|
1586
|
+
[
|
|
1587
|
+
{ "value" : "2",
|
|
1588
|
+
"label" :
|
|
1589
|
+
{ "value" : "choix 2",
|
|
1590
|
+
"type" : "VTL|MD" } },
|
|
1591
|
+
|
|
1592
|
+
{ "componentType" : "InputNumber",
|
|
1593
|
+
"min" : 0,
|
|
1594
|
+
"max" : 999,
|
|
1595
|
+
"decimals" : 0,
|
|
1596
|
+
"id" : "jfkzpexn-QOP-l1ujr9h6",
|
|
1597
|
+
"response" :
|
|
1598
|
+
{ "name" : "TABLEAU1A3M21" },
|
|
1599
|
+
"bindingDependencies" :
|
|
1600
|
+
[ "TABLEAU1A3M21" ] },
|
|
1601
|
+
|
|
1602
|
+
{ "componentType" : "CheckboxOne",
|
|
1603
|
+
"id" : "jfkzpexn-QOP-l1ujivv8",
|
|
1604
|
+
"options" :
|
|
1605
|
+
[
|
|
1606
|
+
{ "value" : "1",
|
|
1607
|
+
"label" :
|
|
1608
|
+
{ "value" : "Oui",
|
|
1609
|
+
"type" : "VTL|MD" } },
|
|
1610
|
+
|
|
1611
|
+
{ "value" : "2",
|
|
1612
|
+
"label" :
|
|
1613
|
+
{ "value" : "Non",
|
|
1614
|
+
"type" : "VTL|MD" } } ],
|
|
1615
|
+
"response" :
|
|
1616
|
+
{ "name" : "TABLEAU1A3M22" },
|
|
1617
|
+
"bindingDependencies" :
|
|
1618
|
+
[ "TABLEAU1A3M22" ] },
|
|
1619
|
+
|
|
1620
|
+
{ "componentType" : "Input",
|
|
1621
|
+
"maxLength" : 25,
|
|
1622
|
+
"id" : "jfkzpexn-QOP-l1ujpbuo",
|
|
1623
|
+
"response" :
|
|
1624
|
+
{ "name" : "TABLEAU1A3M23" },
|
|
1625
|
+
"bindingDependencies" :
|
|
1626
|
+
[ "TABLEAU1A3M23" ] } ],
|
|
1627
|
+
|
|
1628
|
+
[
|
|
1629
|
+
{ "value" : "3",
|
|
1630
|
+
"label" :
|
|
1631
|
+
{ "value" : "choix 3",
|
|
1632
|
+
"type" : "VTL|MD" } },
|
|
1633
|
+
|
|
1634
|
+
{ "componentType" : "InputNumber",
|
|
1635
|
+
"min" : 0,
|
|
1636
|
+
"max" : 999,
|
|
1637
|
+
"decimals" : 0,
|
|
1638
|
+
"id" : "jfkzpexn-QOP-l1ujnpx6",
|
|
1639
|
+
"response" :
|
|
1640
|
+
{ "name" : "TABLEAU1A3M31" },
|
|
1641
|
+
"bindingDependencies" :
|
|
1642
|
+
[ "TABLEAU1A3M31" ] },
|
|
1643
|
+
|
|
1644
|
+
{ "componentType" : "CheckboxOne",
|
|
1645
|
+
"id" : "jfkzpexn-QOP-l1ujua93",
|
|
1646
|
+
"options" :
|
|
1647
|
+
[
|
|
1648
|
+
{ "value" : "1",
|
|
1649
|
+
"label" :
|
|
1650
|
+
{ "value" : "Oui",
|
|
1651
|
+
"type" : "VTL|MD" } },
|
|
1652
|
+
|
|
1653
|
+
{ "value" : "2",
|
|
1654
|
+
"label" :
|
|
1655
|
+
{ "value" : "Non",
|
|
1656
|
+
"type" : "VTL|MD" } } ],
|
|
1657
|
+
"response" :
|
|
1658
|
+
{ "name" : "TABLEAU1A3M32" },
|
|
1659
|
+
"bindingDependencies" :
|
|
1660
|
+
[ "TABLEAU1A3M32" ] },
|
|
1661
|
+
|
|
1662
|
+
{ "componentType" : "Input",
|
|
1663
|
+
"maxLength" : 25,
|
|
1664
|
+
"id" : "jfkzpexn-QOP-l1ujyf9c",
|
|
1665
|
+
"response" :
|
|
1666
|
+
{ "name" : "TABLEAU1A3M33" },
|
|
1667
|
+
"bindingDependencies" :
|
|
1668
|
+
[ "TABLEAU1A3M33" ] } ],
|
|
1669
|
+
|
|
1670
|
+
[
|
|
1671
|
+
{ "value" : "4",
|
|
1672
|
+
"label" :
|
|
1673
|
+
{ "value" : "choix 4",
|
|
1674
|
+
"type" : "VTL|MD" } },
|
|
1675
|
+
|
|
1676
|
+
{ "componentType" : "InputNumber",
|
|
1677
|
+
"min" : 0,
|
|
1678
|
+
"max" : 999,
|
|
1679
|
+
"decimals" : 0,
|
|
1680
|
+
"id" : "jfkzpexn-QOP-l1ujoena",
|
|
1681
|
+
"response" :
|
|
1682
|
+
{ "name" : "TABLEAU1A3M41" },
|
|
1683
|
+
"bindingDependencies" :
|
|
1684
|
+
[ "TABLEAU1A3M41" ] },
|
|
1685
|
+
|
|
1686
|
+
{ "componentType" : "CheckboxOne",
|
|
1687
|
+
"id" : "jfkzpexn-QOP-l1ujm6cz",
|
|
1688
|
+
"options" :
|
|
1689
|
+
[
|
|
1690
|
+
{ "value" : "1",
|
|
1691
|
+
"label" :
|
|
1692
|
+
{ "value" : "Oui",
|
|
1693
|
+
"type" : "VTL|MD" } },
|
|
1694
|
+
|
|
1695
|
+
{ "value" : "2",
|
|
1696
|
+
"label" :
|
|
1697
|
+
{ "value" : "Non",
|
|
1698
|
+
"type" : "VTL|MD" } } ],
|
|
1699
|
+
"response" :
|
|
1700
|
+
{ "name" : "TABLEAU1A3M42" },
|
|
1701
|
+
"bindingDependencies" :
|
|
1702
|
+
[ "TABLEAU1A3M42" ] },
|
|
1703
|
+
|
|
1704
|
+
{ "componentType" : "Input",
|
|
1705
|
+
"maxLength" : 25,
|
|
1706
|
+
"id" : "jfkzpexn-QOP-l1ujwn72",
|
|
1707
|
+
"response" :
|
|
1708
|
+
{ "name" : "TABLEAU1A3M43" },
|
|
1709
|
+
"bindingDependencies" :
|
|
1710
|
+
[ "TABLEAU1A3M43" ] } ],
|
|
1711
|
+
|
|
1712
|
+
[
|
|
1713
|
+
{ "value" : "5",
|
|
1714
|
+
"label" :
|
|
1715
|
+
{ "value" : "choix 5",
|
|
1716
|
+
"type" : "VTL|MD" } },
|
|
1717
|
+
|
|
1718
|
+
{ "componentType" : "InputNumber",
|
|
1719
|
+
"min" : 0,
|
|
1720
|
+
"max" : 999,
|
|
1721
|
+
"decimals" : 0,
|
|
1722
|
+
"id" : "jfkzpexn-QOP-l1uk1xo1",
|
|
1723
|
+
"response" :
|
|
1724
|
+
{ "name" : "TABLEAU1A3M51" },
|
|
1725
|
+
"bindingDependencies" :
|
|
1726
|
+
[ "TABLEAU1A3M51" ] },
|
|
1727
|
+
|
|
1728
|
+
{ "componentType" : "CheckboxOne",
|
|
1729
|
+
"id" : "jfkzpexn-QOP-l1ujxoe9",
|
|
1730
|
+
"options" :
|
|
1731
|
+
[
|
|
1732
|
+
{ "value" : "1",
|
|
1733
|
+
"label" :
|
|
1734
|
+
{ "value" : "Oui",
|
|
1735
|
+
"type" : "VTL|MD" } },
|
|
1736
|
+
|
|
1737
|
+
{ "value" : "2",
|
|
1738
|
+
"label" :
|
|
1739
|
+
{ "value" : "Non",
|
|
1740
|
+
"type" : "VTL|MD" } } ],
|
|
1741
|
+
"response" :
|
|
1742
|
+
{ "name" : "TABLEAU1A3M52" },
|
|
1743
|
+
"bindingDependencies" :
|
|
1744
|
+
[ "TABLEAU1A3M52" ] },
|
|
1745
|
+
|
|
1746
|
+
{ "componentType" : "Input",
|
|
1747
|
+
"maxLength" : 25,
|
|
1748
|
+
"id" : "jfkzpexn-QOP-l1ujo33k",
|
|
1749
|
+
"response" :
|
|
1750
|
+
{ "name" : "TABLEAU1A3M53" },
|
|
1751
|
+
"bindingDependencies" :
|
|
1752
|
+
[ "TABLEAU1A3M53" ] } ],
|
|
1753
|
+
|
|
1754
|
+
[
|
|
1755
|
+
{ "value" : "6",
|
|
1756
|
+
"label" :
|
|
1757
|
+
{ "value" : "et un choix 6 dont la modalité est plus longue",
|
|
1758
|
+
"type" : "VTL|MD" } },
|
|
1759
|
+
|
|
1760
|
+
{ "componentType" : "InputNumber",
|
|
1761
|
+
"min" : 0,
|
|
1762
|
+
"max" : 999,
|
|
1763
|
+
"decimals" : 0,
|
|
1764
|
+
"id" : "jfkzpexn-QOP-l1ujr7pv",
|
|
1765
|
+
"response" :
|
|
1766
|
+
{ "name" : "TABLEAU1A3M61" },
|
|
1767
|
+
"bindingDependencies" :
|
|
1768
|
+
[ "TABLEAU1A3M61" ] },
|
|
1769
|
+
|
|
1770
|
+
{ "componentType" : "CheckboxOne",
|
|
1771
|
+
"id" : "jfkzpexn-QOP-l1ujunro",
|
|
1772
|
+
"options" :
|
|
1773
|
+
[
|
|
1774
|
+
{ "value" : "1",
|
|
1775
|
+
"label" :
|
|
1776
|
+
{ "value" : "Oui",
|
|
1777
|
+
"type" : "VTL|MD" } },
|
|
1778
|
+
|
|
1779
|
+
{ "value" : "2",
|
|
1780
|
+
"label" :
|
|
1781
|
+
{ "value" : "Non",
|
|
1782
|
+
"type" : "VTL|MD" } } ],
|
|
1783
|
+
"response" :
|
|
1784
|
+
{ "name" : "TABLEAU1A3M62" },
|
|
1785
|
+
"bindingDependencies" :
|
|
1786
|
+
[ "TABLEAU1A3M62" ] },
|
|
1787
|
+
|
|
1788
|
+
{ "componentType" : "Input",
|
|
1789
|
+
"maxLength" : 25,
|
|
1790
|
+
"id" : "jfkzpexn-QOP-l1ujn34z",
|
|
1791
|
+
"response" :
|
|
1792
|
+
{ "name" : "TABLEAU1A3M63" },
|
|
1793
|
+
"bindingDependencies" :
|
|
1794
|
+
[ "TABLEAU1A3M63" ] } ] ] },
|
|
1795
|
+
|
|
1796
|
+
{ "id" : "jfkzttm3",
|
|
1797
|
+
"componentType" : "Table",
|
|
1798
|
+
"mandatory" : false,
|
|
1799
|
+
"page" : "28",
|
|
1800
|
+
"positioning" : "HORIZONTAL",
|
|
1801
|
+
"label" :
|
|
1802
|
+
{ "value" : "\"➡ 3. \" || \"Tableau 2 axes\"",
|
|
1803
|
+
"type" : "VTL|MD" },
|
|
1804
|
+
"conditionFilter" :
|
|
1805
|
+
{ "value" : "(COCHECASE = true)",
|
|
1806
|
+
"type" : "VTL",
|
|
1807
|
+
"bindingDependencies" :
|
|
1808
|
+
[ "COCHECASE" ] },
|
|
1809
|
+
"hierarchy" :
|
|
1810
|
+
{ "sequence" :
|
|
1811
|
+
{ "id" : "jfkyvabw",
|
|
1812
|
+
"page" : "25",
|
|
1813
|
+
"label" :
|
|
1814
|
+
{ "value" : "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
|
|
1815
|
+
"type" : "VTL|MD" } } },
|
|
1816
|
+
"bindingDependencies" :
|
|
1817
|
+
[ "TABLEAU2A11",
|
|
1818
|
+
"TABLEAU2A12",
|
|
1819
|
+
"TABLEAU2A13",
|
|
1820
|
+
"TABLEAU2A14",
|
|
1821
|
+
"TABLEAU2A15",
|
|
1822
|
+
"TABLEAU2A21",
|
|
1823
|
+
"TABLEAU2A22",
|
|
1824
|
+
"TABLEAU2A23",
|
|
1825
|
+
"TABLEAU2A24",
|
|
1826
|
+
"TABLEAU2A25",
|
|
1827
|
+
"TABLEAU2A31",
|
|
1828
|
+
"TABLEAU2A32",
|
|
1829
|
+
"TABLEAU2A33",
|
|
1830
|
+
"TABLEAU2A34",
|
|
1831
|
+
"TABLEAU2A35",
|
|
1832
|
+
"TABLEAU2A41",
|
|
1833
|
+
"TABLEAU2A42",
|
|
1834
|
+
"TABLEAU2A43",
|
|
1835
|
+
"TABLEAU2A44",
|
|
1836
|
+
"TABLEAU2A45",
|
|
1837
|
+
"TABLEAU2A51",
|
|
1838
|
+
"TABLEAU2A52",
|
|
1839
|
+
"TABLEAU2A53",
|
|
1840
|
+
"TABLEAU2A54",
|
|
1841
|
+
"TABLEAU2A55",
|
|
1842
|
+
"TABLEAU2A61",
|
|
1843
|
+
"TABLEAU2A62",
|
|
1844
|
+
"TABLEAU2A63",
|
|
1845
|
+
"TABLEAU2A64",
|
|
1846
|
+
"TABLEAU2A65" ],
|
|
1847
|
+
"header" :
|
|
1848
|
+
[
|
|
1849
|
+
{ "label" :
|
|
1850
|
+
{ "value" : "",
|
|
1851
|
+
"type" : "VTL|MD" } },
|
|
1852
|
+
|
|
1853
|
+
{ "label" :
|
|
1854
|
+
{ "value" : "code1",
|
|
1855
|
+
"type" : "VTL|MD" } },
|
|
1856
|
+
|
|
1857
|
+
{ "label" :
|
|
1858
|
+
{ "value" : "code2",
|
|
1859
|
+
"type" : "VTL|MD" } },
|
|
1860
|
+
|
|
1861
|
+
{ "label" :
|
|
1862
|
+
{ "value" : "code3",
|
|
1863
|
+
"type" : "VTL|MD" } },
|
|
1864
|
+
|
|
1865
|
+
{ "label" :
|
|
1866
|
+
{ "value" : "code4",
|
|
1867
|
+
"type" : "VTL|MD" } },
|
|
1868
|
+
|
|
1869
|
+
{ "label" :
|
|
1870
|
+
{ "value" : "autre et libellé un peu long pour valider",
|
|
1871
|
+
"type" : "VTL|MD" } } ],
|
|
1872
|
+
"body" :
|
|
1873
|
+
[
|
|
1874
|
+
[
|
|
1875
|
+
{ "value" : "1",
|
|
1876
|
+
"label" :
|
|
1877
|
+
{ "value" : "choix 1",
|
|
1878
|
+
"type" : "VTL|MD" } },
|
|
1879
|
+
|
|
1880
|
+
{ "componentType" : "InputNumber",
|
|
1881
|
+
"min" : 0,
|
|
1882
|
+
"max" : 100,
|
|
1883
|
+
"decimals" : 0,
|
|
1884
|
+
"id" : "jfkzttm3-QOP-l1ujk7i2",
|
|
1885
|
+
"response" :
|
|
1886
|
+
{ "name" : "TABLEAU2A11" },
|
|
1887
|
+
"bindingDependencies" :
|
|
1888
|
+
[ "TABLEAU2A11" ] },
|
|
1889
|
+
|
|
1890
|
+
{ "componentType" : "InputNumber",
|
|
1891
|
+
"min" : 0,
|
|
1892
|
+
"max" : 100,
|
|
1893
|
+
"decimals" : 0,
|
|
1894
|
+
"id" : "jfkzttm3-QOP-l1ujokny",
|
|
1895
|
+
"response" :
|
|
1896
|
+
{ "name" : "TABLEAU2A12" },
|
|
1897
|
+
"bindingDependencies" :
|
|
1898
|
+
[ "TABLEAU2A12" ] },
|
|
1899
|
+
|
|
1900
|
+
{ "componentType" : "InputNumber",
|
|
1901
|
+
"min" : 0,
|
|
1902
|
+
"max" : 100,
|
|
1903
|
+
"decimals" : 0,
|
|
1904
|
+
"id" : "jfkzttm3-QOP-l1ujko9e",
|
|
1905
|
+
"response" :
|
|
1906
|
+
{ "name" : "TABLEAU2A13" },
|
|
1907
|
+
"bindingDependencies" :
|
|
1908
|
+
[ "TABLEAU2A13" ] },
|
|
1909
|
+
|
|
1910
|
+
{ "componentType" : "InputNumber",
|
|
1911
|
+
"min" : 0,
|
|
1912
|
+
"max" : 100,
|
|
1913
|
+
"decimals" : 0,
|
|
1914
|
+
"id" : "jfkzttm3-QOP-l1ujujrh",
|
|
1915
|
+
"response" :
|
|
1916
|
+
{ "name" : "TABLEAU2A14" },
|
|
1917
|
+
"bindingDependencies" :
|
|
1918
|
+
[ "TABLEAU2A14" ] },
|
|
1919
|
+
|
|
1920
|
+
{ "componentType" : "InputNumber",
|
|
1921
|
+
"min" : 0,
|
|
1922
|
+
"max" : 100,
|
|
1923
|
+
"decimals" : 0,
|
|
1924
|
+
"id" : "jfkzttm3-QOP-l1ujygrf",
|
|
1925
|
+
"response" :
|
|
1926
|
+
{ "name" : "TABLEAU2A15" },
|
|
1927
|
+
"bindingDependencies" :
|
|
1928
|
+
[ "TABLEAU2A15" ] } ],
|
|
1929
|
+
|
|
1930
|
+
[
|
|
1931
|
+
{ "value" : "2",
|
|
1932
|
+
"label" :
|
|
1933
|
+
{ "value" : "choix 2",
|
|
1934
|
+
"type" : "VTL|MD" } },
|
|
1935
|
+
|
|
1936
|
+
{ "componentType" : "InputNumber",
|
|
1937
|
+
"min" : 0,
|
|
1938
|
+
"max" : 100,
|
|
1939
|
+
"decimals" : 0,
|
|
1940
|
+
"id" : "jfkzttm3-QOP-l1ujyvbd",
|
|
1941
|
+
"response" :
|
|
1942
|
+
{ "name" : "TABLEAU2A21" },
|
|
1943
|
+
"bindingDependencies" :
|
|
1944
|
+
[ "TABLEAU2A21" ] },
|
|
1945
|
+
|
|
1946
|
+
{ "componentType" : "InputNumber",
|
|
1947
|
+
"min" : 0,
|
|
1948
|
+
"max" : 100,
|
|
1949
|
+
"decimals" : 0,
|
|
1950
|
+
"id" : "jfkzttm3-QOP-l1ujm86z",
|
|
1951
|
+
"response" :
|
|
1952
|
+
{ "name" : "TABLEAU2A22" },
|
|
1953
|
+
"bindingDependencies" :
|
|
1954
|
+
[ "TABLEAU2A22" ] },
|
|
1955
|
+
|
|
1956
|
+
{ "componentType" : "InputNumber",
|
|
1957
|
+
"min" : 0,
|
|
1958
|
+
"max" : 100,
|
|
1959
|
+
"decimals" : 0,
|
|
1960
|
+
"id" : "jfkzttm3-QOP-l1ujqrec",
|
|
1961
|
+
"response" :
|
|
1962
|
+
{ "name" : "TABLEAU2A23" },
|
|
1963
|
+
"bindingDependencies" :
|
|
1964
|
+
[ "TABLEAU2A23" ] },
|
|
1965
|
+
|
|
1966
|
+
{ "componentType" : "InputNumber",
|
|
1967
|
+
"min" : 0,
|
|
1968
|
+
"max" : 100,
|
|
1969
|
+
"decimals" : 0,
|
|
1970
|
+
"id" : "jfkzttm3-QOP-l1ujxyjn",
|
|
1971
|
+
"response" :
|
|
1972
|
+
{ "name" : "TABLEAU2A24" },
|
|
1973
|
+
"bindingDependencies" :
|
|
1974
|
+
[ "TABLEAU2A24" ] },
|
|
1975
|
+
|
|
1976
|
+
{ "componentType" : "InputNumber",
|
|
1977
|
+
"min" : 0,
|
|
1978
|
+
"max" : 100,
|
|
1979
|
+
"decimals" : 0,
|
|
1980
|
+
"id" : "jfkzttm3-QOP-l1ujytea",
|
|
1981
|
+
"response" :
|
|
1982
|
+
{ "name" : "TABLEAU2A25" },
|
|
1983
|
+
"bindingDependencies" :
|
|
1984
|
+
[ "TABLEAU2A25" ] } ],
|
|
1985
|
+
|
|
1986
|
+
[
|
|
1987
|
+
{ "value" : "3",
|
|
1988
|
+
"label" :
|
|
1989
|
+
{ "value" : "choix 3",
|
|
1990
|
+
"type" : "VTL|MD" } },
|
|
1991
|
+
|
|
1992
|
+
{ "componentType" : "InputNumber",
|
|
1993
|
+
"min" : 0,
|
|
1994
|
+
"max" : 100,
|
|
1995
|
+
"decimals" : 0,
|
|
1996
|
+
"id" : "jfkzttm3-QOP-l1uk0h81",
|
|
1997
|
+
"response" :
|
|
1998
|
+
{ "name" : "TABLEAU2A31" },
|
|
1999
|
+
"bindingDependencies" :
|
|
2000
|
+
[ "TABLEAU2A31" ] },
|
|
2001
|
+
|
|
2002
|
+
{ "componentType" : "InputNumber",
|
|
2003
|
+
"min" : 0,
|
|
2004
|
+
"max" : 100,
|
|
2005
|
+
"decimals" : 0,
|
|
2006
|
+
"id" : "jfkzttm3-QOP-l1ujzfyx",
|
|
2007
|
+
"response" :
|
|
2008
|
+
{ "name" : "TABLEAU2A32" },
|
|
2009
|
+
"bindingDependencies" :
|
|
2010
|
+
[ "TABLEAU2A32" ] },
|
|
2011
|
+
|
|
2012
|
+
{ "componentType" : "InputNumber",
|
|
2013
|
+
"min" : 0,
|
|
2014
|
+
"max" : 100,
|
|
2015
|
+
"decimals" : 0,
|
|
2016
|
+
"id" : "jfkzttm3-QOP-l1ujxbgs",
|
|
2017
|
+
"response" :
|
|
2018
|
+
{ "name" : "TABLEAU2A33" },
|
|
2019
|
+
"bindingDependencies" :
|
|
2020
|
+
[ "TABLEAU2A33" ] },
|
|
2021
|
+
|
|
2022
|
+
{ "componentType" : "InputNumber",
|
|
2023
|
+
"min" : 0,
|
|
2024
|
+
"max" : 100,
|
|
2025
|
+
"decimals" : 0,
|
|
2026
|
+
"id" : "jfkzttm3-QOP-l1ujrxoa",
|
|
2027
|
+
"response" :
|
|
2028
|
+
{ "name" : "TABLEAU2A34" },
|
|
2029
|
+
"bindingDependencies" :
|
|
2030
|
+
[ "TABLEAU2A34" ] },
|
|
2031
|
+
|
|
2032
|
+
{ "componentType" : "InputNumber",
|
|
2033
|
+
"min" : 0,
|
|
2034
|
+
"max" : 100,
|
|
2035
|
+
"decimals" : 0,
|
|
2036
|
+
"id" : "jfkzttm3-QOP-l1ujsarc",
|
|
2037
|
+
"response" :
|
|
2038
|
+
{ "name" : "TABLEAU2A35" },
|
|
2039
|
+
"bindingDependencies" :
|
|
2040
|
+
[ "TABLEAU2A35" ] } ],
|
|
2041
|
+
|
|
2042
|
+
[
|
|
2043
|
+
{ "value" : "4",
|
|
2044
|
+
"label" :
|
|
2045
|
+
{ "value" : "choix 4",
|
|
2046
|
+
"type" : "VTL|MD" } },
|
|
2047
|
+
|
|
2048
|
+
{ "componentType" : "InputNumber",
|
|
2049
|
+
"min" : 0,
|
|
2050
|
+
"max" : 100,
|
|
2051
|
+
"decimals" : 0,
|
|
2052
|
+
"id" : "jfkzttm3-QOP-l1uk06w9",
|
|
2053
|
+
"response" :
|
|
2054
|
+
{ "name" : "TABLEAU2A41" },
|
|
2055
|
+
"bindingDependencies" :
|
|
2056
|
+
[ "TABLEAU2A41" ] },
|
|
2057
|
+
|
|
2058
|
+
{ "componentType" : "InputNumber",
|
|
2059
|
+
"min" : 0,
|
|
2060
|
+
"max" : 100,
|
|
2061
|
+
"decimals" : 0,
|
|
2062
|
+
"id" : "jfkzttm3-QOP-l1ujtvwj",
|
|
2063
|
+
"response" :
|
|
2064
|
+
{ "name" : "TABLEAU2A42" },
|
|
2065
|
+
"bindingDependencies" :
|
|
2066
|
+
[ "TABLEAU2A42" ] },
|
|
2067
|
+
|
|
2068
|
+
{ "componentType" : "InputNumber",
|
|
2069
|
+
"min" : 0,
|
|
2070
|
+
"max" : 100,
|
|
2071
|
+
"decimals" : 0,
|
|
2072
|
+
"id" : "jfkzttm3-QOP-l1ujjorw",
|
|
2073
|
+
"response" :
|
|
2074
|
+
{ "name" : "TABLEAU2A43" },
|
|
2075
|
+
"bindingDependencies" :
|
|
2076
|
+
[ "TABLEAU2A43" ] },
|
|
2077
|
+
|
|
2078
|
+
{ "componentType" : "InputNumber",
|
|
2079
|
+
"min" : 0,
|
|
2080
|
+
"max" : 100,
|
|
2081
|
+
"decimals" : 0,
|
|
2082
|
+
"id" : "jfkzttm3-QOP-l1uk25o1",
|
|
2083
|
+
"response" :
|
|
2084
|
+
{ "name" : "TABLEAU2A44" },
|
|
2085
|
+
"bindingDependencies" :
|
|
2086
|
+
[ "TABLEAU2A44" ] },
|
|
2087
|
+
|
|
2088
|
+
{ "componentType" : "InputNumber",
|
|
2089
|
+
"min" : 0,
|
|
2090
|
+
"max" : 100,
|
|
2091
|
+
"decimals" : 0,
|
|
2092
|
+
"id" : "jfkzttm3-QOP-l1ujvpbj",
|
|
2093
|
+
"response" :
|
|
2094
|
+
{ "name" : "TABLEAU2A45" },
|
|
2095
|
+
"bindingDependencies" :
|
|
2096
|
+
[ "TABLEAU2A45" ] } ],
|
|
2097
|
+
|
|
2098
|
+
[
|
|
2099
|
+
{ "value" : "5",
|
|
2100
|
+
"label" :
|
|
2101
|
+
{ "value" : "choix 5",
|
|
2102
|
+
"type" : "VTL|MD" } },
|
|
2103
|
+
|
|
2104
|
+
{ "componentType" : "InputNumber",
|
|
2105
|
+
"min" : 0,
|
|
2106
|
+
"max" : 100,
|
|
2107
|
+
"decimals" : 0,
|
|
2108
|
+
"id" : "jfkzttm3-QOP-l1ujwln7",
|
|
2109
|
+
"response" :
|
|
2110
|
+
{ "name" : "TABLEAU2A51" },
|
|
2111
|
+
"bindingDependencies" :
|
|
2112
|
+
[ "TABLEAU2A51" ] },
|
|
2113
|
+
|
|
2114
|
+
{ "componentType" : "InputNumber",
|
|
2115
|
+
"min" : 0,
|
|
2116
|
+
"max" : 100,
|
|
2117
|
+
"decimals" : 0,
|
|
2118
|
+
"id" : "jfkzttm3-QOP-l1ujpw6f",
|
|
2119
|
+
"response" :
|
|
2120
|
+
{ "name" : "TABLEAU2A52" },
|
|
2121
|
+
"bindingDependencies" :
|
|
2122
|
+
[ "TABLEAU2A52" ] },
|
|
2123
|
+
|
|
2124
|
+
{ "componentType" : "InputNumber",
|
|
2125
|
+
"min" : 0,
|
|
2126
|
+
"max" : 100,
|
|
2127
|
+
"decimals" : 0,
|
|
2128
|
+
"id" : "jfkzttm3-QOP-l1ujljwz",
|
|
2129
|
+
"response" :
|
|
2130
|
+
{ "name" : "TABLEAU2A53" },
|
|
2131
|
+
"bindingDependencies" :
|
|
2132
|
+
[ "TABLEAU2A53" ] },
|
|
2133
|
+
|
|
2134
|
+
{ "componentType" : "InputNumber",
|
|
2135
|
+
"min" : 0,
|
|
2136
|
+
"max" : 100,
|
|
2137
|
+
"decimals" : 0,
|
|
2138
|
+
"id" : "jfkzttm3-QOP-l1uk11gp",
|
|
2139
|
+
"response" :
|
|
2140
|
+
{ "name" : "TABLEAU2A54" },
|
|
2141
|
+
"bindingDependencies" :
|
|
2142
|
+
[ "TABLEAU2A54" ] },
|
|
2143
|
+
|
|
2144
|
+
{ "componentType" : "InputNumber",
|
|
2145
|
+
"min" : 0,
|
|
2146
|
+
"max" : 100,
|
|
2147
|
+
"decimals" : 0,
|
|
2148
|
+
"id" : "jfkzttm3-QOP-l1ujmqp9",
|
|
2149
|
+
"response" :
|
|
2150
|
+
{ "name" : "TABLEAU2A55" },
|
|
2151
|
+
"bindingDependencies" :
|
|
2152
|
+
[ "TABLEAU2A55" ] } ],
|
|
2153
|
+
|
|
2154
|
+
[
|
|
2155
|
+
{ "value" : "6",
|
|
2156
|
+
"label" :
|
|
2157
|
+
{ "value" : "et un choix 6 dont la modalité est plus longue",
|
|
2158
|
+
"type" : "VTL|MD" } },
|
|
2159
|
+
|
|
2160
|
+
{ "componentType" : "InputNumber",
|
|
2161
|
+
"min" : 0,
|
|
2162
|
+
"max" : 100,
|
|
2163
|
+
"decimals" : 0,
|
|
2164
|
+
"id" : "jfkzttm3-QOP-l1ujwhwu",
|
|
2165
|
+
"response" :
|
|
2166
|
+
{ "name" : "TABLEAU2A61" },
|
|
2167
|
+
"bindingDependencies" :
|
|
2168
|
+
[ "TABLEAU2A61" ] },
|
|
2169
|
+
|
|
2170
|
+
{ "componentType" : "InputNumber",
|
|
2171
|
+
"min" : 0,
|
|
2172
|
+
"max" : 100,
|
|
2173
|
+
"decimals" : 0,
|
|
2174
|
+
"id" : "jfkzttm3-QOP-l1ujzsjw",
|
|
2175
|
+
"response" :
|
|
2176
|
+
{ "name" : "TABLEAU2A62" },
|
|
2177
|
+
"bindingDependencies" :
|
|
2178
|
+
[ "TABLEAU2A62" ] },
|
|
2179
|
+
|
|
2180
|
+
{ "componentType" : "InputNumber",
|
|
2181
|
+
"min" : 0,
|
|
2182
|
+
"max" : 100,
|
|
2183
|
+
"decimals" : 0,
|
|
2184
|
+
"id" : "jfkzttm3-QOP-l1ujzxsr",
|
|
2185
|
+
"response" :
|
|
2186
|
+
{ "name" : "TABLEAU2A63" },
|
|
2187
|
+
"bindingDependencies" :
|
|
2188
|
+
[ "TABLEAU2A63" ] },
|
|
2189
|
+
|
|
2190
|
+
{ "componentType" : "InputNumber",
|
|
2191
|
+
"min" : 0,
|
|
2192
|
+
"max" : 100,
|
|
2193
|
+
"decimals" : 0,
|
|
2194
|
+
"id" : "jfkzttm3-QOP-l1ujksll",
|
|
2195
|
+
"response" :
|
|
2196
|
+
{ "name" : "TABLEAU2A64" },
|
|
2197
|
+
"bindingDependencies" :
|
|
2198
|
+
[ "TABLEAU2A64" ] },
|
|
2199
|
+
|
|
2200
|
+
{ "componentType" : "InputNumber",
|
|
2201
|
+
"min" : 0,
|
|
2202
|
+
"max" : 100,
|
|
2203
|
+
"decimals" : 0,
|
|
2204
|
+
"id" : "jfkzttm3-QOP-l1ujh2nw",
|
|
2205
|
+
"response" :
|
|
2206
|
+
{ "name" : "TABLEAU2A65" },
|
|
2207
|
+
"bindingDependencies" :
|
|
2208
|
+
[ "TABLEAU2A65" ] } ] ] },
|
|
2209
|
+
|
|
2210
|
+
{ "id" : "jfkzrwce",
|
|
2211
|
+
"componentType" : "Table",
|
|
2212
|
+
"mandatory" : false,
|
|
2213
|
+
"page" : "29",
|
|
2214
|
+
"positioning" : "HORIZONTAL",
|
|
2215
|
+
"label" :
|
|
2216
|
+
{ "value" : "\"➡ 4. \" || \"Tableau 1 axe avec hiérarchie , 1 mesure\"",
|
|
2217
|
+
"type" : "VTL|MD" },
|
|
2218
|
+
"conditionFilter" :
|
|
2219
|
+
{ "value" : "(COCHECASE = true)",
|
|
2220
|
+
"type" : "VTL",
|
|
2221
|
+
"bindingDependencies" :
|
|
2222
|
+
[ "COCHECASE" ] },
|
|
2223
|
+
"hierarchy" :
|
|
2224
|
+
{ "sequence" :
|
|
2225
|
+
{ "id" : "jfkyvabw",
|
|
2226
|
+
"page" : "25",
|
|
2227
|
+
"label" :
|
|
2228
|
+
{ "value" : "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
|
|
2229
|
+
"type" : "VTL|MD" } } },
|
|
2230
|
+
"bindingDependencies" :
|
|
2231
|
+
[ "TABLEAU1AH1M11",
|
|
2232
|
+
"TABLEAU1AH1M21" ],
|
|
2233
|
+
"header" :
|
|
2234
|
+
[
|
|
2235
|
+
{ "label" :
|
|
2236
|
+
{ "value" : "",
|
|
2237
|
+
"type" : "VTL|MD" } },
|
|
2238
|
+
|
|
2239
|
+
{ "label" :
|
|
2240
|
+
{ "value" : "montant",
|
|
2241
|
+
"type" : "VTL|MD" } } ],
|
|
2242
|
+
"body" :
|
|
2243
|
+
[
|
|
2244
|
+
[
|
|
2245
|
+
{ "value" : "20",
|
|
2246
|
+
"label" :
|
|
2247
|
+
{ "value" : "code2",
|
|
2248
|
+
"type" : "VTL|MD" } },
|
|
2249
|
+
|
|
2250
|
+
{ "componentType" : "InputNumber",
|
|
2251
|
+
"min" : 0,
|
|
2252
|
+
"max" : 999,
|
|
2253
|
+
"decimals" : 0,
|
|
2254
|
+
"id" : "jfkzrwce-QOP-l1ujyhz5",
|
|
2255
|
+
"unit" : "k€",
|
|
2256
|
+
"response" :
|
|
2257
|
+
{ "name" : "TABLEAU1AH1M11" },
|
|
2258
|
+
"bindingDependencies" :
|
|
2259
|
+
[ "TABLEAU1AH1M11" ] } ],
|
|
2260
|
+
|
|
2261
|
+
[
|
|
2262
|
+
{ "value" : "30",
|
|
2263
|
+
"label" :
|
|
2264
|
+
{ "value" : "code 3",
|
|
2265
|
+
"type" : "VTL|MD" } },
|
|
2266
|
+
|
|
2267
|
+
{ "componentType" : "InputNumber",
|
|
2268
|
+
"min" : 0,
|
|
2269
|
+
"max" : 999,
|
|
2270
|
+
"decimals" : 0,
|
|
2271
|
+
"id" : "jfkzrwce-QOP-l1ujiqfp",
|
|
2272
|
+
"unit" : "k€",
|
|
2273
|
+
"response" :
|
|
2274
|
+
{ "name" : "TABLEAU1AH1M21" },
|
|
2275
|
+
"bindingDependencies" :
|
|
2276
|
+
[ "TABLEAU1AH1M21" ] } ] ] },
|
|
2277
|
+
|
|
2278
|
+
{ "id" : "kk47qwrd",
|
|
2279
|
+
"componentType" : "Table",
|
|
2280
|
+
"mandatory" : false,
|
|
2281
|
+
"page" : "30",
|
|
2282
|
+
"positioning" : "HORIZONTAL",
|
|
2283
|
+
"label" :
|
|
2284
|
+
{ "value" : "\"➡ 5. \" || \"Tableau dynamique\"",
|
|
2285
|
+
"type" : "VTL|MD" },
|
|
2286
|
+
"conditionFilter" :
|
|
2287
|
+
{ "value" : "(COCHECASE = true)",
|
|
2288
|
+
"type" : "VTL",
|
|
2289
|
+
"bindingDependencies" :
|
|
2290
|
+
[ "COCHECASE" ] },
|
|
2291
|
+
"hierarchy" :
|
|
2292
|
+
{ "sequence" :
|
|
2293
|
+
{ "id" : "jfkyvabw",
|
|
2294
|
+
"page" : "25",
|
|
2295
|
+
"label" :
|
|
2296
|
+
{ "value" : "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
|
|
2297
|
+
"type" : "VTL|MD" } } },
|
|
2298
|
+
"bindingDependencies" :
|
|
2299
|
+
[ "TABLEAUDYN1",
|
|
2300
|
+
"TABLEAUDYN2",
|
|
2301
|
+
"TABLEAUDYN1_1_1",
|
|
2302
|
+
"TABLEAUDYN2_1_2",
|
|
2303
|
+
"TABLEAUDYN1_2_1",
|
|
2304
|
+
"TABLEAUDYN2_2_2",
|
|
2305
|
+
"TABLEAUDYN1_3_1",
|
|
2306
|
+
"TABLEAUDYN2_3_2",
|
|
2307
|
+
"TABLEAUDYN1_4_1",
|
|
2308
|
+
"TABLEAUDYN2_4_2",
|
|
2309
|
+
"TABLEAUDYN1_5_1",
|
|
2310
|
+
"TABLEAUDYN2_5_2" ],
|
|
2311
|
+
"lines" :
|
|
2312
|
+
{ "min" :
|
|
2313
|
+
{ "value" : "1",
|
|
2314
|
+
"type" : "VTL" },
|
|
2315
|
+
"max" :
|
|
2316
|
+
{ "value" : "5",
|
|
2317
|
+
"type" : "VTL" } },
|
|
2318
|
+
"header" :
|
|
2319
|
+
[
|
|
2320
|
+
{ "label" :
|
|
2321
|
+
{ "value" : "montant colonne 1",
|
|
2322
|
+
"type" : "VTL|MD" } },
|
|
2323
|
+
|
|
2324
|
+
{ "label" :
|
|
2325
|
+
{ "value" : "texte colonne 2",
|
|
2326
|
+
"type" : "VTL|MD" } } ],
|
|
2327
|
+
"body" :
|
|
2328
|
+
[
|
|
2329
|
+
[
|
|
2330
|
+
{ "componentType" : "InputNumber",
|
|
2331
|
+
"min" : 0,
|
|
2332
|
+
"max" : 999,
|
|
2333
|
+
"decimals" : 0,
|
|
2334
|
+
"id" : "kk47qwrd-QOP-l1ujls2l",
|
|
2335
|
+
"unit" : "k€",
|
|
2336
|
+
"response" :
|
|
2337
|
+
{ "name" : "TABLEAUDYN1_1_1" },
|
|
2338
|
+
"bindingDependencies" :
|
|
2339
|
+
[ "TABLEAUDYN1_1_1" ] },
|
|
2340
|
+
|
|
2341
|
+
{ "componentType" : "Input",
|
|
2342
|
+
"maxLength" : 20,
|
|
2343
|
+
"id" : "kk47qwrd-QOP-l1ujplks",
|
|
2344
|
+
"response" :
|
|
2345
|
+
{ "name" : "TABLEAUDYN2_1_2" },
|
|
2346
|
+
"bindingDependencies" :
|
|
2347
|
+
[ "TABLEAUDYN2_1_2" ] } ],
|
|
2348
|
+
|
|
2349
|
+
[
|
|
2350
|
+
{ "componentType" : "InputNumber",
|
|
2351
|
+
"min" : 0,
|
|
2352
|
+
"max" : 999,
|
|
2353
|
+
"decimals" : 0,
|
|
2354
|
+
"id" : "kk47qwrd-QOP-l1ujls2l",
|
|
2355
|
+
"unit" : "k€",
|
|
2356
|
+
"response" :
|
|
2357
|
+
{ "name" : "TABLEAUDYN1_2_1" },
|
|
2358
|
+
"bindingDependencies" :
|
|
2359
|
+
[ "TABLEAUDYN1_2_1" ] },
|
|
2360
|
+
|
|
2361
|
+
{ "componentType" : "Input",
|
|
2362
|
+
"maxLength" : 20,
|
|
2363
|
+
"id" : "kk47qwrd-QOP-l1ujplks",
|
|
2364
|
+
"response" :
|
|
2365
|
+
{ "name" : "TABLEAUDYN2_2_2" },
|
|
2366
|
+
"bindingDependencies" :
|
|
2367
|
+
[ "TABLEAUDYN2_2_2" ] } ],
|
|
2368
|
+
|
|
2369
|
+
[
|
|
2370
|
+
{ "componentType" : "InputNumber",
|
|
2371
|
+
"min" : 0,
|
|
2372
|
+
"max" : 999,
|
|
2373
|
+
"decimals" : 0,
|
|
2374
|
+
"id" : "kk47qwrd-QOP-l1ujls2l",
|
|
2375
|
+
"unit" : "k€",
|
|
2376
|
+
"response" :
|
|
2377
|
+
{ "name" : "TABLEAUDYN1_3_1" },
|
|
2378
|
+
"bindingDependencies" :
|
|
2379
|
+
[ "TABLEAUDYN1_3_1" ] },
|
|
2380
|
+
|
|
2381
|
+
{ "componentType" : "Input",
|
|
2382
|
+
"maxLength" : 20,
|
|
2383
|
+
"id" : "kk47qwrd-QOP-l1ujplks",
|
|
2384
|
+
"response" :
|
|
2385
|
+
{ "name" : "TABLEAUDYN2_3_2" },
|
|
2386
|
+
"bindingDependencies" :
|
|
2387
|
+
[ "TABLEAUDYN2_3_2" ] } ],
|
|
2388
|
+
|
|
2389
|
+
[
|
|
2390
|
+
{ "componentType" : "InputNumber",
|
|
2391
|
+
"min" : 0,
|
|
2392
|
+
"max" : 999,
|
|
2393
|
+
"decimals" : 0,
|
|
2394
|
+
"id" : "kk47qwrd-QOP-l1ujls2l",
|
|
2395
|
+
"unit" : "k€",
|
|
2396
|
+
"response" :
|
|
2397
|
+
{ "name" : "TABLEAUDYN1_4_1" },
|
|
2398
|
+
"bindingDependencies" :
|
|
2399
|
+
[ "TABLEAUDYN1_4_1" ] },
|
|
2400
|
+
|
|
2401
|
+
{ "componentType" : "Input",
|
|
2402
|
+
"maxLength" : 20,
|
|
2403
|
+
"id" : "kk47qwrd-QOP-l1ujplks",
|
|
2404
|
+
"response" :
|
|
2405
|
+
{ "name" : "TABLEAUDYN2_4_2" },
|
|
2406
|
+
"bindingDependencies" :
|
|
2407
|
+
[ "TABLEAUDYN2_4_2" ] } ],
|
|
2408
|
+
|
|
2409
|
+
[
|
|
2410
|
+
{ "componentType" : "InputNumber",
|
|
2411
|
+
"min" : 0,
|
|
2412
|
+
"max" : 999,
|
|
2413
|
+
"decimals" : 0,
|
|
2414
|
+
"id" : "kk47qwrd-QOP-l1ujls2l",
|
|
2415
|
+
"unit" : "k€",
|
|
2416
|
+
"response" :
|
|
2417
|
+
{ "name" : "TABLEAUDYN1_5_1" },
|
|
2418
|
+
"bindingDependencies" :
|
|
2419
|
+
[ "TABLEAUDYN1_5_1" ] },
|
|
2420
|
+
|
|
2421
|
+
{ "componentType" : "Input",
|
|
2422
|
+
"maxLength" : 20,
|
|
2423
|
+
"id" : "kk47qwrd-QOP-l1ujplks",
|
|
2424
|
+
"response" :
|
|
2425
|
+
{ "name" : "TABLEAUDYN2_5_2" },
|
|
2426
|
+
"bindingDependencies" :
|
|
2427
|
+
[ "TABLEAUDYN2_5_2" ] } ] ] },
|
|
2428
|
+
|
|
2429
|
+
{ "id" : "k3opdj10",
|
|
2430
|
+
"componentType" : "Sequence",
|
|
2431
|
+
"page" : "31",
|
|
2432
|
+
"label" :
|
|
2433
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2434
|
+
"type" : "VTL|MD" },
|
|
2435
|
+
"conditionFilter" :
|
|
2436
|
+
{ "value" : "true",
|
|
2437
|
+
"type" : "VTL" },
|
|
2438
|
+
"hierarchy" :
|
|
2439
|
+
{ "sequence" :
|
|
2440
|
+
{ "id" : "k3opdj10",
|
|
2441
|
+
"page" : "31",
|
|
2442
|
+
"label" :
|
|
2443
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2444
|
+
"type" : "VTL|MD" } } } },
|
|
2445
|
+
|
|
2446
|
+
{ "id" : "kmg10a27",
|
|
2447
|
+
"componentType" : "InputNumber",
|
|
2448
|
+
"mandatory" : false,
|
|
2449
|
+
"page" : "32",
|
|
2450
|
+
"min" : 1,
|
|
2451
|
+
"max" : 20,
|
|
2452
|
+
"decimals" : 0,
|
|
2453
|
+
"label" :
|
|
2454
|
+
{ "value" : "\"➡ 1. \" || \"Combien d’individus (moins de 10) ?\"",
|
|
2455
|
+
"type" : "VTL|MD" },
|
|
2456
|
+
"declarations" :
|
|
2457
|
+
[
|
|
2458
|
+
{ "id" : "kmg10a27-l203zi7m",
|
|
2459
|
+
"declarationType" : "HELP",
|
|
2460
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
2461
|
+
"label" :
|
|
2462
|
+
{ "value" : "cast(NHABCALC,string)",
|
|
2463
|
+
"type" : "VTL|MD" } } ],
|
|
2464
|
+
"conditionFilter" :
|
|
2465
|
+
{ "value" : "true",
|
|
2466
|
+
"type" : "VTL" },
|
|
2467
|
+
"hierarchy" :
|
|
2468
|
+
{ "sequence" :
|
|
2469
|
+
{ "id" : "k3opdj10",
|
|
2470
|
+
"page" : "31",
|
|
2471
|
+
"label" :
|
|
2472
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2473
|
+
"type" : "VTL|MD" } } },
|
|
2474
|
+
"bindingDependencies" :
|
|
2475
|
+
[ "NHABCALC",
|
|
2476
|
+
"NHAB" ],
|
|
2477
|
+
"response" :
|
|
2478
|
+
{ "name" : "NHAB" } },
|
|
2479
|
+
|
|
2480
|
+
{ "id" : "kmg0zwhd",
|
|
2481
|
+
"componentType" : "Loop",
|
|
2482
|
+
"page" : "33",
|
|
2483
|
+
"depth" : 1,
|
|
2484
|
+
"paginatedLoop" : false,
|
|
2485
|
+
"conditionFilter" :
|
|
2486
|
+
{ "value" : "true",
|
|
2487
|
+
"type" : "VTL" },
|
|
2488
|
+
"hierarchy" :
|
|
2489
|
+
{ "sequence" :
|
|
2490
|
+
{ "id" : "k3opdj10",
|
|
2491
|
+
"page" : "31",
|
|
2492
|
+
"label" :
|
|
2493
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2494
|
+
"type" : "VTL|MD" } } },
|
|
2495
|
+
"bindingDependencies" :
|
|
2496
|
+
[ "NHABCALC",
|
|
2497
|
+
"PRENOM1",
|
|
2498
|
+
"AGE1" ],
|
|
2499
|
+
"loopDependencies" :
|
|
2500
|
+
[ "NHABCALC" ],
|
|
2501
|
+
"lines" :
|
|
2502
|
+
{ "min" :
|
|
2503
|
+
{ "value" : "cast(NHABCALC,integer)",
|
|
2504
|
+
"type" : "VTL" },
|
|
2505
|
+
"max" :
|
|
2506
|
+
{ "value" : "cast(NHABCALC,integer)",
|
|
2507
|
+
"type" : "VTL" } },
|
|
2508
|
+
"components" :
|
|
2509
|
+
[
|
|
2510
|
+
{ "id" : "kmg0rom2",
|
|
2511
|
+
"componentType" : "Subsequence",
|
|
2512
|
+
"page" : "33",
|
|
2513
|
+
"goToPage" : "33",
|
|
2514
|
+
"label" :
|
|
2515
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
|
|
2516
|
+
"type" : "VTL|MD" },
|
|
2517
|
+
"declarations" :
|
|
2518
|
+
[
|
|
2519
|
+
{ "id" : "kmg0rom2-l5s0c7g0",
|
|
2520
|
+
"declarationType" : "HELP",
|
|
2521
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
2522
|
+
"label" :
|
|
2523
|
+
{ "value" : "boucle de NHABCALC à NHABCALC",
|
|
2524
|
+
"type" : "VTL|MD" } } ],
|
|
2525
|
+
"conditionFilter" :
|
|
2526
|
+
{ "value" : "true",
|
|
2527
|
+
"type" : "VTL" },
|
|
2528
|
+
"hierarchy" :
|
|
2529
|
+
{ "sequence" :
|
|
2530
|
+
{ "id" : "k3opdj10",
|
|
2531
|
+
"page" : "31",
|
|
2532
|
+
"label" :
|
|
2533
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2534
|
+
"type" : "VTL|MD" } },
|
|
2535
|
+
"subSequence" :
|
|
2536
|
+
{ "id" : "kmg0rom2",
|
|
2537
|
+
"page" : "33",
|
|
2538
|
+
"label" :
|
|
2539
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
|
|
2540
|
+
"type" : "VTL|MD" } } },
|
|
2541
|
+
"bindingDependencies" :
|
|
2542
|
+
[ "NHABCALC" ] },
|
|
2543
|
+
|
|
2544
|
+
{ "id" : "kmg0zlec",
|
|
2545
|
+
"componentType" : "Input",
|
|
2546
|
+
"mandatory" : false,
|
|
2547
|
+
"page" : "33",
|
|
2548
|
+
"maxLength" : 30,
|
|
2549
|
+
"label" :
|
|
2550
|
+
{ "value" : "\"➡ 2. \" || \"Quel est le prenom de l’individu ?\"",
|
|
2551
|
+
"type" : "VTL|MD" },
|
|
2552
|
+
"conditionFilter" :
|
|
2553
|
+
{ "value" : "true",
|
|
2554
|
+
"type" : "VTL" },
|
|
2555
|
+
"hierarchy" :
|
|
2556
|
+
{ "sequence" :
|
|
2557
|
+
{ "id" : "k3opdj10",
|
|
2558
|
+
"page" : "31",
|
|
2559
|
+
"label" :
|
|
2560
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2561
|
+
"type" : "VTL|MD" } },
|
|
2562
|
+
"subSequence" :
|
|
2563
|
+
{ "id" : "kmg0rom2",
|
|
2564
|
+
"page" : "33",
|
|
2565
|
+
"label" :
|
|
2566
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
|
|
2567
|
+
"type" : "VTL|MD" } } },
|
|
2568
|
+
"bindingDependencies" :
|
|
2569
|
+
[ "PRENOM1",
|
|
2570
|
+
"NHABCALC" ],
|
|
2571
|
+
"response" :
|
|
2572
|
+
{ "name" : "PRENOM1" } },
|
|
2573
|
+
|
|
2574
|
+
{ "id" : "k3opea2m",
|
|
2575
|
+
"componentType" : "InputNumber",
|
|
2576
|
+
"mandatory" : false,
|
|
2577
|
+
"page" : "33",
|
|
2578
|
+
"min" : 0,
|
|
2579
|
+
"max" : 120,
|
|
2580
|
+
"decimals" : 0,
|
|
2581
|
+
"label" :
|
|
2582
|
+
{ "value" : "\"➡ 3. \" || \"Quel âge a \" || PRENOM1 || \" ?\"",
|
|
2583
|
+
"type" : "VTL|MD" },
|
|
2584
|
+
"conditionFilter" :
|
|
2585
|
+
{ "value" : "true",
|
|
2586
|
+
"type" : "VTL" },
|
|
2587
|
+
"hierarchy" :
|
|
2588
|
+
{ "sequence" :
|
|
2589
|
+
{ "id" : "k3opdj10",
|
|
2590
|
+
"page" : "31",
|
|
2591
|
+
"label" :
|
|
2592
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2593
|
+
"type" : "VTL|MD" } },
|
|
2594
|
+
"subSequence" :
|
|
2595
|
+
{ "id" : "kmg0rom2",
|
|
2596
|
+
"page" : "33",
|
|
2597
|
+
"label" :
|
|
2598
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
|
|
2599
|
+
"type" : "VTL|MD" } } },
|
|
2600
|
+
"bindingDependencies" :
|
|
2601
|
+
[ "PRENOM1",
|
|
2602
|
+
"AGE1",
|
|
2603
|
+
"NHABCALC" ],
|
|
2604
|
+
"response" :
|
|
2605
|
+
{ "name" : "AGE1" } } ] },
|
|
2606
|
+
|
|
2607
|
+
{ "id" : "l203qtw0",
|
|
2608
|
+
"componentType" : "Loop",
|
|
2609
|
+
"page" : "34",
|
|
2610
|
+
|
|
2611
|
+
"depth" : 1,
|
|
2612
|
+
"paginatedLoop" : false,
|
|
2613
|
+
"conditionFilter" :
|
|
2614
|
+
{ "value" : "true",
|
|
2615
|
+
"type" : "VTL" },
|
|
2616
|
+
"hierarchy" :
|
|
2617
|
+
{ "sequence" :
|
|
2618
|
+
{ "id" : "k3opdj10",
|
|
2619
|
+
"page" : "31",
|
|
2620
|
+
"label" :
|
|
2621
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2622
|
+
"type" : "VTL|MD" } } },
|
|
2623
|
+
"bindingDependencies" :
|
|
2624
|
+
[ "NHABCALC",
|
|
2625
|
+
"PRENOM2",
|
|
2626
|
+
"AGE2" ],
|
|
2627
|
+
"loopDependencies" :
|
|
2628
|
+
[ "NHABCALC" ],
|
|
2629
|
+
"lines" :
|
|
2630
|
+
{ "min" :
|
|
2631
|
+
{ "value" : "1",
|
|
2632
|
+
"type" : "VTL" },
|
|
2633
|
+
"max" :
|
|
2634
|
+
{ "value" : "cast(NHABCALC,integer)",
|
|
2635
|
+
"type" : "VTL" } },
|
|
2636
|
+
"components" :
|
|
2637
|
+
[
|
|
2638
|
+
{ "id" : "l203lif1",
|
|
2639
|
+
"componentType" : "Subsequence",
|
|
2640
|
+
"page" : "34",
|
|
2641
|
+
"goToPage" : "34",
|
|
2642
|
+
"label" :
|
|
2643
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
|
|
2644
|
+
"type" : "VTL|MD" },
|
|
2645
|
+
"declarations" :
|
|
2646
|
+
[
|
|
2647
|
+
{ "id" : "l203lif1-l203w9y3",
|
|
2648
|
+
"declarationType" : "HELP",
|
|
2649
|
+
"position" : "AFTER_QUESTION_TEXT",
|
|
2650
|
+
"label" :
|
|
2651
|
+
{ "value" : "boucle de 1 a NHABCALC",
|
|
2652
|
+
"type" : "VTL|MD" } } ],
|
|
2653
|
+
"conditionFilter" :
|
|
2654
|
+
{ "value" : "true",
|
|
2655
|
+
"type" : "VTL" },
|
|
2656
|
+
"hierarchy" :
|
|
2657
|
+
{ "sequence" :
|
|
2658
|
+
{ "id" : "k3opdj10",
|
|
2659
|
+
"page" : "31",
|
|
2660
|
+
"label" :
|
|
2661
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2662
|
+
"type" : "VTL|MD" } },
|
|
2663
|
+
"subSequence" :
|
|
2664
|
+
{ "id" : "l203lif1",
|
|
2665
|
+
"page" : "34",
|
|
2666
|
+
"label" :
|
|
2667
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
|
|
2668
|
+
"type" : "VTL|MD" } } },
|
|
2669
|
+
"bindingDependencies" :
|
|
2670
|
+
[ "NHABCALC" ] },
|
|
2671
|
+
|
|
2672
|
+
|
|
2673
|
+
|
|
2674
|
+
{ "id" : "l204183l",
|
|
2675
|
+
"componentType" : "Input",
|
|
2676
|
+
"mandatory" : false,
|
|
2677
|
+
"page" : "34",
|
|
2678
|
+
"maxLength" : 30,
|
|
2679
|
+
"label" :
|
|
2680
|
+
{ "value" : "\"➡ 4. \" || \"Quel est le prenom de l’individu ?\"",
|
|
2681
|
+
"type" : "VTL|MD" },
|
|
2682
|
+
"conditionFilter" :
|
|
2683
|
+
{ "value" : "true",
|
|
2684
|
+
"type" : "VTL" },
|
|
2685
|
+
"hierarchy" :
|
|
2686
|
+
{ "sequence" :
|
|
2687
|
+
{ "id" : "k3opdj10",
|
|
2688
|
+
"page" : "31",
|
|
2689
|
+
"label" :
|
|
2690
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2691
|
+
"type" : "VTL|MD" } },
|
|
2692
|
+
"subSequence" :
|
|
2693
|
+
{ "id" : "l203lif1",
|
|
2694
|
+
"page" : "34",
|
|
2695
|
+
"label" :
|
|
2696
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
|
|
2697
|
+
"type" : "VTL|MD" } } },
|
|
2698
|
+
"bindingDependencies" :
|
|
2699
|
+
[ "PRENOM2",
|
|
2700
|
+
|
|
2701
|
+
|
|
2702
|
+
"NHABCALC" ],
|
|
2703
|
+
"response" :
|
|
2704
|
+
{ "name" : "PRENOM2" } },
|
|
2705
|
+
|
|
2706
|
+
{ "id" : "l20407qf",
|
|
2707
|
+
"componentType" : "InputNumber",
|
|
2708
|
+
"mandatory" : false,
|
|
2709
|
+
"page" : "34",
|
|
2710
|
+
"min" : 0,
|
|
2711
|
+
"max" : 120,
|
|
2712
|
+
"decimals" : 0,
|
|
2713
|
+
"label" :
|
|
2714
|
+
{ "value" : "\"➡ 5. \" || \"Quel âge a \" || PRENOM2 || \" ?\"",
|
|
2715
|
+
"type" : "VTL|MD" },
|
|
2716
|
+
"conditionFilter" :
|
|
2717
|
+
{ "value" : "true",
|
|
2718
|
+
"type" : "VTL" },
|
|
2719
|
+
"hierarchy" :
|
|
2720
|
+
{ "sequence" :
|
|
2721
|
+
{ "id" : "k3opdj10",
|
|
2722
|
+
"page" : "31",
|
|
2723
|
+
"label" :
|
|
2724
|
+
{ "value" : "Séquence 4 : 2 boucles basées sur calculé",
|
|
2725
|
+
"type" : "VTL|MD" } },
|
|
2726
|
+
"subSequence" :
|
|
2727
|
+
{ "id" : "l203lif1",
|
|
2728
|
+
"page" : "34",
|
|
2729
|
+
"label" :
|
|
2730
|
+
{ "value" : "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
|
|
2731
|
+
"type" : "VTL|MD" } } },
|
|
2732
|
+
"bindingDependencies" :
|
|
2733
|
+
[ "PRENOM2",
|
|
2734
|
+
"AGE2",
|
|
2735
|
+
|
|
2736
|
+
|
|
2737
|
+
"NHABCALC" ],
|
|
2738
|
+
"response" :
|
|
2739
|
+
{ "name" : "AGE2" } } ] } ],
|
|
2740
|
+
|
|
2741
|
+
|
|
2742
|
+
|
|
2743
|
+
"variables" :
|
|
2744
|
+
[
|
|
2745
|
+
{ "variableType" : "COLLECTED",
|
|
2746
|
+
"name" : "TABLEAUDYN1_1_1",
|
|
2747
|
+
"values" :
|
|
2748
|
+
{ "PREVIOUS" : null,
|
|
2749
|
+
"COLLECTED" : null,
|
|
2750
|
+
"FORCED" : null,
|
|
2751
|
+
"EDITED" : null,
|
|
2752
|
+
"INPUTED" : null } },
|
|
2753
|
+
|
|
2754
|
+
{ "variableType" : "COLLECTED",
|
|
2755
|
+
"name" : "TABLEAUDYN2_1_2",
|
|
2756
|
+
"values" :
|
|
2757
|
+
{ "PREVIOUS" : null,
|
|
2758
|
+
"COLLECTED" : null,
|
|
2759
|
+
"FORCED" : null,
|
|
2760
|
+
"EDITED" : null,
|
|
2761
|
+
"INPUTED" : null } },
|
|
2762
|
+
|
|
2763
|
+
{ "variableType" : "COLLECTED",
|
|
2764
|
+
"name" : "TABLEAUDYN1_2_1",
|
|
2765
|
+
"values" :
|
|
2766
|
+
{ "PREVIOUS" : null,
|
|
2767
|
+
"COLLECTED" : null,
|
|
2768
|
+
"FORCED" : null,
|
|
2769
|
+
"EDITED" : null,
|
|
2770
|
+
"INPUTED" : null } },
|
|
2771
|
+
|
|
2772
|
+
{ "variableType" : "COLLECTED",
|
|
2773
|
+
"name" : "TABLEAUDYN2_2_2",
|
|
2774
|
+
"values" :
|
|
2775
|
+
{ "PREVIOUS" : null,
|
|
2776
|
+
"COLLECTED" : null,
|
|
2777
|
+
"FORCED" : null,
|
|
2778
|
+
"EDITED" : null,
|
|
2779
|
+
"INPUTED" : null } },
|
|
2780
|
+
|
|
2781
|
+
{ "variableType" : "COLLECTED",
|
|
2782
|
+
"name" : "TABLEAUDYN1_3_1",
|
|
2783
|
+
"values" :
|
|
2784
|
+
{ "PREVIOUS" : null,
|
|
2785
|
+
"COLLECTED" : null,
|
|
2786
|
+
"FORCED" : null,
|
|
2787
|
+
"EDITED" : null,
|
|
2788
|
+
"INPUTED" : null } },
|
|
2789
|
+
|
|
2790
|
+
{ "variableType" : "COLLECTED",
|
|
2791
|
+
"name" : "TABLEAUDYN2_3_2",
|
|
2792
|
+
"values" :
|
|
2793
|
+
{ "PREVIOUS" : null,
|
|
2794
|
+
"COLLECTED" : null,
|
|
2795
|
+
"FORCED" : null,
|
|
2796
|
+
"EDITED" : null,
|
|
2797
|
+
"INPUTED" : null } },
|
|
2798
|
+
|
|
2799
|
+
{ "variableType" : "COLLECTED",
|
|
2800
|
+
"name" : "TABLEAUDYN1_4_1",
|
|
2801
|
+
"values" :
|
|
2802
|
+
{ "PREVIOUS" : null,
|
|
2803
|
+
"COLLECTED" : null,
|
|
2804
|
+
"FORCED" : null,
|
|
2805
|
+
"EDITED" : null,
|
|
2806
|
+
"INPUTED" : null } },
|
|
2807
|
+
|
|
2808
|
+
{ "variableType" : "COLLECTED",
|
|
2809
|
+
"name" : "TABLEAUDYN2_4_2",
|
|
2810
|
+
"values" :
|
|
2811
|
+
{ "PREVIOUS" : null,
|
|
2812
|
+
"COLLECTED" : null,
|
|
2813
|
+
"FORCED" : null,
|
|
2814
|
+
"EDITED" : null,
|
|
2815
|
+
"INPUTED" : null } },
|
|
2816
|
+
|
|
2817
|
+
{ "variableType" : "COLLECTED",
|
|
2818
|
+
"name" : "TABLEAUDYN1_5_1",
|
|
2819
|
+
"values" :
|
|
2820
|
+
{ "PREVIOUS" : null,
|
|
2821
|
+
"COLLECTED" : null,
|
|
2822
|
+
"FORCED" : null,
|
|
2823
|
+
"EDITED" : null,
|
|
2824
|
+
"INPUTED" : null } },
|
|
2825
|
+
|
|
2826
|
+
{ "variableType" : "COLLECTED",
|
|
2827
|
+
"name" : "TABLEAUDYN2_5_2",
|
|
2828
|
+
"values" :
|
|
2829
|
+
{ "PREVIOUS" : null,
|
|
2830
|
+
"COLLECTED" : null,
|
|
2831
|
+
"FORCED" : null,
|
|
2832
|
+
"EDITED" : null,
|
|
2833
|
+
"INPUTED" : null } },
|
|
2834
|
+
|
|
2835
|
+
{ "variableType" : "COLLECTED",
|
|
2836
|
+
"name" : "COCHECASE",
|
|
2837
|
+
"values" :
|
|
2838
|
+
{ "PREVIOUS" : null,
|
|
2839
|
+
"COLLECTED" : null,
|
|
2840
|
+
"FORCED" : null,
|
|
2841
|
+
"EDITED" : null,
|
|
2842
|
+
"INPUTED" : null } },
|
|
2843
|
+
|
|
2844
|
+
{ "variableType" : "COLLECTED",
|
|
2845
|
+
"name" : "TEXTE10",
|
|
2846
|
+
"values" :
|
|
2847
|
+
{ "PREVIOUS" : null,
|
|
2848
|
+
"COLLECTED" : null,
|
|
2849
|
+
"FORCED" : null,
|
|
2850
|
+
"EDITED" : null,
|
|
2851
|
+
"INPUTED" : null } },
|
|
2852
|
+
|
|
2853
|
+
{ "variableType" : "COLLECTED",
|
|
2854
|
+
"name" : "TEXTELONG249",
|
|
2855
|
+
"values" :
|
|
2856
|
+
{ "PREVIOUS" : null,
|
|
2857
|
+
"COLLECTED" : null,
|
|
2858
|
+
"FORCED" : null,
|
|
2859
|
+
"EDITED" : null,
|
|
2860
|
+
"INPUTED" : null } },
|
|
2861
|
+
|
|
2862
|
+
{ "variableType" : "COLLECTED",
|
|
2863
|
+
"name" : "TEXTELONG250",
|
|
2864
|
+
"values" :
|
|
2865
|
+
{ "PREVIOUS" : null,
|
|
2866
|
+
"COLLECTED" : null,
|
|
2867
|
+
"FORCED" : null,
|
|
2868
|
+
"EDITED" : null,
|
|
2869
|
+
"INPUTED" : null } },
|
|
2870
|
+
|
|
2871
|
+
{ "variableType" : "COLLECTED",
|
|
2872
|
+
"name" : "SIREN",
|
|
2873
|
+
"values" :
|
|
2874
|
+
{ "PREVIOUS" : null,
|
|
2875
|
+
"COLLECTED" : null,
|
|
2876
|
+
"FORCED" : null,
|
|
2877
|
+
"EDITED" : null,
|
|
2878
|
+
"INPUTED" : null } },
|
|
2879
|
+
|
|
2880
|
+
{ "variableType" : "COLLECTED",
|
|
2881
|
+
"name" : "INTEGER",
|
|
2882
|
+
"values" :
|
|
2883
|
+
{ "PREVIOUS" : null,
|
|
2884
|
+
"COLLECTED" : null,
|
|
2885
|
+
"FORCED" : null,
|
|
2886
|
+
"EDITED" : null,
|
|
2887
|
+
"INPUTED" : null } },
|
|
2888
|
+
|
|
2889
|
+
{ "variableType" : "COLLECTED",
|
|
2890
|
+
"name" : "FLOAT",
|
|
2891
|
+
"values" :
|
|
2892
|
+
{ "PREVIOUS" : null,
|
|
2893
|
+
"COLLECTED" : null,
|
|
2894
|
+
"FORCED" : null,
|
|
2895
|
+
"EDITED" : null,
|
|
2896
|
+
"INPUTED" : null } },
|
|
2897
|
+
|
|
2898
|
+
{ "variableType" : "COLLECTED",
|
|
2899
|
+
"name" : "FLOATNEG",
|
|
2900
|
+
"values" :
|
|
2901
|
+
{ "PREVIOUS" : null,
|
|
2902
|
+
"COLLECTED" : null,
|
|
2903
|
+
"FORCED" : null,
|
|
2904
|
+
"EDITED" : null,
|
|
2905
|
+
"INPUTED" : null } },
|
|
2906
|
+
|
|
2907
|
+
{ "variableType" : "COLLECTED",
|
|
2908
|
+
"name" : "UNIT",
|
|
2909
|
+
"values" :
|
|
2910
|
+
{ "PREVIOUS" : null,
|
|
2911
|
+
"COLLECTED" : null,
|
|
2912
|
+
"FORCED" : null,
|
|
2913
|
+
"EDITED" : null,
|
|
2914
|
+
"INPUTED" : null } },
|
|
2915
|
+
|
|
2916
|
+
{ "variableType" : "COLLECTED",
|
|
2917
|
+
"name" : "UNITD",
|
|
2918
|
+
"values" :
|
|
2919
|
+
{ "PREVIOUS" : null,
|
|
2920
|
+
"COLLECTED" : null,
|
|
2921
|
+
"FORCED" : null,
|
|
2922
|
+
"EDITED" : null,
|
|
2923
|
+
"INPUTED" : null } },
|
|
2924
|
+
|
|
2925
|
+
{ "variableType" : "COLLECTED",
|
|
2926
|
+
"name" : "DATE",
|
|
2927
|
+
"values" :
|
|
2928
|
+
{ "PREVIOUS" : null,
|
|
2929
|
+
"COLLECTED" : null,
|
|
2930
|
+
"FORCED" : null,
|
|
2931
|
+
"EDITED" : null,
|
|
2932
|
+
"INPUTED" : null } },
|
|
2933
|
+
|
|
2934
|
+
{ "variableType" : "COLLECTED",
|
|
2935
|
+
"name" : "DAAAA",
|
|
2936
|
+
"values" :
|
|
2937
|
+
{ "PREVIOUS" : null,
|
|
2938
|
+
"COLLECTED" : null,
|
|
2939
|
+
"FORCED" : null,
|
|
2940
|
+
"EDITED" : null,
|
|
2941
|
+
"INPUTED" : null } },
|
|
2942
|
+
|
|
2943
|
+
{ "variableType" : "COLLECTED",
|
|
2944
|
+
"name" : "BOOLEN",
|
|
2945
|
+
"values" :
|
|
2946
|
+
{ "PREVIOUS" : null,
|
|
2947
|
+
"COLLECTED" : null,
|
|
2948
|
+
"FORCED" : null,
|
|
2949
|
+
"EDITED" : null,
|
|
2950
|
+
"INPUTED" : null } },
|
|
2951
|
+
|
|
2952
|
+
{ "variableType" : "COLLECTED",
|
|
2953
|
+
"name" : "CHECKBOXONERADIO",
|
|
2954
|
+
"values" :
|
|
2955
|
+
{ "PREVIOUS" : null,
|
|
2956
|
+
"COLLECTED" : null,
|
|
2957
|
+
"FORCED" : null,
|
|
2958
|
+
"EDITED" : null,
|
|
2959
|
+
"INPUTED" : null } },
|
|
2960
|
+
|
|
2961
|
+
{ "variableType" : "COLLECTED",
|
|
2962
|
+
"name" : "CHECKBOXONECOCHER",
|
|
2963
|
+
"values" :
|
|
2964
|
+
{ "PREVIOUS" : null,
|
|
2965
|
+
"COLLECTED" : null,
|
|
2966
|
+
"FORCED" : null,
|
|
2967
|
+
"EDITED" : null,
|
|
2968
|
+
"INPUTED" : null } },
|
|
2969
|
+
|
|
2970
|
+
{ "variableType" : "COLLECTED",
|
|
2971
|
+
"name" : "DROPDOWN",
|
|
2972
|
+
"values" :
|
|
2973
|
+
{ "PREVIOUS" : null,
|
|
2974
|
+
"COLLECTED" : null,
|
|
2975
|
+
"FORCED" : null,
|
|
2976
|
+
"EDITED" : null,
|
|
2977
|
+
"INPUTED" : null } },
|
|
2978
|
+
|
|
2979
|
+
{ "variableType" : "COLLECTED",
|
|
2980
|
+
"name" : "QCM_BOOLEEN1",
|
|
2981
|
+
"values" :
|
|
2982
|
+
{ "PREVIOUS" : null,
|
|
2983
|
+
"COLLECTED" : null,
|
|
2984
|
+
"FORCED" : null,
|
|
2985
|
+
"EDITED" : null,
|
|
2986
|
+
"INPUTED" : null } },
|
|
2987
|
+
|
|
2988
|
+
{ "variableType" : "COLLECTED",
|
|
2989
|
+
"name" : "QCM_BOOLEEN2",
|
|
2990
|
+
"values" :
|
|
2991
|
+
{ "PREVIOUS" : null,
|
|
2992
|
+
"COLLECTED" : null,
|
|
2993
|
+
"FORCED" : null,
|
|
2994
|
+
"EDITED" : null,
|
|
2995
|
+
"INPUTED" : null } },
|
|
2996
|
+
|
|
2997
|
+
{ "variableType" : "COLLECTED",
|
|
2998
|
+
"name" : "QCM_BOOLEEN3",
|
|
2999
|
+
"values" :
|
|
3000
|
+
{ "PREVIOUS" : null,
|
|
3001
|
+
"COLLECTED" : null,
|
|
3002
|
+
"FORCED" : null,
|
|
3003
|
+
"EDITED" : null,
|
|
3004
|
+
"INPUTED" : null } },
|
|
3005
|
+
|
|
3006
|
+
{ "variableType" : "COLLECTED",
|
|
3007
|
+
"name" : "QCM_BOOLEEN4",
|
|
3008
|
+
"values" :
|
|
3009
|
+
{ "PREVIOUS" : null,
|
|
3010
|
+
"COLLECTED" : null,
|
|
3011
|
+
"FORCED" : null,
|
|
3012
|
+
"EDITED" : null,
|
|
3013
|
+
"INPUTED" : null } },
|
|
3014
|
+
|
|
3015
|
+
{ "variableType" : "COLLECTED",
|
|
3016
|
+
"name" : "QCM_BOOLEEN5",
|
|
3017
|
+
"values" :
|
|
3018
|
+
{ "PREVIOUS" : null,
|
|
3019
|
+
"COLLECTED" : null,
|
|
3020
|
+
"FORCED" : null,
|
|
3021
|
+
"EDITED" : null,
|
|
3022
|
+
"INPUTED" : null } },
|
|
3023
|
+
|
|
3024
|
+
{ "variableType" : "COLLECTED",
|
|
3025
|
+
"name" : "QCM_BOOLEEN6",
|
|
3026
|
+
"values" :
|
|
3027
|
+
{ "PREVIOUS" : null,
|
|
3028
|
+
"COLLECTED" : null,
|
|
3029
|
+
"FORCED" : null,
|
|
3030
|
+
"EDITED" : null,
|
|
3031
|
+
"INPUTED" : null } },
|
|
3032
|
+
|
|
3033
|
+
{ "variableType" : "COLLECTED",
|
|
3034
|
+
"name" : "QCM_LISTEON1",
|
|
3035
|
+
"values" :
|
|
3036
|
+
{ "PREVIOUS" : null,
|
|
3037
|
+
"COLLECTED" : null,
|
|
3038
|
+
"FORCED" : null,
|
|
3039
|
+
"EDITED" : null,
|
|
3040
|
+
"INPUTED" : null } },
|
|
3041
|
+
|
|
3042
|
+
{ "variableType" : "COLLECTED",
|
|
3043
|
+
"name" : "QCM_LISTEON2",
|
|
3044
|
+
"values" :
|
|
3045
|
+
{ "PREVIOUS" : null,
|
|
3046
|
+
"COLLECTED" : null,
|
|
3047
|
+
"FORCED" : null,
|
|
3048
|
+
"EDITED" : null,
|
|
3049
|
+
"INPUTED" : null } },
|
|
3050
|
+
|
|
3051
|
+
{ "variableType" : "COLLECTED",
|
|
3052
|
+
"name" : "QCM_LISTEON3",
|
|
3053
|
+
"values" :
|
|
3054
|
+
{ "PREVIOUS" : null,
|
|
3055
|
+
"COLLECTED" : null,
|
|
3056
|
+
"FORCED" : null,
|
|
3057
|
+
"EDITED" : null,
|
|
3058
|
+
"INPUTED" : null } },
|
|
3059
|
+
|
|
3060
|
+
{ "variableType" : "COLLECTED",
|
|
3061
|
+
"name" : "QCM_LISTEON4",
|
|
3062
|
+
"values" :
|
|
3063
|
+
{ "PREVIOUS" : null,
|
|
3064
|
+
"COLLECTED" : null,
|
|
3065
|
+
"FORCED" : null,
|
|
3066
|
+
"EDITED" : null,
|
|
3067
|
+
"INPUTED" : null } },
|
|
3068
|
+
|
|
3069
|
+
{ "variableType" : "COLLECTED",
|
|
3070
|
+
"name" : "QCM_LISTEON5",
|
|
3071
|
+
"values" :
|
|
3072
|
+
{ "PREVIOUS" : null,
|
|
3073
|
+
"COLLECTED" : null,
|
|
3074
|
+
"FORCED" : null,
|
|
3075
|
+
"EDITED" : null,
|
|
3076
|
+
"INPUTED" : null } },
|
|
3077
|
+
|
|
3078
|
+
{ "variableType" : "COLLECTED",
|
|
3079
|
+
"name" : "QCM_LISTEON6",
|
|
3080
|
+
"values" :
|
|
3081
|
+
{ "PREVIOUS" : null,
|
|
3082
|
+
"COLLECTED" : null,
|
|
3083
|
+
"FORCED" : null,
|
|
3084
|
+
"EDITED" : null,
|
|
3085
|
+
"INPUTED" : null } },
|
|
3086
|
+
|
|
3087
|
+
{ "variableType" : "COLLECTED",
|
|
3088
|
+
"name" : "QCM_LISTEONRADIO1",
|
|
3089
|
+
"values" :
|
|
3090
|
+
{ "PREVIOUS" : null,
|
|
3091
|
+
"COLLECTED" : null,
|
|
3092
|
+
"FORCED" : null,
|
|
3093
|
+
"EDITED" : null,
|
|
3094
|
+
"INPUTED" : null } },
|
|
3095
|
+
|
|
3096
|
+
{ "variableType" : "COLLECTED",
|
|
3097
|
+
"name" : "QCM_LISTEONRADIO2",
|
|
3098
|
+
"values" :
|
|
3099
|
+
{ "PREVIOUS" : null,
|
|
3100
|
+
"COLLECTED" : null,
|
|
3101
|
+
"FORCED" : null,
|
|
3102
|
+
"EDITED" : null,
|
|
3103
|
+
"INPUTED" : null } },
|
|
3104
|
+
|
|
3105
|
+
{ "variableType" : "COLLECTED",
|
|
3106
|
+
"name" : "QCM_LISTEONRADIO3",
|
|
3107
|
+
"values" :
|
|
3108
|
+
{ "PREVIOUS" : null,
|
|
3109
|
+
"COLLECTED" : null,
|
|
3110
|
+
"FORCED" : null,
|
|
3111
|
+
"EDITED" : null,
|
|
3112
|
+
"INPUTED" : null } },
|
|
3113
|
+
|
|
3114
|
+
{ "variableType" : "COLLECTED",
|
|
3115
|
+
"name" : "QCM_LISTEONRADIO4",
|
|
3116
|
+
"values" :
|
|
3117
|
+
{ "PREVIOUS" : null,
|
|
3118
|
+
"COLLECTED" : null,
|
|
3119
|
+
"FORCED" : null,
|
|
3120
|
+
"EDITED" : null,
|
|
3121
|
+
"INPUTED" : null } },
|
|
3122
|
+
|
|
3123
|
+
{ "variableType" : "COLLECTED",
|
|
3124
|
+
"name" : "QCM_LISTEONRADIO5",
|
|
3125
|
+
"values" :
|
|
3126
|
+
{ "PREVIOUS" : null,
|
|
3127
|
+
"COLLECTED" : null,
|
|
3128
|
+
"FORCED" : null,
|
|
3129
|
+
"EDITED" : null,
|
|
3130
|
+
"INPUTED" : null } },
|
|
3131
|
+
|
|
3132
|
+
{ "variableType" : "COLLECTED",
|
|
3133
|
+
"name" : "QCM_LISTEONRADIO6",
|
|
3134
|
+
"values" :
|
|
3135
|
+
{ "PREVIOUS" : null,
|
|
3136
|
+
"COLLECTED" : null,
|
|
3137
|
+
"FORCED" : null,
|
|
3138
|
+
"EDITED" : null,
|
|
3139
|
+
"INPUTED" : null } },
|
|
3140
|
+
|
|
3141
|
+
{ "variableType" : "COLLECTED",
|
|
3142
|
+
"name" : "TABLEAU1A1M11",
|
|
3143
|
+
"values" :
|
|
3144
|
+
{ "PREVIOUS" : null,
|
|
3145
|
+
"COLLECTED" : null,
|
|
3146
|
+
"FORCED" : null,
|
|
3147
|
+
"EDITED" : null,
|
|
3148
|
+
"INPUTED" : null } },
|
|
3149
|
+
|
|
3150
|
+
{ "variableType" : "COLLECTED",
|
|
3151
|
+
"name" : "TABLEAU1A1M21",
|
|
3152
|
+
"values" :
|
|
3153
|
+
{ "PREVIOUS" : null,
|
|
3154
|
+
"COLLECTED" : null,
|
|
3155
|
+
"FORCED" : null,
|
|
3156
|
+
"EDITED" : null,
|
|
3157
|
+
"INPUTED" : null } },
|
|
3158
|
+
|
|
3159
|
+
{ "variableType" : "COLLECTED",
|
|
3160
|
+
"name" : "TABLEAU1A1M31",
|
|
3161
|
+
"values" :
|
|
3162
|
+
{ "PREVIOUS" : null,
|
|
3163
|
+
"COLLECTED" : null,
|
|
3164
|
+
"FORCED" : null,
|
|
3165
|
+
"EDITED" : null,
|
|
3166
|
+
"INPUTED" : null } },
|
|
3167
|
+
|
|
3168
|
+
{ "variableType" : "COLLECTED",
|
|
3169
|
+
"name" : "TABLEAU1A1M41",
|
|
3170
|
+
"values" :
|
|
3171
|
+
{ "PREVIOUS" : null,
|
|
3172
|
+
"COLLECTED" : null,
|
|
3173
|
+
"FORCED" : null,
|
|
3174
|
+
"EDITED" : null,
|
|
3175
|
+
"INPUTED" : null } },
|
|
3176
|
+
|
|
3177
|
+
{ "variableType" : "COLLECTED",
|
|
3178
|
+
"name" : "TABLEAU1A1M51",
|
|
3179
|
+
"values" :
|
|
3180
|
+
{ "PREVIOUS" : null,
|
|
3181
|
+
"COLLECTED" : null,
|
|
3182
|
+
"FORCED" : null,
|
|
3183
|
+
"EDITED" : null,
|
|
3184
|
+
"INPUTED" : null } },
|
|
3185
|
+
|
|
3186
|
+
{ "variableType" : "COLLECTED",
|
|
3187
|
+
"name" : "TABLEAU1A1M61",
|
|
3188
|
+
"values" :
|
|
3189
|
+
{ "PREVIOUS" : null,
|
|
3190
|
+
"COLLECTED" : null,
|
|
3191
|
+
"FORCED" : null,
|
|
3192
|
+
"EDITED" : null,
|
|
3193
|
+
"INPUTED" : null } },
|
|
3194
|
+
|
|
3195
|
+
{ "variableType" : "COLLECTED",
|
|
3196
|
+
"name" : "TABLEAU1A3M11",
|
|
3197
|
+
"values" :
|
|
3198
|
+
{ "PREVIOUS" : null,
|
|
3199
|
+
"COLLECTED" : null,
|
|
3200
|
+
"FORCED" : null,
|
|
3201
|
+
"EDITED" : null,
|
|
3202
|
+
"INPUTED" : null } },
|
|
3203
|
+
|
|
3204
|
+
{ "variableType" : "COLLECTED",
|
|
3205
|
+
"name" : "TABLEAU1A3M12",
|
|
3206
|
+
"values" :
|
|
3207
|
+
{ "PREVIOUS" : null,
|
|
3208
|
+
"COLLECTED" : null,
|
|
3209
|
+
"FORCED" : null,
|
|
3210
|
+
"EDITED" : null,
|
|
3211
|
+
"INPUTED" : null } },
|
|
3212
|
+
|
|
3213
|
+
{ "variableType" : "COLLECTED",
|
|
3214
|
+
"name" : "TABLEAU1A3M13",
|
|
3215
|
+
"values" :
|
|
3216
|
+
{ "PREVIOUS" : null,
|
|
3217
|
+
"COLLECTED" : null,
|
|
3218
|
+
"FORCED" : null,
|
|
3219
|
+
"EDITED" : null,
|
|
3220
|
+
"INPUTED" : null } },
|
|
3221
|
+
|
|
3222
|
+
{ "variableType" : "COLLECTED",
|
|
3223
|
+
"name" : "TABLEAU1A3M21",
|
|
3224
|
+
"values" :
|
|
3225
|
+
{ "PREVIOUS" : null,
|
|
3226
|
+
"COLLECTED" : null,
|
|
3227
|
+
"FORCED" : null,
|
|
3228
|
+
"EDITED" : null,
|
|
3229
|
+
"INPUTED" : null } },
|
|
3230
|
+
|
|
3231
|
+
{ "variableType" : "COLLECTED",
|
|
3232
|
+
"name" : "TABLEAU1A3M22",
|
|
3233
|
+
"values" :
|
|
3234
|
+
{ "PREVIOUS" : null,
|
|
3235
|
+
"COLLECTED" : null,
|
|
3236
|
+
"FORCED" : null,
|
|
3237
|
+
"EDITED" : null,
|
|
3238
|
+
"INPUTED" : null } },
|
|
3239
|
+
|
|
3240
|
+
{ "variableType" : "COLLECTED",
|
|
3241
|
+
"name" : "TABLEAU1A3M23",
|
|
3242
|
+
"values" :
|
|
3243
|
+
{ "PREVIOUS" : null,
|
|
3244
|
+
"COLLECTED" : null,
|
|
3245
|
+
"FORCED" : null,
|
|
3246
|
+
"EDITED" : null,
|
|
3247
|
+
"INPUTED" : null } },
|
|
3248
|
+
|
|
3249
|
+
{ "variableType" : "COLLECTED",
|
|
3250
|
+
"name" : "TABLEAU1A3M31",
|
|
3251
|
+
"values" :
|
|
3252
|
+
{ "PREVIOUS" : null,
|
|
3253
|
+
"COLLECTED" : null,
|
|
3254
|
+
"FORCED" : null,
|
|
3255
|
+
"EDITED" : null,
|
|
3256
|
+
"INPUTED" : null } },
|
|
3257
|
+
|
|
3258
|
+
{ "variableType" : "COLLECTED",
|
|
3259
|
+
"name" : "TABLEAU1A3M32",
|
|
3260
|
+
"values" :
|
|
3261
|
+
{ "PREVIOUS" : null,
|
|
3262
|
+
"COLLECTED" : null,
|
|
3263
|
+
"FORCED" : null,
|
|
3264
|
+
"EDITED" : null,
|
|
3265
|
+
"INPUTED" : null } },
|
|
3266
|
+
|
|
3267
|
+
{ "variableType" : "COLLECTED",
|
|
3268
|
+
"name" : "TABLEAU1A3M33",
|
|
3269
|
+
"values" :
|
|
3270
|
+
{ "PREVIOUS" : null,
|
|
3271
|
+
"COLLECTED" : null,
|
|
3272
|
+
"FORCED" : null,
|
|
3273
|
+
"EDITED" : null,
|
|
3274
|
+
"INPUTED" : null } },
|
|
3275
|
+
|
|
3276
|
+
{ "variableType" : "COLLECTED",
|
|
3277
|
+
"name" : "TABLEAU1A3M41",
|
|
3278
|
+
"values" :
|
|
3279
|
+
{ "PREVIOUS" : null,
|
|
3280
|
+
"COLLECTED" : null,
|
|
3281
|
+
"FORCED" : null,
|
|
3282
|
+
"EDITED" : null,
|
|
3283
|
+
"INPUTED" : null } },
|
|
3284
|
+
|
|
3285
|
+
{ "variableType" : "COLLECTED",
|
|
3286
|
+
"name" : "TABLEAU1A3M42",
|
|
3287
|
+
"values" :
|
|
3288
|
+
{ "PREVIOUS" : null,
|
|
3289
|
+
"COLLECTED" : null,
|
|
3290
|
+
"FORCED" : null,
|
|
3291
|
+
"EDITED" : null,
|
|
3292
|
+
"INPUTED" : null } },
|
|
3293
|
+
|
|
3294
|
+
{ "variableType" : "COLLECTED",
|
|
3295
|
+
"name" : "TABLEAU1A3M43",
|
|
3296
|
+
"values" :
|
|
3297
|
+
{ "PREVIOUS" : null,
|
|
3298
|
+
"COLLECTED" : null,
|
|
3299
|
+
"FORCED" : null,
|
|
3300
|
+
"EDITED" : null,
|
|
3301
|
+
"INPUTED" : null } },
|
|
3302
|
+
|
|
3303
|
+
{ "variableType" : "COLLECTED",
|
|
3304
|
+
"name" : "TABLEAU1A3M51",
|
|
3305
|
+
"values" :
|
|
3306
|
+
{ "PREVIOUS" : null,
|
|
3307
|
+
"COLLECTED" : null,
|
|
3308
|
+
"FORCED" : null,
|
|
3309
|
+
"EDITED" : null,
|
|
3310
|
+
"INPUTED" : null } },
|
|
3311
|
+
|
|
3312
|
+
{ "variableType" : "COLLECTED",
|
|
3313
|
+
"name" : "TABLEAU1A3M52",
|
|
3314
|
+
"values" :
|
|
3315
|
+
{ "PREVIOUS" : null,
|
|
3316
|
+
"COLLECTED" : null,
|
|
3317
|
+
"FORCED" : null,
|
|
3318
|
+
"EDITED" : null,
|
|
3319
|
+
"INPUTED" : null } },
|
|
3320
|
+
|
|
3321
|
+
{ "variableType" : "COLLECTED",
|
|
3322
|
+
"name" : "TABLEAU1A3M53",
|
|
3323
|
+
"values" :
|
|
3324
|
+
{ "PREVIOUS" : null,
|
|
3325
|
+
"COLLECTED" : null,
|
|
3326
|
+
"FORCED" : null,
|
|
3327
|
+
"EDITED" : null,
|
|
3328
|
+
"INPUTED" : null } },
|
|
3329
|
+
|
|
3330
|
+
{ "variableType" : "COLLECTED",
|
|
3331
|
+
"name" : "TABLEAU1A3M61",
|
|
3332
|
+
"values" :
|
|
3333
|
+
{ "PREVIOUS" : null,
|
|
3334
|
+
"COLLECTED" : null,
|
|
3335
|
+
"FORCED" : null,
|
|
3336
|
+
"EDITED" : null,
|
|
3337
|
+
"INPUTED" : null } },
|
|
3338
|
+
|
|
3339
|
+
{ "variableType" : "COLLECTED",
|
|
3340
|
+
"name" : "TABLEAU1A3M62",
|
|
3341
|
+
"values" :
|
|
3342
|
+
{ "PREVIOUS" : null,
|
|
3343
|
+
"COLLECTED" : null,
|
|
3344
|
+
"FORCED" : null,
|
|
3345
|
+
"EDITED" : null,
|
|
3346
|
+
"INPUTED" : null } },
|
|
3347
|
+
|
|
3348
|
+
{ "variableType" : "COLLECTED",
|
|
3349
|
+
"name" : "TABLEAU1A3M63",
|
|
3350
|
+
"values" :
|
|
3351
|
+
{ "PREVIOUS" : null,
|
|
3352
|
+
"COLLECTED" : null,
|
|
3353
|
+
"FORCED" : null,
|
|
3354
|
+
"EDITED" : null,
|
|
3355
|
+
"INPUTED" : null } },
|
|
3356
|
+
|
|
3357
|
+
{ "variableType" : "COLLECTED",
|
|
3358
|
+
"name" : "TABLEAU2A11",
|
|
3359
|
+
"values" :
|
|
3360
|
+
{ "PREVIOUS" : null,
|
|
3361
|
+
"COLLECTED" : null,
|
|
3362
|
+
"FORCED" : null,
|
|
3363
|
+
"EDITED" : null,
|
|
3364
|
+
"INPUTED" : null } },
|
|
3365
|
+
|
|
3366
|
+
{ "variableType" : "COLLECTED",
|
|
3367
|
+
"name" : "TABLEAU2A12",
|
|
3368
|
+
"values" :
|
|
3369
|
+
{ "PREVIOUS" : null,
|
|
3370
|
+
"COLLECTED" : null,
|
|
3371
|
+
"FORCED" : null,
|
|
3372
|
+
"EDITED" : null,
|
|
3373
|
+
"INPUTED" : null } },
|
|
3374
|
+
|
|
3375
|
+
{ "variableType" : "COLLECTED",
|
|
3376
|
+
"name" : "TABLEAU2A13",
|
|
3377
|
+
"values" :
|
|
3378
|
+
{ "PREVIOUS" : null,
|
|
3379
|
+
"COLLECTED" : null,
|
|
3380
|
+
"FORCED" : null,
|
|
3381
|
+
"EDITED" : null,
|
|
3382
|
+
"INPUTED" : null } },
|
|
3383
|
+
|
|
3384
|
+
{ "variableType" : "COLLECTED",
|
|
3385
|
+
"name" : "TABLEAU2A14",
|
|
3386
|
+
"values" :
|
|
3387
|
+
{ "PREVIOUS" : null,
|
|
3388
|
+
"COLLECTED" : null,
|
|
3389
|
+
"FORCED" : null,
|
|
3390
|
+
"EDITED" : null,
|
|
3391
|
+
"INPUTED" : null } },
|
|
3392
|
+
|
|
3393
|
+
{ "variableType" : "COLLECTED",
|
|
3394
|
+
"name" : "TABLEAU2A15",
|
|
3395
|
+
"values" :
|
|
3396
|
+
{ "PREVIOUS" : null,
|
|
3397
|
+
"COLLECTED" : null,
|
|
3398
|
+
"FORCED" : null,
|
|
3399
|
+
"EDITED" : null,
|
|
3400
|
+
"INPUTED" : null } },
|
|
3401
|
+
|
|
3402
|
+
{ "variableType" : "COLLECTED",
|
|
3403
|
+
"name" : "TABLEAU2A21",
|
|
3404
|
+
"values" :
|
|
3405
|
+
{ "PREVIOUS" : null,
|
|
3406
|
+
"COLLECTED" : null,
|
|
3407
|
+
"FORCED" : null,
|
|
3408
|
+
"EDITED" : null,
|
|
3409
|
+
"INPUTED" : null } },
|
|
3410
|
+
|
|
3411
|
+
{ "variableType" : "COLLECTED",
|
|
3412
|
+
"name" : "TABLEAU2A22",
|
|
3413
|
+
"values" :
|
|
3414
|
+
{ "PREVIOUS" : null,
|
|
3415
|
+
"COLLECTED" : null,
|
|
3416
|
+
"FORCED" : null,
|
|
3417
|
+
"EDITED" : null,
|
|
3418
|
+
"INPUTED" : null } },
|
|
3419
|
+
|
|
3420
|
+
{ "variableType" : "COLLECTED",
|
|
3421
|
+
"name" : "TABLEAU2A23",
|
|
3422
|
+
"values" :
|
|
3423
|
+
{ "PREVIOUS" : null,
|
|
3424
|
+
"COLLECTED" : null,
|
|
3425
|
+
"FORCED" : null,
|
|
3426
|
+
"EDITED" : null,
|
|
3427
|
+
"INPUTED" : null } },
|
|
3428
|
+
|
|
3429
|
+
{ "variableType" : "COLLECTED",
|
|
3430
|
+
"name" : "TABLEAU2A24",
|
|
3431
|
+
"values" :
|
|
3432
|
+
{ "PREVIOUS" : null,
|
|
3433
|
+
"COLLECTED" : null,
|
|
3434
|
+
"FORCED" : null,
|
|
3435
|
+
"EDITED" : null,
|
|
3436
|
+
"INPUTED" : null } },
|
|
3437
|
+
|
|
3438
|
+
{ "variableType" : "COLLECTED",
|
|
3439
|
+
"name" : "TABLEAU2A25",
|
|
3440
|
+
"values" :
|
|
3441
|
+
{ "PREVIOUS" : null,
|
|
3442
|
+
"COLLECTED" : null,
|
|
3443
|
+
"FORCED" : null,
|
|
3444
|
+
"EDITED" : null,
|
|
3445
|
+
"INPUTED" : null } },
|
|
3446
|
+
|
|
3447
|
+
{ "variableType" : "COLLECTED",
|
|
3448
|
+
"name" : "TABLEAU2A31",
|
|
3449
|
+
"values" :
|
|
3450
|
+
{ "PREVIOUS" : null,
|
|
3451
|
+
"COLLECTED" : null,
|
|
3452
|
+
"FORCED" : null,
|
|
3453
|
+
"EDITED" : null,
|
|
3454
|
+
"INPUTED" : null } },
|
|
3455
|
+
|
|
3456
|
+
{ "variableType" : "COLLECTED",
|
|
3457
|
+
"name" : "TABLEAU2A32",
|
|
3458
|
+
"values" :
|
|
3459
|
+
{ "PREVIOUS" : null,
|
|
3460
|
+
"COLLECTED" : null,
|
|
3461
|
+
"FORCED" : null,
|
|
3462
|
+
"EDITED" : null,
|
|
3463
|
+
"INPUTED" : null } },
|
|
3464
|
+
|
|
3465
|
+
{ "variableType" : "COLLECTED",
|
|
3466
|
+
"name" : "TABLEAU2A33",
|
|
3467
|
+
"values" :
|
|
3468
|
+
{ "PREVIOUS" : null,
|
|
3469
|
+
"COLLECTED" : null,
|
|
3470
|
+
"FORCED" : null,
|
|
3471
|
+
"EDITED" : null,
|
|
3472
|
+
"INPUTED" : null } },
|
|
3473
|
+
|
|
3474
|
+
{ "variableType" : "COLLECTED",
|
|
3475
|
+
"name" : "TABLEAU2A34",
|
|
3476
|
+
"values" :
|
|
3477
|
+
{ "PREVIOUS" : null,
|
|
3478
|
+
"COLLECTED" : null,
|
|
3479
|
+
"FORCED" : null,
|
|
3480
|
+
"EDITED" : null,
|
|
3481
|
+
"INPUTED" : null } },
|
|
3482
|
+
|
|
3483
|
+
{ "variableType" : "COLLECTED",
|
|
3484
|
+
"name" : "TABLEAU2A35",
|
|
3485
|
+
"values" :
|
|
3486
|
+
{ "PREVIOUS" : null,
|
|
3487
|
+
"COLLECTED" : null,
|
|
3488
|
+
"FORCED" : null,
|
|
3489
|
+
"EDITED" : null,
|
|
3490
|
+
"INPUTED" : null } },
|
|
3491
|
+
|
|
3492
|
+
{ "variableType" : "COLLECTED",
|
|
3493
|
+
"name" : "TABLEAU2A41",
|
|
3494
|
+
"values" :
|
|
3495
|
+
{ "PREVIOUS" : null,
|
|
3496
|
+
"COLLECTED" : null,
|
|
3497
|
+
"FORCED" : null,
|
|
3498
|
+
"EDITED" : null,
|
|
3499
|
+
"INPUTED" : null } },
|
|
3500
|
+
|
|
3501
|
+
{ "variableType" : "COLLECTED",
|
|
3502
|
+
"name" : "TABLEAU2A42",
|
|
3503
|
+
"values" :
|
|
3504
|
+
{ "PREVIOUS" : null,
|
|
3505
|
+
"COLLECTED" : null,
|
|
3506
|
+
"FORCED" : null,
|
|
3507
|
+
"EDITED" : null,
|
|
3508
|
+
"INPUTED" : null } },
|
|
3509
|
+
|
|
3510
|
+
{ "variableType" : "COLLECTED",
|
|
3511
|
+
"name" : "TABLEAU2A43",
|
|
3512
|
+
"values" :
|
|
3513
|
+
{ "PREVIOUS" : null,
|
|
3514
|
+
"COLLECTED" : null,
|
|
3515
|
+
"FORCED" : null,
|
|
3516
|
+
"EDITED" : null,
|
|
3517
|
+
"INPUTED" : null } },
|
|
3518
|
+
|
|
3519
|
+
{ "variableType" : "COLLECTED",
|
|
3520
|
+
"name" : "TABLEAU2A44",
|
|
3521
|
+
"values" :
|
|
3522
|
+
{ "PREVIOUS" : null,
|
|
3523
|
+
"COLLECTED" : null,
|
|
3524
|
+
"FORCED" : null,
|
|
3525
|
+
"EDITED" : null,
|
|
3526
|
+
"INPUTED" : null } },
|
|
3527
|
+
|
|
3528
|
+
{ "variableType" : "COLLECTED",
|
|
3529
|
+
"name" : "TABLEAU2A45",
|
|
3530
|
+
"values" :
|
|
3531
|
+
{ "PREVIOUS" : null,
|
|
3532
|
+
"COLLECTED" : null,
|
|
3533
|
+
"FORCED" : null,
|
|
3534
|
+
"EDITED" : null,
|
|
3535
|
+
"INPUTED" : null } },
|
|
3536
|
+
|
|
3537
|
+
{ "variableType" : "COLLECTED",
|
|
3538
|
+
"name" : "TABLEAU2A51",
|
|
3539
|
+
"values" :
|
|
3540
|
+
{ "PREVIOUS" : null,
|
|
3541
|
+
"COLLECTED" : null,
|
|
3542
|
+
"FORCED" : null,
|
|
3543
|
+
"EDITED" : null,
|
|
3544
|
+
"INPUTED" : null } },
|
|
3545
|
+
|
|
3546
|
+
{ "variableType" : "COLLECTED",
|
|
3547
|
+
"name" : "TABLEAU2A52",
|
|
3548
|
+
"values" :
|
|
3549
|
+
{ "PREVIOUS" : null,
|
|
3550
|
+
"COLLECTED" : null,
|
|
3551
|
+
"FORCED" : null,
|
|
3552
|
+
"EDITED" : null,
|
|
3553
|
+
"INPUTED" : null } },
|
|
3554
|
+
|
|
3555
|
+
{ "variableType" : "COLLECTED",
|
|
3556
|
+
"name" : "TABLEAU2A53",
|
|
3557
|
+
"values" :
|
|
3558
|
+
{ "PREVIOUS" : null,
|
|
3559
|
+
"COLLECTED" : null,
|
|
3560
|
+
"FORCED" : null,
|
|
3561
|
+
"EDITED" : null,
|
|
3562
|
+
"INPUTED" : null } },
|
|
3563
|
+
|
|
3564
|
+
{ "variableType" : "COLLECTED",
|
|
3565
|
+
"name" : "TABLEAU2A54",
|
|
3566
|
+
"values" :
|
|
3567
|
+
{ "PREVIOUS" : null,
|
|
3568
|
+
"COLLECTED" : null,
|
|
3569
|
+
"FORCED" : null,
|
|
3570
|
+
"EDITED" : null,
|
|
3571
|
+
"INPUTED" : null } },
|
|
3572
|
+
|
|
3573
|
+
{ "variableType" : "COLLECTED",
|
|
3574
|
+
"name" : "TABLEAU2A55",
|
|
3575
|
+
"values" :
|
|
3576
|
+
{ "PREVIOUS" : null,
|
|
3577
|
+
"COLLECTED" : null,
|
|
3578
|
+
"FORCED" : null,
|
|
3579
|
+
"EDITED" : null,
|
|
3580
|
+
"INPUTED" : null } },
|
|
3581
|
+
|
|
3582
|
+
{ "variableType" : "COLLECTED",
|
|
3583
|
+
"name" : "TABLEAU2A61",
|
|
3584
|
+
"values" :
|
|
3585
|
+
{ "PREVIOUS" : null,
|
|
3586
|
+
"COLLECTED" : null,
|
|
3587
|
+
"FORCED" : null,
|
|
3588
|
+
"EDITED" : null,
|
|
3589
|
+
"INPUTED" : null } },
|
|
3590
|
+
|
|
3591
|
+
{ "variableType" : "COLLECTED",
|
|
3592
|
+
"name" : "TABLEAU2A62",
|
|
3593
|
+
"values" :
|
|
3594
|
+
{ "PREVIOUS" : null,
|
|
3595
|
+
"COLLECTED" : null,
|
|
3596
|
+
"FORCED" : null,
|
|
3597
|
+
"EDITED" : null,
|
|
3598
|
+
"INPUTED" : null } },
|
|
3599
|
+
|
|
3600
|
+
{ "variableType" : "COLLECTED",
|
|
3601
|
+
"name" : "TABLEAU2A63",
|
|
3602
|
+
"values" :
|
|
3603
|
+
{ "PREVIOUS" : null,
|
|
3604
|
+
"COLLECTED" : null,
|
|
3605
|
+
"FORCED" : null,
|
|
3606
|
+
"EDITED" : null,
|
|
3607
|
+
"INPUTED" : null } },
|
|
3608
|
+
|
|
3609
|
+
{ "variableType" : "COLLECTED",
|
|
3610
|
+
"name" : "TABLEAU2A64",
|
|
3611
|
+
"values" :
|
|
3612
|
+
{ "PREVIOUS" : null,
|
|
3613
|
+
"COLLECTED" : null,
|
|
3614
|
+
"FORCED" : null,
|
|
3615
|
+
"EDITED" : null,
|
|
3616
|
+
"INPUTED" : null } },
|
|
3617
|
+
|
|
3618
|
+
{ "variableType" : "COLLECTED",
|
|
3619
|
+
"name" : "TABLEAU2A65",
|
|
3620
|
+
"values" :
|
|
3621
|
+
{ "PREVIOUS" : null,
|
|
3622
|
+
"COLLECTED" : null,
|
|
3623
|
+
"FORCED" : null,
|
|
3624
|
+
"EDITED" : null,
|
|
3625
|
+
"INPUTED" : null } },
|
|
3626
|
+
|
|
3627
|
+
{ "variableType" : "COLLECTED",
|
|
3628
|
+
"name" : "TABLEAU1AH1M11",
|
|
3629
|
+
"values" :
|
|
3630
|
+
{ "PREVIOUS" : null,
|
|
3631
|
+
"COLLECTED" : null,
|
|
3632
|
+
"FORCED" : null,
|
|
3633
|
+
"EDITED" : null,
|
|
3634
|
+
"INPUTED" : null } },
|
|
3635
|
+
|
|
3636
|
+
{ "variableType" : "COLLECTED",
|
|
3637
|
+
"name" : "TABLEAU1AH1M21",
|
|
3638
|
+
"values" :
|
|
3639
|
+
{ "PREVIOUS" : null,
|
|
3640
|
+
"COLLECTED" : null,
|
|
3641
|
+
"FORCED" : null,
|
|
3642
|
+
"EDITED" : null,
|
|
3643
|
+
"INPUTED" : null } },
|
|
3644
|
+
|
|
3645
|
+
{ "variableType" : "COLLECTED",
|
|
3646
|
+
"name" : "TABLEAUDYN1",
|
|
3647
|
+
"values" :
|
|
3648
|
+
{ "PREVIOUS" : null,
|
|
3649
|
+
"COLLECTED" : null,
|
|
3650
|
+
"FORCED" : null,
|
|
3651
|
+
"EDITED" : null,
|
|
3652
|
+
"INPUTED" : null } },
|
|
3653
|
+
|
|
3654
|
+
{ "variableType" : "COLLECTED",
|
|
3655
|
+
"name" : "TABLEAUDYN2",
|
|
3656
|
+
"values" :
|
|
3657
|
+
{ "PREVIOUS" : null,
|
|
3658
|
+
"COLLECTED" : null,
|
|
3659
|
+
"FORCED" : null,
|
|
3660
|
+
"EDITED" : null,
|
|
3661
|
+
"INPUTED" : null } },
|
|
3662
|
+
|
|
3663
|
+
{ "variableType" : "COLLECTED",
|
|
3664
|
+
"name" : "NHAB",
|
|
3665
|
+
"values" :
|
|
3666
|
+
{ "PREVIOUS" : null,
|
|
3667
|
+
"COLLECTED" : null,
|
|
3668
|
+
"FORCED" : null,
|
|
3669
|
+
"EDITED" : null,
|
|
3670
|
+
"INPUTED" : null } },
|
|
3671
|
+
|
|
3672
|
+
{ "variableType" : "COLLECTED",
|
|
3673
|
+
"name" : "PRENOM1",
|
|
3674
|
+
"values" :
|
|
3675
|
+
{ "PREVIOUS" :
|
|
3676
|
+
[ null ],
|
|
3677
|
+
"COLLECTED" :
|
|
3678
|
+
[ null ],
|
|
3679
|
+
"FORCED" :
|
|
3680
|
+
[ null ],
|
|
3681
|
+
"EDITED" :
|
|
3682
|
+
[ null ],
|
|
3683
|
+
"INPUTED" :
|
|
3684
|
+
[ null ] } },
|
|
3685
|
+
|
|
3686
|
+
{ "variableType" : "COLLECTED",
|
|
3687
|
+
"name" : "AGE1",
|
|
3688
|
+
"values" :
|
|
3689
|
+
{ "PREVIOUS" :
|
|
3690
|
+
[ null ],
|
|
3691
|
+
"COLLECTED" :
|
|
3692
|
+
[ null ],
|
|
3693
|
+
"FORCED" :
|
|
3694
|
+
[ null ],
|
|
3695
|
+
"EDITED" :
|
|
3696
|
+
[ null ],
|
|
3697
|
+
"INPUTED" :
|
|
3698
|
+
[ null ] } },
|
|
3699
|
+
|
|
3700
|
+
{ "variableType" : "COLLECTED",
|
|
3701
|
+
"name" : "PRENOM2",
|
|
3702
|
+
"values" :
|
|
3703
|
+
{ "PREVIOUS" :
|
|
3704
|
+
[ null ],
|
|
3705
|
+
"COLLECTED" :
|
|
3706
|
+
[ null ],
|
|
3707
|
+
"FORCED" :
|
|
3708
|
+
[ null ],
|
|
3709
|
+
"EDITED" :
|
|
3710
|
+
[ null ],
|
|
3711
|
+
"INPUTED" :
|
|
3712
|
+
[ null ] } },
|
|
3713
|
+
|
|
3714
|
+
{ "variableType" : "COLLECTED",
|
|
3715
|
+
"name" : "AGE2",
|
|
3716
|
+
"values" :
|
|
3717
|
+
{ "PREVIOUS" :
|
|
3718
|
+
[ null ],
|
|
3719
|
+
"COLLECTED" :
|
|
3720
|
+
[ null ],
|
|
3721
|
+
"FORCED" :
|
|
3722
|
+
[ null ],
|
|
3723
|
+
"EDITED" :
|
|
3724
|
+
[ null ],
|
|
3725
|
+
"INPUTED" :
|
|
3726
|
+
[ null ] } },
|
|
3727
|
+
|
|
3728
|
+
{ "variableType" : "CALCULATED",
|
|
3729
|
+
"name" : "FILTER_RESULT_COCHECASE",
|
|
3730
|
+
"expression" :
|
|
3731
|
+
{ "value" : "true",
|
|
3732
|
+
"type" : "VTL" },
|
|
3733
|
+
"inFilter" : "false" },
|
|
3734
|
+
|
|
3735
|
+
{ "variableType" : "CALCULATED",
|
|
3736
|
+
"name" : "FILTER_RESULT_TEXTE10",
|
|
3737
|
+
"expression" :
|
|
3738
|
+
{ "value" : "(COCHECASE = true)",
|
|
3739
|
+
"type" : "VTL" },
|
|
3740
|
+
"bindingDependencies" :
|
|
3741
|
+
[ "COCHECASE" ],
|
|
3742
|
+
"inFilter" : "false" },
|
|
3743
|
+
|
|
3744
|
+
{ "variableType" : "CALCULATED",
|
|
3745
|
+
"name" : "FILTER_RESULT_TEXTELONG249",
|
|
3746
|
+
"expression" :
|
|
3747
|
+
{ "value" : "(COCHECASE = true)",
|
|
3748
|
+
"type" : "VTL" },
|
|
3749
|
+
"bindingDependencies" :
|
|
3750
|
+
[ "COCHECASE" ],
|
|
3751
|
+
"inFilter" : "false" },
|
|
3752
|
+
|
|
3753
|
+
{ "variableType" : "CALCULATED",
|
|
3754
|
+
"name" : "FILTER_RESULT_TEXTELONG250",
|
|
3755
|
+
"expression" :
|
|
3756
|
+
{ "value" : "(COCHECASE = true)",
|
|
3757
|
+
"type" : "VTL" },
|
|
3758
|
+
"bindingDependencies" :
|
|
3759
|
+
[ "COCHECASE" ],
|
|
3760
|
+
"inFilter" : "false" },
|
|
3761
|
+
|
|
3762
|
+
{ "variableType" : "CALCULATED",
|
|
3763
|
+
"name" : "FILTER_RESULT_SIREN",
|
|
3764
|
+
"expression" :
|
|
3765
|
+
{ "value" : "(COCHECASE = true)",
|
|
3766
|
+
"type" : "VTL" },
|
|
3767
|
+
"bindingDependencies" :
|
|
3768
|
+
[ "COCHECASE" ],
|
|
3769
|
+
"inFilter" : "false" },
|
|
3770
|
+
|
|
3771
|
+
{ "variableType" : "CALCULATED",
|
|
3772
|
+
"name" : "FILTER_RESULT_INTEGER",
|
|
3773
|
+
"expression" :
|
|
3774
|
+
{ "value" : "(COCHECASE = true)",
|
|
3775
|
+
"type" : "VTL" },
|
|
3776
|
+
"bindingDependencies" :
|
|
3777
|
+
[ "COCHECASE" ],
|
|
3778
|
+
"inFilter" : "false" },
|
|
3779
|
+
|
|
3780
|
+
{ "variableType" : "CALCULATED",
|
|
3781
|
+
"name" : "FILTER_RESULT_FLOAT",
|
|
3782
|
+
"expression" :
|
|
3783
|
+
{ "value" : "(COCHECASE = true)",
|
|
3784
|
+
"type" : "VTL" },
|
|
3785
|
+
"bindingDependencies" :
|
|
3786
|
+
[ "COCHECASE" ],
|
|
3787
|
+
"inFilter" : "false" },
|
|
3788
|
+
|
|
3789
|
+
{ "variableType" : "CALCULATED",
|
|
3790
|
+
"name" : "FILTER_RESULT_FLOATNEG",
|
|
3791
|
+
"expression" :
|
|
3792
|
+
{ "value" : "(COCHECASE = true)",
|
|
3793
|
+
"type" : "VTL" },
|
|
3794
|
+
"bindingDependencies" :
|
|
3795
|
+
[ "COCHECASE" ],
|
|
3796
|
+
"inFilter" : "false" },
|
|
3797
|
+
|
|
3798
|
+
{ "variableType" : "CALCULATED",
|
|
3799
|
+
"name" : "FILTER_RESULT_UNIT",
|
|
3800
|
+
"expression" :
|
|
3801
|
+
{ "value" : "(COCHECASE = true)",
|
|
3802
|
+
"type" : "VTL" },
|
|
3803
|
+
"bindingDependencies" :
|
|
3804
|
+
[ "COCHECASE" ],
|
|
3805
|
+
"inFilter" : "false" },
|
|
3806
|
+
|
|
3807
|
+
{ "variableType" : "CALCULATED",
|
|
3808
|
+
"name" : "FILTER_RESULT_UNITD",
|
|
3809
|
+
"expression" :
|
|
3810
|
+
{ "value" : "(COCHECASE = true)",
|
|
3811
|
+
"type" : "VTL" },
|
|
3812
|
+
"bindingDependencies" :
|
|
3813
|
+
[ "COCHECASE" ],
|
|
3814
|
+
"inFilter" : "false" },
|
|
3815
|
+
|
|
3816
|
+
{ "variableType" : "CALCULATED",
|
|
3817
|
+
"name" : "FILTER_RESULT_DATE",
|
|
3818
|
+
"expression" :
|
|
3819
|
+
{ "value" : "(COCHECASE = true)",
|
|
3820
|
+
"type" : "VTL" },
|
|
3821
|
+
"bindingDependencies" :
|
|
3822
|
+
[ "COCHECASE" ],
|
|
3823
|
+
"inFilter" : "false" },
|
|
3824
|
+
|
|
3825
|
+
{ "variableType" : "CALCULATED",
|
|
3826
|
+
"name" : "FILTER_RESULT_DAAAA",
|
|
3827
|
+
"expression" :
|
|
3828
|
+
{ "value" : "(COCHECASE = true)",
|
|
3829
|
+
"type" : "VTL" },
|
|
3830
|
+
"bindingDependencies" :
|
|
3831
|
+
[ "COCHECASE" ],
|
|
3832
|
+
"inFilter" : "false" },
|
|
3833
|
+
|
|
3834
|
+
{ "variableType" : "CALCULATED",
|
|
3835
|
+
"name" : "FILTER_RESULT_BOOLEN",
|
|
3836
|
+
"expression" :
|
|
3837
|
+
{ "value" : "(COCHECASE = true)",
|
|
3838
|
+
"type" : "VTL" },
|
|
3839
|
+
"bindingDependencies" :
|
|
3840
|
+
[ "COCHECASE" ],
|
|
3841
|
+
"inFilter" : "false" },
|
|
3842
|
+
|
|
3843
|
+
{ "variableType" : "CALCULATED",
|
|
3844
|
+
"name" : "FILTER_RESULT_CHECKBOXONERADIO",
|
|
3845
|
+
"expression" :
|
|
3846
|
+
{ "value" : "(COCHECASE = true)",
|
|
3847
|
+
"type" : "VTL" },
|
|
3848
|
+
"bindingDependencies" :
|
|
3849
|
+
[ "COCHECASE" ],
|
|
3850
|
+
"inFilter" : "false" },
|
|
3851
|
+
|
|
3852
|
+
{ "variableType" : "CALCULATED",
|
|
3853
|
+
"name" : "FILTER_RESULT_CHECKBOXONECOCHER",
|
|
3854
|
+
"expression" :
|
|
3855
|
+
{ "value" : "(COCHECASE = true)",
|
|
3856
|
+
"type" : "VTL" },
|
|
3857
|
+
"bindingDependencies" :
|
|
3858
|
+
[ "COCHECASE" ],
|
|
3859
|
+
"inFilter" : "false" },
|
|
3860
|
+
|
|
3861
|
+
{ "variableType" : "CALCULATED",
|
|
3862
|
+
"name" : "FILTER_RESULT_DROPDOWN",
|
|
3863
|
+
"expression" :
|
|
3864
|
+
{ "value" : "(COCHECASE = true)",
|
|
3865
|
+
"type" : "VTL" },
|
|
3866
|
+
"bindingDependencies" :
|
|
3867
|
+
[ "COCHECASE" ],
|
|
3868
|
+
"inFilter" : "false" },
|
|
3869
|
+
|
|
3870
|
+
{ "variableType" : "CALCULATED",
|
|
3871
|
+
"name" : "FILTER_RESULT_QCM_BOOLEEN",
|
|
3872
|
+
"expression" :
|
|
3873
|
+
{ "value" : "(COCHECASE = true)",
|
|
3874
|
+
"type" : "VTL" },
|
|
3875
|
+
"bindingDependencies" :
|
|
3876
|
+
[ "COCHECASE" ],
|
|
3877
|
+
"inFilter" : "false" },
|
|
3878
|
+
|
|
3879
|
+
{ "variableType" : "CALCULATED",
|
|
3880
|
+
"name" : "FILTER_RESULT_QCM_LISTEON",
|
|
3881
|
+
"expression" :
|
|
3882
|
+
{ "value" : "(COCHECASE = true)",
|
|
3883
|
+
"type" : "VTL" },
|
|
3884
|
+
"bindingDependencies" :
|
|
3885
|
+
[ "COCHECASE" ],
|
|
3886
|
+
"inFilter" : "false" },
|
|
3887
|
+
|
|
3888
|
+
{ "variableType" : "CALCULATED",
|
|
3889
|
+
"name" : "FILTER_RESULT_QCM_LISTEONRADIO",
|
|
3890
|
+
"expression" :
|
|
3891
|
+
{ "value" : "(COCHECASE = true)",
|
|
3892
|
+
"type" : "VTL" },
|
|
3893
|
+
"bindingDependencies" :
|
|
3894
|
+
[ "COCHECASE" ],
|
|
3895
|
+
"inFilter" : "false" },
|
|
3896
|
+
|
|
3897
|
+
{ "variableType" : "CALCULATED",
|
|
3898
|
+
"name" : "FILTER_RESULT_TABLEAU1A1M",
|
|
3899
|
+
"expression" :
|
|
3900
|
+
{ "value" : "(COCHECASE = true)",
|
|
3901
|
+
"type" : "VTL" },
|
|
3902
|
+
"bindingDependencies" :
|
|
3903
|
+
[ "COCHECASE" ],
|
|
3904
|
+
"inFilter" : "false" },
|
|
3905
|
+
|
|
3906
|
+
{ "variableType" : "CALCULATED",
|
|
3907
|
+
"name" : "FILTER_RESULT_TABLEAU1A3M",
|
|
3908
|
+
"expression" :
|
|
3909
|
+
{ "value" : "(COCHECASE = true)",
|
|
3910
|
+
"type" : "VTL" },
|
|
3911
|
+
"bindingDependencies" :
|
|
3912
|
+
[ "COCHECASE" ],
|
|
3913
|
+
"inFilter" : "false" },
|
|
3914
|
+
|
|
3915
|
+
{ "variableType" : "CALCULATED",
|
|
3916
|
+
"name" : "FILTER_RESULT_TABLEAU2A",
|
|
3917
|
+
"expression" :
|
|
3918
|
+
{ "value" : "(COCHECASE = true)",
|
|
3919
|
+
"type" : "VTL" },
|
|
3920
|
+
"bindingDependencies" :
|
|
3921
|
+
[ "COCHECASE" ],
|
|
3922
|
+
"inFilter" : "false" },
|
|
3923
|
+
|
|
3924
|
+
{ "variableType" : "CALCULATED",
|
|
3925
|
+
"name" : "FILTER_RESULT_TABLEAU1AH1M",
|
|
3926
|
+
"expression" :
|
|
3927
|
+
{ "value" : "(COCHECASE = true)",
|
|
3928
|
+
"type" : "VTL" },
|
|
3929
|
+
"bindingDependencies" :
|
|
3930
|
+
[ "COCHECASE" ],
|
|
3931
|
+
"inFilter" : "false" },
|
|
3932
|
+
|
|
3933
|
+
{ "variableType" : "CALCULATED",
|
|
3934
|
+
"name" : "FILTER_RESULT_TABLEAUDYN",
|
|
3935
|
+
"expression" :
|
|
3936
|
+
{ "value" : "(COCHECASE = true)",
|
|
3937
|
+
"type" : "VTL" },
|
|
3938
|
+
"bindingDependencies" :
|
|
3939
|
+
[ "COCHECASE" ],
|
|
3940
|
+
"inFilter" : "false" },
|
|
3941
|
+
|
|
3942
|
+
{ "variableType" : "CALCULATED",
|
|
3943
|
+
"name" : "FILTER_RESULT_NHAB",
|
|
3944
|
+
"expression" :
|
|
3945
|
+
{ "value" : "true",
|
|
3946
|
+
"type" : "VTL" },
|
|
3947
|
+
"inFilter" : "false" },
|
|
3948
|
+
|
|
3949
|
+
{ "variableType" : "CALCULATED",
|
|
3950
|
+
"name" : "FILTER_RESULT_PRENOM1",
|
|
3951
|
+
"expression" :
|
|
3952
|
+
{ "value" : "true",
|
|
3953
|
+
"type" : "VTL" },
|
|
3954
|
+
"shapeFrom" : "PRENOM1",
|
|
3955
|
+
"inFilter" : "false" },
|
|
3956
|
+
|
|
3957
|
+
{ "variableType" : "CALCULATED",
|
|
3958
|
+
"name" : "FILTER_RESULT_AGE1",
|
|
3959
|
+
"expression" :
|
|
3960
|
+
{ "value" : "true",
|
|
3961
|
+
"type" : "VTL" },
|
|
3962
|
+
"shapeFrom" : "PRENOM1",
|
|
3963
|
+
"inFilter" : "false" },
|
|
3964
|
+
|
|
3965
|
+
{ "variableType" : "CALCULATED",
|
|
3966
|
+
"name" : "FILTER_RESULT_PRENOM2",
|
|
3967
|
+
"expression" :
|
|
3968
|
+
{ "value" : "true",
|
|
3969
|
+
"type" : "VTL" },
|
|
3970
|
+
"shapeFrom" : "PRENOM2",
|
|
3971
|
+
"inFilter" : "false" },
|
|
3972
|
+
|
|
3973
|
+
{ "variableType" : "CALCULATED",
|
|
3974
|
+
"name" : "FILTER_RESULT_AGE2",
|
|
3975
|
+
"expression" :
|
|
3976
|
+
{ "value" : "true",
|
|
3977
|
+
"type" : "VTL" },
|
|
3978
|
+
"shapeFrom" : "PRENOM2",
|
|
3979
|
+
"inFilter" : "false" },
|
|
3980
|
+
|
|
3981
|
+
{ "variableType" : "CALCULATED",
|
|
3982
|
+
"name" : "NHABCALC",
|
|
3983
|
+
"expression" :
|
|
3984
|
+
{ "value" : "if (isnull(NHAB)) then 1 else cast(NHAB,integer)",
|
|
3985
|
+
"type" : "VTL" },
|
|
3986
|
+
"bindingDependencies" :
|
|
3987
|
+
[ "NHAB" ],
|
|
3988
|
+
"inFilter" : "true" } ],
|
|
3989
|
+
"cleaning" :
|
|
3990
|
+
{ "COCHECASE" :
|
|
3991
|
+
{ "TEXTE10" : "(COCHECASE = true)",
|
|
3992
|
+
"TEXTELONG249" : "(COCHECASE = true)",
|
|
3993
|
+
"TEXTELONG250" : "(COCHECASE = true)",
|
|
3994
|
+
"SIREN" : "(COCHECASE = true)",
|
|
3995
|
+
"INTEGER" : "(COCHECASE = true)",
|
|
3996
|
+
"FLOAT" : "(COCHECASE = true)",
|
|
3997
|
+
"FLOATNEG" : "(COCHECASE = true)",
|
|
3998
|
+
"UNIT" : "(COCHECASE = true)",
|
|
3999
|
+
"UNITD" : "(COCHECASE = true)",
|
|
4000
|
+
"DATE" : "(COCHECASE = true)",
|
|
4001
|
+
"DAAAA" : "(COCHECASE = true)",
|
|
4002
|
+
"BOOLEN" : "(COCHECASE = true)",
|
|
4003
|
+
"CHECKBOXONERADIO" : "(COCHECASE = true)",
|
|
4004
|
+
"CHECKBOXONECOCHER" : "(COCHECASE = true)",
|
|
4005
|
+
"DROPDOWN" : "(COCHECASE = true)",
|
|
4006
|
+
"QCM_LISTEON1" : "(COCHECASE = true)",
|
|
4007
|
+
"QCM_LISTEON2" : "(COCHECASE = true)",
|
|
4008
|
+
"QCM_LISTEON3" : "(COCHECASE = true)",
|
|
4009
|
+
"QCM_LISTEON4" : "(COCHECASE = true)",
|
|
4010
|
+
"QCM_LISTEON5" : "(COCHECASE = true)",
|
|
4011
|
+
"QCM_LISTEON6" : "(COCHECASE = true)",
|
|
4012
|
+
"QCM_LISTEONRADIO1" : "(COCHECASE = true)",
|
|
4013
|
+
"QCM_LISTEONRADIO2" : "(COCHECASE = true)",
|
|
4014
|
+
"QCM_LISTEONRADIO3" : "(COCHECASE = true)",
|
|
4015
|
+
"QCM_LISTEONRADIO4" : "(COCHECASE = true)",
|
|
4016
|
+
"QCM_LISTEONRADIO5" : "(COCHECASE = true)",
|
|
4017
|
+
"QCM_LISTEONRADIO6" : "(COCHECASE = true)",
|
|
4018
|
+
"TABLEAU1A1M11" : "(COCHECASE = true)",
|
|
4019
|
+
"TABLEAU1A1M21" : "(COCHECASE = true)",
|
|
4020
|
+
"TABLEAU1A1M31" : "(COCHECASE = true)",
|
|
4021
|
+
"TABLEAU1A1M41" : "(COCHECASE = true)",
|
|
4022
|
+
"TABLEAU1A1M51" : "(COCHECASE = true)",
|
|
4023
|
+
"TABLEAU1A1M61" : "(COCHECASE = true)",
|
|
4024
|
+
"TABLEAU1A3M11" : "(COCHECASE = true)",
|
|
4025
|
+
"TABLEAU1A3M12" : "(COCHECASE = true)",
|
|
4026
|
+
"TABLEAU1A3M13" : "(COCHECASE = true)",
|
|
4027
|
+
"TABLEAU1A3M21" : "(COCHECASE = true)",
|
|
4028
|
+
"TABLEAU1A3M22" : "(COCHECASE = true)",
|
|
4029
|
+
"TABLEAU1A3M23" : "(COCHECASE = true)",
|
|
4030
|
+
"TABLEAU1A3M31" : "(COCHECASE = true)",
|
|
4031
|
+
"TABLEAU1A3M32" : "(COCHECASE = true)",
|
|
4032
|
+
"TABLEAU1A3M33" : "(COCHECASE = true)",
|
|
4033
|
+
"TABLEAU1A3M41" : "(COCHECASE = true)",
|
|
4034
|
+
"TABLEAU1A3M42" : "(COCHECASE = true)",
|
|
4035
|
+
"TABLEAU1A3M43" : "(COCHECASE = true)",
|
|
4036
|
+
"TABLEAU1A3M51" : "(COCHECASE = true)",
|
|
4037
|
+
"TABLEAU1A3M52" : "(COCHECASE = true)",
|
|
4038
|
+
"TABLEAU1A3M53" : "(COCHECASE = true)",
|
|
4039
|
+
"TABLEAU1A3M61" : "(COCHECASE = true)",
|
|
4040
|
+
"TABLEAU1A3M62" : "(COCHECASE = true)",
|
|
4041
|
+
"TABLEAU1A3M63" : "(COCHECASE = true)",
|
|
4042
|
+
"TABLEAU2A11" : "(COCHECASE = true)",
|
|
4043
|
+
"TABLEAU2A12" : "(COCHECASE = true)",
|
|
4044
|
+
"TABLEAU2A13" : "(COCHECASE = true)",
|
|
4045
|
+
"TABLEAU2A14" : "(COCHECASE = true)",
|
|
4046
|
+
"TABLEAU2A15" : "(COCHECASE = true)",
|
|
4047
|
+
"TABLEAU2A21" : "(COCHECASE = true)",
|
|
4048
|
+
"TABLEAU2A22" : "(COCHECASE = true)",
|
|
4049
|
+
"TABLEAU2A23" : "(COCHECASE = true)",
|
|
4050
|
+
"TABLEAU2A24" : "(COCHECASE = true)",
|
|
4051
|
+
"TABLEAU2A25" : "(COCHECASE = true)",
|
|
4052
|
+
"TABLEAU2A31" : "(COCHECASE = true)",
|
|
4053
|
+
"TABLEAU2A32" : "(COCHECASE = true)",
|
|
4054
|
+
"TABLEAU2A33" : "(COCHECASE = true)",
|
|
4055
|
+
"TABLEAU2A34" : "(COCHECASE = true)",
|
|
4056
|
+
"TABLEAU2A35" : "(COCHECASE = true)",
|
|
4057
|
+
"TABLEAU2A41" : "(COCHECASE = true)",
|
|
4058
|
+
"TABLEAU2A42" : "(COCHECASE = true)",
|
|
4059
|
+
"TABLEAU2A43" : "(COCHECASE = true)",
|
|
4060
|
+
"TABLEAU2A44" : "(COCHECASE = true)",
|
|
4061
|
+
"TABLEAU2A45" : "(COCHECASE = true)",
|
|
4062
|
+
"TABLEAU2A51" : "(COCHECASE = true)",
|
|
4063
|
+
"TABLEAU2A52" : "(COCHECASE = true)",
|
|
4064
|
+
"TABLEAU2A53" : "(COCHECASE = true)",
|
|
4065
|
+
"TABLEAU2A54" : "(COCHECASE = true)",
|
|
4066
|
+
"TABLEAU2A55" : "(COCHECASE = true)",
|
|
4067
|
+
"TABLEAU2A61" : "(COCHECASE = true)",
|
|
4068
|
+
"TABLEAU2A62" : "(COCHECASE = true)",
|
|
4069
|
+
"TABLEAU2A63" : "(COCHECASE = true)",
|
|
4070
|
+
"TABLEAU2A64" : "(COCHECASE = true)",
|
|
4071
|
+
"TABLEAU2A65" : "(COCHECASE = true)",
|
|
4072
|
+
"TABLEAU1AH1M11" : "(COCHECASE = true)",
|
|
4073
|
+
"TABLEAU1AH1M21" : "(COCHECASE = true)",
|
|
4074
|
+
"TABLEAUDYN1_1_1" : "(COCHECASE = true)",
|
|
4075
|
+
"TABLEAUDYN2_1_2" : "(COCHECASE = true)",
|
|
4076
|
+
"TABLEAUDYN1_2_1" : "(COCHECASE = true)",
|
|
4077
|
+
"TABLEAUDYN2_2_2" : "(COCHECASE = true)",
|
|
4078
|
+
"TABLEAUDYN1_3_1" : "(COCHECASE = true)",
|
|
4079
|
+
"TABLEAUDYN2_3_2" : "(COCHECASE = true)",
|
|
4080
|
+
"TABLEAUDYN1_4_1" : "(COCHECASE = true)",
|
|
4081
|
+
"TABLEAUDYN2_4_2" : "(COCHECASE = true)",
|
|
4082
|
+
"TABLEAUDYN1_5_1" : "(COCHECASE = true)",
|
|
4083
|
+
"TABLEAUDYN2_5_2" : "(COCHECASE = true)" } },
|
|
4084
|
+
"resizing" :
|
|
4085
|
+
{ "NHAB" :
|
|
4086
|
+
{ "size" : "cast(NHABCALC,integer)",
|
|
4087
|
+
"variables" :
|
|
4088
|
+
[ "PRENOM1",
|
|
4089
|
+
"AGE1",
|
|
4090
|
+
"PRENOM2",
|
|
4091
|
+
"AGE2" ] } } }
|