hg merge release-1.0c (merge release1 into release2)
This commit is contained in:
commit
8ef1250754
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);
|
log.severe(msg);
|
||||||
throw new IllegalArgumentException(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
|
// DocStatus
|
||||||
int index = p_po.get_ColumnIndex("DocStatus");
|
int index = p_po.get_ColumnIndex("DocStatus");
|
||||||
|
|
|
@ -1623,9 +1623,15 @@ public final class MPayment extends X_C_Payment
|
||||||
if (pAllocs.length > 0) {
|
if (pAllocs.length > 0) {
|
||||||
for (MPaymentAllocate pAlloc : pAllocs)
|
for (MPaymentAllocate pAlloc : pAllocs)
|
||||||
sumPaymentAllocates = sumPaymentAllocates.add(pAlloc.getAmount());
|
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 false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1596,7 +1596,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
|
||||||
adTabbox.evaluate(e);
|
adTabbox.evaluate(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
toolbar.enablePrint(adTabbox.getSelectedGridTab().isPrinted());
|
toolbar.enablePrint(adTabbox.getSelectedGridTab().isPrinted() && !adTabbox.getSelectedGridTab().isNew());
|
||||||
toolbar.enableReport(true);
|
toolbar.enableReport(true);
|
||||||
toolbar.enableExport(!adTabbox.getSelectedGridTab().isSortTab());
|
toolbar.enableExport(!adTabbox.getSelectedGridTab().isSortTab());
|
||||||
toolbar.enableFileImport(!changed && !adTabbox.getSelectedGridTab().isSortTab() && adTabbox.getSelectedGridTab().isInsertRecord());
|
toolbar.enableFileImport(!changed && !adTabbox.getSelectedGridTab().isSortTab() && adTabbox.getSelectedGridTab().isInsertRecord());
|
||||||
|
|
Loading…
Reference in New Issue