Skip to content

Commit

Permalink
fix#2
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqualespica committed Oct 11, 2022
1 parent fc5247a commit b3ea5f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.time.LocalDateTime;
import java.util.List;

@Container(containerName = "${azure.cosmos.ec-container-name}", autoCreateContainer = false, ru="800")
@Container(containerName = "${azure.cosmos.ec-container-name}", autoCreateContainer = false, ru="1000")
@Getter
@Setter
@NoArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.math.NumberUtils;
import org.json.JSONObject;
import org.modelmapper.ModelMapper;
Expand Down Expand Up @@ -43,6 +44,7 @@
@Service
@AllArgsConstructor
@NoArgsConstructor
@Slf4j
public class PaymentsService {

@Autowired
Expand Down Expand Up @@ -83,7 +85,7 @@ public PaymentPositionModel createSpontaneousPayment(@NotBlank String organizati
checkServiceOrganization(organizationFiscalCode, serviceConfiguration);

// checks if the service is in suitable state and the request contains the properties required by the configured service
// checkServiceConfiguration(spontaneousPayment, serviceConfiguration);
checkServiceConfiguration(spontaneousPayment, serviceConfiguration);

return new PaymentPositionModel(); //createDebtPosition(organizationFiscalCode, orgConfiguration, serviceConfiguration, spontaneousPayment);

Expand Down

0 comments on commit b3ea5f7

Please sign in to comment.