bug#11600
dev: julio qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@85899 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
7b554a40ba
commit
69715bb413
|
@ -323,9 +323,11 @@ public class RelatorioDevolucaoBilhetes extends Relatorio {
|
|||
private BigDecimal valorPassagem(DevolucaoBilhetes det) {
|
||||
BigDecimal total = BigDecimal.ZERO;
|
||||
total = total.add(det.getPrecioPagado() == null ? BigDecimal.ZERO : det.getPrecioPagado());
|
||||
total = total.add(det.getImportetaxaembarque() == null ? BigDecimal.ZERO : det.getImportetaxaembarque());
|
||||
total = total.add(det.getImportepedagio() == null ? BigDecimal.ZERO : det.getImportepedagio());
|
||||
total = total.add(det.getImporteseguro() == null ? BigDecimal.ZERO : det.getImporteseguro());
|
||||
|
||||
// total = total.add(det.getImportetaxaembarque() == null ? BigDecimal.ZERO : det.getImportetaxaembarque());
|
||||
// total = total.add(det.getImportepedagio() == null ? BigDecimal.ZERO : det.getImportepedagio());
|
||||
// total = total.add(det.getImporteseguro() == null ? BigDecimal.ZERO : det.getImporteseguro());
|
||||
|
||||
return total;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue