개정판 92c9cab8
issue #0000 DIG test 오류 수정
Change-Id: If8c0d8e600350c6ac591324d3cc5667a1bc57c5e
KCOM/Views/MainMenu.xaml.cs | ||
---|---|---|
529 | 529 |
|
530 | 530 |
if (!string.IsNullOrWhiteSpace(directUri)) |
531 | 531 |
{ |
532 |
isRestDownload = true; |
|
533 |
filename = System.IO.Path.GetFileName(this._DocInfo.ORIGINAL_FILE); |
|
532 |
if (directUri == "FULL") |
|
533 |
{ |
|
534 |
downloadurl = this._DocInfo.ORIGINAL_FILE; |
|
535 |
} |
|
536 |
else |
|
537 |
{ |
|
538 |
isRestDownload = true; |
|
539 |
filename = System.IO.Path.GetFileName(this._DocInfo.ORIGINAL_FILE); |
|
534 | 540 |
|
535 |
downloadurl = string.Format(directUri, filename); |
|
541 |
downloadurl = string.Format(directUri, filename); |
|
542 |
} |
|
536 | 543 |
} |
537 | 544 |
else |
538 | 545 |
{ |
... | ... | |
6213 | 6220 |
{ |
6214 | 6221 |
if (checkbox.IsChecked.GetValueOrDefault()) |
6215 | 6222 |
{ |
6216 |
gridViewMarkup.SelectAll(); |
|
6223 |
if (!App.ViewInfo.CreateFinalPDFPermission && App.ViewInfo.NewCommentPermission) |
|
6224 |
{ |
|
6225 |
var currentItem = gridViewMarkup.Items.OfType<IKCOM.MarkupInfoItem>().Where(x => x.UserID == App.ViewInfo.UserID); |
|
6226 |
|
|
6227 |
if (currentItem.Count() > 0) |
|
6228 |
{ |
|
6229 |
foreach (var item in gridViewMarkup.Items.OfType<IKCOM.MarkupInfoItem>()) |
|
6230 |
{ |
|
6231 |
if (item.Consolidate == 0 && item.Depatment == currentItem.First().Depatment) |
|
6232 |
{ |
|
6233 |
gridViewMarkup.SelectedItems.Add(item); |
|
6234 |
} |
|
6235 |
} |
|
6236 |
} |
|
6237 |
} |
|
6238 |
else |
|
6239 |
{ |
|
6240 |
gridViewMarkup.SelectAll(); |
|
6241 |
} |
|
6217 | 6242 |
} |
6218 | 6243 |
else |
6219 | 6244 |
{ |
내보내기 Unified diff