fixes bug#AL-1633
dev: qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@115134 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
d24247dfd8
commit
74d3b24464
|
@ -617,14 +617,14 @@ public class ConferenciaComissaoServiceImpl implements ConferenciaComissaoServic
|
||||||
if (boletoComissao.isMotivocancelacionQuitacaoOcd()) {
|
if (boletoComissao.isMotivocancelacionQuitacaoOcd()) {
|
||||||
formapago.subtract(formapagoBoleto.getImporte());
|
formapago.subtract(formapagoBoleto.getImporte());
|
||||||
// somando as vendas
|
// somando as vendas
|
||||||
} else if (boletoComissao.isAbaBilheteVendido() || boletoComissao.isAbaGapVendido() || boletoComissao.isAbaBilheteManual()) {
|
} else if (boletoComissao.isAbaBilheteVendido() || boletoComissao.isAbaGapVendido() || boletoComissao.isAbaBilheteManual() || (boletoComissao.isVendaBilheteTransferencia(boletoComissao.getTipoVenta()) && formapago.getFormapagoId() == 1)) {
|
||||||
formapago.add(formapagoBoleto.getImporte());
|
formapago.add(formapagoBoleto.getImporte());
|
||||||
// subtraindo os cancelamentos
|
// subtraindo os cancelamentos
|
||||||
} else if (boletoComissao.isAbaBilheteCancelado() || boletoComissao.isAbaGapCancelado()) {
|
} else if (boletoComissao.isAbaBilheteCancelado() || boletoComissao.isAbaGapCancelado()) {
|
||||||
formapago.subtract(formapagoBoleto.getImporte());
|
formapago.subtract(formapagoBoleto.getImporte());
|
||||||
// subtraindo as trocas e devolucoes
|
// subtraindo as trocas e devolucoes
|
||||||
} else if (boletoComissao.isAbaBilheteDevolvido() || boletoComissao.isAbaGapDevolvido()) {
|
} else if (boletoComissao.isAbaBilheteDevolvido() || boletoComissao.isAbaGapDevolvido() || boletoComissao.isMotivocancelacionTransferido()) {
|
||||||
if (boletoComissao.isMotivocancelacionTrocado() || boletoComissao.isMotivocancelacionDevolvido() || boletoComissao.isMotivocancelacionQuitacaoOcd()) {
|
if (boletoComissao.isMotivocancelacionTrocado() || boletoComissao.isMotivocancelacionDevolvido() || boletoComissao.isMotivocancelacionQuitacaoOcd() || (boletoComissao.isVendaBilheteTransferencia(boletoComissao.getTipoVenta()) && formapago.getFormapagoId() == 1)) {
|
||||||
formapago.subtract(formapagoBoleto.getImporte());
|
formapago.subtract(formapagoBoleto.getImporte());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue