hg merge release-2.0 (merge release2 into development)
This commit is contained in:
commit
536f700fa4
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -266,6 +266,7 @@ public abstract class Doc
|
|||
log.severe(msg);
|
||||
throw new IllegalArgumentException(msg);
|
||||
}
|
||||
p_po.load(p_po.get_TrxName()); // reload the PO to get any virtual column that was not obtained using the rs (IDEMPIERE-775)
|
||||
|
||||
// DocStatus
|
||||
int index = p_po.get_ColumnIndex("DocStatus");
|
||||
|
|
|
@ -1623,8 +1623,14 @@ public final class MPayment extends X_C_Payment
|
|||
if (pAllocs.length > 0) {
|
||||
for (MPaymentAllocate pAlloc : pAllocs)
|
||||
sumPaymentAllocates = sumPaymentAllocates.add(pAlloc.getAmount());
|
||||
if (getPayAmt().compareTo(sumPaymentAllocates) != 0)
|
||||
if (getPayAmt().compareTo(sumPaymentAllocates) != 0) {
|
||||
if (isReceipt() && getPayAmt().compareTo(sumPaymentAllocates) < 0) {
|
||||
if (MSysConfig.getBooleanValue("ALLOW_OVER_APPLIED_PAYMENT", false, Env.getAD_Client_ID(Env.getCtx()))) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -1597,7 +1597,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
|
|||
adTabbox.evaluate(e);
|
||||
}
|
||||
|
||||
toolbar.enablePrint(adTabbox.getSelectedGridTab().isPrinted());
|
||||
toolbar.enablePrint(adTabbox.getSelectedGridTab().isPrinted() && !adTabbox.getSelectedGridTab().isNew());
|
||||
toolbar.enableReport(true);
|
||||
toolbar.enableExport(!adTabbox.getSelectedGridTab().isSortTab());
|
||||
toolbar.enableFileImport(!changed && !adTabbox.getSelectedGridTab().isSortTab() && adTabbox.getSelectedGridTab().isInsertRecord());
|
||||
|
|
Loading…
Reference in New Issue