IDEMPIERE-883 Info Invoice window doesn't set business partner parameter.

This commit is contained in:
Heng Sin Low 2013-04-27 07:35:28 +08:00
parent d6086f7df5
commit 960c6e8fdd
1 changed files with 11 additions and 0 deletions

View File

@ -59,6 +59,17 @@ public class InfoInvoiceWindow extends InfoWindow {
isSOTrx = "Y";
}
//Set Defaults
String bp = Env.getContext(Env.getCtx(), p_WindowNo, "C_BPartner_ID");
if (!Util.isEmpty(bp)) {
for (WEditor editor : editors) {
if (editor.getGridField() != null && editor.getGridField().getColumnName().equals("C_BPartner_ID")) {
editor.setValue(new Integer(bp));
break;
}
}
}
if (!Util.isEmpty(isSOTrx)) {
for (WEditor editor : editors) {
if (editor.getGridField() != null && editor.getGridField().getColumnName().equals("IsSOTrx")) {