개정판 1d79913e
issue #00000 error notice mail 안 되는 문제 수정
Change-Id: I307236bdea2ca63347b99a174c02e1e53f05a3a7
KCOM/Events/ConsolidateCommand.cs | ||
---|---|---|
40 | 40 |
/// </summary> |
41 | 41 |
/// <param name="UserState"></param> |
42 | 42 |
/// <param name="iPageNo"></param> |
43 |
public bool Execute(List<MarkupInfoItem> InfoList, int iPageNo)
|
|
43 |
public async Task<bool> ExecuteAsync(List<MarkupInfoItem> InfoList, int iPageNo)
|
|
44 | 44 |
{ |
45 |
bool result = false;
|
|
45 |
bool result = false; |
|
46 | 46 |
|
47 | 47 |
try |
48 | 48 |
{ |
... | ... | |
57 | 57 |
/// 현재 작업 내용을 저장 |
58 | 58 |
//Common.ViewerDataModel.Instance.SystemMain.dzTopMenu._SaveEvent(null, null); |
59 | 59 |
|
60 |
|
|
60 |
|
|
61 | 61 |
ViewerDataModel.Instance.IsConsolidate = false; |
62 | 62 |
|
63 | 63 |
//Logger.sendReqLog("Consolidate", App.ViewInfo.ProjectNO + "," + App.ViewInfo.UserID + "," + sDocID + "," + InfoList, 1); |
64 | 64 |
//Logger.sendResLog("Consolidate", Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.Consolidate(App.ViewInfo.ProjectNO, App.ViewInfo.UserID, sDocID, InfoList).ToString(), 1); |
65 | 65 |
|
66 |
result = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseTaskClient.Consolidate(App.ViewInfo.ProjectNO, App.ViewInfo.UserID, sDocID, InfoList);
|
|
66 |
result = await Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseTaskClient.ConsolidateAsync(App.ViewInfo.ProjectNO, App.ViewInfo.UserID, sDocID, InfoList);
|
|
67 | 67 |
|
68 | 68 |
//Logger.sendReqLog("GetMarkupInfoItemsAsync", App.ViewInfo.ProjectNO + "," + sDocID, 1); |
69 |
if(result) |
|
69 |
if (result) |
|
70 |
{ |
|
70 | 71 |
Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetMarkupInfoItemsAsync(App.ViewInfo.ProjectNO, sDocID); |
72 |
} |
|
71 | 73 |
} |
72 | 74 |
catch (Exception ex) |
73 | 75 |
{ |
내보내기 Unified diff