Skip to content

Commit

Permalink
revert removal uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
delcroip authored Dec 15, 2023
1 parent 1caf01e commit 623966f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public CreateFamilyMutation.Data create(@NonNull Family family) throws Exception
Family.Member head = family.getHead();
Response<CreateFamilyMutation.Data> response = makeSynchronous(new CreateFamilyMutation(
CreateFamilyMutationInput.builder()
.id(family.getId())
.uuid(family.getUuid())
.locationId(family.getLocationId())
.poverty(family.isPoor())
.familyTypeId(family.getType())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public CreateInsureeMutation.Data create(@NonNull Family.Member member) throws E
Response<CreateInsureeMutation.Data> response = makeSynchronous(new CreateInsureeMutation(
CreateInsureeMutationInput.builder()
.chfId(member.getChfId())
.uuid(member.getUuid())
.familyId(member.getFamilyId())
.head(member.isHead())
.passport(member.getIdentificationNumber())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class CreatePolicyGraphQLRequest extends BaseGraphQLRequest {
public CreatePolicyMutation.Data create(@NonNull Family.Policy policy) throws Exception {
Response<CreatePolicyMutation.Data> response = makeSynchronous(new CreatePolicyMutation(
CreatePolicyMutationInput.builder()
.uuid(policy.getUuid())
.familyId(policy.getFamilyId())
.enrollDate(policy.getEnrollDate())
.startDate(policy.getStartDate())
Expand Down

0 comments on commit 623966f

Please sign in to comment.