개정판 f074a104
issue #0000
Main Grid
- 이미지 삭제 시 이미지 count 업데이트 되도록 수정
- 이미지 추가 시 이미지 count 업데이트 되도록 수정
- checkbox 클릭 후 combo 데이터 변경 시 해당 checkbox에 해당하는 값이 변경되면 체크박스 전체 데이터 변경 되도록 수정
Excel Import
- Excel Import 시 기존에 바인딩 되어있는 Team, Document No 가 존재하면 해당 데이터 업데이트
- Excel Import 시 기존에 바인딩 되어있는 Team, Document No 가 존재하지 않으면 append 되도록 수정
Save
- Save 로직 수정
Documents Model
- 불필요한 컬럼 삭제
- Team, Document No 비교 class 추가
- Document 값을 복사 및 파일 append를 위한 함수추가
Change-Id: Iedc21f63e38e0140e3ccfec0c12fc492544ee342
ID2.Manager/ID2.Manager.Controller/Controllers/DocumentController.cs | ||
---|---|---|
76 | 76 |
DocumentNo = doc.DocumentNo, |
77 | 77 |
RevisonNo = doc.RevisonNo, |
78 | 78 |
RefProjectCode = doc.RefProjectCode, |
79 |
IsLatest = doc.IsLatest, |
|
80 | 79 |
JobLevel = doc.JobLevel, |
81 | 80 |
PersonInCharge = doc.PersonInCharge, |
82 |
IsDeleted = doc.IsDeleted, |
|
83 |
RegisteredDate = doc.RegisteredDate, |
|
84 |
ModifiedDate = doc.ModifiedDate, |
|
85 |
DeletedDate = doc.DeletedDate, |
|
86 | 81 |
ToIsDiscussion = doc.ToIsDiscussion, |
87 | 82 |
ToRemarks = doc.ToRemarks, |
88 | 83 |
ToCreator = doc.ToCreator, |
... | ... | |
142 | 137 |
} |
143 | 138 |
} |
144 | 139 |
|
145 |
public bool SetDocumentData(string projectGroupID, List<Documents> docList, List<Documents> delDocList, string userId)
|
|
140 |
public bool SetDocumentData(string projectGroupID, List<Documents> docList, List<string> delDocList, string userId)
|
|
146 | 141 |
{ |
147 | 142 |
try |
148 | 143 |
{ |
내보내기 Unified diff