IDEMPIERE-417 Update BPLocation.Name
This commit is contained in:
parent
d20678cab8
commit
de3f840d0a
|
@ -364,11 +364,21 @@ public class VLocation extends JComponent
|
|||
return;
|
||||
|
||||
// Data Binding
|
||||
int C_Location_ID = 0;
|
||||
if (m_value != null)
|
||||
C_Location_ID = m_value.getC_Location_ID();
|
||||
Integer ii = new Integer(C_Location_ID);
|
||||
setValue(ii);
|
||||
try
|
||||
{
|
||||
int C_Location_ID = 0;
|
||||
if (m_value != null)
|
||||
C_Location_ID = m_value.getC_Location_ID();
|
||||
Integer ii = new Integer(C_Location_ID);
|
||||
|
||||
if (C_Location_ID != 0)
|
||||
fireVetoableChange(m_columnName, oldValue, ii);
|
||||
setValue(ii);
|
||||
}
|
||||
catch (PropertyVetoException pve)
|
||||
{
|
||||
log.log(Level.SEVERE, "VLocation.actionPerformed", pve);
|
||||
}
|
||||
} // actionPerformed
|
||||
|
||||
/**
|
||||
|
|
|
@ -624,6 +624,8 @@ public class VLocationDialog extends CDialog
|
|||
bpl.setName(bpl.getBPLocName(m_location));
|
||||
if (bpl.save())
|
||||
success = true;
|
||||
} else {
|
||||
success = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -179,6 +179,14 @@ public class WLocationEditor extends WEditor implements EventListener<Event>, Pr
|
|||
if (m_value != null)
|
||||
C_Location_ID = m_value.getC_Location_ID();
|
||||
Integer ii = new Integer(C_Location_ID);
|
||||
// force Change - user does not realize that embedded object is already saved.
|
||||
ValueChangeEvent valuechange = new ValueChangeEvent(WLocationEditor.this,getColumnName(),null,null);
|
||||
fireValueChange(valuechange); // resets m_mLocation
|
||||
if (C_Location_ID != 0)
|
||||
{
|
||||
ValueChangeEvent vc = new ValueChangeEvent(WLocationEditor.this,getColumnName(),null,ii);
|
||||
fireValueChange(vc);
|
||||
}
|
||||
setValue(ii);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -676,6 +676,8 @@ public class WLocationDialog extends Window implements EventListener
|
|||
bpl.setName(bpl.getBPLocName(m_location));
|
||||
if (bpl.save())
|
||||
success = true;
|
||||
} else {
|
||||
success = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue