5fb44c0b2c2818016e8c23d3 (#96)
Add approvals Merge branch 'master' of http://git.kadet.net/system-praktyk/system-praktyk-api into 5fb44c0b2c2818016e8c23d3 XD Co-authored-by: Michal Bohdanowicz <m.w.bohdanowicz@gmail.com>
This commit is contained in:
parent
11de1c5dfe
commit
9b3aff4dd0
@ -22,6 +22,26 @@ namespace InternshipSystem.Api.Controllers
|
|||||||
{
|
{
|
||||||
Context = context;
|
Context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpDelete("delete/{documentId}")]
|
||||||
|
[Authorize(Policy = Policies.IsOverseer)]
|
||||||
|
public async Task<ActionResult> DeleteDocument(long documentId, CancellationToken ct)
|
||||||
|
{
|
||||||
|
var internship = await Context.Internships
|
||||||
|
.Include(i => i.Documentation)
|
||||||
|
.FirstOrDefaultAsync(i => i.Documentation.Any(d => d.Id.Equals(documentId)), ct);
|
||||||
|
|
||||||
|
if (internship == null)
|
||||||
|
{
|
||||||
|
return NotFound();
|
||||||
|
}
|
||||||
|
|
||||||
|
internship.RemoveDocument(documentId);
|
||||||
|
|
||||||
|
await Context.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
|
||||||
[HttpPut("accept/{documentId}")]
|
[HttpPut("accept/{documentId}")]
|
||||||
[ProducesResponseType(StatusCodes.Status200OK)]
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
||||||
@ -60,7 +80,7 @@ namespace InternshipSystem.Api.Controllers
|
|||||||
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
||||||
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
||||||
[Authorize(Policy = Policies.IsOverseer)]
|
[Authorize(Policy = Policies.IsOverseer)]
|
||||||
public async Task<ActionResult> RejectInternship(long documentId, [FromBody] string comment, CancellationToken token)
|
public async Task<ActionResult> RejectDocument(long documentId, [FromBody] string comment, CancellationToken token)
|
||||||
{
|
{
|
||||||
var internship = await Context.Internships
|
var internship = await Context.Internships
|
||||||
.Include(i => i.Documentation)
|
.Include(i => i.Documentation)
|
||||||
|
@ -47,7 +47,7 @@ namespace InternshipSystem.Api.Controllers
|
|||||||
.ThenInclude(t => t.Subject)
|
.ThenInclude(t => t.Subject)
|
||||||
.FirstAsync(e => e.Id == user.EditionId, cancellationToken);
|
.FirstAsync(e => e.Id == user.EditionId, cancellationToken);
|
||||||
|
|
||||||
var internshipRegistration =
|
var internship =
|
||||||
await _context
|
await _context
|
||||||
.Entry(edition)
|
.Entry(edition)
|
||||||
.Collection(e => e.Internships)
|
.Collection(e => e.Internships)
|
||||||
@ -62,12 +62,11 @@ namespace InternshipSystem.Api.Controllers
|
|||||||
.ThenInclude(c => c.Type)
|
.ThenInclude(c => c.Type)
|
||||||
.Include(i => i.InternshipRegistration)
|
.Include(i => i.InternshipRegistration)
|
||||||
.ThenInclude(c => c.Subjects)
|
.ThenInclude(c => c.Subjects)
|
||||||
|
.Include(i => i.Documentation)
|
||||||
.Where(i => i.Student.Id == user.PersonNumber)
|
.Where(i => i.Student.Id == user.PersonNumber)
|
||||||
.Select(i => i.InternshipRegistration)
|
|
||||||
.FirstAsync(cancellationToken);
|
.FirstAsync(cancellationToken);
|
||||||
|
|
||||||
|
var useCase = new UpdateInternshipRegistrationUseCase(_context, internship, edition, user);
|
||||||
var useCase = new UpdateInternshipRegistrationUseCase(_context, internshipRegistration, edition, user);
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using InternshipSystem.Api.Security;
|
using InternshipSystem.Api.Security;
|
||||||
|
using InternshipSystem.Core.ValueObject;
|
||||||
using InternshipSystem.Repository;
|
using InternshipSystem.Repository;
|
||||||
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Authorization;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
@ -35,7 +36,7 @@ namespace InternshipSystem.Api.Controllers
|
|||||||
.SingleAsync(i => i.Student.Id == user.PersonNumber, ct);
|
.SingleAsync(i => i.Student.Id == user.PersonNumber, ct);
|
||||||
|
|
||||||
internship.Report.UpdateReport(reportValue.ToString(Formatting.None));
|
internship.Report.UpdateReport(reportValue.ToString(Formatting.None));
|
||||||
internship.AddInternshipEvaluation();
|
internship.AddNewDocument("", DocumentType.InternshipEvaluation);
|
||||||
|
|
||||||
await _context.SaveChangesAsync(ct);
|
await _context.SaveChangesAsync(ct);
|
||||||
|
|
||||||
|
@ -9,6 +9,7 @@ using InternshipSystem.Api.Security;
|
|||||||
using InternshipSystem.Core;
|
using InternshipSystem.Core;
|
||||||
using InternshipSystem.Core.Entity.Internship;
|
using InternshipSystem.Core.Entity.Internship;
|
||||||
using InternshipSystem.Core.UglyOrmArtifacts;
|
using InternshipSystem.Core.UglyOrmArtifacts;
|
||||||
|
using InternshipSystem.Core.ValueObject;
|
||||||
using InternshipSystem.Repository;
|
using InternshipSystem.Repository;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
@ -17,25 +18,27 @@ namespace InternshipSystem.Api.UseCases
|
|||||||
public class UpdateInternshipRegistrationUseCase
|
public class UpdateInternshipRegistrationUseCase
|
||||||
{
|
{
|
||||||
private readonly InternshipDbContext _dbContext;
|
private readonly InternshipDbContext _dbContext;
|
||||||
|
private readonly Internship _internship;
|
||||||
private readonly Edition _edition;
|
private readonly Edition _edition;
|
||||||
private readonly User _user;
|
private readonly User _user;
|
||||||
private readonly InternshipRegistration subjectRegistration;
|
private readonly InternshipRegistration subjectRegistration;
|
||||||
|
|
||||||
public UpdateInternshipRegistrationUseCase(InternshipDbContext dbContext,
|
public UpdateInternshipRegistrationUseCase(InternshipDbContext dbContext,
|
||||||
InternshipRegistration internshipRegistration, Edition edition, User user)
|
Internship internship, Edition edition, User user)
|
||||||
{
|
{
|
||||||
_dbContext = dbContext;
|
_dbContext = dbContext;
|
||||||
|
_internship = internship;
|
||||||
_edition = edition;
|
_edition = edition;
|
||||||
_user = user;
|
_user = user;
|
||||||
subjectRegistration = internshipRegistration;
|
_internship = internship;
|
||||||
|
subjectRegistration = internship.InternshipRegistration;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<(DocumentState State, IEnumerable<ErrorDescription>)> UpdateInternshipRegistration(
|
public async Task<(DocumentState State, IEnumerable<ErrorDescription>)> UpdateInternshipRegistration(
|
||||||
UpdateRegistrationForm registrationCommand,
|
UpdateRegistrationForm registrationCommand,
|
||||||
CancellationToken cancellationToken)
|
CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
subjectRegistration.Start = registrationCommand.Start ?? subjectRegistration.Start;
|
UpdateTimeFrame(registrationCommand);
|
||||||
subjectRegistration.End = registrationCommand.End ?? subjectRegistration.End;
|
|
||||||
subjectRegistration.DeclaredHours = registrationCommand.Hours ?? subjectRegistration.DeclaredHours;
|
subjectRegistration.DeclaredHours = registrationCommand.Hours ?? subjectRegistration.DeclaredHours;
|
||||||
|
|
||||||
if (registrationCommand.Type.HasValue)
|
if (registrationCommand.Type.HasValue)
|
||||||
@ -61,9 +64,34 @@ namespace InternshipSystem.Api.UseCases
|
|||||||
return subjectRegistration.ValidateStatus(_edition);
|
return subjectRegistration.ValidateStatus(_edition);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void UpdateTimeFrame(UpdateRegistrationForm registrationCommand)
|
||||||
|
{
|
||||||
|
subjectRegistration.Start = registrationCommand.Start ?? subjectRegistration.Start;
|
||||||
|
subjectRegistration.End = registrationCommand.End ?? subjectRegistration.End;
|
||||||
|
|
||||||
|
if (!_edition.IsDateDuringEdition(subjectRegistration.Start, subjectRegistration.End))
|
||||||
|
{
|
||||||
|
_internship.AddNewDocument("", DocumentType.OutsideTermApproval);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_internship.RemoveDocument(DocumentType.OutsideTermApproval);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void UpdateInternshipType(long typeId)
|
private void UpdateInternshipType(long typeId)
|
||||||
{
|
{
|
||||||
var editionInternshipType = _edition.AvailableInternshipTypes.FirstOrDefault(i => i.InternshipTypeId == typeId);
|
var editionInternshipType = _edition.AvailableInternshipTypes.FirstOrDefault(i => i.InternshipTypeId == typeId);
|
||||||
|
|
||||||
|
if (editionInternshipType?.InternshipType.RequireDeansApproval == true)
|
||||||
|
{
|
||||||
|
_internship.AddNewDocument("", DocumentType.InternshipTypeApproval);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_internship.RemoveDocument(DocumentType.InternshipTypeApproval);
|
||||||
|
}
|
||||||
|
|
||||||
subjectRegistration.Type = editionInternshipType?.InternshipType ?? subjectRegistration.Type;
|
subjectRegistration.Type = editionInternshipType?.InternshipType ?? subjectRegistration.Type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,9 +120,7 @@ namespace InternshipSystem.Core
|
|||||||
}
|
}
|
||||||
|
|
||||||
var internship = Internship.CreateStudentsInternship(student);
|
var internship = Internship.CreateStudentsInternship(student);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Internships.Add(internship);
|
Internships.Add(internship);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,14 +26,19 @@ namespace InternshipSystem.Core.Entity.Internship
|
|||||||
internship.Report = Report.Create();
|
internship.Report = Report.Create();
|
||||||
internship.Documentation = new List<Document>();
|
internship.Documentation = new List<Document>();
|
||||||
|
|
||||||
|
if (student.Semester != 6)
|
||||||
|
{
|
||||||
|
internship.AddNewDocument("", DocumentType.OutsideSemesterApproval);
|
||||||
|
}
|
||||||
|
|
||||||
return internship;
|
return internship;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddNewDocument(string description, DocumentType type)
|
public void AddNewDocument(string description, DocumentType type)
|
||||||
{
|
{
|
||||||
if (Documentation.Any(d => d.Type == type))
|
if (type != DocumentType.Other && Documentation.Any(d => d.Type == type))
|
||||||
{
|
{
|
||||||
throw new ArgumentException("Internship already has a document of given type");
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var document = new Document
|
var document = new Document
|
||||||
@ -46,29 +51,29 @@ namespace InternshipSystem.Core.Entity.Internship
|
|||||||
Documentation.Add(document);
|
Documentation.Add(document);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateDocumentScan(long documentId, byte[] documentScan)
|
public void RemoveDocument(DocumentType documentType)
|
||||||
{
|
{
|
||||||
var document = Documentation.First(d => d.Id == documentId);
|
if (documentType == DocumentType.Other)
|
||||||
|
|
||||||
// document.Scan = documentScan;
|
|
||||||
// document.State = DocumentState.Submitted;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void AddInternshipEvaluation()
|
|
||||||
{
|
|
||||||
if (Documentation.Any(d => d.Type == DocumentType.InternshipEvaluation))
|
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var document = new Document
|
var doc = Documentation.FirstOrDefault(d => d.Type == documentType);
|
||||||
{
|
|
||||||
Description = "",
|
if (doc != null)
|
||||||
Type = DocumentType.InternshipEvaluation,
|
{
|
||||||
State = DocumentState.Draft
|
Documentation.Remove(doc);
|
||||||
};
|
}
|
||||||
|
}
|
||||||
Documentation.Add(document);
|
|
||||||
|
public void RemoveDocument(long id)
|
||||||
|
{
|
||||||
|
var doc = Documentation.FirstOrDefault(d => d.Id == id);
|
||||||
|
|
||||||
|
if (doc != null)
|
||||||
|
{
|
||||||
|
Documentation.Remove(doc);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -62,13 +62,9 @@ namespace InternshipSystem.Core.Entity.Internship
|
|||||||
.Must(edition.IsTypeAvailable)
|
.Must(edition.IsTypeAvailable)
|
||||||
.WithMessage("error.type.not_available");
|
.WithMessage("error.type.not_available");
|
||||||
RuleFor(x => x.Start)
|
RuleFor(x => x.Start)
|
||||||
.GreaterThanOrEqualTo(edition.EditionStart)
|
|
||||||
.LessThan(x => x.End)
|
|
||||||
.NotEmpty()
|
.NotEmpty()
|
||||||
.WithMessage("error.start_date.empty");
|
.WithMessage("error.start_date.empty");
|
||||||
RuleFor(x => x.End)
|
RuleFor(x => x.End)
|
||||||
.LessThanOrEqualTo(edition.EditionFinish)
|
|
||||||
.GreaterThan(x => x.Start)
|
|
||||||
.NotEmpty()
|
.NotEmpty()
|
||||||
.WithMessage("error.end_date.empty");
|
.WithMessage("error.end_date.empty");
|
||||||
RuleFor(x => x.DeclaredHours)
|
RuleFor(x => x.DeclaredHours)
|
||||||
|
@ -3,8 +3,11 @@
|
|||||||
public enum DocumentType
|
public enum DocumentType
|
||||||
{
|
{
|
||||||
IppScan,
|
IppScan,
|
||||||
DeanConsent,
|
OutsideTermApproval,
|
||||||
NnwIsurance,
|
InternshipTypeApproval,
|
||||||
InternshipEvaluation
|
OutsideSemesterApproval,
|
||||||
|
NnwInsurance,
|
||||||
|
InternshipEvaluation,
|
||||||
|
Other
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -159,6 +159,7 @@ namespace InternshipSystem.Repository
|
|||||||
{
|
{
|
||||||
Label = "Umowa zlecenia (w tym B2B)",
|
Label = "Umowa zlecenia (w tym B2B)",
|
||||||
LabelEng = "Contract of mandate (including B2B)",
|
LabelEng = "Contract of mandate (including B2B)",
|
||||||
|
RequireDeansApproval = true
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
await Context.InternshipTypes.AddRangeAsync(internshipTypes);
|
await Context.InternshipTypes.AddRangeAsync(internshipTypes);
|
||||||
|
@ -123,7 +123,6 @@ namespace InternshipSystem.Api.Test
|
|||||||
.Include(i => i.InternshipRegistration)
|
.Include(i => i.InternshipRegistration)
|
||||||
.ThenInclude(c => c.Subjects)
|
.ThenInclude(c => c.Subjects)
|
||||||
.Where(i => i.Student.Id == user.PersonNumber)
|
.Where(i => i.Student.Id == user.PersonNumber)
|
||||||
.Select(i => i.InternshipRegistration)
|
|
||||||
.First();
|
.First();
|
||||||
|
|
||||||
var useCase = new UpdateInternshipRegistrationUseCase(db, ir, ed, user);
|
var useCase = new UpdateInternshipRegistrationUseCase(db, ir, ed, user);
|
||||||
@ -161,7 +160,6 @@ namespace InternshipSystem.Api.Test
|
|||||||
.Include(i => i.InternshipRegistration)
|
.Include(i => i.InternshipRegistration)
|
||||||
.ThenInclude(c => c.Subjects)
|
.ThenInclude(c => c.Subjects)
|
||||||
.Where(i => i.Student.Id == user.PersonNumber)
|
.Where(i => i.Student.Id == user.PersonNumber)
|
||||||
.Select(i => i.InternshipRegistration)
|
|
||||||
.First();
|
.First();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user