개정판 762737cd
issue #0000 comment없는 user가 export시 오류 발생에 대한 수정
Change-Id: I8c9bdc8619b63a615960575b8eab7b5f304dc21f
KCOM/Events/Load.cs | ||
---|---|---|
53 | 53 |
//Logger.sendReqLog("GetMarkupDataListperPage: ", App.ViewInfo.ProjectNO + "," + Markupinfoid + "," + Page_No, 1); |
54 | 54 |
markupdata = await Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseTaskClient.GetMarkupDataListperPageAsync(App.ViewInfo.ProjectNO, Markupinfoid, Page_No); |
55 | 55 |
|
56 |
if (markupdata.Count() > 0) |
|
56 |
if (markupdata?.Count() > 0)
|
|
57 | 57 |
{ |
58 | 58 |
//Logger.sendResLog("GetMarkupDataListperPage", "TRUE", 1); |
59 | 59 |
} |
... | ... | |
62 | 62 |
//Logger.sendResLog("GetMarkupDataListperPage", "FALSE", 1); |
63 | 63 |
} |
64 | 64 |
|
65 |
foreach (string data in markupdata)
|
|
65 |
if (markupdata != null)
|
|
66 | 66 |
{ |
67 |
result = await MarkupParser.ParseAsync(App.BaseAddress, App.ViewInfo.ProjectNO, data, printCanvas, pageAngle, DisplayColor, "",null, |
|
68 |
STAMP_Contents: App.SystemInfo.STAMP_CONTENTS); |
|
69 |
|
|
70 |
if(!result) |
|
67 |
foreach (string data in markupdata) |
|
71 | 68 |
{ |
72 |
break; |
|
69 |
result = await MarkupParser.ParseAsync(App.BaseAddress, App.ViewInfo.ProjectNO, data, printCanvas, pageAngle, DisplayColor, "", null, |
|
70 |
STAMP_Contents: App.SystemInfo.STAMP_CONTENTS); |
|
71 |
|
|
72 |
if (!result) |
|
73 |
{ |
|
74 |
break; |
|
75 |
} |
|
73 | 76 |
} |
74 | 77 |
} |
75 | 78 |
|
내보내기 Unified diff