@dssp/project 1.0.0-alpha.41 → 1.0.0-alpha.47

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.
Files changed (29) hide show
  1. package/dist-client/pages/lib/chatbot-widget.d.ts +18 -8
  2. package/dist-client/pages/lib/chatbot-widget.js +249 -87
  3. package/dist-client/pages/lib/chatbot-widget.js.map +1 -1
  4. package/dist-client/pages/lib/select2-component.d.ts +1 -1
  5. package/dist-client/pages/lib/select2-component.js +35 -35
  6. package/dist-client/pages/lib/select2-component.js.map +1 -1
  7. package/dist-client/pages/project/project-detail.js.map +1 -1
  8. package/dist-client/pages/project/project-list.d.ts +34 -0
  9. package/dist-client/pages/project/project-list.js +35 -0
  10. package/dist-client/pages/project/project-list.js.map +1 -1
  11. package/dist-client/pages/project/project-update.js +168 -29
  12. package/dist-client/pages/project/project-update.js.map +1 -1
  13. package/dist-client/route.d.ts +1 -1
  14. package/dist-client/tsconfig.tsbuildinfo +1 -1
  15. package/dist-server/service/index.d.ts +2 -2
  16. package/dist-server/service/project/project-mutation.d.ts +2 -1
  17. package/dist-server/service/project/project-mutation.js +35 -1
  18. package/dist-server/service/project/project-mutation.js.map +1 -1
  19. package/dist-server/service/project/project-query.d.ts +1 -0
  20. package/dist-server/service/project/project-query.js +16 -0
  21. package/dist-server/service/project/project-query.js.map +1 -1
  22. package/dist-server/service/project/project-type.d.ts +6 -0
  23. package/dist-server/service/project/project-type.js +23 -1
  24. package/dist-server/service/project/project-type.js.map +1 -1
  25. package/dist-server/service/project/project.d.ts +2 -0
  26. package/dist-server/service/project/project.js +10 -0
  27. package/dist-server/service/project/project.js.map +1 -1
  28. package/dist-server/tsconfig.tsbuildinfo +1 -1
  29. package/package.json +4 -4
@@ -9,6 +9,7 @@ import { ScopedElementsMixin } from '@open-wc/scoped-elements';
9
9
  import { client } from '@operato/graphql';
10
10
  import { notify } from '@operato/layout';
11
11
  import gql from 'graphql-tag';
12
+ import { SITE_TYPE_DISPLAY } from './project-list';
12
13
  import '../lib/select2-component';
13
14
  import './component/project-update-header';
14
15
  let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
@@ -42,7 +43,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
42
43
  };
43
44
  }
