Exemple #1
0
 public String getCampoImportoRendicontazioneAdc() {
   String result = "";
   if (this.campoImportoRendicontazioneAdc != null)
     result = Util.formatImporto(campoImportoRendicontazioneAdc.doubleValue());
   else result = "0,00";
   return result;
 }
Exemple #2
0
 public String getCampoTotaleDecertificato() {
   String result = "";
   if (this.totaleDecertificato != null)
     result = Util.formatImporto(totaleDecertificato.doubleValue());
   else result = "0,00";
   return result;
 }
Exemple #3
0
  public String getCampoTotaleCertificato() {
    String result = "";

    if (this.totaleDecertificato == null) this.totaleDecertificato = 0.00;

    if (this.campoImportoRendicontazioneAdc == null) this.campoImportoRendicontazioneAdc = 0.00;

    double differenza =
        PreciseCalculations.subtract(
            this.campoImportoRendicontazioneAdc.doubleValue(),
            this.totaleDecertificato.doubleValue());

    if (this.totaleDecertificato != null) result = Util.formatImporto(differenza);
    else result = "0,00";
    return result;
  }
Exemple #4
0
 public String getColonnaTotaleCompensato() {
   if (this.totaleCompensato != null)
     return Util.formatImporto(this.totaleCompensato.doubleValue());
   else return "";
 }