For Bugs #[ 1701331 ] , #[ 1786103 ]

This commit is contained in:
Redhuan D. Oon 2007-12-16 16:38:03 +00:00
parent 00ad901294
commit 03c557f384
1 changed files with 2 additions and 2 deletions

View File

@ -807,11 +807,11 @@ public class MInvoiceLine extends X_C_InvoiceLine
if (tax != null) {
if (!tax.calculateTaxFromLines())
return false;
if (tax.getTaxAmt().signum() != 0) {
if (tax.getTaxAmt().signum() != 0 || tax.getTaxAmt().signum() == 0 ) { //red1 - added zero condition to solve bugs stated below
if (!tax.save(get_TrxName()))
return false;
}
else {
else { //red1 - this may become redundant due to above ZERO condition for BUGS #[ 1701331 ] , #[ 1786103 ]
if (!tax.is_new() && !tax.delete(false, get_TrxName()))
return false;
}