Skip to content

Commit

Permalink
BUG sull'aggancio del sospeso alla fattura passiva
Browse files Browse the repository at this point in the history
  • Loading branch information
mspasiano committed Feb 12, 2016
1 parent cb3e15b commit cc1221d
Showing 1 changed file with 14 additions and 0 deletions.
Expand Up @@ -319,7 +319,21 @@ public Integer getEsercizio_distinta() {
public void setEsercizio_distinta(Integer esercizio_distinta) {
distintaCassiere.setEsercizio(esercizio_distinta);
}

@Override
public String getCd_sospeso() {
if (getSospeso() == null)
return null;
return getSospeso().getCd_sospeso();
}

@Override
public void setCd_sospeso(String cd_sospeso) {
if (getSospeso() != null)
getSospeso().setCd_sospeso(cd_sospeso);
else
super.setCd_sospeso(cd_sospeso);
}
@Override
public Long getPg_distinta() {
if (distintaCassiere == null)
Expand Down

0 comments on commit cc1221d

Please sign in to comment.