Exemplo n.º 1
0
        public async Task <IActionResult> Post([FromBody] AddPatientARVHistoryCommand addarvhistorycommand)
        {
            var response = await _mediator.Send(addarvhistorycommand, Request.HttpContext.RequestAborted);

            if (response.IsValid)
            {
                return(Ok(response.Value));
            }
            return(BadRequest(response));
        }
        public async Task <Result <AddPatientARVHistoryResponse> > Handle(AddPatientARVHistoryCommand request, CancellationToken cancellationToken)
        {
            try
            {
                using (_unitOfWork)
                {
                    int Id = 0;
                    int PatientMasterVisitId = 0;

                    RegisterPersonService rs = new RegisterPersonService(_unitOfWork);

                    var enrollmentVisitType = await _unitOfWork.Repository <LookupItemView>().Get(x => x.MasterName == "VisitType" && x.ItemName == "Enrollment").FirstOrDefaultAsync();

                    int?visitType = enrollmentVisitType != null ? enrollmentVisitType.ItemId : 0;

                    var enrollmentPatientMasterVisit =
                        await _unitOfWork.Repository <Core.Models.PatientMasterVisit>().Get(x =>
                                                                                            x.PatientId == request.PatientId && x.ServiceId == request.ServiceId && x.VisitType == visitType).ToListAsync();

                    if (enrollmentPatientMasterVisit.Count > 0)
                    {
                        PatientMasterVisitId = enrollmentPatientMasterVisit[0].Id;
                        var previousPatientEnrollment = await _unitOfWork.Repository <PatientEnrollment>().Get(x =>
                                                                                                               x.PatientId == request.PatientId && x.ServiceAreaId == request.ServiceId && x.DeleteFlag == false)
                                                        .ToListAsync();

                        if (previousPatientEnrollment.Count > 0)
                        {
                            var PatientARVHistory = await rs.GetPatientARVHistory(request.PatientId, PatientMasterVisitId);

                            if (PatientARVHistory != null)
                            {
                                PatientARVHistory.Purpose = request.Purpose;
                                PatientARVHistory.Regimen = request.Regimen;
                                // PatientARVHistory.Months = request.Months;
                                PatientARVHistory.InitiationDate = request.InitiationDate;
                                PatientARVHistory.TreatmentType  = request.TreatmentType;
                                PatientARVHistory.DateLastUsed   = request.DateLastUsed;
                                //PatientARVHistory.Weeks = request.Weeks;
                                PatientARVHistory.Months = request.Months;


                                var results = await rs.UpdatePatientARVHistory(PatientARVHistory);

                                Id = results.Id;
                            }
                            else
                            {
                                PatientARVHistory part = new PatientARVHistory();
                                part.Purpose        = request.Purpose;
                                part.CreateDate     = DateTime.Now;
                                part.CreatedBy      = request.CreatedBy;
                                part.DeleteFlag     = request.DeleteFlag;
                                part.Months         = request.Months;
                                part.InitiationDate = request.InitiationDate;
                                // part.Weeks = request.Weeks;
                                part.Purpose       = request.Purpose;
                                part.Regimen       = request.Regimen;
                                part.TreatmentType = request.TreatmentType;
                                part.DateLastUsed  = request.DateLastUsed;

                                part.PatientId            = request.PatientId;
                                part.PatientMasterVisitId = PatientMasterVisitId;

                                var results = await rs.AddPatientARVHistory(part);

                                Id = results.Id;
                            }
                        }
                    }
                    return(Result <AddPatientARVHistoryResponse> .Valid(new AddPatientARVHistoryResponse()
                    {
                        ARVHistoryId = Id
                    }));
                }
            }
            catch (Exception ex)
            {
                return(Result <AddPatientARVHistoryResponse> .Invalid(ex.Message));
            }
        }