개정판 53880c83
issue #886: Symbol legend 생성 작업 중....
KCOM/Services/BaseServices.cs | ||
---|---|---|
77 | 77 |
{ |
78 | 78 |
Logger.sendResLog("EditFavoriteVPCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
79 | 79 |
|
80 |
if (e.Error == null && e.Result != null)
|
|
80 |
if (e.Error == null && e.Result != false)
|
|
81 | 81 |
{ |
82 | 82 |
Logger.sendReqLog("GetFavoriteVPAsync", App.ViewInfo.ProjectNO + "," + App.ViewInfo.UserID + "," + App.ViewInfo.DocumentItemID, 1); |
83 | 83 |
BaseClient.GetFavoriteVPAsync(App.ViewInfo.ProjectNO, App.ViewInfo.UserID, App.ViewInfo.DocumentItemID); |
... | ... | |
92 | 92 |
{ |
93 | 93 |
Logger.sendResLog("DelFavoriteVPCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
94 | 94 |
|
95 |
if (e.Error == null && e.Result != null)
|
|
95 |
if (e.Error == null && e.Result != false)
|
|
96 | 96 |
{ |
97 | 97 |
Logger.sendReqLog("GetFavoriteVPAsync", App.ViewInfo.ProjectNO + "," + App.ViewInfo.UserID + "," + App.ViewInfo.DocumentItemID, 1); |
98 | 98 |
BaseClient.GetFavoriteVPAsync(App.ViewInfo.ProjectNO, App.ViewInfo.UserID, App.ViewInfo.DocumentItemID); |
... | ... | |
213 | 213 |
MarkupInfoID = d.MarkupInfoID, |
214 | 214 |
PageNumber = p.PageNumber, |
215 | 215 |
Symbol_ID = p.Symbol_ID, |
216 |
Group_ID = p.Group_ID |
|
216 | 217 |
}); |
217 | 218 |
} |
218 | 219 |
else |
... | ... | |
226 | 227 |
MarkupInfoID = d.MarkupInfoID, |
227 | 228 |
PageNumber = p.PageNumber, |
228 | 229 |
Symbol_ID = p.Symbol_ID, |
230 |
Group_ID = p.Group_ID |
|
229 | 231 |
}); |
230 | 232 |
} |
231 | 233 |
//if (p.ID ==App.ViewInfo.UserID) |
... | ... | |
595 | 597 |
{ |
596 | 598 |
Logger.sendResLog("GetConversionStateCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
597 | 599 |
|
598 |
if (e.Error == null && e.Result != null && e.Result)
|
|
600 |
if (e.Error == null && e.Result == true)
|
|
599 | 601 |
{ |
600 | 602 |
Logger.sendReqLog("GetDocumentItemInfoAsync", _ViewInfo.ProjectNO + "," + _ViewInfo.DocumentItemID + "," + _ViewInfo.UserID, 1); |
601 | 603 |
|
... | ... | |
829 | 831 |
Common.ViewerDataModel.Instance.MarkupControls.Remove(data); |
830 | 832 |
}); |
831 | 833 |
|
834 |
|
|
832 | 835 |
foreach (var item in gridSelectionItem) |
833 | 836 |
{ |
834 | 837 |
if (item.UserID == App.ViewInfo.UserID) |
내보내기 Unified diff