개정판 17d21934
Fix: AVEVA PID Folder 설정이 되지 않았을때 발생하는 오류 수정
Change-Id: I08175915c252eb4e58f37a6dc96731718b60358f
ID2.Manager/ID2.Manager/Controls/Verification.cs | ||
---|---|---|
139 | 139 |
ShowAutoCADFile(dwgFilePath); |
140 | 140 |
|
141 | 141 |
string AVEVAPIDFolder = this.radBrowseEditorAVEVAPIDFolder.Value; |
142 |
string AVEVAPIDFilePath = System.IO.Path.Combine(AVEVAPIDFolder, $"{doc.DocumentNo}{dwgExtension}"); |
|
143 |
ShowAVEVAPIDFile(AVEVAPIDFilePath); |
|
142 |
string AVEVAPIDFilePath = string.Empty; |
|
143 |
if (AVEVAPIDFolder != null) |
|
144 |
{ |
|
145 |
AVEVAPIDFilePath = System.IO.Path.Combine(AVEVAPIDFolder, $"{doc.DocumentNo}{dwgExtension}"); |
|
146 |
ShowAVEVAPIDFile(AVEVAPIDFilePath); |
|
147 |
} |
|
144 | 148 |
|
145 | 149 |
if(System.IO.File.Exists(dwgFilePath) && System.IO.File.Exists(AVEVAPIDFilePath)) |
146 | 150 |
{ |
내보내기 Unified diff