Rev 315 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 315 | Rev 344 | ||
|---|---|---|---|
| Line 61... | Line 61... | ||
| 61 | private Double totalEm15; |
61 | private Double totalEm15; |
| 62 | private Integer quantidadeNoPagseguro; |
62 | private Integer quantidadeNoPagseguro; |
| 63 | private Double totalNoPagseguro; |
63 | private Double totalNoPagseguro; |
| 64 | private Integer quantidadeNoPix; |
64 | private Integer quantidadeNoPix; |
| 65 | private Double totalNoPix; |
65 | private Double totalNoPix; |
| - | 66 | private Integer quantidadeNaTransferencia; |
|
| - | 67 | private Double totalNaTransferencia; |
|
| 66 | private Integer quantidadeEmOutros; |
68 | private Integer quantidadeEmOutros; |
| 67 | private Double totalEmOutros; |
69 | private Double totalEmOutros; |
| 68 | 70 | ||
| 69 | private Double subtotal; |
71 | private Double subtotal; |
| 70 | private Double total; |
72 | private Double total; |
| Line 122... | Line 124... | ||
| 122 | quantidadeEm15 = new Integer(0); |
124 | quantidadeEm15 = new Integer(0); |
| 123 | totalNoPagseguro = new Double(0.0); |
125 | totalNoPagseguro = new Double(0.0); |
| 124 | quantidadeNoPagseguro = new Integer(0); |
126 | quantidadeNoPagseguro = new Integer(0); |
| 125 | totalNoPix = new Double(0.0); |
127 | totalNoPix = new Double(0.0); |
| 126 | quantidadeNoPix = new Integer(0); |
128 | quantidadeNoPix = new Integer(0); |
| - | 129 | totalNaTransferencia = new Double(0.0); |
|
| - | 130 | quantidadeNaTransferencia = new Integer(0); |
|
| 127 | totalEmOutros = new Double(0.0); |
131 | totalEmOutros = new Double(0.0); |
| 128 | quantidadeEmOutros= new Integer(0); |
132 | quantidadeEmOutros= new Integer(0); |
| 129 | subtotal = new Double(0.0); |
133 | subtotal = new Double(0.0); |
| 130 | total = new Double(0.0); |
134 | total = new Double(0.0); |
| 131 | }
|
135 | }
|
| Line 268... | Line 272... | ||
| 268 | 272 | ||
| 269 | public Double getTotalNoPix() {return totalNoPix;} |
273 | public Double getTotalNoPix() {return totalNoPix;} |
| 270 | public void setTotalNoPix(Double totalNoPix) {this.totalNoPix = totalNoPix;} |
274 | public void setTotalNoPix(Double totalNoPix) {this.totalNoPix = totalNoPix;} |
| 271 | public Integer getQuantidadeNoPix() {return quantidadeNoPix;} |
275 | public Integer getQuantidadeNoPix() {return quantidadeNoPix;} |
| 272 | public void setQuantidadeNoPix(Integer quantidadeNoPix) {this.quantidadeNoPix = quantidadeNoPix;} |
276 | public void setQuantidadeNoPix(Integer quantidadeNoPix) {this.quantidadeNoPix = quantidadeNoPix;} |
| - | 277 | ||
| - | 278 | public Double getTotalNaTransferencia() {return totalNaTransferencia;} |
|
| - | 279 | public void setTotalNaTransferencia(Double totalNaTransferencia) {this.totalNaTransferencia = totalNaTransferencia;} |
|
| - | 280 | public Integer getQuantidadeNaTransferencia() {return quantidadeNaTransferencia;} |
|
| - | 281 | public void setQuantidadeNaTransferencia(Integer quantidadeNaTransferencia) {this.quantidadeNaTransferencia = quantidadeNaTransferencia;} |
|
| 273 | 282 | ||
| 274 | public Double getTotalEmOutros() {return totalEmOutros;} |
283 | public Double getTotalEmOutros() {return totalEmOutros;} |
| 275 | public void setTotalEmOutros(Double totalEmOutros) {this.totalEmOutros = totalEmOutros;} |
284 | public void setTotalEmOutros(Double totalEmOutros) {this.totalEmOutros = totalEmOutros;} |
| 276 | public Integer getQuantidadeEmOutros() {return quantidadeEmOutros;} |
285 | public Integer getQuantidadeEmOutros() {return quantidadeEmOutros;} |
| 277 | public void setQuantidadeEmOutros(Integer quantidadeEmOutros) {this.quantidadeEmOutros = quantidadeEmOutros;} |
286 | public void setQuantidadeEmOutros(Integer quantidadeEmOutros) {this.quantidadeEmOutros = quantidadeEmOutros;} |
| Line 313... | Line 322... | ||
| 313 | quantidadeNoPagseguro = quantidadeNoPagseguro + 1; |
322 | quantidadeNoPagseguro = quantidadeNoPagseguro + 1; |
| 314 | totalNoPagseguro = totalNoPagseguro + vendaFormaPagamento.getValorPagamento(); |
323 | totalNoPagseguro = totalNoPagseguro + vendaFormaPagamento.getValorPagamento(); |
| 315 | } else if (vendaFormaPagamento.getFormaPagamento().formaPagamentoEhPix()) { |
324 | } else if (vendaFormaPagamento.getFormaPagamento().formaPagamentoEhPix()) { |
| 316 | quantidadeNoPix = quantidadeNoPix + 1; |
325 | quantidadeNoPix = quantidadeNoPix + 1; |
| 317 | totalNoPix = totalNoPix + vendaFormaPagamento.getValorPagamento(); |
326 | totalNoPix = totalNoPix + vendaFormaPagamento.getValorPagamento(); |
| - | 327 | } else if (vendaFormaPagamento.getFormaPagamento().formaPagamentoEhTransferencia()) { |
|
| - | 328 | quantidadeNaTransferencia = quantidadeNaTransferencia + 1; |
|
| - | 329 | totalNaTransferencia= totalNaTransferencia + vendaFormaPagamento.getValorPagamento(); |
|
| 318 | } else if (vendaFormaPagamento.getFormaPagamento().formaPagamentoEhOutros()) { |
330 | } else if (vendaFormaPagamento.getFormaPagamento().formaPagamentoEhOutros()) { |
| 319 | quantidadeEmOutros = quantidadeEmOutros + 1; |
331 | quantidadeEmOutros = quantidadeEmOutros + 1; |
| 320 | totalEmOutros = totalEmOutros + vendaFormaPagamento.getValorPagamento(); |
332 | totalEmOutros = totalEmOutros + vendaFormaPagamento.getValorPagamento(); |
| 321 | } else if (vendaFormaPagamento.getFormaPagamento().formaPagamentoEh1x()) { |
333 | } else if (vendaFormaPagamento.getFormaPagamento().formaPagamentoEh1x()) { |
| 322 | quantidadeEmCartao = quantidadeEmCartao + 1; |
334 | quantidadeEmCartao = quantidadeEmCartao + 1; |