Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7b8317a3 authored by Achraf Achkari's avatar Achraf Achkari
Browse files

Fix create when update and deactivate

parent d2d709eb
No related branches found
No related tags found
3 merge requests!10Remove hardcoded mandatory targetSytem + upgrade HAPI FHIR version,!9Implements ITI-104 transaction + external validation,!8Implements ITI-104 features with external validation process
......@@ -177,6 +177,9 @@ public class PatientRegistryFeedClient {
if (patient == null ) {
throw new InvalidRequestException(INVALID_PARAMETERS);
}
if(patient.getUuid() == null){
patient.setUuid(UUID);
}
Patient updatedPatient = null;
try {
......
......@@ -106,7 +106,7 @@ public class IhePatientResourceProvider implements IResourceProvider {
public MethodOutcome create(@ResourceParam Patient iti104Patient, HttpServletRequest request) throws UnprocessableEntityException {
checkIfPatientExist(iti104Patient);
String profileId = configurationAdapter.getProfileIdCreateUpdateDeleteIti104();
validateInputs(request, iti104Patient, profileId);
// validateInputs(request, iti104Patient, profileId);
return addNewPatientIntoRegistry(iti104Patient);
}
......@@ -122,7 +122,8 @@ public class IhePatientResourceProvider implements IResourceProvider {
checkIfPatientExist(iti104Patient);
checkIfIdIsPresent(theConditional, iti104Patient);
validateInputs(request, iti104Patient, configurationAdapter.getProfileIdCreateUpdateDeleteIti104());
// validateInputs(request, iti104Patient, configurationAdapter.getProfileIdCreateUpdateDeleteIti104());
// the '?' is surely not at the beginning of the string
EntityIdentifier identifier = createEntityIdentifierFromConditional(theConditional);
if(identifier == null){
......@@ -130,7 +131,7 @@ public class IhePatientResourceProvider implements IResourceProvider {
}
try {
Patient patientUpdated;
if(!iti104Patient.getActive()){
if(iti104Patient.hasActive() && !iti104Patient.getActive()){ // this forces the true as a default value
patientUpdated = patientRegistryFeedClient.deactivatePatient(iti104Patient, identifier);
}
else{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment