Refactoring revision 3942
This commit is contained in:
parent
c0c2a9d966
commit
37bc4e159c
|
@ -807,15 +807,10 @@ public class MInvoiceLine extends X_C_InvoiceLine
|
||||||
if (tax != null) {
|
if (tax != null) {
|
||||||
if (!tax.calculateTaxFromLines())
|
if (!tax.calculateTaxFromLines())
|
||||||
return false;
|
return false;
|
||||||
if (tax.getTaxAmt().signum() != 0 || tax.getTaxAmt().signum() == 0 ) { //red1 - added zero condition to solve bugs stated below
|
// red1 - solving BUGS #[ 1701331 ] , #[ 1786103 ]
|
||||||
if (!tax.save(get_TrxName()))
|
if (!tax.save(get_TrxName()))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue