개정판 d2d4f84b
issue #0000
- Excel Import/Export
- Excel Import 시 기존데이터는 그대로 두고 append만 가능하도록
- Excel Impor 시 유효성 체크(document no), excel 유효성 체크
- 저장
- Document 비교로직 추가
Change-Id: Iee4d385bc85eb9ea71b6d817a6462c0775eefe2d
ID2.Manager/ID2.Manager.Dapper/Repository/DocumentRepository.cs | ||
---|---|---|
28 | 28 |
|
29 | 29 |
try |
30 | 30 |
{ |
31 |
using (var transaction = base._DbConnection.BeginTransaction())
|
|
31 |
using (var transaction = base.BeginTransaction()) |
|
32 | 32 |
{ |
33 | 33 |
string query = string.Empty; |
34 | 34 |
|
... | ... | |
38 | 38 |
|
39 | 39 |
if (docIDList.Length > 0) |
40 | 40 |
{ |
41 |
query = $@"delete from dbo.Documents where Cases_UID=@Cases_UID and [DocID] in ('{docIDList}');";
|
|
41 |
query = $@"delete from dbo.Documents where [DocID] in ('{docIDList}');"; |
|
42 | 42 |
base.Execute(query, transaction); |
43 | 43 |
} |
44 | 44 |
} |
... | ... | |
228 | 228 |
return isSuccess; |
229 | 229 |
} |
230 | 230 |
} |
231 |
} |
|
231 |
} |
내보내기 Unified diff