fixed bug #8126 - Correção de problema da duplicação de valores de depósito. Alteração em coluna retornada onde mostra o valor do depósito por fechamento.
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@61743 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
ccd07cbe2f
commit
dc788f2c84
|
@ -138,7 +138,7 @@ public class RelatorioDepositosDetalhado extends Relatorio {
|
|||
sQuery.append(" if.NOME Banco, ");
|
||||
sQuery.append(" EC.NUMCONTA Conta, ");
|
||||
sQuery.append(" EC.NUMAGENCIA Agencia, ");
|
||||
sQuery.append(" FD.VALOR valor_deposito ");
|
||||
sQuery.append(" FCD.VALOR_PAGO valor_deposito ");
|
||||
sQuery.append(" FROM ");
|
||||
sQuery.append(" FECHAMENTO_DEPOSITO fd ");
|
||||
sQuery.append(" JOIN FECHAMENTO_CCT_DEPOSITO fcd ");
|
||||
|
@ -184,7 +184,7 @@ public class RelatorioDepositosDetalhado extends Relatorio {
|
|||
sQuery.append(" if.NOME, ");
|
||||
sQuery.append(" EC.NUMCONTA, ");
|
||||
sQuery.append(" EC.NUMAGENCIA, ");
|
||||
sQuery.append(" FD.VALOR ");
|
||||
sQuery.append(" FCD.VALOR_PAGO ");
|
||||
sQuery.append(" ORDER BY ");
|
||||
sQuery.append(" E.NOMBEMPRESA, ");
|
||||
sQuery.append(" PV.NOMBPUNTOVENTA, ");
|
||||
|
@ -194,7 +194,7 @@ public class RelatorioDepositosDetalhado extends Relatorio {
|
|||
sQuery.append(" if.NOME, ");
|
||||
sQuery.append(" EC.NUMCONTA, ");
|
||||
sQuery.append(" EC.NUMAGENCIA, ");
|
||||
sQuery.append(" FD.VALOR ");
|
||||
sQuery.append(" FCD.VALOR_PAGO ");
|
||||
return sQuery.toString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue