Merge branch 'master' into develop
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-10-28 14:51:32 +01:00
2 changed files with 2 additions and 6 deletions

View File

@@ -524,7 +524,7 @@ public class MmposServices {
String opTrans = row.getOpTrans();
if (!UtilityString.isNullOrEmpty(opTrans) &&
!opTrans.toUpperCase().startsWith("ORD") &&
!opTrans.toUpperCase().startsWith("RS")) {
!row.getFlTrans().toUpperCase().startsWith("RS")) {
ntbDocr.setCausaleReso(opTrans);
}

View File

@@ -35,11 +35,7 @@ public class ScontriniImporterUtilities {
return AnomalieDTO.warning(e.getMessage());
} else if (e instanceof FileNotFoundException) {
return AnomalieDTO.error(e);
} else {
return AnomalieDTO.error(e);
}
return null;
return AnomalieDTO.error(e);
}
}