BeWoPlanerMobil:
Zeiterfassungseinträge auch ohne Uhrzeit möglich
This commit is contained in:
@@ -6,6 +6,7 @@ using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Windows.Forms;
|
||||
using BeWo.Service.ServiceImplementations;
|
||||
|
||||
@@ -2109,11 +2110,13 @@ namespace BeWoPlanerMobil.Controllers
|
||||
}
|
||||
|
||||
// Menünavigation
|
||||
[Authorize]
|
||||
public ActionResult RedirectToScheduler()
|
||||
{
|
||||
return RedirectToActionPermanent("Scheduler", "Scheduler");
|
||||
}
|
||||
|
||||
[Authorize]
|
||||
public ActionResult RedirectToCustomer()
|
||||
{
|
||||
if(Model?.SelectedSupportConcept?.Customer?.Oid.HasValue ?? false)
|
||||
@@ -2131,6 +2134,12 @@ namespace BeWoPlanerMobil.Controllers
|
||||
return RedirectToActionPermanent("Customer", "Customer");
|
||||
}
|
||||
|
||||
[Authorize]
|
||||
public ActionResult RedirectToReportView()
|
||||
{
|
||||
return AbstractModel.IsAllowedToSeeBills ? RedirectToActionPermanent("Report", "Report") : RedirectToMain();
|
||||
}
|
||||
|
||||
public ActionResult RedirectToMain()
|
||||
{
|
||||
return RedirectToActionPermanent("Main", "Main");
|
||||
|
||||
Reference in New Issue
Block a user