IDEMPIERE-4863 : do not save when there is no customization (#1319)
This commit is contained in:
parent
d144bef286
commit
603743734d
|
@ -25,6 +25,7 @@ import java.util.Properties;
|
|||
import org.compiere.model.MColumn;
|
||||
import org.compiere.model.Query;
|
||||
import org.compiere.model.X_AD_Wlistbox_Customization;
|
||||
import org.compiere.util.Util;
|
||||
|
||||
public class MWlistboxCustomization extends X_AD_Wlistbox_Customization {
|
||||
|
||||
|
@ -146,13 +147,15 @@ public class MWlistboxCustomization extends X_AD_Wlistbox_Customization {
|
|||
WlistBoxCust.setCustom(custom);
|
||||
}
|
||||
}
|
||||
else
|
||||
else if (!Util.isEmpty(Custom))
|
||||
{
|
||||
WlistBoxCust = new MWlistboxCustomization(ctx, 0, trxName);
|
||||
WlistBoxCust.setWlistboxName(AD_WListboxName);
|
||||
WlistBoxCust.setAD_User_ID(AD_User_ID);
|
||||
WlistBoxCust.setCustom(Custom);
|
||||
}
|
||||
|
||||
if (WlistBoxCust != null)
|
||||
WlistBoxCust.saveEx();
|
||||
} // saveData
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue