Bug in previous patch ...
This commit is contained in:
parent
b0ecbe7b89
commit
80ef4f640a
|
@ -705,6 +705,11 @@ void GridAccount::OnOperationModified(wxGridEvent& event)
|
||||||
if (value.Length())
|
if (value.Length())
|
||||||
{
|
{
|
||||||
value.ToDouble(&new_op.amount);
|
value.ToDouble(&new_op.amount);
|
||||||
|
if (new_op.amount < 0)
|
||||||
|
{
|
||||||
|
new_op.amount *= -1.0;
|
||||||
|
SetCellValue(row, DEBIT, wxString::Format(wxT("%.2lf"), new_op.amount));
|
||||||
|
}
|
||||||
if (new_op.amount != 0.0) new_op.amount *= -1.0;
|
if (new_op.amount != 0.0) new_op.amount *= -1.0;
|
||||||
op_complete--;
|
op_complete--;
|
||||||
wxGridCellFormulaEditor* pEditor = (wxGridCellFormulaEditor*) GetCellEditor(row, DEBIT);
|
wxGridCellFormulaEditor* pEditor = (wxGridCellFormulaEditor*) GetCellEditor(row, DEBIT);
|
||||||
|
@ -716,13 +721,17 @@ void GridAccount::OnOperationModified(wxGridEvent& event)
|
||||||
if (value.Length())
|
if (value.Length())
|
||||||
{
|
{
|
||||||
value.ToDouble(&new_op.amount);
|
value.ToDouble(&new_op.amount);
|
||||||
|
if (new_op.amount < 0)
|
||||||
|
{
|
||||||
|
new_op.amount *= -1.0;
|
||||||
|
SetCellValue(row, CREDIT, wxString::Format(wxT("%.2lf"), new_op.amount));
|
||||||
|
}
|
||||||
op_complete--;
|
op_complete--;
|
||||||
wxGridCellFormulaEditor* pEditor = (wxGridCellFormulaEditor*) GetCellEditor(row, CREDIT);
|
wxGridCellFormulaEditor* pEditor = (wxGridCellFormulaEditor*) GetCellEditor(row, CREDIT);
|
||||||
new_op.formula = pEditor->GetFormula();
|
new_op.formula = pEditor->GetFormula();
|
||||||
pEditor->DecRef();
|
pEditor->DecRef();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (new_op.amount < 0) new_op.amount *= -1;
|
|
||||||
|
|
||||||
value = GetCellValue(row, CATEGORY);
|
value = GetCellValue(row, CATEGORY);
|
||||||
if (value.Length())
|
if (value.Length())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user