o primeiro código que fiz foi esse:
[code] protected String beforeSave (String VlrTotal, String ValorLinha, Double TotalGeral)
{
VlrTotal = “GrandTotal”;
ValorLinha = “LineNetAmt”;
while (m_item != null); {
TotalGeral = Double.parseDouble(ValorLinha)+Double.parseDouble(ValorLinha);
VlrTotal = TotalGeral.toString();
}
return VlrTotal;
} // beforeSave[/code]
mas nem deu certo XD
vou continuar tentando…
mudei um pouco:
[code] protected BigDecimal beforeSave (BigDecimal VlrTotal, BigDecimal ValorLinha, BigDecimal TotalGeral, BigDecimal TotalLinha)
{
VlrTotal = getGrandTotal();
TotalLinha = getTotalLines();
//ValorLinha = getLineNetAmt;
while (m_item != null); {
TotalGeral = ValorLinha.add(ValorLinha);
VlrTotal = TotalGeral;
TotalLinha = TotalGeral;
}
return VlrTotal;
} // beforeSave[/code]
mas não consigo pegar o valor da outra tabela (getLineNetAmt)
continuar tentando…
idéias são bem vindas!
Obrigada