added check to verify not to add void APC

This commit is contained in:
Miriam Baglioni 2021-04-01 17:38:30 +02:00
parent 2c209e1140
commit 0421f5e1d8
1 changed files with 9 additions and 4 deletions

View File

@ -427,10 +427,15 @@ public class ResultMapper implements Serializable {
Optional<Field<String>> oPca = Optional.ofNullable(i.getProcessingchargeamount());
Optional<Field<String>> oPcc = Optional.ofNullable(i.getProcessingchargecurrency());
if (oPca.isPresent() && oPcc.isPresent()) {
APC apc = new APC();
apc.setCurrency(oPcc.get().getValue());
apc.setAmount(oPca.get().getValue());
instance.setArticleprocessingcharge(apc);
Field<String> pca = oPca.get();
Field<String> pcc = oPcc.get();
if(pca.getValue().trim() != "" && pcc.getValue().trim() != ""){
APC apc = new APC();
apc.setCurrency(oPcc.get().getValue());
apc.setAmount(oPca.get().getValue());
instance.setArticleprocessingcharge(apc);
}
}
}