fixes bug #6817
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@55033 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
dba2a3658f
commit
c511498e96
|
@ -15,6 +15,7 @@ public class ItemRelatorioVoucher {
|
|||
private BigDecimal tarifa;
|
||||
private BigDecimal pedagio;
|
||||
private BigDecimal embarque;
|
||||
private BigDecimal seguro;
|
||||
private String status;
|
||||
|
||||
public String getDataVendaVoucher() {
|
||||
|
@ -113,4 +114,12 @@ public class ItemRelatorioVoucher {
|
|||
this.status = status;
|
||||
}
|
||||
|
||||
public BigDecimal getSeguro() {
|
||||
return seguro;
|
||||
}
|
||||
|
||||
public void setSeguro(BigDecimal seguro) {
|
||||
this.seguro = seguro;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -8,20 +8,23 @@ public class TotalRelatorioVoucher {
|
|||
private BigDecimal tarifa;
|
||||
private BigDecimal pedagio;
|
||||
private BigDecimal embarque;
|
||||
private BigDecimal seguro;
|
||||
|
||||
public TotalRelatorioVoucher() {
|
||||
super();
|
||||
this.tarifa = BigDecimal.ZERO;
|
||||
this.pedagio = BigDecimal.ZERO;
|
||||
this.embarque = BigDecimal.ZERO;
|
||||
this.seguro = BigDecimal.ZERO;
|
||||
}
|
||||
|
||||
public TotalRelatorioVoucher(String status, BigDecimal tarifa, BigDecimal pedagio, BigDecimal embarque) {
|
||||
public TotalRelatorioVoucher(String status, BigDecimal tarifa, BigDecimal pedagio, BigDecimal embarque, BigDecimal seguro) {
|
||||
this();
|
||||
this.status = status;
|
||||
this.tarifa = tarifa;
|
||||
this.pedagio = pedagio;
|
||||
this.embarque = embarque;
|
||||
this.seguro = seguro;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
|
@ -90,4 +93,12 @@ public class TotalRelatorioVoucher {
|
|||
return total;
|
||||
}
|
||||
|
||||
public BigDecimal getSeguro() {
|
||||
return seguro;
|
||||
}
|
||||
|
||||
public void setSeguro(BigDecimal seguro) {
|
||||
this.seguro = seguro;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue