프로젝트

일반

사용자정보

개정판 762737cd

ID762737cd1e1776b6f078938c418335faaa840af8
상위 a9a82876
하위 4d5fa501

김태성이(가) 약 2달 전에 추가함

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

클립보드 이미지 추가 (최대 크기: 500 MB)