@things-factory/kpi 9.0.31 → 9.0.33
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/README.md +1 -2
- package/client/charts/kpi-boxplot-chart.ts +182 -42
- package/client/charts/kpi-radar-chart.ts +9 -9
- package/client/pages/kpi/kpi-list-page.ts +196 -32
- package/client/pages/kpi/kpi-overview.ts +9 -11
- package/client/pages/kpi/kpi-tree-page.ts +409 -0
- package/client/pages/kpi/kpi-view.ts +187 -0
- package/client/pages/kpi-dashboard/cards/kpi-level1-card.ts +1 -1
- package/client/pages/kpi-dashboard/cards/kpi-level2-comparison.ts +1 -1
- package/client/pages/kpi-dashboard/cards/kpi-level3-comparison.ts +1 -1
- package/client/pages/kpi-dashboard/components/kpi-left-panel.ts +198 -160
- package/client/pages/kpi-dashboard/components/kpi-map-panel.ts +133 -0
- package/client/pages/kpi-dashboard/components/kpi-region-popup.ts +3 -2
- package/client/pages/kpi-dashboard/kpi-dashboard-map.ts +291 -48
- package/client/pages/kpi-dashboard/kpi-dashboard.ts +28 -30
- package/client/pages/kpi-history/kpi-history-list-page.ts +11 -11
- package/client/pages/kpi-metric/kpi-metric-list-page.ts +10 -2
- package/client/pages/kpi-metric-value/kpi-metric-value-editor-page.ts +7 -7
- package/client/pages/kpi-metric-value/kpi-metric-value-importer.ts +2 -2
- package/client/pages/kpi-metric-value/kpi-metric-value-list-page.ts +16 -8
- package/client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.ts +5 -5
- package/client/pages/kpi-statistic/kpi-statistic-editor-page.ts +1 -2
- package/client/pages/kpi-statistic/kpi-statistic-list-page.ts +10 -2
- package/client/pages/kpi-value/kpi-value-editor-page.ts +11 -7
- package/client/pages/kpi-value/kpi-value-list-page.ts +31 -7
- package/client/route.ts +2 -9
- package/design-entities.md +8 -12
- package/dist-client/charts/kpi-boxplot-chart.d.ts +2 -0
- package/dist-client/charts/kpi-boxplot-chart.js +168 -42
- package/dist-client/charts/kpi-boxplot-chart.js.map +1 -1
- package/dist-client/charts/kpi-radar-chart.js +9 -9
- package/dist-client/charts/kpi-radar-chart.js.map +1 -1
- package/dist-client/pages/kpi/kpi-list-page.d.ts +19 -3
- package/dist-client/pages/kpi/kpi-list-page.js +188 -32
- package/dist-client/pages/kpi/kpi-list-page.js.map +1 -1
- package/dist-client/pages/kpi/kpi-overview.js +9 -11
- package/dist-client/pages/kpi/kpi-overview.js.map +1 -1
- package/dist-client/pages/kpi/kpi-tree-page.d.ts +59 -0
- package/dist-client/pages/kpi/kpi-tree-page.js +403 -0
- package/dist-client/pages/kpi/kpi-tree-page.js.map +1 -0
- package/dist-client/pages/kpi/kpi-view.d.ts +12 -0
- package/dist-client/pages/kpi/kpi-view.js +191 -0
- package/dist-client/pages/kpi/kpi-view.js.map +1 -0
- package/dist-client/pages/kpi-dashboard/cards/kpi-level1-card.js +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level1-card.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level2-comparison.js +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level2-comparison.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level3-comparison.js +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level3-comparison.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.d.ts +3 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js +197 -161
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.d.ts +5 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.js +146 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js +3 -2
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.d.ts +3 -1
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js +268 -46
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/kpi-dashboard.js +28 -30
- package/dist-client/pages/kpi-dashboard/kpi-dashboard.js.map +1 -1
- package/dist-client/pages/kpi-history/kpi-history-list-page.d.ts +6 -1
- package/dist-client/pages/kpi-history/kpi-history-list-page.js +11 -11
- package/dist-client/pages/kpi-history/kpi-history-list-page.js.map +1 -1
- package/dist-client/pages/kpi-metric/kpi-metric-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-metric/kpi-metric-list-page.js +10 -2
- package/dist-client/pages/kpi-metric/kpi-metric-list-page.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.d.ts +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.js +8 -8
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-importer.js +2 -2
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-importer.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js +16 -8
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.d.ts +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.js +6 -6
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.js.map +1 -1
- package/dist-client/pages/kpi-statistic/kpi-statistic-editor-page.js +1 -2
- package/dist-client/pages/kpi-statistic/kpi-statistic-editor-page.js.map +1 -1
- package/dist-client/pages/kpi-statistic/kpi-statistic-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-statistic/kpi-statistic-list-page.js +10 -2
- package/dist-client/pages/kpi-statistic/kpi-statistic-list-page.js.map +1 -1
- package/dist-client/pages/kpi-value/kpi-value-editor-page.d.ts +2 -1
- package/dist-client/pages/kpi-value/kpi-value-editor-page.js +16 -8
- package/dist-client/pages/kpi-value/kpi-value-editor-page.js.map +1 -1
- package/dist-client/pages/kpi-value/kpi-value-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-value/kpi-value-list-page.js +31 -7
- package/dist-client/pages/kpi-value/kpi-value-list-page.js.map +1 -1
- package/dist-client/route.d.ts +1 -1
- package/dist-client/route.js +2 -8
- package/dist-client/route.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/controllers/kpi-metric-value-provider.d.ts +1 -1
- package/dist-server/controllers/kpi-metric-value-provider.js +4 -4
- package/dist-server/controllers/kpi-metric-value-provider.js.map +1 -1
- package/dist-server/controllers/kpi-value-provider.d.ts +1 -1
- package/dist-server/controllers/kpi-value-provider.js +3 -3
- package/dist-server/controllers/kpi-value-provider.js.map +1 -1
- package/dist-server/migrations/1752190849680-seed-kpi-metrics.d.ts +6 -0
- package/dist-server/migrations/1752190849680-seed-kpi-metrics.js +101 -0
- package/dist-server/migrations/1752190849680-seed-kpi-metrics.js.map +1 -0
- package/dist-server/migrations/1752190849681-seed-kpi.d.ts +5 -0
- package/dist-server/migrations/1752190849681-seed-kpi.js +315 -0
- package/dist-server/migrations/1752190849681-seed-kpi.js.map +1 -0
- package/dist-server/migrations/1752192090123-add-grades-to-kpi.d.ts +7 -0
- package/dist-server/migrations/1752192090123-add-grades-to-kpi.js +51 -0
- package/dist-server/migrations/1752192090123-add-grades-to-kpi.js.map +1 -0
- package/dist-server/migrations/1752192090124-add-kpi-statistics.d.ts +5 -0
- package/dist-server/migrations/1752192090124-add-kpi-statistics.js +710 -0
- package/dist-server/migrations/1752192090124-add-kpi-statistics.js.map +1 -0
- package/dist-server/migrations/1752192090128-seed-kpi-org-scope.d.ts +6 -0
- package/dist-server/migrations/1752192090128-seed-kpi-org-scope.js +111 -0
- package/dist-server/migrations/1752192090128-seed-kpi-org-scope.js.map +1 -0
- package/dist-server/migrations/1752192090129-seed-kpi-values.d.ts +6 -0
- package/dist-server/migrations/1752192090129-seed-kpi-values.js +187 -0
- package/dist-server/migrations/1752192090129-seed-kpi-values.js.map +1 -0
- package/dist-server/migrations/grade-data/x11-performance-table.json +962 -0
- package/dist-server/migrations/grade-data/x12-performance-table.json +611 -0
- package/dist-server/migrations/grade-data/x14-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x21-performance-table.json +889 -0
- package/dist-server/migrations/grade-data/x22-performance-table.json +1064 -0
- package/dist-server/migrations/grade-data/x23-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x31-performance-table.json +644 -0
- package/dist-server/migrations/grade-data/x32-performance-table.json +993 -0
- package/dist-server/migrations/grade-data/x33-performance-table.json +195 -0
- package/dist-server/migrations/grade-data/x34-performance-table.json +12 -0
- package/dist-server/migrations/grade-data/x35-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x41-performance-table.json +825 -0
- package/dist-server/migrations/grade-data/x42-performance-table.json +786 -0
- package/dist-server/migrations/grade-data/x43-performance-table.json +12 -0
- package/dist-server/migrations/grade-data/x44-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x51-performance-table.json +924 -0
- package/dist-server/migrations/grade-data/x52-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x61-performance-table.json +261 -0
- package/dist-server/migrations/grade-data/x62-performance-table.json +42 -0
- package/dist-server/migrations/seed-data/kpi-metrics-seed.json +454 -0
- package/dist-server/migrations/seed-data/kpi-org-scope-seed.json +1676 -0
- package/dist-server/migrations/seed-data/kpi-scopes-seed.json +121 -0
- package/dist-server/migrations/seed-data/kpi-values-seed.json +402 -0
- package/dist-server/migrations/seed-data/kpis-seed.json +488 -0
- package/dist-server/migrations/seed-data/scope-definitions-seed.json +90 -0
- package/dist-server/service/index.d.ts +4 -7
- package/dist-server/service/index.js +10 -13
- package/dist-server/service/index.js.map +1 -1
- package/dist-server/service/kpi/aggregate-kpi.js +30 -13
- package/dist-server/service/kpi/aggregate-kpi.js.map +1 -1
- package/dist-server/service/kpi/kpi-formula.service.d.ts +15 -0
- package/dist-server/service/kpi/kpi-formula.service.js +90 -0
- package/dist-server/service/kpi/kpi-formula.service.js.map +1 -1
- package/dist-server/service/kpi/kpi-history.d.ts +0 -3
- package/dist-server/service/kpi/kpi-history.js +0 -10
- package/dist-server/service/kpi/kpi-history.js.map +1 -1
- package/dist-server/service/kpi/kpi-mutation.d.ts +1 -1
- package/dist-server/service/kpi/kpi-mutation.js +57 -20
- package/dist-server/service/kpi/kpi-mutation.js.map +1 -1
- package/dist-server/service/kpi/kpi-query.d.ts +7 -3
- package/dist-server/service/kpi/kpi-query.js +126 -10
- package/dist-server/service/kpi/kpi-query.js.map +1 -1
- package/dist-server/service/kpi/kpi-type.d.ts +4 -2
- package/dist-server/service/kpi/kpi-type.js +12 -4
- package/dist-server/service/kpi/kpi-type.js.map +1 -1
- package/dist-server/service/kpi/kpi.d.ts +4 -3
- package/dist-server/service/kpi/kpi.js +20 -8
- package/dist-server/service/kpi/kpi.js.map +1 -1
- package/dist-server/service/kpi-metric/aggregate-kpi-metric.js +46 -11
- package/dist-server/service/kpi-metric/aggregate-kpi-metric.js.map +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.d.ts +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js +6 -6
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js.map +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-type.d.ts +2 -2
- package/dist-server/service/kpi-metric-value/kpi-metric-value-type.js +4 -4
- package/dist-server/service/kpi-metric-value/kpi-metric-value-type.js.map +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value.d.ts +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value.js +3 -3
- package/dist-server/service/kpi-metric-value/kpi-metric-value.js.map +1 -1
- package/dist-server/service/kpi-org-scope/index.d.ts +5 -0
- package/dist-server/service/kpi-org-scope/index.js +9 -0
- package/dist-server/service/kpi-org-scope/index.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-mutation.d.ts +8 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-mutation.js +170 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-mutation.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-query.d.ts +14 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-query.js +152 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-query.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-type.d.ts +26 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-type.js +101 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-type.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope.d.ts +26 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope.js +135 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope.js.map +1 -0
- package/dist-server/service/kpi-scope/index.d.ts +9 -0
- package/dist-server/service/kpi-scope/index.js +14 -0
- package/dist-server/service/kpi-scope/index.js.map +1 -0
- package/dist-server/service/kpi-scope/kpi-scope-mutation.d.ts +9 -0
- package/dist-server/service/kpi-scope/kpi-scope-mutation.js +135 -0
- package/dist-server/service/kpi-scope/kpi-scope-mutation.js.map +1 -0
- package/dist-server/service/kpi-scope/kpi-scope-query.d.ts +11 -0
- package/dist-server/service/kpi-scope/kpi-scope-query.js +89 -0
- package/dist-server/service/kpi-scope/kpi-scope-query.js.map +1 -0
- package/dist-server/service/kpi-scope/kpi-scope-type.d.ts +35 -0
- package/dist-server/service/kpi-scope/kpi-scope-type.js +138 -0
- package/dist-server/service/kpi-scope/kpi-scope-type.js.map +1 -0
- package/dist-server/service/kpi-scope/kpi-scope.d.ts +38 -0
- package/dist-server/service/kpi-scope/kpi-scope.js +144 -0
- package/dist-server/service/kpi-scope/kpi-scope.js.map +1 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-batch.service.d.ts +43 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-batch.service.js +181 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-batch.service.js.map +1 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-calculation.service.d.ts +50 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-calculation.service.js +324 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-calculation.service.js.map +1 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-mutation.d.ts +4 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-mutation.js +76 -0
- package/dist-server/service/kpi-statistic/kpi-statistic-mutation.js.map +1 -1
- package/dist-server/service/kpi-statistic/kpi-statistic-query.d.ts +5 -1
- package/dist-server/service/kpi-statistic/kpi-statistic-query.js +92 -1
- package/dist-server/service/kpi-statistic/kpi-statistic-query.js.map +1 -1
- package/dist-server/service/kpi-statistic/kpi-statistic.d.ts +4 -0
- package/dist-server/service/kpi-statistic/kpi-statistic.js +33 -0
- package/dist-server/service/kpi-statistic/kpi-statistic.js.map +1 -1
- package/dist-server/service/kpi-value/kpi-value-mutation.js +71 -7
- package/dist-server/service/kpi-value/kpi-value-mutation.js.map +1 -1
- package/dist-server/service/kpi-value/kpi-value-type.d.ts +4 -2
- package/dist-server/service/kpi-value/kpi-value-type.js +12 -4
- package/dist-server/service/kpi-value/kpi-value-type.js.map +1 -1
- package/dist-server/service/kpi-value/kpi-value.d.ts +3 -1
- package/dist-server/service/kpi-value/kpi-value.js +11 -5
- package/dist-server/service/kpi-value/kpi-value.js.map +1 -1
- package/dist-server/service/utils/value-date-util.d.ts +1 -0
- package/dist-server/service/utils/value-date-util.js +41 -0
- package/dist-server/service/utils/value-date-util.js.map +1 -1
- package/dist-server/tsconfig.json +10 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -6
- package/server/@types/index.d.ts +11 -0
- package/server/controllers/kpi-metric-value-provider.ts +5 -5
- package/server/controllers/kpi-value-provider.ts +4 -4
- package/server/migrations/1752190849680-seed-kpi-metrics.ts +124 -0
- package/server/migrations/1752190849681-seed-kpi.ts +356 -0
- package/server/migrations/1752192090123-add-grades-to-kpi.ts +67 -0
- package/server/migrations/1752192090124-add-kpi-statistics.ts +719 -0
- package/server/migrations/1752192090128-seed-kpi-org-scope.ts +132 -0
- package/server/migrations/1752192090129-seed-kpi-values.ts +207 -0
- package/server/migrations/grade-data/x11-performance-table.json +962 -0
- package/server/migrations/grade-data/x12-performance-table.json +611 -0
- package/server/migrations/grade-data/x14-performance-table.json +42 -0
- package/server/migrations/grade-data/x21-performance-table.json +889 -0
- package/server/migrations/grade-data/x22-performance-table.json +1064 -0
- package/server/migrations/grade-data/x23-performance-table.json +42 -0
- package/server/migrations/grade-data/x31-performance-table.json +644 -0
- package/server/migrations/grade-data/x32-performance-table.json +993 -0
- package/server/migrations/grade-data/x33-performance-table.json +195 -0
- package/server/migrations/grade-data/x34-performance-table.json +12 -0
- package/server/migrations/grade-data/x35-performance-table.json +42 -0
- package/server/migrations/grade-data/x41-performance-table.json +825 -0
- package/server/migrations/grade-data/x42-performance-table.json +786 -0
- package/server/migrations/grade-data/x43-performance-table.json +12 -0
- package/server/migrations/grade-data/x44-performance-table.json +42 -0
- package/server/migrations/grade-data/x51-performance-table.json +924 -0
- package/server/migrations/grade-data/x52-performance-table.json +42 -0
- package/server/migrations/grade-data/x61-performance-table.json +261 -0
- package/server/migrations/grade-data/x62-performance-table.json +42 -0
- package/server/migrations/seed-data/kpi-metrics-seed.json +454 -0
- package/server/migrations/seed-data/kpi-org-scope-seed.json +1676 -0
- package/server/migrations/seed-data/kpi-scopes-seed.json +121 -0
- package/server/migrations/seed-data/kpi-values-seed.json +402 -0
- package/server/migrations/seed-data/kpis-seed.json +488 -0
- package/server/migrations/seed-data/scope-definitions-seed.json +90 -0
- package/server/service/index.ts +10 -13
- package/server/service/kpi/aggregate-kpi.ts +31 -13
- package/server/service/kpi/kpi-formula.service.ts +101 -0
- package/server/service/kpi/kpi-history.ts +0 -8
- package/server/service/kpi/kpi-mutation.ts +59 -19
- package/server/service/kpi/kpi-query.ts +119 -8
- package/server/service/kpi/kpi-type.ts +10 -4
- package/server/service/kpi/kpi.ts +17 -7
- package/server/service/kpi-metric/aggregate-kpi-metric.ts +55 -11
- package/server/service/kpi-metric-value/kpi-metric-value-mutation.ts +6 -6
- package/server/service/kpi-metric-value/kpi-metric-value-type.ts +4 -4
- package/server/service/kpi-metric-value/kpi-metric-value.ts +3 -3
- package/server/service/kpi-org-scope/index.ts +6 -0
- package/server/service/kpi-org-scope/kpi-org-scope-mutation.ts +173 -0
- package/server/service/kpi-org-scope/kpi-org-scope-query.ts +127 -0
- package/server/service/kpi-org-scope/kpi-org-scope-type.ts +68 -0
- package/server/service/kpi-org-scope/kpi-org-scope.ts +123 -0
- package/server/service/kpi-scope/index.ts +11 -0
- package/server/service/kpi-scope/kpi-scope-mutation.ts +129 -0
- package/server/service/kpi-scope/kpi-scope-query.ts +63 -0
- package/server/service/kpi-scope/kpi-scope-type.ts +96 -0
- package/server/service/kpi-scope/kpi-scope.ts +143 -0
- package/server/service/kpi-statistic/kpi-statistic-batch.service.ts +231 -0
- package/server/service/kpi-statistic/kpi-statistic-calculation.service.ts +410 -0
- package/server/service/kpi-statistic/kpi-statistic-mutation.ts +97 -0
- package/server/service/kpi-statistic/kpi-statistic-query.ts +89 -2
- package/server/service/kpi-statistic/kpi-statistic.ts +32 -0
- package/server/service/kpi-value/kpi-value-mutation.ts +73 -7
- package/server/service/kpi-value/kpi-value-type.ts +10 -4
- package/server/service/kpi-value/kpi-value.ts +10 -5
- package/server/service/utils/value-date-util.ts +47 -0
- package/server/types/global.d.ts +8 -0
- package/things-factory.config.js +1 -0
- package/translations/en.json +15 -3
- package/translations/ja.json +13 -3
- package/translations/ko.json +15 -3
- package/translations/ms.json +13 -3
- package/translations/zh.json +13 -3
- package/client/pages/kpi-category/kpi-category-importer.ts +0 -90
- package/client/pages/kpi-category/kpi-category-list-page.ts +0 -537
- package/client/pages/kpi-category/kpi-category-value-calculator.ts +0 -233
- package/client/pages/kpi-category-value/kpi-category-value-list-page.ts +0 -404
- package/dist-client/pages/kpi-category/kpi-category-importer.d.ts +0 -23
- package/dist-client/pages/kpi-category/kpi-category-importer.js +0 -92
- package/dist-client/pages/kpi-category/kpi-category-importer.js.map +0 -1
- package/dist-client/pages/kpi-category/kpi-category-list-page.d.ts +0 -74
- package/dist-client/pages/kpi-category/kpi-category-list-page.js +0 -517
- package/dist-client/pages/kpi-category/kpi-category-list-page.js.map +0 -1
- package/dist-client/pages/kpi-category/kpi-category-value-calculator.d.ts +0 -13
- package/dist-client/pages/kpi-category/kpi-category-value-calculator.js +0 -256
- package/dist-client/pages/kpi-category/kpi-category-value-calculator.js.map +0 -1
- package/dist-client/pages/kpi-category-value/kpi-category-value-list-page.d.ts +0 -63
- package/dist-client/pages/kpi-category-value/kpi-category-value-list-page.js +0 -393
- package/dist-client/pages/kpi-category-value/kpi-category-value-list-page.js.map +0 -1
- package/dist-server/service/kpi-category/index.d.ts +0 -6
- package/dist-server/service/kpi-category/index.js +0 -10
- package/dist-server/service/kpi-category/index.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category-mutation.d.ts +0 -9
- package/dist-server/service/kpi-category/kpi-category-mutation.js +0 -221
- package/dist-server/service/kpi-category/kpi-category-mutation.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category-query.d.ts +0 -18
- package/dist-server/service/kpi-category/kpi-category-query.js +0 -115
- package/dist-server/service/kpi-category/kpi-category-query.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category-type.d.ts +0 -24
- package/dist-server/service/kpi-category/kpi-category-type.js +0 -100
- package/dist-server/service/kpi-category/kpi-category-type.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category.d.ts +0 -22
- package/dist-server/service/kpi-category/kpi-category.js +0 -106
- package/dist-server/service/kpi-category/kpi-category.js.map +0 -1
- package/dist-server/service/kpi-category-value/index.d.ts +0 -6
- package/dist-server/service/kpi-category-value/index.js +0 -10
- package/dist-server/service/kpi-category-value/index.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value-mutation.d.ts +0 -8
- package/dist-server/service/kpi-category-value/kpi-category-value-mutation.js +0 -102
- package/dist-server/service/kpi-category-value/kpi-category-value-mutation.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value-query.d.ts +0 -13
- package/dist-server/service/kpi-category-value/kpi-category-value-query.js +0 -91
- package/dist-server/service/kpi-category-value/kpi-category-value-query.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value-type.d.ts +0 -19
- package/dist-server/service/kpi-category-value/kpi-category-value-type.js +0 -73
- package/dist-server/service/kpi-category-value/kpi-category-value-type.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value.d.ts +0 -19
- package/dist-server/service/kpi-category-value/kpi-category-value.js +0 -91
- package/dist-server/service/kpi-category-value/kpi-category-value.js.map +0 -1
- package/helps/kpi/kpi-category.md +0 -160
- package/server/service/kpi-category/index.ts +0 -7
- package/server/service/kpi-category/kpi-category-mutation.ts +0 -217
- package/server/service/kpi-category/kpi-category-query.ts +0 -87
- package/server/service/kpi-category/kpi-category-type.ts +0 -73
- package/server/service/kpi-category/kpi-category.ts +0 -95
- package/server/service/kpi-category-value/index.ts +0 -7
- package/server/service/kpi-category-value/kpi-category-value-mutation.ts +0 -88
- package/server/service/kpi-category-value/kpi-category-value-query.ts +0 -62
- package/server/service/kpi-category-value/kpi-category-value-type.ts +0 -48
- package/server/service/kpi-category-value/kpi-category-value.ts +0 -79
|
@@ -0,0 +1,488 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "Z. 전체스코어",
|
|
4
|
+
"description": "전체 스코어",
|
|
5
|
+
"formula": null,
|
|
6
|
+
"active": true,
|
|
7
|
+
"state": "RELEASE",
|
|
8
|
+
"viz_type": null,
|
|
9
|
+
"viz_meta": null,
|
|
10
|
+
"schedule": null,
|
|
11
|
+
"schedule_id": null,
|
|
12
|
+
"timezone": null,
|
|
13
|
+
"grades": null,
|
|
14
|
+
"period_type": "DAY",
|
|
15
|
+
"weight": 1.0,
|
|
16
|
+
"score_formula": null,
|
|
17
|
+
"is_leaf": false,
|
|
18
|
+
"parent_name": null
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Y1. 일정성과",
|
|
22
|
+
"description": "프로젝트 일정 준수 및 일정 이탈 수준 평가",
|
|
23
|
+
"formula": null,
|
|
24
|
+
"active": true,
|
|
25
|
+
"state": "RELEASE",
|
|
26
|
+
"viz_type": null,
|
|
27
|
+
"viz_meta": null,
|
|
28
|
+
"schedule": null,
|
|
29
|
+
"schedule_id": null,
|
|
30
|
+
"timezone": null,
|
|
31
|
+
"grades": null,
|
|
32
|
+
"period_type": "DAY",
|
|
33
|
+
"weight": 1.0,
|
|
34
|
+
"score_formula": null,
|
|
35
|
+
"is_leaf": false,
|
|
36
|
+
"parent_name": "Z. 전체스코어"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Y2. 비용성과",
|
|
40
|
+
"description": "프로젝트 비용 집행 및 비용성과 수준 평가",
|
|
41
|
+
"formula": null,
|
|
42
|
+
"active": true,
|
|
43
|
+
"state": "RELEASE",
|
|
44
|
+
"viz_type": null,
|
|
45
|
+
"viz_meta": null,
|
|
46
|
+
"schedule": null,
|
|
47
|
+
"schedule_id": null,
|
|
48
|
+
"timezone": null,
|
|
49
|
+
"grades": null,
|
|
50
|
+
"period_type": "DAY",
|
|
51
|
+
"weight": 1.0,
|
|
52
|
+
"score_formula": null,
|
|
53
|
+
"is_leaf": false,
|
|
54
|
+
"parent_name": "Z. 전체스코어"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "Y3. 품질성과",
|
|
58
|
+
"description": "품질 불합격률, 품질성과 수준 등 품질 관련 성과 측정",
|
|
59
|
+
"formula": null,
|
|
60
|
+
"active": true,
|
|
61
|
+
"state": "RELEASE",
|
|
62
|
+
"viz_type": null,
|
|
63
|
+
"viz_meta": null,
|
|
64
|
+
"schedule": null,
|
|
65
|
+
"schedule_id": null,
|
|
66
|
+
"timezone": null,
|
|
67
|
+
"grades": null,
|
|
68
|
+
"period_type": "DAY",
|
|
69
|
+
"weight": 1.0,
|
|
70
|
+
"score_formula": null,
|
|
71
|
+
"is_leaf": false,
|
|
72
|
+
"parent_name": "Z. 전체스코어"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "Y4. 안전성과",
|
|
76
|
+
"description": "재해율, SL-PA 등 안전 관련 성과 평가",
|
|
77
|
+
"formula": null,
|
|
78
|
+
"active": true,
|
|
79
|
+
"state": "RELEASE",
|
|
80
|
+
"viz_type": null,
|
|
81
|
+
"viz_meta": null,
|
|
82
|
+
"schedule": null,
|
|
83
|
+
"schedule_id": null,
|
|
84
|
+
"timezone": null,
|
|
85
|
+
"grades": null,
|
|
86
|
+
"period_type": "DAY",
|
|
87
|
+
"weight": 1.0,
|
|
88
|
+
"score_formula": null,
|
|
89
|
+
"is_leaf": false,
|
|
90
|
+
"parent_name": "Z. 전체스코어"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "Y5. 환경성과",
|
|
94
|
+
"description": "건설폐기물 등 환경 관련 성과 평가",
|
|
95
|
+
"formula": null,
|
|
96
|
+
"active": true,
|
|
97
|
+
"state": "RELEASE",
|
|
98
|
+
"viz_type": null,
|
|
99
|
+
"viz_meta": null,
|
|
100
|
+
"schedule": null,
|
|
101
|
+
"schedule_id": null,
|
|
102
|
+
"timezone": null,
|
|
103
|
+
"grades": null,
|
|
104
|
+
"period_type": "DAY",
|
|
105
|
+
"weight": 1.0,
|
|
106
|
+
"score_formula": null,
|
|
107
|
+
"is_leaf": false,
|
|
108
|
+
"parent_name": "Z. 전체스코어"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "Y6. 생산성성과",
|
|
112
|
+
"description": "투입인력 생산성 등 생산성 관련 성과 평가",
|
|
113
|
+
"formula": null,
|
|
114
|
+
"active": true,
|
|
115
|
+
"state": "RELEASE",
|
|
116
|
+
"viz_type": null,
|
|
117
|
+
"viz_meta": null,
|
|
118
|
+
"schedule": null,
|
|
119
|
+
"schedule_id": null,
|
|
120
|
+
"timezone": null,
|
|
121
|
+
"grades": null,
|
|
122
|
+
"period_type": "DAY",
|
|
123
|
+
"weight": 1.0,
|
|
124
|
+
"score_formula": null,
|
|
125
|
+
"is_leaf": false,
|
|
126
|
+
"parent_name": "Z. 전체스코어"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "X11. 연면적 대비 공사기간",
|
|
130
|
+
"description": "연면적 대비 공사기간 평가",
|
|
131
|
+
"formula": "[실제공사기간] / [연면적]",
|
|
132
|
+
"active": true,
|
|
133
|
+
"state": "DRAFT",
|
|
134
|
+
"viz_type": null,
|
|
135
|
+
"viz_meta": null,
|
|
136
|
+
"schedule": null,
|
|
137
|
+
"schedule_id": null,
|
|
138
|
+
"timezone": null,
|
|
139
|
+
"grades": null,
|
|
140
|
+
"period_type": "DAY",
|
|
141
|
+
"weight": 1.0,
|
|
142
|
+
"score_formula": null,
|
|
143
|
+
"is_leaf": true,
|
|
144
|
+
"parent_name": "Y1. 일정성과"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "X12. 설계변경에 따른 공기 증감률",
|
|
148
|
+
"description": "설계변경에 따른 공기 증감률 평가",
|
|
149
|
+
"formula": "([실제공사기간] - [계획공사기간]) / [계획공사기간]",
|
|
150
|
+
"active": true,
|
|
151
|
+
"state": "DRAFT",
|
|
152
|
+
"viz_type": null,
|
|
153
|
+
"viz_meta": null,
|
|
154
|
+
"schedule": null,
|
|
155
|
+
"schedule_id": null,
|
|
156
|
+
"timezone": null,
|
|
157
|
+
"grades": "[{\"name\":\"1\",\"minValue\":0,\"maxValue\":5,\"score\":1,\"description\":\"샘플값\"}]",
|
|
158
|
+
"period_type": "DAY",
|
|
159
|
+
"weight": 1.0,
|
|
160
|
+
"score_formula": null,
|
|
161
|
+
"is_leaf": true,
|
|
162
|
+
"parent_name": "Y1. 일정성과"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "X13. 일정 이탈 수준",
|
|
166
|
+
"description": "프로젝트 일정 이탈 수준 평가",
|
|
167
|
+
"formula": "[일정 이탈 수준]",
|
|
168
|
+
"active": true,
|
|
169
|
+
"state": "DRAFT",
|
|
170
|
+
"viz_type": null,
|
|
171
|
+
"viz_meta": null,
|
|
172
|
+
"schedule": null,
|
|
173
|
+
"schedule_id": null,
|
|
174
|
+
"timezone": null,
|
|
175
|
+
"grades": null,
|
|
176
|
+
"period_type": "DAY",
|
|
177
|
+
"weight": 1.0,
|
|
178
|
+
"score_formula": null,
|
|
179
|
+
"is_leaf": true,
|
|
180
|
+
"parent_name": "Y1. 일정성과"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "X14. 일정성과 수준 평가",
|
|
184
|
+
"description": "일정성과 종합 평가",
|
|
185
|
+
"formula": "[일정성과 수준 평가]",
|
|
186
|
+
"active": true,
|
|
187
|
+
"state": "DRAFT",
|
|
188
|
+
"viz_type": null,
|
|
189
|
+
"viz_meta": null,
|
|
190
|
+
"schedule": null,
|
|
191
|
+
"schedule_id": null,
|
|
192
|
+
"timezone": null,
|
|
193
|
+
"grades": null,
|
|
194
|
+
"period_type": "DAY",
|
|
195
|
+
"weight": 1.0,
|
|
196
|
+
"score_formula": null,
|
|
197
|
+
"is_leaf": true,
|
|
198
|
+
"parent_name": "Y1. 일정성과"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "X21. 연면적 대비 공사비",
|
|
202
|
+
"description": "연면적 대비 공사비 평가",
|
|
203
|
+
"formula": "[실제공사비] / [연면적]",
|
|
204
|
+
"active": true,
|
|
205
|
+
"state": "DRAFT",
|
|
206
|
+
"viz_type": null,
|
|
207
|
+
"viz_meta": null,
|
|
208
|
+
"schedule": null,
|
|
209
|
+
"schedule_id": null,
|
|
210
|
+
"timezone": null,
|
|
211
|
+
"grades": null,
|
|
212
|
+
"period_type": "DAY",
|
|
213
|
+
"weight": 1.0,
|
|
214
|
+
"score_formula": null,
|
|
215
|
+
"is_leaf": true,
|
|
216
|
+
"parent_name": "Y2. 비용성과"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"name": "X22. 설계변경에 따른 공사비 증감률",
|
|
220
|
+
"description": "설계변경에 따른 공사비 증감률 평가",
|
|
221
|
+
"formula": "([실제공사비]-[계획공사비]) / [계획공사비]",
|
|
222
|
+
"active": true,
|
|
223
|
+
"state": "DRAFT",
|
|
224
|
+
"viz_type": null,
|
|
225
|
+
"viz_meta": null,
|
|
226
|
+
"schedule": null,
|
|
227
|
+
"schedule_id": null,
|
|
228
|
+
"timezone": null,
|
|
229
|
+
"grades": null,
|
|
230
|
+
"period_type": "DAY",
|
|
231
|
+
"weight": 1.0,
|
|
232
|
+
"score_formula": null,
|
|
233
|
+
"is_leaf": true,
|
|
234
|
+
"parent_name": "Y2. 비용성과"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "X23. 비용성과 수준 평가",
|
|
238
|
+
"description": "비용성과 종합 평가",
|
|
239
|
+
"formula": "[비용성과 수준 평가]",
|
|
240
|
+
"active": true,
|
|
241
|
+
"state": "DRAFT",
|
|
242
|
+
"viz_type": null,
|
|
243
|
+
"viz_meta": null,
|
|
244
|
+
"schedule": null,
|
|
245
|
+
"schedule_id": null,
|
|
246
|
+
"timezone": null,
|
|
247
|
+
"grades": null,
|
|
248
|
+
"period_type": "DAY",
|
|
249
|
+
"weight": 1.0,
|
|
250
|
+
"score_formula": null,
|
|
251
|
+
"is_leaf": true,
|
|
252
|
+
"parent_name": "Y2. 비용성과"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "X31. 품질시험 불합격률",
|
|
256
|
+
"description": "품질시험 불합격률 평가",
|
|
257
|
+
"formula": "[품질시험 불합격 건수] / [연면적]",
|
|
258
|
+
"active": true,
|
|
259
|
+
"state": "DRAFT",
|
|
260
|
+
"viz_type": null,
|
|
261
|
+
"viz_meta": null,
|
|
262
|
+
"schedule": null,
|
|
263
|
+
"schedule_id": null,
|
|
264
|
+
"timezone": null,
|
|
265
|
+
"grades": null,
|
|
266
|
+
"period_type": "DAY",
|
|
267
|
+
"weight": 1.0,
|
|
268
|
+
"score_formula": null,
|
|
269
|
+
"is_leaf": true,
|
|
270
|
+
"parent_name": "Y3. 품질성과"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "X32. 검수자재 불합격률",
|
|
274
|
+
"description": "검수자재 불합격률 평가",
|
|
275
|
+
"formula": "[검수자재 불합격 건수] / [연면적]",
|
|
276
|
+
"active": true,
|
|
277
|
+
"state": "DRAFT",
|
|
278
|
+
"viz_type": null,
|
|
279
|
+
"viz_meta": null,
|
|
280
|
+
"schedule": null,
|
|
281
|
+
"schedule_id": null,
|
|
282
|
+
"timezone": null,
|
|
283
|
+
"grades": null,
|
|
284
|
+
"period_type": "DAY",
|
|
285
|
+
"weight": 1.0,
|
|
286
|
+
"score_formula": "POW([value], 1)",
|
|
287
|
+
"is_leaf": true,
|
|
288
|
+
"parent_name": "Y3. 품질성과"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"name": "X33. 검측 불합격률",
|
|
292
|
+
"description": "검측 불합격률 평가",
|
|
293
|
+
"formula": "[품질검측 불합격 건수] / [연면적]",
|
|
294
|
+
"active": true,
|
|
295
|
+
"state": "DRAFT",
|
|
296
|
+
"viz_type": null,
|
|
297
|
+
"viz_meta": null,
|
|
298
|
+
"schedule": null,
|
|
299
|
+
"schedule_id": null,
|
|
300
|
+
"timezone": null,
|
|
301
|
+
"grades": null,
|
|
302
|
+
"period_type": "DAY",
|
|
303
|
+
"weight": 1.0,
|
|
304
|
+
"score_formula": null,
|
|
305
|
+
"is_leaf": true,
|
|
306
|
+
"parent_name": "Y3. 품질성과"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "X34. 품질 SL-PA 결과값",
|
|
310
|
+
"description": "품질 SL-PA 결과",
|
|
311
|
+
"formula": "[SL-PA 품질평가]",
|
|
312
|
+
"active": true,
|
|
313
|
+
"state": "DRAFT",
|
|
314
|
+
"viz_type": null,
|
|
315
|
+
"viz_meta": null,
|
|
316
|
+
"schedule": null,
|
|
317
|
+
"schedule_id": null,
|
|
318
|
+
"timezone": null,
|
|
319
|
+
"grades": null,
|
|
320
|
+
"period_type": "DAY",
|
|
321
|
+
"weight": 1.0,
|
|
322
|
+
"score_formula": "[value]",
|
|
323
|
+
"is_leaf": true,
|
|
324
|
+
"parent_name": "Y3. 품질성과"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "X35. 품질성과 수준 평가",
|
|
328
|
+
"description": "품질성과 종합 평가",
|
|
329
|
+
"formula": "[품질성과 수준 평가]",
|
|
330
|
+
"active": true,
|
|
331
|
+
"state": "DRAFT",
|
|
332
|
+
"viz_type": null,
|
|
333
|
+
"viz_meta": null,
|
|
334
|
+
"schedule": null,
|
|
335
|
+
"schedule_id": null,
|
|
336
|
+
"timezone": null,
|
|
337
|
+
"grades": null,
|
|
338
|
+
"period_type": "DAY",
|
|
339
|
+
"weight": 1.0,
|
|
340
|
+
"score_formula": "INTEGRATE([value], 1, 2, 3)",
|
|
341
|
+
"is_leaf": true,
|
|
342
|
+
"parent_name": "Y3. 품질성과"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "X41. 재해율",
|
|
346
|
+
"description": "재해율 평가",
|
|
347
|
+
"formula": "[재해 건수] / [연간 근로자 수] * 100",
|
|
348
|
+
"active": true,
|
|
349
|
+
"state": "DRAFT",
|
|
350
|
+
"viz_type": null,
|
|
351
|
+
"viz_meta": null,
|
|
352
|
+
"schedule": null,
|
|
353
|
+
"schedule_id": null,
|
|
354
|
+
"timezone": null,
|
|
355
|
+
"grades": null,
|
|
356
|
+
"period_type": "DAY",
|
|
357
|
+
"weight": 1.0,
|
|
358
|
+
"score_formula": null,
|
|
359
|
+
"is_leaf": true,
|
|
360
|
+
"parent_name": "Y4. 안전성과"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "X42. 재해강도율",
|
|
364
|
+
"description": "재해강도율 평가",
|
|
365
|
+
"formula": "[노동손실일수] / ( [총 근로자수] * [1인당 연간 근로 시간] ) * 1000",
|
|
366
|
+
"active": true,
|
|
367
|
+
"state": "DRAFT",
|
|
368
|
+
"viz_type": null,
|
|
369
|
+
"viz_meta": null,
|
|
370
|
+
"schedule": null,
|
|
371
|
+
"schedule_id": null,
|
|
372
|
+
"timezone": null,
|
|
373
|
+
"grades": null,
|
|
374
|
+
"period_type": "DAY",
|
|
375
|
+
"weight": 1.0,
|
|
376
|
+
"score_formula": null,
|
|
377
|
+
"is_leaf": true,
|
|
378
|
+
"parent_name": "Y4. 안전성과"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "X43. 안전 SL-PA 결과값",
|
|
382
|
+
"description": "안전 SL-PA 결과",
|
|
383
|
+
"formula": "[SL-PA 안전 평가]",
|
|
384
|
+
"active": true,
|
|
385
|
+
"state": "DRAFT",
|
|
386
|
+
"viz_type": null,
|
|
387
|
+
"viz_meta": null,
|
|
388
|
+
"schedule": null,
|
|
389
|
+
"schedule_id": null,
|
|
390
|
+
"timezone": null,
|
|
391
|
+
"grades": null,
|
|
392
|
+
"period_type": "DAY",
|
|
393
|
+
"weight": 1.0,
|
|
394
|
+
"score_formula": null,
|
|
395
|
+
"is_leaf": true,
|
|
396
|
+
"parent_name": "Y4. 안전성과"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "X44. 안전성과 수준 평가",
|
|
400
|
+
"description": "안전성과 종합 평가",
|
|
401
|
+
"formula": "[안전성과 수준 평가]",
|
|
402
|
+
"active": true,
|
|
403
|
+
"state": "DRAFT",
|
|
404
|
+
"viz_type": null,
|
|
405
|
+
"viz_meta": null,
|
|
406
|
+
"schedule": null,
|
|
407
|
+
"schedule_id": null,
|
|
408
|
+
"timezone": null,
|
|
409
|
+
"grades": null,
|
|
410
|
+
"period_type": "DAY",
|
|
411
|
+
"weight": 1.0,
|
|
412
|
+
"score_formula": null,
|
|
413
|
+
"is_leaf": true,
|
|
414
|
+
"parent_name": "Y4. 안전성과"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "X51. 건설폐기물 발생량",
|
|
418
|
+
"description": "건설폐기물 발생량 평가",
|
|
419
|
+
"formula": "[총 건설 폐기물 발생량] / [연면적]",
|
|
420
|
+
"active": true,
|
|
421
|
+
"state": "DRAFT",
|
|
422
|
+
"viz_type": null,
|
|
423
|
+
"viz_meta": null,
|
|
424
|
+
"schedule": null,
|
|
425
|
+
"schedule_id": null,
|
|
426
|
+
"timezone": null,
|
|
427
|
+
"grades": null,
|
|
428
|
+
"period_type": "DAY",
|
|
429
|
+
"weight": 1.0,
|
|
430
|
+
"score_formula": null,
|
|
431
|
+
"is_leaf": true,
|
|
432
|
+
"parent_name": "Y5. 환경성과"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "X52. 환경성과 수준 평가",
|
|
436
|
+
"description": "환경성과 종합 평가",
|
|
437
|
+
"formula": "[환경성과 수준 평가]",
|
|
438
|
+
"active": true,
|
|
439
|
+
"state": "DRAFT",
|
|
440
|
+
"viz_type": null,
|
|
441
|
+
"viz_meta": null,
|
|
442
|
+
"schedule": null,
|
|
443
|
+
"schedule_id": null,
|
|
444
|
+
"timezone": null,
|
|
445
|
+
"grades": null,
|
|
446
|
+
"period_type": "DAY",
|
|
447
|
+
"weight": 1.0,
|
|
448
|
+
"score_formula": null,
|
|
449
|
+
"is_leaf": true,
|
|
450
|
+
"parent_name": "Y5. 환경성과"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "X61. 투입인력 생산성",
|
|
454
|
+
"description": "투입인력 생산성 평가",
|
|
455
|
+
"formula": "[투입인력] / [연면적]",
|
|
456
|
+
"active": true,
|
|
457
|
+
"state": "DRAFT",
|
|
458
|
+
"viz_type": null,
|
|
459
|
+
"viz_meta": null,
|
|
460
|
+
"schedule": null,
|
|
461
|
+
"schedule_id": null,
|
|
462
|
+
"timezone": null,
|
|
463
|
+
"grades": null,
|
|
464
|
+
"period_type": "DAY",
|
|
465
|
+
"weight": 1.0,
|
|
466
|
+
"score_formula": null,
|
|
467
|
+
"is_leaf": true,
|
|
468
|
+
"parent_name": "Y6. 생산성성과"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"name": "X62. 생산성성과 수준 평가",
|
|
472
|
+
"description": "생산성과 종합 평가",
|
|
473
|
+
"formula": "[생산성성과 수준 평가]",
|
|
474
|
+
"active": true,
|
|
475
|
+
"state": "DRAFT",
|
|
476
|
+
"viz_type": null,
|
|
477
|
+
"viz_meta": null,
|
|
478
|
+
"schedule": null,
|
|
479
|
+
"schedule_id": null,
|
|
480
|
+
"timezone": null,
|
|
481
|
+
"grades": null,
|
|
482
|
+
"period_type": "DAY",
|
|
483
|
+
"weight": 1.0,
|
|
484
|
+
"score_formula": null,
|
|
485
|
+
"is_leaf": true,
|
|
486
|
+
"parent_name": "Y6. 생산성성과"
|
|
487
|
+
}
|
|
488
|
+
]
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"scopeLevel": 1,
|
|
4
|
+
"name": "프로젝트명",
|
|
5
|
+
"description": "개별 건설 프로젝트나 현장의 고유 식별명",
|
|
6
|
+
"scopeType": "BUSINESS",
|
|
7
|
+
"displayOrder": 1,
|
|
8
|
+
"active": true,
|
|
9
|
+
"includeInStatistics": false,
|
|
10
|
+
"showInDashboard": false,
|
|
11
|
+
"metadata": {
|
|
12
|
+
"icon": "construction",
|
|
13
|
+
"color": "#1976d2"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"scopeLevel": 2,
|
|
18
|
+
"name": "지역",
|
|
19
|
+
"description": "시도 단위 행정구역 (서울특별시, 부산광역시, 경기도 등)",
|
|
20
|
+
"scopeType": "GEOGRAPHIC",
|
|
21
|
+
"displayOrder": 2,
|
|
22
|
+
"active": true,
|
|
23
|
+
"includeInStatistics": true,
|
|
24
|
+
"showInDashboard": true,
|
|
25
|
+
"validValues": [
|
|
26
|
+
"서울특별시", "부산광역시", "대구광역시", "인천광역시",
|
|
27
|
+
"광주광역시", "대전광역시", "울산광역시", "세종특별자치시",
|
|
28
|
+
"경기도", "강원도", "충청북도", "충청남도",
|
|
29
|
+
"전라북도", "전라남도", "경상북도", "경상남도", "제주특별자치도"
|
|
30
|
+
],
|
|
31
|
+
"metadata": {
|
|
32
|
+
"icon": "location_on",
|
|
33
|
+
"color": "#388e3c",
|
|
34
|
+
"mapVisualization": true
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"scopeLevel": 3,
|
|
39
|
+
"name": "건설회사",
|
|
40
|
+
"description": "주요 건설회사 또는 시공사",
|
|
41
|
+
"scopeType": "ORGANIZATIONAL",
|
|
42
|
+
"displayOrder": 3,
|
|
43
|
+
"active": true,
|
|
44
|
+
"includeInStatistics": true,
|
|
45
|
+
"showInDashboard": true,
|
|
46
|
+
"validValues": [
|
|
47
|
+
"현대건설", "삼성물산", "GS건설", "대우건설", "롯데건설",
|
|
48
|
+
"대림산업", "포스코건설", "HDC현대산업개발", "호반건설", "태영건설",
|
|
49
|
+
"한화건설", "코오롱글로벌", "제일건설", "남광토건", "한국토지주택공사"
|
|
50
|
+
],
|
|
51
|
+
"metadata": {
|
|
52
|
+
"icon": "business",
|
|
53
|
+
"color": "#f57c00"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"scopeLevel": 4,
|
|
58
|
+
"name": "프로젝트규모",
|
|
59
|
+
"description": "프로젝트의 규모나 등급 분류",
|
|
60
|
+
"scopeType": "BUSINESS",
|
|
61
|
+
"displayOrder": 4,
|
|
62
|
+
"active": true,
|
|
63
|
+
"includeInStatistics": true,
|
|
64
|
+
"showInDashboard": false,
|
|
65
|
+
"validValues": ["대규모", "중규모", "소규모", "특대형", "일반형"],
|
|
66
|
+
"metadata": {
|
|
67
|
+
"icon": "bar_chart",
|
|
68
|
+
"color": "#7b1fa2"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"scopeLevel": 5,
|
|
73
|
+
"name": "공종",
|
|
74
|
+
"description": "건설 공사의 종류나 기술 분야",
|
|
75
|
+
"scopeType": "TECHNICAL",
|
|
76
|
+
"displayOrder": 5,
|
|
77
|
+
"active": true,
|
|
78
|
+
"includeInStatistics": true,
|
|
79
|
+
"showInDashboard": false,
|
|
80
|
+
"validValues": [
|
|
81
|
+
"토목공사", "건축공사", "플랜트공사", "주택공사",
|
|
82
|
+
"도로공사", "철도공사", "항만공사", "상하수도공사",
|
|
83
|
+
"전기공사", "통신공사", "조경공사", "소방공사"
|
|
84
|
+
],
|
|
85
|
+
"metadata": {
|
|
86
|
+
"icon": "engineering",
|
|
87
|
+
"color": "#d32f2f"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
]
|
package/server/service/index.ts
CHANGED
|
@@ -2,17 +2,14 @@
|
|
|
2
2
|
export * from './kpi-statistic/kpi-statistic'
|
|
3
3
|
export * from './kpi/kpi'
|
|
4
4
|
export * from './kpi/kpi-type'
|
|
5
|
-
export * from './kpi-category/kpi-category'
|
|
6
|
-
export * from './kpi-category/kpi-category-type'
|
|
7
|
-
export * from './kpi-category-value/kpi-category-value'
|
|
8
|
-
export * from './kpi-category-value/kpi-category-value-type'
|
|
9
5
|
export * from './kpi-value/kpi-value'
|
|
10
6
|
export * from './kpi-value/kpi-value-type'
|
|
11
7
|
export * from './kpi-metric/kpi-metric'
|
|
12
8
|
export * from './kpi-metric/kpi-metric-type'
|
|
13
9
|
export * from './kpi-metric-value/kpi-metric-value'
|
|
14
10
|
export * from './kpi-metric-value/kpi-metric-value-type'
|
|
15
|
-
export * from './kpi-
|
|
11
|
+
export * from './kpi-scope/kpi-scope'
|
|
12
|
+
export * from './kpi-org-scope/kpi-org-scope'
|
|
16
13
|
|
|
17
14
|
/* IMPORT ENTITIES AND RESOLVERS */
|
|
18
15
|
import {
|
|
@@ -21,22 +18,22 @@ import {
|
|
|
21
18
|
subscribers as KpiStatisticSubscribers
|
|
22
19
|
} from './kpi-statistic'
|
|
23
20
|
import { entities as KpiEntities, resolvers as KpiResolvers } from './kpi'
|
|
24
|
-
import { entities as KpiCategoryEntities, resolvers as KpiCategoryResolvers } from './kpi-category'
|
|
25
|
-
import { entities as KpiCategoryValueEntities, resolvers as KpiCategoryValueResolvers } from './kpi-category-value'
|
|
26
21
|
import { entities as KpiValueEntities, resolvers as KpiValueResolvers } from './kpi-value'
|
|
27
22
|
import { entities as KpiMetricEntities, resolvers as KpiMetricResolvers } from './kpi-metric'
|
|
28
23
|
import { entities as KpiMetricValueEntities, resolvers as KpiMetricValueResolvers } from './kpi-metric-value'
|
|
24
|
+
import { entities as KpiOrgScopeEntities, resolvers as KpiOrgScopeResolvers } from './kpi-org-scope'
|
|
29
25
|
import { resolvers as KpiAlertResolvers } from './kpi-alert'
|
|
26
|
+
import { entities as KpiScopeEntities, resolvers as KpiScopeResolvers } from './kpi-scope'
|
|
30
27
|
|
|
31
28
|
export const entities = [
|
|
32
29
|
/* ENTITIES */
|
|
33
30
|
...KpiStatisticEntities,
|
|
34
31
|
...KpiEntities,
|
|
35
|
-
...KpiCategoryEntities,
|
|
36
|
-
...KpiCategoryValueEntities,
|
|
37
32
|
...KpiValueEntities,
|
|
38
33
|
...KpiMetricEntities,
|
|
39
|
-
...KpiMetricValueEntities
|
|
34
|
+
...KpiMetricValueEntities,
|
|
35
|
+
...KpiOrgScopeEntities,
|
|
36
|
+
...KpiScopeEntities
|
|
40
37
|
]
|
|
41
38
|
|
|
42
39
|
export const schema = {
|
|
@@ -44,11 +41,11 @@ export const schema = {
|
|
|
44
41
|
/* RESOLVER CLASSES */
|
|
45
42
|
...KpiStatisticResolvers,
|
|
46
43
|
...KpiResolvers,
|
|
47
|
-
...KpiCategoryResolvers,
|
|
48
|
-
...KpiCategoryValueResolvers,
|
|
49
44
|
...KpiValueResolvers,
|
|
50
45
|
...KpiMetricResolvers,
|
|
51
46
|
...KpiMetricValueResolvers,
|
|
52
|
-
...
|
|
47
|
+
...KpiOrgScopeResolvers,
|
|
48
|
+
...KpiAlertResolvers,
|
|
49
|
+
...KpiScopeResolvers
|
|
53
50
|
]
|
|
54
51
|
}
|