Browse Source

Bugfix in CaseController

master
Daniel Gyulai 4 years ago
parent
commit
ae47103498
  1. 1
      CoviDok/BLL/User/Managers/CaseManager.cs
  2. 2
      CoviDok/Controllers/CaseController.cs

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

@ -120,6 +120,7 @@ namespace CoviDok.BLL.User.Managers
if (c.CaseStatus == CaseStatus.Certified) throw new ArgumentException("Can't modify closed Case!");
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
if (s.ID == c.DoctorID) c.Assignee = c.ParentID; // Ha doki frissít, a szülőhöz kerül
c.LastModificationDate = DateTime.Now;

2
CoviDok/Controllers/CaseController.cs

@ -74,7 +74,7 @@ namespace CoviDok.Controllers
try
{
Case c = await mgr.CreateCase(s, data.DoctorID, data.ChildID, data.Title, data.StartDate);
return CreatedAtAction("GetPublicChild", new { id = c.Id }, c);
return CreatedAtAction("PostGetCase", new { id = c.Id }, c);
}
catch (UnauthorizedAccessException)
{

Loading…
Cancel
Save