|
@@ -113,7 +113,7 @@ namespace SAGA.MBI.WinView.Upload
|
|
|
{
|
|
|
var upfloors = UploadFloors.Where(t =>
|
|
|
t.IsUpload && t.MFloor.FloorLock.LockState == MFloorLockState.LockBySelf).ToList();
|
|
|
- int i = 0, count = upfloors.Count(), j = 0;
|
|
|
+ int i = 0, count = upfloors.Count();
|
|
|
List<string> successList = new List<string>();
|
|
|
List<string> failList = UploadFloors.Select(t => t.FloorName).ToList();
|
|
|
foreach (var ufloor in upfloors)
|
|
@@ -167,8 +167,8 @@ namespace SAGA.MBI.WinView.Upload
|
|
|
{
|
|
|
tip += $"楼层{string.Join(",", failList)}上传失败!请重新上传。";
|
|
|
}
|
|
|
-
|
|
|
- MessageShow.Infomation(tip);
|
|
|
+ if (successList.Count > 0 || failList.Count > 0)
|
|
|
+ MessageShow.Infomation(tip);
|
|
|
|
|
|
#endregion
|
|
|
|