Fix [ 1866181 ] Wrong message on allocation form
This commit is contained in:
parent
d7fb219489
commit
48274366d1
|
@ -826,7 +826,7 @@ public class VAllocation extends CPanel
|
||||||
}
|
}
|
||||||
|
|
||||||
// Warning if write Off > 30%
|
// Warning if write Off > 30%
|
||||||
if (writeOff.doubleValue()/open.doubleValue() > .30)
|
if (autoWriteOff.isSelected() && writeOff.doubleValue()/open.doubleValue() > .30)
|
||||||
ADialog.warn(m_WindowNo, this, "AllocationWriteOffWarn");
|
ADialog.warn(m_WindowNo, this, "AllocationWriteOffWarn");
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue