BF [ 2011222 ] ASI Dialog is reseting locator

This commit is contained in:
teo_sarca 2008-07-05 10:15:15 +00:00
parent 98903ed276
commit 86272e445c
1 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@ import org.compiere.util.Msg;
* @author Teo Sarca, SC ARHIPAC SERVICE SRL * @author Teo Sarca, SC ARHIPAC SERVICE SRL
* <li>BF [ 1895041 ] NPE when move product with attribute set * <li>BF [ 1895041 ] NPE when move product with attribute set
* <li>BF [ 1770177 ] Inventory Move Locator Error - integrated MGrigioni bug fix * <li>BF [ 1770177 ] Inventory Move Locator Error - integrated MGrigioni bug fix
* <li>BF [ 2011222 ] ASI Dialog is reseting locator
*/ */
public class VPAttribute extends JComponent public class VPAttribute extends JComponent
implements VEditor, ActionListener implements VEditor, ActionListener
@ -371,7 +372,7 @@ public class VPAttribute extends JComponent
{ {
m_text.setText(vad.getM_AttributeSetInstanceName()); m_text.setText(vad.getM_AttributeSetInstanceName());
M_AttributeSetInstance_ID = vad.getM_AttributeSetInstance_ID(); M_AttributeSetInstance_ID = vad.getM_AttributeSetInstance_ID();
if (m_GridTab != null && !productWindow) if (m_GridTab != null && !productWindow && vad.getM_Locator_ID() > 0)
m_GridTab.setValue("M_Locator_ID", vad.getM_Locator_ID()); m_GridTab.setValue("M_Locator_ID", vad.getM_Locator_ID());
changed = true; changed = true;
} }