@dssp/project 0.0.24 → 0.0.26
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/client/pages/lib/select2-component.ts +159 -0
- package/client/pages/project/project-list.ts +8 -0
- package/client/pages/project/project-update.ts +114 -14
- package/dist-client/pages/lib/select2-component.d.ts +23 -0
- package/dist-client/pages/lib/select2-component.js +165 -0
- package/dist-client/pages/lib/select2-component.js.map +1 -0
- package/dist-client/pages/project/project-list.d.ts +8 -0
- package/dist-client/pages/project/project-list.js +4 -0
- package/dist-client/pages/project/project-list.js.map +1 -1
- package/dist-client/pages/project/project-update.d.ts +20 -0
- package/dist-client/pages/project/project-update.js +142 -24
- package/dist-client/pages/project/project-update.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/migrations/1723861466414-seed-codes.js +26 -8
- package/dist-server/migrations/1723861466414-seed-codes.js.map +1 -1
- package/dist-server/service/index.d.ts +2 -2
- package/dist-server/service/project/project-type.js +1 -4
- package/dist-server/service/project/project-type.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/server/migrations/1723861466414-seed-codes.ts +26 -8
- package/server/service/project/project-type.ts +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/project",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.26",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@dssp/building-complex": "^0.0.
|
|
30
|
+
"@dssp/building-complex": "^0.0.26",
|
|
31
31
|
"@operato/graphql": "^8.0.0-alpha",
|
|
32
32
|
"@operato/shell": "^8.0.0-alpha",
|
|
33
33
|
"@things-factory/auth-base": "^8.0.0-alpha",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"@things-factory/shell": "^8.0.0-alpha",
|
|
39
39
|
"exceljs": "^4.4.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "240bdb67cf79bb5d922fc082db3d84f6e3cc488c"
|
|
42
42
|
}
|
|
@@ -53,28 +53,46 @@ const SEED_COMMON_CODES = [
|
|
|
53
53
|
description: '직책',
|
|
54
54
|
details: [
|
|
55
55
|
{
|
|
56
|
-
name: '
|
|
57
|
-
description: '
|
|
56
|
+
name: 'ADMIN',
|
|
57
|
+
description: '관리자',
|
|
58
58
|
labels: null,
|
|
59
59
|
rank: 1
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
|
-
name: '
|
|
63
|
-
description: '
|
|
62
|
+
name: 'OVERALL_SUPERVISORY',
|
|
63
|
+
description: '총괄 감리 책임자',
|
|
64
64
|
labels: null,
|
|
65
65
|
rank: 2
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
|
-
name: '
|
|
69
|
-
description: '
|
|
68
|
+
name: 'TASK_SUPERVISORY',
|
|
69
|
+
description: '공종별 감리 책임자',
|
|
70
70
|
labels: null,
|
|
71
71
|
rank: 3
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
name: '
|
|
75
|
-
description: '
|
|
74
|
+
name: 'OVERALL_CONSTRUCTOR',
|
|
75
|
+
description: '총괄 시공 책임자',
|
|
76
76
|
labels: null,
|
|
77
77
|
rank: 4
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: 'TASK_CONSTRUCTOR',
|
|
81
|
+
description: '공종별 시공 관리자',
|
|
82
|
+
labels: null,
|
|
83
|
+
rank: 5
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
name: 'DESIGNER',
|
|
87
|
+
description: '설계사',
|
|
88
|
+
labels: null,
|
|
89
|
+
rank: 6
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
name: 'CONSTRUCTOR',
|
|
93
|
+
description: '시공자',
|
|
94
|
+
labels: null,
|
|
95
|
+
rank: 7
|
|
78
96
|
}
|
|
79
97
|
]
|
|
80
98
|
}
|