Fix DBCFX_SM_673

This commit is contained in:
vincenzofariello
2024-05-15 16:25:33 +02:00
parent 21a5c47d4a
commit 3f10125aee
3 changed files with 3 additions and 3 deletions

View File

@@ -83,7 +83,7 @@
<column name="COD_SEGRETO" length="3" />
</property>
<property name="cor" type="string">
<column name="COR" length="3" />
<column name="COR" length="12" />
</property>
<property name="codiceOloRecipient" type="string">
<column name="COD_OLO_RECIPIENT" length="3" />

View File

@@ -364,7 +364,7 @@ public class RequestManagerDonor82 {
//verificaWhiteList == null
else {
if (richiesta.getCodValidazione() == 1) {
if (richiesta.getCodValidazione() != null && richiesta.getCodValidazione() == 1) {
ret = false;
} else {

View File

@@ -402,7 +402,7 @@ public class OloFormatOutController extends FormatController {
oloOut.setCodiceOperatoreRecipient(richiesta.getCowRecipient());
oloOut.setCodiceOrdineRecipient(richiesta.getCodiceOrdineRecipient());
oloOut.setCodiceOloDonating(richiesta.getCowDonating());
oloOut.setCor(richiesta.getDn());
oloOut.setCor(richiesta.getCor());
if (richiesta.getCodiceSessione() != null) {
oloOut.setCodiceSessione(richiesta.getCodiceSessione());