Itt maradt
This commit is contained in:
@@ -19,7 +19,7 @@ namespace WorkFlowCheck.MAUI.Helper
|
||||
public static string DatabaseName = "";
|
||||
public static bool Syncronised = false;
|
||||
public static UserDTO SystemUserDTO;
|
||||
public static string ProgramVersion = "v1.1.025";
|
||||
public static string ProgramVersion = "v1.1.027";
|
||||
|
||||
#if DEBUG
|
||||
public static string ApiBaseUrl = $"https://dev.wfcapi.nuvolar.hu/";
|
||||
|
||||
@@ -384,7 +384,11 @@ public partial class CheckListPage : ContentPage
|
||||
if (!isAdmin)
|
||||
{
|
||||
var result = checkListHeaderDTOs
|
||||
.Where(w => w.UserId == userDTO.Id && w.CheckStatus != CheckStatus.Blocked).ToList();
|
||||
.Where(w => w.UserId == userDTO.Id &&
|
||||
//w.CheckStatus != CheckStatus.Blocked &&
|
||||
w.CheckStatus != CheckStatus.Sent &&
|
||||
w.CheckStatus != CheckStatus.Closed
|
||||
).ToList();
|
||||
CheckList.ItemsSource = result;
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,8 @@ namespace WorkFlowCheck.MAUI.Services
|
||||
.Include(i => i.CheckListTemplateHeader)
|
||||
.Where(w => w.CheckStatus == CheckStatus.Open ||
|
||||
w.CheckStatus == CheckStatus.InProgress ||
|
||||
w.CheckStatus == CheckStatus.Blocked)
|
||||
w.CheckStatus == CheckStatus.Blocked ||
|
||||
w.CheckStatus == CheckStatus.Sent)
|
||||
.ToListAsync();
|
||||
retVal = _mapper.Map<List<CheckListHeaderDTO>>(res);
|
||||
}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
dotnet publish -f net8.0-android -c Release -p:AndroidPackageFormat=apk
|
||||
dotnet publish -f net8.0-android -c Release -p:AndroidPackageFormat=apk
|
||||
pause
|
||||
Reference in New Issue
Block a user