Skip to content

Commit

Permalink
Fix #460: corretta serializzazione HashDocumento
Browse files Browse the repository at this point in the history
  • Loading branch information
nardil committed Feb 16, 2022
1 parent 43d7181 commit e3d4211
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private CtDatiSingoloVersamentoRPT buildDatiSingoloVersamento(Rpt rpt, SingoloVe
} else {
CtDatiMarcaBolloDigitale marcaBollo = new CtDatiMarcaBolloDigitale();
if(singoloVersamento.getHashDocumento() != null)
marcaBollo.setHashDocumento(singoloVersamento.getHashDocumento().getBytes());
marcaBollo.setHashDocumento(singoloVersamento.getHashDocumento());
marcaBollo.setProvinciaResidenza(singoloVersamento.getProvinciaResidenza());
if(singoloVersamento.getTipoBollo() != null)
marcaBollo.setTipoBollo(singoloVersamento.getTipoBollo().getCodifica());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@
<xsd:documentation>Contiene la tipologia di Bollo Digitale.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="hashDocumento" type="pay_i:stBase64Binary70" minOccurs="1">
<xsd:element name="hashDocumento" type="pay_i:stText70" minOccurs="1">
<xsd:annotation>
<xsd:documentation>Contiene l’impronta informatica (digest), rappresentata in "base 64 binary", del documento informatico o della segnatura di protocollo cui è associata la marca da bollo digitale</xsd:documentation>
</xsd:annotation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
<xsd:documentation>Contiene la tipologia di Bollo Digitale.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="hashDocumento" type="pay_i:stBase64Binary70" minOccurs="1">
<xsd:element name="hashDocumento" type="pay_i:stText70" minOccurs="1">
<xsd:annotation>
<xsd:documentation>Contiene l’impronta informatica (digest), rappresentata in "base 64 binary", del documento informatico o della segnatura di protocollo cui è associata la marca da bollo digitale</xsd:documentation>
</xsd:annotation>
Expand Down

0 comments on commit e3d4211

Please sign in to comment.