44
45
  render() {
45
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33;
46
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50;
46
47
  return html `
47
48
  <project-update-header .projectId=${this.project.id || ''} title="프로젝트 정보 관리" @custom-click=${this._saveProject}>
48
49
  </project-update-header>
@@ -120,7 +121,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
120
121
  </span>
121
122
  </div>
122
123
  <div row>
123
- <span>면적</span>
124
+ <span>연 면적</span>
124
125
  <span align-end
125
126
  ><md-outlined-text-field
126
127
  type="text"
@@ -129,10 +130,56 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
129
130
  building-complex
130
131
  .value=${((_l = (_k = (_j = this.project) === null || _j === void 0 ? void 0 : _j.buildingComplex) === null || _k === void 0 ? void 0 : _k.area) === null || _l === void 0 ? void 0 : _l.toString()) || ''}
131
132
  @input=${this._onInputChange}
133
+ suffix-text="㎡"
132
134
  ></md-outlined-text-field>
133
- ㎡</span
134
- >
135
+ </span>
136
+ </div>
137
+
138
+ <div row>
139
+ <span>건폐율</span>
140
+ <span align-end>
141
+ <md-outlined-text-field
142
+ type="text"
143
+ name="coverageRatio"
144
+ numeric
145
+ building-complex
146
+ .value=${((_p = (_o = (_m = this.project) === null || _m === void 0 ? void 0 : _m.buildingComplex) === null || _o === void 0 ? void 0 : _o.coverageRatio) === null || _p === void 0 ? void 0 : _p.toString()) || ''}
147
+ @input=${this._onInputChange}
148
+ suffix-text="%"
149
+ ></md-outlined-text-field>
150
+ </span>
151
+ </div>
152
+ <div row>
153
+ <span>용적률</span>
154
+ <span align-end>
155
+ <md-outlined-text-field
156
+ type="text"
157
+ name="floorAreaRatio"
158
+ numeric
159
+ building-complex
160
+ .value=${((_s = (_r = (_q = this.project) === null || _q === void 0 ? void 0 : _q.buildingComplex) === null || _r === void 0 ? void 0 : _r.floorAreaRatio) === null || _s === void 0 ? void 0 : _s.toString()) || ''}
161
+ @input=${this._onInputChange}
162
+ suffix-text="%"
163
+ ></md-outlined-text-field>
164
+ </span>
165
+ </div>
166
+
167
+ <div row>
168
+ <span>현장유형</span>
169
+ <span
170
+ ><md-filled-select name="siteType" building-complex @change=${this._onInputChange}>
171
+ ${Object.entries(SITE_TYPE_DISPLAY).map(([key, display]) => {
172
+ var _a, _b;
173
+ return html `
174
+ <md-select-option ?selected=${((_b = (_a = this.project) === null || _a === void 0 ? void 0 : _a.buildingComplex) === null || _b === void 0 ? void 0 : _b.siteType) === key} .value=${key}>
175
+ <div slot="headline">${display}</div>
176
+ </md-select-option>
177
+ `;
178
+ })}
179
+ </md-filled-select>
180
+ </span>
135
181
  </div>
182
+
136
183
  <div row>
137
184
  <span>착공일정 ~ 준공일정</span>
138
185
  <span
@@ -162,7 +209,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
162
209
  type="text"
163
210
  name="clientCompany"
164
211
  building-complex
165
- .value=${((_o = (_m = this.project) === null || _m === void 0 ? void 0 : _m.buildingComplex) === null || _o === void 0 ? void 0 : _o.clientCompany) || ''}
212
+ .value=${((_u = (_t = this.project) === null || _t === void 0 ? void 0 : _t.buildingComplex) === null || _u === void 0 ? void 0 : _u.clientCompany) || ''}
166
213
  @input=${this._onInputChange}
167
214
  ></md-outlined-text-field>
168
215
  </span>
@@ -174,7 +221,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
174
221
  type="text"
175
222
  name="constructionCompany"
176
223
  building-complex
177
- .value=${((_q = (_p = this.project) === null || _p === void 0 ? void 0 : _p.buildingComplex) === null || _q === void 0 ? void 0 : _q.constructionCompany) || ''}
224
+ .value=${((_w = (_v = this.project) === null || _v === void 0 ? void 0 : _v.buildingComplex) === null || _w === void 0 ? void 0 : _w.constructionCompany) || ''}
178
225
  @input=${this._onInputChange}
179
226
  ></md-outlined-text-field>
180
227
  </span>
@@ -186,7 +233,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
186
233
  type="text"
187
234
  name="designCompany"
188
235
  building-complex
189
- .value=${((_s = (_r = this.project) === null || _r === void 0 ? void 0 : _r.buildingComplex) === null || _s === void 0 ? void 0 : _s.designCompany) || ''}
236
+ .value=${((_y = (_x = this.project) === null || _x === void 0 ? void 0 : _x.buildingComplex) === null || _y === void 0 ? void 0 : _y.designCompany) || ''}
190
237
  @input=${this._onInputChange}
191
238
  ></md-outlined-text-field>
192
239
  </span>
@@ -198,7 +245,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
198
245
  type="text"
199
246
  name="supervisoryCompany"
200
247
  building-complex
201
- .value=${((_u = (_t = this.project) === null || _t === void 0 ? void 0 : _t.buildingComplex) === null || _u === void 0 ? void 0 : _u.supervisoryCompany) || ''}
248
+ .value=${((_0 = (_z = this.project) === null || _z === void 0 ? void 0 : _z.buildingComplex) === null || _0 === void 0 ? void 0 : _0.supervisoryCompany) || ''}
202
249
  @input=${this._onInputChange}
203
250
  ></md-outlined-text-field>
204
251
  </span>
@@ -210,17 +257,30 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
210
257
  type="text"
211
258
  name="constructionType"
212
259
  building-complex
213
- .value=${((_w = (_v = this.project) === null || _v === void 0 ? void 0 : _v.buildingComplex) === null || _w === void 0 ? void 0 : _w.constructionType) || ''}
260
+ .value=${((_2 = (_1 = this.project) === null || _1 === void 0 ? void 0 : _1.buildingComplex) === null || _2 === void 0 ? void 0 : _2.constructionType) || ''}
261
+ @input=${this._onInputChange}
262
+ ></md-outlined-text-field>
263
+ </span>
264
+ </div>
265
+ <div row>
266
+ <span>구조 유형</span>
267
+ <span
268
+ ><md-outlined-text-field
269
+ type="text"
270
+ name="structureType"
271
+ building-complex
272
+ .value=${((_4 = (_3 = this.project) === null || _3 === void 0 ? void 0 : _3.buildingComplex) === null || _4 === void 0 ? void 0 : _4.structureType) || ''}
214
273
  @input=${this._onInputChange}
215
274
  ></md-outlined-text-field>
216
275
  </span>
217
276
  </div>
277
+
218
278
  <div row>
219
279
  <span>대표사진 업로드</span>
220
280
  <span>
221
281
  <ox-input-image
222
282
  name="mainPhoto"
223
- value=${((_y = (_x = this.project) === null || _x === void 0 ? void 0 : _x.mainPhoto) === null || _y === void 0 ? void 0 : _y.fullpath) || ''}
283
+ value=${((_6 = (_5 = this.project) === null || _5 === void 0 ? void 0 : _5.mainPhoto) === null || _6 === void 0 ? void 0 : _6.fullpath) || ''}
224
284
  @change=${this.onCreateAttachment.bind(this)}
225
285
  ></ox-input-image>
226
286
  </span>
@@ -232,7 +292,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
232
292
  name="drawing"
233
293
  label=" "
234
294
  description="IFC 업로드"
235
- .value=${((_0 = (_z = this.project) === null || _z === void 0 ? void 0 : _z.buildingComplex) === null || _0 === void 0 ? void 0 : _0.drawing) || ''}
295
+ .value=${((_8 = (_7 = this.project) === null || _7 === void 0 ? void 0 : _7.buildingComplex) === null || _8 === void 0 ? void 0 : _8.drawing) || ''}
236
296
  @change=${this.onCreateAttachment.bind(this)}
237
297
  ></ox-input-file>
238
298
  </span>
@@ -245,8 +305,23 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
245
305
  name="constructionCost"
246
306
  numeric
247
307
  building-complex
248
- .value=${((_3 = (_2 = (_1 = this.project) === null || _1 === void 0 ? void 0 : _1.buildingComplex) === null || _2 === void 0 ? void 0 : _2.constructionCost) === null || _3 === void 0 ? void 0 : _3.toString()) || ''}
308
+ .value=${((_11 = (_10 = (_9 = this.project) === null || _9 === void 0 ? void 0 : _9.buildingComplex) === null || _10 === void 0 ? void 0 : _10.constructionCost) === null || _11 === void 0 ? void 0 : _11.toString()) || ''}
309
+ @input=${this._onInputChange}
310
+ suffix-text="원"
311
+ ></md-outlined-text-field>
312
+ </span>
313
+ </div>
314
+ <div row>
315
+ <span>투입 인력</span>
316
+ <span
317
+ ><md-outlined-text-field
318
+ type="text"
319
+ name="workerCount"
320
+ numeric
321
+ building-complex
322
+ .value=${((_14 = (_13 = (_12 = this.project) === null || _12 === void 0 ? void 0 : _12.buildingComplex) === null || _13 === void 0 ? void 0 : _13.workerCount) === null || _14 === void 0 ? void 0 : _14.toString()) || ''}
249
323
  @input=${this._onInputChange}
324
+ suffix-text="명"
250
325
  ></md-outlined-text-field>
251
326
  </span>
252
327
  </div>
@@ -257,7 +332,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
257
332
  type="textarea"
258
333
  name="etc"
259
334
  building-complex
260
- .value=${((_5 = (_4 = this.project) === null || _4 === void 0 ? void 0 : _4.buildingComplex) === null || _5 === void 0 ? void 0 : _5.etc) || ''}
335
+ .value=${((_16 = (_15 = this.project) === null || _15 === void 0 ? void 0 : _15.buildingComplex) === null || _16 === void 0 ? void 0 : _16.etc) || ''}
261
336
  @input=${this._onInputChange}
262
337
  ></md-outlined-text-field>
263
338
  </span>
@@ -269,7 +344,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
269
344
  placeholder="총괄 시공 관리자 리스트"
270
345
  name="overallConstructorEmails"
271
346
  .options=${this.overallConstructorList}
272
- .selectedValues=${((_7 = (_6 = this.project) === null || _6 === void 0 ? void 0 : _6.buildingComplex) === null || _7 === void 0 ? void 0 : _7.overallConstructorEmails) || []}
347
+ .selectedValues=${((_18 = (_17 = this.project) === null || _17 === void 0 ? void 0 : _17.buildingComplex) === null || _18 === void 0 ? void 0 : _18.overallConstructorEmails) || []}
273
348
  @selection-changed=${this._handleSelectionChange}
274
349
  ></select2-component>
275
350
  </span>
@@ -281,7 +356,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
281
356
  placeholder="공종별 시공 관리자 리스트"
282
357
  name="taskConstructorEmails"
283
358
  .options=${this.taskConstructorList}
284
- .selectedValues=${((_9 = (_8 = this.project) === null || _8 === void 0 ? void 0 : _8.buildingComplex) === null || _9 === void 0 ? void 0 : _9.taskConstructorEmails) || []}
359
+ .selectedValues=${((_20 = (_19 = this.project) === null || _19 === void 0 ? void 0 : _19.buildingComplex) === null || _20 === void 0 ? void 0 : _20.taskConstructorEmails) || []}
285
360
  @selection-changed=${this._handleSelectionChange}
286
361
  ></select2-component>
287
362
  </span>
@@ -293,7 +368,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
293
368
  placeholder="총괄 감리 책임자 리스트"
294
369
  name="overallSupervisoryEmails"
295
370
  .options=${this.overallSupervisoryList}
296
- .selectedValues=${((_11 = (_10 = this.project) === null || _10 === void 0 ? void 0 : _10.buildingComplex) === null || _11 === void 0 ? void 0 : _11.overallSupervisoryEmails) || []}
371
+ .selectedValues=${((_22 = (_21 = this.project) === null || _21 === void 0 ? void 0 : _21.buildingComplex) === null || _22 === void 0 ? void 0 : _22.overallSupervisoryEmails) || []}
297
372
  @selection-changed=${this._handleSelectionChange}
298
373
  ></select2-component>
299
374
  </span>
@@ -305,7 +380,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
305
380
  placeholder="공종별 감리 책임자 리스트"
306
381
  name="taskSupervisoryEmails"
307
382
  .options=${this.taskSupervisoryList}
308
- .selectedValues=${((_13 = (_12 = this.project) === null || _12 === void 0 ? void 0 : _12.buildingComplex) === null || _13 === void 0 ? void 0 : _13.taskSupervisoryEmails) || []}
383
+ .selectedValues=${((_24 = (_23 = this.project) === null || _23 === void 0 ? void 0 : _23.buildingComplex) === null || _24 === void 0 ? void 0 : _24.taskSupervisoryEmails) || []}
309
384
  @selection-changed=${this._handleSelectionChange}
310
385
  ></select2-component
311
386
  ></span>
@@ -323,7 +398,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
323
398
  numeric
324
399
  building-complex
325
400
  name="householdCount"
326
- .value=${((_16 = (_15 = (_14 = this.project) === null || _14 === void 0 ? void 0 : _14.buildingComplex) === null || _15 === void 0 ? void 0 : _15.householdCount) === null || _16 === void 0 ? void 0 : _16.toString()) || ''}
401
+ .value=${((_27 = (_26 = (_25 = this.project) === null || _25 === void 0 ? void 0 : _25.buildingComplex) === null || _26 === void 0 ? void 0 : _26.householdCount) === null || _27 === void 0 ? void 0 : _27.toString()) || ''}
327
402
  @input=${this._onInputChange}
328
403
  ></md-outlined-text-field>
329
404
  </span>
@@ -336,7 +411,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
336
411
  numeric
337
412
  building-complex
338
413
  name="buildingCount"
339
- value=${((_19 = (_18 = (_17 = this.project) === null || _17 === void 0 ? void 0 : _17.buildingComplex) === null || _18 === void 0 ? void 0 : _18.buildingCount) === null || _19 === void 0 ? void 0 : _19.toString()) || ''}
414
+ value=${((_30 = (_29 = (_28 = this.project) === null || _28 === void 0 ? void 0 : _28.buildingComplex) === null || _29 === void 0 ? void 0 : _29.buildingCount) === null || _30 === void 0 ? void 0 : _30.toString()) || ''}
340
415
  @input=${this._onInputChange}
341
416
  ></md-outlined-text-field>
342
417
  <md-outlined-button @click=${this._setBuilding}>적용</md-outlined-button>
@@ -345,7 +420,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
345
420
  <hr />
346
421
  <div warn>* 동/층의 정보를 수정하면 기존의 동/층 정보는 모두 제거됩니다.</div>
347
422
  <div separate-container>
348
- ${(_22 = (_21 = (_20 = this.project) === null || _20 === void 0 ? void 0 : _20.buildingComplex) === null || _21 === void 0 ? void 0 : _21.buildings) === null || _22 === void 0 ? void 0 : _22.map((building, idx) => {
423
+ ${(_33 = (_32 = (_31 = this.project) === null || _31 === void 0 ? void 0 : _31.buildingComplex) === null || _32 === void 0 ? void 0 : _32.buildings) === null || _33 === void 0 ? void 0 : _33.map((building, idx) => {
349
424
  var _a, _b;
350
425
  return html `
351
426
  <div>
@@ -413,7 +488,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
413
488
  numeric
414
489
  project
415
490
  name="totalProgress"
416
- .value=${((_23 = this.project.totalProgress) === null || _23 === void 0 ? void 0 : _23.toString()) || ''}
491
+ .value=${((_34 = this.project.totalProgress) === null || _34 === void 0 ? void 0 : _34.toString()) || ''}
417
492
  @input=${this._onInputChange}
418
493
  suffix-text="%"
419
494
  ></md-outlined-text-field>
@@ -427,7 +502,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
427
502
  numeric
428
503
  project
429
504
  name="inspPassRate"
430
- .value=${((_24 = this.project.inspPassRate) === null || _24 === void 0 ? void 0 : _24.toString()) || ''}
505
+ .value=${((_35 = this.project.inspPassRate) === null || _35 === void 0 ? void 0 : _35.toString()) || ''}
431
506
  @input=${this._onInputChange}
432
507
  suffix-text="%"
433
508
  ></md-outlined-text-field>
@@ -443,7 +518,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
443
518
  numeric
444
519
  project
445
520
  name="weeklyProgress"
446
- .value=${((_25 = this.project.weeklyProgress) === null || _25 === void 0 ? void 0 : _25.toString()) || ''}
521
+ .value=${((_36 = this.project.weeklyProgress) === null || _36 === void 0 ? void 0 : _36.toString()) || ''}
447
522
  @input=${this._onInputChange}
448
523
  suffix-text="%"
449
524
  ></md-outlined-text-field>
@@ -457,7 +532,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
457
532
  numeric
458
533
  project
459
534
  name="robotProgressRate"
460
- .value=${((_26 = this.project.robotProgressRate) === null || _26 === void 0 ? void 0 : _26.toString()) || ''}
535
+ .value=${((_37 = this.project.robotProgressRate) === null || _37 === void 0 ? void 0 : _37.toString()) || ''}
461
536
  @input=${this._onInputChange}
462
537
  suffix-text="%"
463
538
  ></md-outlined-text-field>
@@ -473,7 +548,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
473
548
  numeric
474
549
  project
475
550
  name="kpi"
476
- .value=${((_27 = this.project.kpi) === null || _27 === void 0 ? void 0 : _27.toString()) || ''}
551
+ .value=${((_38 = this.project.kpi) === null || _38 === void 0 ? void 0 : _38.toString()) || ''}
477
552
  @input=${this._onInputChange}
478
553
  suffix-text="%"
479
554
  ></md-outlined-text-field>
@@ -487,7 +562,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
487
562
  numeric
488
563
  project
489
564
  name="structuralSafetyRate"
490
- .value=${((_28 = this.project.structuralSafetyRate) === null || _28 === void 0 ? void 0 : _28.toString()) || ''}
565
+ .value=${((_39 = this.project.structuralSafetyRate) === null || _39 === void 0 ? void 0 : _39.toString()) || ''}
491
566
  @input=${this._onInputChange}
492
567
  suffix-text="%"
493
568
  ></md-outlined-text-field>
@@ -504,8 +579,57 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
504
579
  numeric
505
580
  project
506
581
  name="robotCount"
507
- .value=${((_29 = this.project.robotCount) === null || _29 === void 0 ? void 0 : _29.toString()) || ''}
582
+ .value=${((_40 = this.project.robotCount) === null || _40 === void 0 ? void 0 : _40.toString()) || ''}
583
+ @input=${this._onInputChange}
584
+ ></md-outlined-text-field>
585
+ </span>
586
+ </div>
587
+ </div>
588
+
589
+ <hr />
590
+
591
+ <div row separate-container>
592
+ <div>
593
+ <span>설계 변경 횟수</span>
594
+ <span
595
+ ><md-outlined-text-field
596
+ type="text"
597
+ numeric
598
+ building-complex
599
+ name="designChangeCount"
600
+ .value=${((_42 = (_41 = this.project.buildingComplex) === null || _41 === void 0 ? void 0 : _41.designChangeCount) === null || _42 === void 0 ? void 0 : _42.toString()) || ''}
601
+ @input=${this._onInputChange}
602
+ ></md-outlined-text-field>
603
+ </span>
604
+ </div>
605
+ <div>
606
+ <span>계획 공정률</span>
607
+ <span
608
+ ><md-outlined-text-field
609
+ type="text"
610
+ numeric
611
+ building-complex
612
+ name="plannedProgress"
613
+ .value=${((_44 = (_43 = this.project.buildingComplex) === null || _43 === void 0 ? void 0 : _43.plannedProgress) === null || _44 === void 0 ? void 0 : _44.toString()) || ''}
614
+ @input=${this._onInputChange}
615
+ suffix-text="%"
616
+ ></md-outlined-text-field>
617
+ </span>
618
+ </div>
619
+ </div>
620
+
621
+ <div row separate-container>
622
+ <div>
623
+ <span>실제 공정률</span>
624
+ <span
625
+ ><md-outlined-text-field
626
+ type="text"
627
+ numeric
628
+ building-complex
629
+ name="actualProgress"
630
+ .value=${((_46 = (_45 = this.project.buildingComplex) === null || _45 === void 0 ? void 0 : _45.actualProgress) === null || _46 === void 0 ? void 0 : _46.toString()) || ''}
508
631
  @input=${this._onInputChange}
632
+ suffix-text="%"
509
633
  ></md-outlined-text-field>
510
634
  </span>
511
635
  </div>
@@ -521,7 +645,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
521
645
  type="textarea"
522
646
  name="notice"
523
647
  building-complex
524
- .value=${((_31 = (_30 = this.project) === null || _30 === void 0 ? void 0 : _30.buildingComplex) === null || _31 === void 0 ? void 0 : _31.notice) || ''}
648
+ .value=${((_48 = (_47 = this.project) === null || _47 === void 0 ? void 0 : _47.buildingComplex) === null || _48 === void 0 ? void 0 : _48.notice) || ''}
525
649
  @input=${this._onInputChange}
526
650
  ></md-outlined-text-field>
527
651
  </span>
@@ -537,7 +661,7 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
537
661
  type="text"
538
662
  name="virtualTourLink"
539
663
  building-complex
540
- .value=${((_33 = (_32 = this.project) === null || _32 === void 0 ? void 0 : _32.buildingComplex) === null || _33 === void 0 ? void 0 : _33.virtualTourLink) || ''}
664
+ .value=${((_50 = (_49 = this.project) === null || _49 === void 0 ? void 0 : _49.buildingComplex) === null || _50 === void 0 ? void 0 : _50.virtualTourLink) || ''}
541
665
  @input=${this._onInputChange}
542
666
  ></md-outlined-text-field>
543
667
  </span>
@@ -578,9 +702,17 @@ let ProjectUpdate = class ProjectUpdate extends ScopedElementsMixin(PageView) {
578
702
  buildingComplex {
579
703
  id
580
704
  address
705
+ siteType
581
706
  latitude
582
707
  longitude
583
708
  area
709
+ coverageRatio
710
+ floorAreaRatio
711
+ structureType
712
+ workerCount
713
+ designChangeCount
714
+ plannedProgress
715
+ actualProgress
584
716
  clientCompany
585
717
  constructionCompany
586
718
  supervisoryCompany
@@ -779,6 +911,13 @@ ProjectUpdate.styles = [
779
911
  select2-component {
780
912
  width: 100%;
781
913
  }
914
+ md-filled-select {
915
+ width: 100%;
916
+ --md-filled-select-text-field-container-color: transparent;
917
+ --md-filled-select-text-field-active-indicator-color: #999;
918
+ --md-filled-select-text-field-input-text-size: 14px;
919
+ --md-filled-select-text-field-input-text-line-height: 6px;
920
+ }
782
921
  input[type='date'] {
783
922
  border: 1px solid rgba(51, 51, 51, 0.2);
784
923
  padding: var(--spacing-small, 4px) var(--spacing-medium, 8px);