Browse Source

Introduced Case priority

master
Daniel Gyulai 4 years ago
parent
commit
41428195c9
  1. 14
      CoviDok/Api/Priority.cs
  2. 1
      CoviDok/Api/Request/CaseCreate.cs
  3. 1
      CoviDok/Api/Request/CaseUpdate.cs
  4. 9
      CoviDok/BLL/User/Managers/CaseManager.cs
  5. 4
      CoviDok/Controllers/CaseController.cs
  6. 5
      CoviDok/Data/Model/Case.cs

14
CoviDok/Api/Priority.cs

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CoviDok.Api
{
public enum Priority
{
Low,
Normal,
High
}
}

1
CoviDok/Api/Request/CaseCreate.cs

@ -12,5 +12,6 @@ namespace CoviDok.Api.Request
public int ChildId { get; set; } public int ChildId { get; set; }
public DateTime StartDate { get; set; } public DateTime StartDate { get; set; }
public string Title { get; set; } public string Title { get; set; }
public Priority Priority {get; set;}
} }
} }

1
CoviDok/Api/Request/CaseUpdate.cs

@ -11,5 +11,6 @@ namespace CoviDok.Api.Request
public string UpdateMsg { get; set; } public string UpdateMsg { get; set; }
public List<string> Images {get;set;} public List<string> Images {get;set;}
public string SessionId { get; set; } public string SessionId { get; set; }
public Priority Priority { get; set; }
} }
} }

9
CoviDok/BLL/User/Managers/CaseManager.cs

@ -113,7 +113,7 @@ namespace CoviDok.BLL.User.Managers
} }
} }
public async Task<Case> CreateCase(Session s, int DoctorId, int ChildId, string Title, DateTime startDate) public async Task<Case> CreateCase(Session s, int DoctorId, int ChildId, string Title, DateTime startDate, Api.Priority priority)
{ {
// TODO szülő csak saját gyereket jelenthet // TODO szülő csak saját gyereket jelenthet
Case c = new Case { Case c = new Case {
@ -125,12 +125,13 @@ namespace CoviDok.BLL.User.Managers
CreatedDate = DateTime.Now, CreatedDate = DateTime.Now,
LastModificationDate = DateTime.Now, LastModificationDate = DateTime.Now,
CaseStatus = CaseStatus.InProgress, CaseStatus = CaseStatus.InProgress,
Assignee = s.Id Assignee = s.Id,
Priority = priority
}; };
return await handler.AddCase(c); return await handler.AddCase(c);
} }
public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images) public async Task UpdateCase(Session s, int id, string updateMsg, List<string> Images, Api.Priority priority)
{ {
Case c = await handler.GetCase(id); Case c = await handler.GetCase(id);
if (c == null) throw new KeyNotFoundException("Case Id not found: " + id); if (c == null) throw new KeyNotFoundException("Case Id not found: " + id);
@ -145,7 +146,7 @@ namespace CoviDok.BLL.User.Managers
if (s.Id == c.ParentId) c.Assignee = c.DoctorId; // Ha szülő updatel, az assignee az orvos lesz if (s.Id == c.ParentId) c.Assignee = c.DoctorId; // Ha szülő updatel, az assignee az orvos lesz
// TODO Ha a doki VAGY asszisztense frissít // TODO Ha a doki VAGY asszisztense frissít
if (s.Id == c.DoctorId) c.Assignee = c.ParentId; // Ha doki frissít, a szülőhöz kerül if (s.Id == c.DoctorId) c.Assignee = c.ParentId; // Ha doki frissít, a szülőhöz kerül
c.Priority = priority;
c.LastModificationDate = DateTime.Now; c.LastModificationDate = DateTime.Now;
Update update = new Update { Update update = new Update {
CaseId = c.Id, CaseId = c.Id,

4
CoviDok/Controllers/CaseController.cs

@ -49,7 +49,7 @@ namespace CoviDok.Controllers
try try
{ {
Session s = await Handler.GetSession(data.SessionId); Session s = await Handler.GetSession(data.SessionId);
await mgr.UpdateCase(s, id, data.UpdateMsg, data.Images); await mgr.UpdateCase(s, id, data.UpdateMsg, data.Images, data.Priority);
return Ok(); return Ok();
} }
catch (UnauthorizedAccessException) catch (UnauthorizedAccessException)
@ -72,7 +72,7 @@ namespace CoviDok.Controllers
try try
{ {
Session s = await Handler.GetSession(data.SessionId); Session s = await Handler.GetSession(data.SessionId);
Case c = await mgr.CreateCase(s, data.DoctorId, data.ChildId, data.Title, data.StartDate); Case c = await mgr.CreateCase(s, data.DoctorId, data.ChildId, data.Title, data.StartDate, data.Priority);
return CreatedAtAction("PostGetCase", new { id = c.Id }, c); return CreatedAtAction("PostGetCase", new { id = c.Id }, c);
} }
catch (UnauthorizedAccessException) catch (UnauthorizedAccessException)

5
CoviDok/Data/Model/Case.cs

@ -1,4 +1,5 @@
using System; using CoviDok.Api;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -14,6 +15,8 @@ namespace CoviDok.Data.Model
public CaseStatus CaseStatus { get; set; } public CaseStatus CaseStatus { get; set; }
public Priority Priority { get; set; }
public ICollection<Update> Updates { get; set; } public ICollection<Update> Updates { get; set; }
public int Assignee { get; set; } public int Assignee { get; set; }

Loading…
Cancel
Save