@dssp/supervision 0.0.8 → 0.0.10
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/building-inspection/building-inspection-detail-checklist.ts +186 -0
- package/client/pages/building-inspection/building-inspection-detail-drawing.ts +160 -0
- package/client/pages/building-inspection/building-inspection-list.ts +430 -0
- package/client/pages/building-inspection/component/building-inspection-detail-header.ts +94 -0
- package/client/pages/building-inspection/inspection-create-popup.ts +696 -0
- package/client/pages/checklist/checklist-view.ts +443 -0
- package/client/pages/checklist-template/checklist-template-item.ts +240 -0
- package/client/pages/checklist-template/checklist-template-list.ts +271 -0
- package/client/pages/checklist-template/checklist-type-management.ts +242 -0
- package/client/route.ts +14 -18
- package/dist-client/pages/building-inspection/building-inspection-detail-checklist.d.ts +21 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-checklist.js +187 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-checklist.js.map +1 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-drawing.d.ts +21 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-drawing.js +169 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-drawing.js.map +1 -0
- package/dist-client/pages/building-inspection/building-inspection-list.d.ts +67 -0
- package/dist-client/pages/building-inspection/building-inspection-list.js +434 -0
- package/dist-client/pages/building-inspection/building-inspection-list.js.map +1 -0
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.d.ts +1 -0
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.js +118 -0
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.js.map +1 -0
- package/dist-client/pages/building-inspection/inspection-create-popup.d.ts +3 -0
- package/dist-client/pages/building-inspection/inspection-create-popup.js +735 -0
- package/dist-client/pages/building-inspection/inspection-create-popup.js.map +1 -0
- package/dist-client/pages/checklist/checklist-view.d.ts +6 -0
- package/dist-client/pages/checklist/checklist-view.js +434 -0
- package/dist-client/pages/checklist/checklist-view.js.map +1 -0
- package/dist-client/pages/checklist-template/checklist-template-item.d.ts +2 -0
- package/dist-client/pages/checklist-template/checklist-template-item.js +237 -0
- package/dist-client/pages/checklist-template/checklist-template-item.js.map +1 -0
- package/dist-client/pages/{check-item/check-item-list-page.d.ts → checklist-template/checklist-template-list.d.ts} +8 -27
- package/dist-client/pages/checklist-template/checklist-template-list.js +259 -0
- package/dist-client/pages/checklist-template/checklist-template-list.js.map +1 -0
- package/dist-client/pages/checklist-template/checklist-type-management.d.ts +48 -0
- package/dist-client/pages/checklist-template/checklist-type-management.js +229 -0
- package/dist-client/pages/checklist-template/checklist-type-management.js.map +1 -0
- package/dist-client/route.d.ts +1 -1
- package/dist-client/route.js +10 -13
- package/dist-client/route.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/index.d.ts +1 -1
- package/dist-server/index.js +1 -1
- package/dist-server/index.js.map +1 -1
- package/dist-server/service/building-inspection/building-inspection-history.d.ts +17 -0
- package/dist-server/service/building-inspection/building-inspection-history.js +85 -0
- package/dist-server/service/building-inspection/building-inspection-history.js.map +1 -0
- package/dist-server/service/building-inspection/building-inspection-mutation.d.ts +8 -0
- package/dist-server/service/building-inspection/building-inspection-mutation.js +148 -0
- package/dist-server/service/building-inspection/building-inspection-mutation.js.map +1 -0
- package/dist-server/service/building-inspection/building-inspection-query.d.ts +20 -0
- package/dist-server/service/building-inspection/building-inspection-query.js +235 -0
- package/dist-server/service/building-inspection/building-inspection-query.js.map +1 -0
- package/dist-server/service/building-inspection/building-inspection-type.d.ts +43 -0
- package/dist-server/service/building-inspection/building-inspection-type.js +153 -0
- package/dist-server/service/building-inspection/building-inspection-type.js.map +1 -0
- package/dist-server/service/building-inspection/building-inspection.d.ts +26 -0
- package/dist-server/service/building-inspection/building-inspection.js +113 -0
- package/dist-server/service/building-inspection/building-inspection.js.map +1 -0
- package/dist-server/service/building-inspection/event-subscriber.d.ts +7 -0
- package/dist-server/service/building-inspection/event-subscriber.js +21 -0
- package/dist-server/service/building-inspection/event-subscriber.js.map +1 -0
- package/dist-server/service/building-inspection/index.d.ts +10 -0
- package/dist-server/service/building-inspection/index.js +14 -0
- package/dist-server/service/building-inspection/index.js.map +1 -0
- package/dist-server/service/checklist/checklist-history.d.ts +24 -0
- package/dist-server/service/checklist/checklist-history.js +120 -0
- package/dist-server/service/checklist/checklist-history.js.map +1 -0
- package/dist-server/service/checklist/checklist-mutation.d.ts +8 -0
- package/dist-server/service/checklist/checklist-mutation.js +96 -0
- package/dist-server/service/checklist/checklist-mutation.js.map +1 -0
- package/dist-server/service/checklist/checklist-query.d.ts +12 -0
- package/dist-server/service/checklist/checklist-query.js +83 -0
- package/dist-server/service/checklist/checklist-query.js.map +1 -0
- package/dist-server/service/checklist/checklist-type.d.ts +18 -0
- package/dist-server/service/checklist/checklist-type.js +69 -0
- package/dist-server/service/checklist/checklist-type.js.map +1 -0
- package/dist-server/service/checklist/checklist.d.ts +31 -0
- package/dist-server/service/checklist/checklist.js +143 -0
- package/dist-server/service/checklist/checklist.js.map +1 -0
- package/dist-server/service/checklist/event-subscriber.d.ts +7 -0
- package/dist-server/service/checklist/event-subscriber.js +21 -0
- package/dist-server/service/checklist/event-subscriber.js.map +1 -0
- package/dist-server/service/checklist/index.d.ts +8 -0
- package/dist-server/service/checklist/index.js +12 -0
- package/dist-server/service/checklist/index.js.map +1 -0
- package/dist-server/service/checklist-item/checklist-item-mutation.d.ts +2 -0
- package/dist-server/service/checklist-item/checklist-item-mutation.js +13 -0
- package/dist-server/service/checklist-item/checklist-item-mutation.js.map +1 -0
- package/dist-server/service/checklist-item/checklist-item-query.d.ts +10 -0
- package/dist-server/service/checklist-item/checklist-item-query.js +68 -0
- package/dist-server/service/checklist-item/checklist-item-query.js.map +1 -0
- package/dist-server/service/checklist-item/checklist-item-type.d.ts +5 -0
- package/dist-server/service/checklist-item/checklist-item-type.js +21 -0
- package/dist-server/service/checklist-item/checklist-item-type.js.map +1 -0
- package/dist-server/service/checklist-item/checklist-item.d.ts +26 -0
- package/dist-server/service/checklist-item/checklist-item.js +113 -0
- package/dist-server/service/checklist-item/checklist-item.js.map +1 -0
- package/dist-server/service/checklist-item/index.d.ts +5 -0
- package/dist-server/service/checklist-item/index.js +10 -0
- package/dist-server/service/checklist-item/index.js.map +1 -0
- package/dist-server/service/checklist-template/checklist-template-mutation.d.ts +6 -0
- package/dist-server/service/checklist-template/checklist-template-mutation.js +64 -0
- package/dist-server/service/checklist-template/checklist-template-mutation.js.map +1 -0
- package/dist-server/service/checklist-template/checklist-template-query.d.ts +10 -0
- package/dist-server/service/checklist-template/checklist-template-query.js +65 -0
- package/dist-server/service/checklist-template/checklist-template-query.js.map +1 -0
- package/dist-server/service/checklist-template/checklist-template-type.d.ts +10 -0
- package/dist-server/service/checklist-template/checklist-template-type.js +39 -0
- package/dist-server/service/checklist-template/checklist-template-type.js.map +1 -0
- package/dist-server/service/checklist-template/checklist-template.d.ts +17 -0
- package/dist-server/service/checklist-template/checklist-template.js +78 -0
- package/dist-server/service/checklist-template/checklist-template.js.map +1 -0
- package/dist-server/service/checklist-template/index.d.ts +5 -0
- package/dist-server/service/checklist-template/index.js +9 -0
- package/dist-server/service/checklist-template/index.js.map +1 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-mutation.d.ts +7 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-mutation.js +68 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-mutation.js.map +1 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-query.d.ts +10 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-query.js +66 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-query.js.map +1 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-type.d.ts +16 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-type.js +60 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-type.js.map +1 -0
- package/dist-server/service/checklist-template-item/checklist-template-item.d.ts +19 -0
- package/dist-server/service/checklist-template-item/checklist-template-item.js +87 -0
- package/dist-server/service/checklist-template-item/checklist-template-item.js.map +1 -0
- package/dist-server/service/checklist-template-item/index.d.ts +5 -0
- package/dist-server/service/checklist-template-item/index.js +9 -0
- package/dist-server/service/checklist-template-item/index.js.map +1 -0
- package/dist-server/service/checklist-type/checklist-type-mutation.d.ts +6 -0
- package/dist-server/service/checklist-type/checklist-type-mutation.js +64 -0
- package/dist-server/service/checklist-type/checklist-type-mutation.js.map +1 -0
- package/dist-server/service/checklist-type/checklist-type-query.d.ts +10 -0
- package/dist-server/service/checklist-type/checklist-type-query.js +65 -0
- package/dist-server/service/checklist-type/checklist-type-query.js.map +1 -0
- package/dist-server/service/checklist-type/checklist-type-type.d.ts +11 -0
- package/dist-server/service/checklist-type/checklist-type-type.js +43 -0
- package/dist-server/service/checklist-type/checklist-type-type.js.map +1 -0
- package/dist-server/service/checklist-type/checklist-type.d.ts +19 -0
- package/dist-server/service/checklist-type/checklist-type.js +78 -0
- package/dist-server/service/checklist-type/checklist-type.js.map +1 -0
- package/dist-server/service/checklist-type/index.d.ts +5 -0
- package/dist-server/service/checklist-type/index.js +9 -0
- package/dist-server/service/checklist-type/index.js.map +1 -0
- package/dist-server/service/index.d.ts +8 -3
- package/dist-server/service/index.js +25 -5
- package/dist-server/service/index.js.map +1 -1
- package/dist-server/service/issue/issue.d.ts +1 -3
- package/dist-server/service/issue/issue.js +1 -7
- package/dist-server/service/issue/issue.js.map +1 -1
- package/dist-server/service/supervisor/supervisor.d.ts +1 -3
- package/dist-server/service/supervisor/supervisor.js +1 -7
- package/dist-server/service/supervisor/supervisor.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/helps/supervision/checklist-item.md +160 -0
- package/helps/supervision/checklist.md +160 -0
- package/package.json +11 -7
- package/server/index.ts +1 -1
- package/server/service/building-inspection/building-inspection-history.ts +70 -0
- package/server/service/building-inspection/building-inspection-mutation.ts +147 -0
- package/server/service/building-inspection/building-inspection-query.ts +202 -0
- package/server/service/building-inspection/building-inspection-type.ts +101 -0
- package/server/service/building-inspection/building-inspection.ts +106 -0
- package/server/service/building-inspection/event-subscriber.ts +20 -0
- package/server/service/building-inspection/index.ts +11 -0
- package/server/service/checklist/checklist-history.ts +96 -0
- package/server/service/checklist/checklist-mutation.ts +103 -0
- package/server/service/checklist/checklist-query.ts +52 -0
- package/server/service/{check-item/check-item-type.ts → checklist/checklist-type.ts} +6 -18
- package/server/service/checklist/checklist.ts +127 -0
- package/server/service/checklist/event-subscriber.ts +17 -0
- package/server/service/checklist/index.ts +9 -0
- package/server/service/checklist-item/checklist-item-mutation.ts +5 -0
- package/server/service/checklist-item/checklist-item-query.ts +43 -0
- package/server/service/checklist-item/checklist-item-type.ts +12 -0
- package/server/service/checklist-item/checklist-item.ts +100 -0
- package/server/service/checklist-item/index.ts +7 -0
- package/server/service/checklist-template/checklist-template-mutation.ts +66 -0
- package/server/service/checklist-template/checklist-template-query.ts +39 -0
- package/server/service/checklist-template/checklist-template-type.ts +23 -0
- package/server/service/checklist-template/checklist-template.ts +71 -0
- package/server/service/checklist-template/index.ts +6 -0
- package/server/service/checklist-template-item/checklist-template-item-mutation.ts +64 -0
- package/server/service/checklist-template-item/checklist-template-item-query.ts +39 -0
- package/server/service/checklist-template-item/checklist-template-item-type.ts +39 -0
- package/server/service/checklist-template-item/checklist-template-item.ts +67 -0
- package/server/service/checklist-template-item/index.ts +6 -0
- package/server/service/checklist-type/checklist-type-mutation.ts +66 -0
- package/server/service/checklist-type/checklist-type-query.ts +39 -0
- package/server/service/checklist-type/checklist-type-type.ts +26 -0
- package/server/service/checklist-type/checklist-type.ts +64 -0
- package/server/service/checklist-type/index.ts +6 -0
- package/server/service/index.ts +59 -23
- package/server/service/issue/issue.ts +1 -6
- package/server/service/supervisor/supervisor.ts +1 -6
- package/things-factory.config.js +11 -7
- package/client/pages/check-item/check-item-importer.ts +0 -94
- package/client/pages/check-item/check-item-list-page.ts +0 -340
- package/dist-client/pages/check-item/check-item-importer.d.ts +0 -10
- package/dist-client/pages/check-item/check-item-importer.js +0 -101
- package/dist-client/pages/check-item/check-item-importer.js.map +0 -1
- package/dist-client/pages/check-item/check-item-list-page.js +0 -323
- package/dist-client/pages/check-item/check-item-list-page.js.map +0 -1
- package/dist-server/service/check-item/check-item-mutation.d.ts +0 -10
- package/dist-server/service/check-item/check-item-mutation.js +0 -168
- package/dist-server/service/check-item/check-item-mutation.js.map +0 -1
- package/dist-server/service/check-item/check-item-query.d.ts +0 -12
- package/dist-server/service/check-item/check-item-query.js +0 -97
- package/dist-server/service/check-item/check-item-query.js.map +0 -1
- package/dist-server/service/check-item/check-item-type.d.ts +0 -23
- package/dist-server/service/check-item/check-item-type.js +0 -86
- package/dist-server/service/check-item/check-item-type.js.map +0 -1
- package/dist-server/service/check-item/check-item.d.ts +0 -28
- package/dist-server/service/check-item/check-item.js +0 -117
- package/dist-server/service/check-item/check-item.js.map +0 -1
- package/dist-server/service/check-item/index.d.ts +0 -6
- package/dist-server/service/check-item/index.js +0 -10
- package/dist-server/service/check-item/index.js.map +0 -1
- package/server/service/check-item/check-item-mutation.ts +0 -198
- package/server/service/check-item/check-item-query.ts +0 -62
- package/server/service/check-item/check-item.ts +0 -111
- package/server/service/check-item/index.ts +0 -7
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
import '@material/web/icon/icon.js'
|
|
2
|
+
import { css, html, LitElement } from 'lit'
|
|
3
|
+
import { customElement, property } from 'lit/decorators.js'
|
|
4
|
+
import { ButtonContainerStyles, ScrollbarStyles } from '@operato/styles'
|
|
5
|
+
import {
|
|
6
|
+
ChecklistTypeMainType,
|
|
7
|
+
CHECKLIST_MAIN_TYPE_LIST,
|
|
8
|
+
BuildingInspectionStatus
|
|
9
|
+
} from '../building-inspection/building-inspection-list'
|
|
10
|
+
import '@operato/input/ox-input-signature.js'
|
|
11
|
+
|
|
12
|
+
export const enum ChecklistMode {
|
|
13
|
+
VIEWER = 'VIEWER',
|
|
14
|
+
EDITOR = 'EDITOR'
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@customElement('checklist-view')
|
|
18
|
+
class ChecklistView extends LitElement {
|
|
19
|
+
static styles = [
|
|
20
|
+
ButtonContainerStyles,
|
|
21
|
+
ScrollbarStyles,
|
|
22
|
+
css`
|
|
23
|
+
:host {
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
font-size: 14px;
|
|
27
|
+
padding: 20px;
|
|
28
|
+
min-width: 800px;
|
|
29
|
+
|
|
30
|
+
background-color: var(--md-sys-color-surface);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
[bold] {
|
|
34
|
+
font-weight: bold;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
div[name] {
|
|
38
|
+
display: flex;
|
|
39
|
+
color: #586878;
|
|
40
|
+
font-size: 24px;
|
|
41
|
+
font-weight: bold;
|
|
42
|
+
align-items: center;
|
|
43
|
+
justify-content: center;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
table {
|
|
47
|
+
width: 100%;
|
|
48
|
+
font-size: 15px;
|
|
49
|
+
color: #586878;
|
|
50
|
+
text-align: left;
|
|
51
|
+
border-collapse: collapse;
|
|
52
|
+
td,
|
|
53
|
+
th {
|
|
54
|
+
border: 1px #999999 solid;
|
|
55
|
+
padding-inline: 8px;
|
|
56
|
+
}
|
|
57
|
+
th {
|
|
58
|
+
background-color: #efefef;
|
|
59
|
+
font-weight: bold;
|
|
60
|
+
}
|
|
61
|
+
td {
|
|
62
|
+
height: 35px;
|
|
63
|
+
&[radio] {
|
|
64
|
+
text-align: center;
|
|
65
|
+
vertical-align: middle;
|
|
66
|
+
width: 55px;
|
|
67
|
+
}
|
|
68
|
+
&[attachment] {
|
|
69
|
+
width: 90px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
table[header] {
|
|
75
|
+
margin-top: 5px;
|
|
76
|
+
|
|
77
|
+
td {
|
|
78
|
+
min-width: 180px;
|
|
79
|
+
border-left: none;
|
|
80
|
+
}
|
|
81
|
+
th {
|
|
82
|
+
width: 110px;
|
|
83
|
+
border-right: none;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
table[body] {
|
|
88
|
+
border: 2px solid #999999;
|
|
89
|
+
border-bottom: none;
|
|
90
|
+
margin-top: 10px;
|
|
91
|
+
|
|
92
|
+
th {
|
|
93
|
+
text-align: center;
|
|
94
|
+
|
|
95
|
+
&[type] {
|
|
96
|
+
min-width: 150px;
|
|
97
|
+
}
|
|
98
|
+
&[inspection-name] {
|
|
99
|
+
min-width: 250px;
|
|
100
|
+
}
|
|
101
|
+
&[result] {
|
|
102
|
+
width: 270px;
|
|
103
|
+
}
|
|
104
|
+
&[criteria] {
|
|
105
|
+
width: 90px;
|
|
106
|
+
}
|
|
107
|
+
&[small] {
|
|
108
|
+
width: 60px;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
td {
|
|
112
|
+
&[main-type] {
|
|
113
|
+
width: 50px;
|
|
114
|
+
text-align: center;
|
|
115
|
+
word-break: keep-all;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
table[tail] {
|
|
121
|
+
border: 2px solid #999999;
|
|
122
|
+
border-top: none;
|
|
123
|
+
margin-top: -1px;
|
|
124
|
+
|
|
125
|
+
tr[first] td {
|
|
126
|
+
border-top: none;
|
|
127
|
+
}
|
|
128
|
+
td {
|
|
129
|
+
width: 25%;
|
|
130
|
+
border-left: none;
|
|
131
|
+
text-align: center;
|
|
132
|
+
position: relative;
|
|
133
|
+
}
|
|
134
|
+
th {
|
|
135
|
+
width: 25%;
|
|
136
|
+
border-right: none;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
span[sign-text] {
|
|
140
|
+
position: absolute;
|
|
141
|
+
top: 50%;
|
|
142
|
+
left: 50%;
|
|
143
|
+
transform: translate(-50%, -50%);
|
|
144
|
+
pointer-events: none;
|
|
145
|
+
}
|
|
146
|
+
ox-input-signature {
|
|
147
|
+
margin: 10px;
|
|
148
|
+
|
|
149
|
+
&[disabled] {
|
|
150
|
+
background: #eee;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
div[footer] {
|
|
156
|
+
display: flex;
|
|
157
|
+
flex-direction: column;
|
|
158
|
+
gap: 3px;
|
|
159
|
+
font-size: 12px;
|
|
160
|
+
margin-top: 10px;
|
|
161
|
+
color: #586878;
|
|
162
|
+
text-indent: -9px;
|
|
163
|
+
padding-left: 9px;
|
|
164
|
+
}
|
|
165
|
+
`
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
@property({ type: String }) mode: ChecklistMode = ChecklistMode.VIEWER
|
|
169
|
+
@property({ type: Object }) checklist: any = {}
|
|
170
|
+
@property({ type: String }) status: BuildingInspectionStatus = BuildingInspectionStatus.WAIT
|
|
171
|
+
|
|
172
|
+
render() {
|
|
173
|
+
const today = this._getDate(new Date())
|
|
174
|
+
const isConstructorStep = this.status == BuildingInspectionStatus.WAIT || this.status == BuildingInspectionStatus.FAIL
|
|
175
|
+
const isSupervisoryStep = this.status == BuildingInspectionStatus.REQUEST
|
|
176
|
+
|
|
177
|
+
// 체크리스트 아이템 정렬
|
|
178
|
+
this.checklist?.checklistItems?.sort((a, b) => {
|
|
179
|
+
// 1순위: mainType 오름차순
|
|
180
|
+
if (a.mainType < b.mainType) return -1
|
|
181
|
+
if (a.mainType > b.mainType) return 1
|
|
182
|
+
|
|
183
|
+
// 2순위: detailType 오름차순
|
|
184
|
+
if (a.detailType < b.detailType) return -1
|
|
185
|
+
if (a.detailType > b.detailType) return 1
|
|
186
|
+
|
|
187
|
+
// 3순위: sequence 오름차순
|
|
188
|
+
return a.sequence - b.sequence
|
|
189
|
+
})
|
|
190
|
+
|
|
191
|
+
const processedItems = this.processChecklistItems(this.checklist?.checklistItems || [])
|
|
192
|
+
|
|
193
|
+
return html`
|
|
194
|
+
<div wrapper>
|
|
195
|
+
<div name>${this.checklist.name}</div>
|
|
196
|
+
|
|
197
|
+
<table header>
|
|
198
|
+
<tr>
|
|
199
|
+
<th>공종</th>
|
|
200
|
+
<td>${this.checklist.constructionType}</td>
|
|
201
|
+
<th>문서 번호</th>
|
|
202
|
+
<td>${this.checklist.documentNo}</td>
|
|
203
|
+
</tr>
|
|
204
|
+
<tr>
|
|
205
|
+
<th>세부 공종</th>
|
|
206
|
+
<td>${this.checklist.constructionDetailType}</td>
|
|
207
|
+
<th>위치 및 부위</th>
|
|
208
|
+
<td>${this.checklist.location}</td>
|
|
209
|
+
</tr>
|
|
210
|
+
<tr>
|
|
211
|
+
<th>검측 부위</th>
|
|
212
|
+
<td>${this.checklist?.inspectionParts?.join(', ') || ''}</td>
|
|
213
|
+
<th></th>
|
|
214
|
+
<td></td>
|
|
215
|
+
</tr>
|
|
216
|
+
</table>
|
|
217
|
+
|
|
218
|
+
<table body>
|
|
219
|
+
<thead>
|
|
220
|
+
<tr>
|
|
221
|
+
<th colspan="2" rowspan="3" type>구분</th>
|
|
222
|
+
<th rowspan="3" inspection-name>검사항목</th>
|
|
223
|
+
<th rowspan="3" criteria>검사기준</th>
|
|
224
|
+
<th colspan="4" result>검사결과</th>
|
|
225
|
+
<th rowspan="3" small>첨부자료</th>
|
|
226
|
+
<th rowspan="3" small>조치사항</th>
|
|
227
|
+
</tr>
|
|
228
|
+
<tr>
|
|
229
|
+
<th colspan="2">시공자</th>
|
|
230
|
+
<th colspan="2">감리자</th>
|
|
231
|
+
</tr>
|
|
232
|
+
<tr>
|
|
233
|
+
<th>적합</th>
|
|
234
|
+
<th>부적합</th>
|
|
235
|
+
<th>적합</th>
|
|
236
|
+
<th>부적합</th>
|
|
237
|
+
</tr>
|
|
238
|
+
</thead>
|
|
239
|
+
<tbody>
|
|
240
|
+
${processedItems.map(({ item, showMainTypeCell, mainTypeRowspan, showDetailTypeCell, detailTypeRowspan }, idx) => {
|
|
241
|
+
return html` <tr>
|
|
242
|
+
${showMainTypeCell
|
|
243
|
+
? html`<td main-type bold rowspan="${mainTypeRowspan}">${CHECKLIST_MAIN_TYPE_LIST[item.mainType]}</td>`
|
|
244
|
+
: ''}
|
|
245
|
+
${showDetailTypeCell ? html` <td bold rowspan="${detailTypeRowspan}">${item.detailType}</td> ` : ''}
|
|
246
|
+
|
|
247
|
+
<td bold>${idx + 1}. ${item.name}</td>
|
|
248
|
+
<td>${item.inspctionCriteria}</td>
|
|
249
|
+
<td radio>
|
|
250
|
+
<md-radio
|
|
251
|
+
item-id=${item.id}
|
|
252
|
+
item-name="constructionConfirmStatus"
|
|
253
|
+
name=${'radio-construction-' + item.id}
|
|
254
|
+
value="T"
|
|
255
|
+
?disabled=${!isConstructorStep}
|
|
256
|
+
@change=${this._onChangeConfirmStatus}
|
|
257
|
+
></md-radio>
|
|
258
|
+
</td>
|
|
259
|
+
<td radio>
|
|
260
|
+
<md-radio
|
|
261
|
+
item-id=${item.id}
|
|
262
|
+
item-name="constructionConfirmStatus"
|
|
263
|
+
name=${'radio-construction-' + item.id}
|
|
264
|
+
value="F"
|
|
265
|
+
?disabled=${!isConstructorStep}
|
|
266
|
+
@change=${this._onChangeConfirmStatus}
|
|
267
|
+
></md-radio>
|
|
268
|
+
</td>
|
|
269
|
+
<td radio>
|
|
270
|
+
<md-radio
|
|
271
|
+
item-id=${item.id}
|
|
272
|
+
item-name="supervisoryConfirmStatus"
|
|
273
|
+
name=${'radio-supervisory-' + item.id}
|
|
274
|
+
value="T"
|
|
275
|
+
?disabled=${!isSupervisoryStep}
|
|
276
|
+
@change=${this._onChangeConfirmStatus}
|
|
277
|
+
></md-radio>
|
|
278
|
+
</td>
|
|
279
|
+
<td radio>
|
|
280
|
+
<md-radio
|
|
281
|
+
item-id=${item.id}
|
|
282
|
+
item-name="supervisoryConfirmStatus"
|
|
283
|
+
name=${'radio-supervisory-' + item.id}
|
|
284
|
+
value="F"
|
|
285
|
+
?disabled=${!isSupervisoryStep}
|
|
286
|
+
@change=${this._onChangeConfirmStatus}
|
|
287
|
+
></md-radio>
|
|
288
|
+
</td>
|
|
289
|
+
<td attachment></td>
|
|
290
|
+
<td></td>
|
|
291
|
+
</tr>`
|
|
292
|
+
})}
|
|
293
|
+
</tbody>
|
|
294
|
+
</table>
|
|
295
|
+
|
|
296
|
+
<table tail>
|
|
297
|
+
<tbody>
|
|
298
|
+
<tr first>
|
|
299
|
+
<th rowspan="2">시공자점검일</th>
|
|
300
|
+
<td rowspan="2">
|
|
301
|
+
${this.mode == ChecklistMode.VIEWER ? today : this._getDate(this.checklist.constructionInsprctionDate)}
|
|
302
|
+
</td>
|
|
303
|
+
<th>총괄 시공책임자</th>
|
|
304
|
+
<td>
|
|
305
|
+
<span sign-text>(인)</span>
|
|
306
|
+
<ox-input-signature
|
|
307
|
+
.value=${this.checklist.overallConstructorSignature || ''}
|
|
308
|
+
name="overallConstructorSignature"
|
|
309
|
+
@change=${this._onChangeSignature}
|
|
310
|
+
?disabled=${!isConstructorStep}
|
|
311
|
+
>
|
|
312
|
+
</ox-input-signature>
|
|
313
|
+
</td>
|
|
314
|
+
</tr>
|
|
315
|
+
<tr>
|
|
316
|
+
<th>공종별 시공관리자</th>
|
|
317
|
+
<td>
|
|
318
|
+
<span sign-text>(인)</span>
|
|
319
|
+
<ox-input-signature
|
|
320
|
+
.value=${this.checklist.taskConstructorSignature || ''}
|
|
321
|
+
name="taskConstructorSignature"
|
|
322
|
+
@change=${this._onChangeSignature}
|
|
323
|
+
?disabled=${!isConstructorStep}
|
|
324
|
+
>
|
|
325
|
+
</ox-input-signature>
|
|
326
|
+
</td>
|
|
327
|
+
</tr>
|
|
328
|
+
<tr>
|
|
329
|
+
<th rowspan="2">감리자점검일</th>
|
|
330
|
+
<td rowspan="2">
|
|
331
|
+
${this.mode == ChecklistMode.VIEWER ? today : this._getDate(this.checklist.supervisorInsprctionDate)}
|
|
332
|
+
</td>
|
|
333
|
+
<th>총괄 감리책임자</th>
|
|
334
|
+
<td>
|
|
335
|
+
<span sign-text>(인)</span>
|
|
336
|
+
<ox-input-signature
|
|
337
|
+
.value=${this.checklist.overallSupervisorySignature || ''}
|
|
338
|
+
name="overallSupervisorySignature"
|
|
339
|
+
@change=${this._onChangeSignature}
|
|
340
|
+
?disabled=${!isSupervisoryStep}
|
|
341
|
+
>
|
|
342
|
+
</ox-input-signature>
|
|
343
|
+
</td>
|
|
344
|
+
</tr>
|
|
345
|
+
<tr>
|
|
346
|
+
<th>공종별 감리 책임자</th>
|
|
347
|
+
<td>
|
|
348
|
+
<span sign-text>(인)</span>
|
|
349
|
+
<ox-input-signature
|
|
350
|
+
.value=${this.checklist.taskSupervisorySignature || ''}
|
|
351
|
+
name="taskSupervisorySignature"
|
|
352
|
+
@change=${this._onChangeSignature}
|
|
353
|
+
?disabled=${!isSupervisoryStep}
|
|
354
|
+
>
|
|
355
|
+
</ox-input-signature>
|
|
356
|
+
</td>
|
|
357
|
+
</tr>
|
|
358
|
+
</tbody>
|
|
359
|
+
</table>
|
|
360
|
+
|
|
361
|
+
<div footer>
|
|
362
|
+
<div>
|
|
363
|
+
- 검사결과는 1차, 2차로 구분 재검측시 2차에 기록하고 검사기준도 검사결과와 비교될 수 있도록 시방서 또는 도면 등에 있는
|
|
364
|
+
수치를 작성하며, 수치가 없는 검사항목은 시방서 또는 설계도서에 있는 내용과 검사한 내용으로 작성함
|
|
365
|
+
</div>
|
|
366
|
+
<div>- 검사항목 및 검사기준은 각 공종별로 감리원과 협의하여 작성할 것</div>
|
|
367
|
+
</div>
|
|
368
|
+
</div>
|
|
369
|
+
`
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
private _onChangeConfirmStatus(e: Event) {
|
|
373
|
+
const target = e.target as HTMLInputElement
|
|
374
|
+
const itemId = target.getAttribute('item-id')
|
|
375
|
+
const name = target.getAttribute('item-name') || ''
|
|
376
|
+
const value = target.value
|
|
377
|
+
|
|
378
|
+
this.checklist.checklistItems = this.checklist?.checklistItems?.map(item =>
|
|
379
|
+
item.id == itemId ? { ...item, [name]: value } : item
|
|
380
|
+
)
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
private _onChangeSignature(e: Event) {
|
|
384
|
+
const target = e.target as HTMLInputElement
|
|
385
|
+
|
|
386
|
+
this.checklist[target.name] = target.value
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
private _getDate(date) {
|
|
390
|
+
if (!date) return ' 년 월 일'
|
|
391
|
+
|
|
392
|
+
const _date = date || new Date()
|
|
393
|
+
return _date.toLocaleDateString('ko-KR', {
|
|
394
|
+
timeZone: 'Asia/Seoul',
|
|
395
|
+
year: 'numeric',
|
|
396
|
+
month: 'long',
|
|
397
|
+
day: 'numeric'
|
|
398
|
+
})
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
private processChecklistItems(checklistItems) {
|
|
402
|
+
const mainTypeRowspans = {}
|
|
403
|
+
const detailTypeRowspans = {}
|
|
404
|
+
let previousMainType = null
|
|
405
|
+
let previousDetailType = null
|
|
406
|
+
|
|
407
|
+
return checklistItems.map((item, index) => {
|
|
408
|
+
const mainType = item.mainType
|
|
409
|
+
const detailType = item.detailType
|
|
410
|
+
|
|
411
|
+
// mainType이 변경되면 rowspan을 계산
|
|
412
|
+
if (mainType !== previousMainType) {
|
|
413
|
+
mainTypeRowspans[mainType] = checklistItems.filter(i => i.mainType === mainType).length
|
|
414
|
+
previousDetailType = null // detailType 초기화
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
// detailType이 변경되면 rowspan을 계산
|
|
418
|
+
if (detailType !== previousDetailType) {
|
|
419
|
+
detailTypeRowspans[`${mainType}-${detailType}`] = checklistItems.filter(
|
|
420
|
+
i => i.mainType === mainType && i.detailType === detailType
|
|
421
|
+
).length
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
const showMainTypeCell = mainType !== previousMainType
|
|
425
|
+
const showDetailTypeCell = detailType !== previousDetailType
|
|
426
|
+
|
|
427
|
+
const mainTypeRowspan = mainTypeRowspans[mainType]
|
|
428
|
+
const detailTypeRowspan = detailTypeRowspans[`${mainType}-${detailType}`]
|
|
429
|
+
|
|
430
|
+
// 이전 값을 업데이트
|
|
431
|
+
previousMainType = mainType
|
|
432
|
+
previousDetailType = detailType
|
|
433
|
+
|
|
434
|
+
return {
|
|
435
|
+
item,
|
|
436
|
+
showMainTypeCell,
|
|
437
|
+
mainTypeRowspan,
|
|
438
|
+
showDetailTypeCell,
|
|
439
|
+
detailTypeRowspan
|
|
440
|
+
}
|
|
441
|
+
})
|
|
442
|
+
}
|
|
443
|
+
}
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
import '@material/web/icon/icon.js'
|
|
2
|
+
import '@operato/data-grist/ox-grist.js'
|
|
3
|
+
|
|
4
|
+
import gql from 'graphql-tag'
|
|
5
|
+
import { css, html, LitElement } from 'lit'
|
|
6
|
+
import { customElement, property, query } from 'lit/decorators.js'
|
|
7
|
+
|
|
8
|
+
import { DataGrist } from '@operato/data-grist/ox-grist.js'
|
|
9
|
+
import { client } from '@operato/graphql'
|
|
10
|
+
import { ButtonContainerStyles } from '@operato/styles'
|
|
11
|
+
import { FetchOption } from '@operato/data-grist'
|
|
12
|
+
import { notify } from '@operato/layout'
|
|
13
|
+
import { CHECKLIST_MAIN_TYPE_LIST } from './checklist-type-management'
|
|
14
|
+
|
|
15
|
+
@customElement('checklist-template-item')
|
|
16
|
+
class ChecklistTemplateItem extends LitElement {
|
|
17
|
+
static styles = [
|
|
18
|
+
ButtonContainerStyles,
|
|
19
|
+
css`
|
|
20
|
+
:host {
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
|
|
24
|
+
background-color: var(--md-sys-color-surface);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
ox-grist {
|
|
28
|
+
flex: 1;
|
|
29
|
+
}
|
|
30
|
+
`
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
@property({ type: Object }) checklistDetailTypes: any
|
|
34
|
+
@property({ type: Object }) checklistTemplate: any
|
|
35
|
+
@property({ type: Object }) gristConfig: any
|
|
36
|
+
|
|
37
|
+
@query('ox-grist') grist!: DataGrist
|
|
38
|
+
|
|
39
|
+
render() {
|
|
40
|
+
return html`
|
|
41
|
+
<ox-grist .mode=${'GRID'} .config=${this.gristConfig} .fetchHandler=${this.fetchHandler.bind(this)}></ox-grist>
|
|
42
|
+
<div class="button-container">
|
|
43
|
+
<button danger @click=${this._deleteChecklistTemplateItems.bind(this)}><md-icon>delete</md-icon>삭제</button>
|
|
44
|
+
<button @click=${this._updateChecklistTemplateItems.bind(this)}><md-icon>save</md-icon>저장</button>
|
|
45
|
+
</div>
|
|
46
|
+
`
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async firstUpdated() {
|
|
50
|
+
this.gristConfig = {
|
|
51
|
+
columns: [
|
|
52
|
+
{ type: 'gutter', gutterName: 'row-selector', multiple: true },
|
|
53
|
+
{
|
|
54
|
+
type: 'gutter',
|
|
55
|
+
gutterName: 'button',
|
|
56
|
+
fixed: true,
|
|
57
|
+
icon: 'add',
|
|
58
|
+
handlers: {
|
|
59
|
+
click: 'record-copy'
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{ type: 'gutter', gutterName: 'sequence' },
|
|
63
|
+
{
|
|
64
|
+
type: 'gutter',
|
|
65
|
+
gutterName: 'button',
|
|
66
|
+
icon: 'arrow_upward',
|
|
67
|
+
handlers: {
|
|
68
|
+
click: 'move-up'
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 'gutter',
|
|
73
|
+
gutterName: 'button',
|
|
74
|
+
icon: 'arrow_downward',
|
|
75
|
+
handlers: {
|
|
76
|
+
click: 'move-down'
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
type: 'number',
|
|
81
|
+
name: 'sequence',
|
|
82
|
+
hidden: true
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
type: 'string',
|
|
86
|
+
name: 'id',
|
|
87
|
+
hidden: true
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
type: 'select',
|
|
91
|
+
name: 'mainType',
|
|
92
|
+
header: '구분',
|
|
93
|
+
record: {
|
|
94
|
+
editable: true,
|
|
95
|
+
options: [{ display: '', value: '' }].concat(
|
|
96
|
+
Object.keys(CHECKLIST_MAIN_TYPE_LIST).map(key => ({ display: CHECKLIST_MAIN_TYPE_LIST[key], value: key }))
|
|
97
|
+
)
|
|
98
|
+
},
|
|
99
|
+
width: 150
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
type: 'select',
|
|
103
|
+
name: 'detailType',
|
|
104
|
+
header: '상세 구분',
|
|
105
|
+
record: {
|
|
106
|
+
editable: true,
|
|
107
|
+
options: (columns, data, column) => [
|
|
108
|
+
{ display: '', value: '' },
|
|
109
|
+
...this.checklistDetailTypes.filter(v => v.mainType == column.mainType)
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
width: 250
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
type: 'string',
|
|
116
|
+
name: 'name',
|
|
117
|
+
header: '검사 항목',
|
|
118
|
+
record: {
|
|
119
|
+
editable: true
|
|
120
|
+
},
|
|
121
|
+
width: 200
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'string',
|
|
125
|
+
name: 'inspctionCriteria',
|
|
126
|
+
header: '검사 기준',
|
|
127
|
+
record: {
|
|
128
|
+
editable: true
|
|
129
|
+
},
|
|
130
|
+
width: 200
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
rows: {
|
|
134
|
+
selectable: {
|
|
135
|
+
multiple: true
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
pagination: {
|
|
139
|
+
infinite: true
|
|
140
|
+
},
|
|
141
|
+
sorters: [{ name: 'mainType' }, { name: 'sequence' }]
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
async fetchHandler({ page, limit, sorters = [] }: FetchOption) {
|
|
146
|
+
const response = await client.query({
|
|
147
|
+
query: gql`
|
|
148
|
+
query ($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
|
|
149
|
+
checklistTemplateItems(filters: $filters, pagination: $pagination, sortings: $sortings) {
|
|
150
|
+
items {
|
|
151
|
+
id
|
|
152
|
+
sequence
|
|
153
|
+
name
|
|
154
|
+
inspctionCriteria
|
|
155
|
+
mainType
|
|
156
|
+
detailType
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
`,
|
|
161
|
+
variables: {
|
|
162
|
+
filters: {
|
|
163
|
+
name: 'checklistTemplateId',
|
|
164
|
+
value: this.checklistTemplate.id,
|
|
165
|
+
operator: 'eq'
|
|
166
|
+
},
|
|
167
|
+
sortings: [{ name: 'mainType' }, { name: 'sequence' }]
|
|
168
|
+
}
|
|
169
|
+
})
|
|
170
|
+
|
|
171
|
+
return {
|
|
172
|
+
total: response.data.checklistTemplateItems.total || 0,
|
|
173
|
+
records: response.data.checklistTemplateItems.items || []
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
private async _deleteChecklistTemplateItems() {
|
|
178
|
+
if (confirm('삭제하시겠습니까?')) {
|
|
179
|
+
const ids = this.grist.selected.map(record => record.id)
|
|
180
|
+
if (ids && ids.length > 0) {
|
|
181
|
+
const response = await client.mutate({
|
|
182
|
+
mutation: gql`
|
|
183
|
+
mutation ($ids: [String!]!) {
|
|
184
|
+
deleteChecklistTemplateItems(ids: $ids)
|
|
185
|
+
}
|
|
186
|
+
`,
|
|
187
|
+
variables: {
|
|
188
|
+
ids
|
|
189
|
+
}
|
|
190
|
+
})
|
|
191
|
+
|
|
192
|
+
if (!response.errors) {
|
|
193
|
+
this.grist.fetch()
|
|
194
|
+
notify({ message: '삭제되었습니다.' })
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
async _updateChecklistTemplateItems() {
|
|
201
|
+
let patches = this.grist.dirtyData.records
|
|
202
|
+
if (patches) {
|
|
203
|
+
patches = patches.map(patch => {
|
|
204
|
+
const { __origin__: { __typename, ...patchField } = {}, __dirtyfields__ } = patch
|
|
205
|
+
|
|
206
|
+
for (let key in __dirtyfields__) {
|
|
207
|
+
patchField[key] = __dirtyfields__[key].after
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
return patchField
|
|
211
|
+
})
|
|
212
|
+
|
|
213
|
+
const response = await client.mutate({
|
|
214
|
+
mutation: gql`
|
|
215
|
+
mutation UpdateMultipleChecklistTemplateItems($checklistTemplateId: String!, $patches: [ChecklistTemplateItemPatch!]!) {
|
|
216
|
+
updateMultipleChecklistTemplateItems(checklistTemplateId: $checklistTemplateId, patches: $patches) {
|
|
217
|
+
id
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
`,
|
|
221
|
+
variables: {
|
|
222
|
+
checklistTemplateId: this.checklistTemplate.id,
|
|
223
|
+
patches
|
|
224
|
+
}
|
|
225
|
+
})
|
|
226
|
+
|
|
227
|
+
if (!response.errors) {
|
|
228
|
+
this.grist.fetch()
|
|
229
|
+
notify({ message: '저장되었습니다.' })
|
|
230
|
+
this.requestRefresh()
|
|
231
|
+
} else {
|
|
232
|
+
notify({ message: '저장에 실패하였습니다.', level: 'error' })
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
requestRefresh() {
|
|
238
|
+
this.dispatchEvent(new CustomEvent('requestRefresh'))
|
|
239
|
+
}
|
|
240
|
+
}
|