IDEMPIERE-417 Update BPLocation.Name
This commit is contained in:
parent
d20678cab8
commit
de3f840d0a
|
@ -364,11 +364,21 @@ public class VLocation extends JComponent
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Data Binding
|
// Data Binding
|
||||||
int C_Location_ID = 0;
|
try
|
||||||
if (m_value != null)
|
{
|
||||||
C_Location_ID = m_value.getC_Location_ID();
|
int C_Location_ID = 0;
|
||||||
Integer ii = new Integer(C_Location_ID);
|
if (m_value != null)
|
||||||
setValue(ii);
|
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
|
} // actionPerformed
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -624,6 +624,8 @@ public class VLocationDialog extends CDialog
|
||||||
bpl.setName(bpl.getBPLocName(m_location));
|
bpl.setName(bpl.getBPLocName(m_location));
|
||||||
if (bpl.save())
|
if (bpl.save())
|
||||||
success = true;
|
success = true;
|
||||||
|
} else {
|
||||||
|
success = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,6 +179,14 @@ public class WLocationEditor extends WEditor implements EventListener<Event>, Pr
|
||||||
if (m_value != null)
|
if (m_value != null)
|
||||||
C_Location_ID = m_value.getC_Location_ID();
|
C_Location_ID = m_value.getC_Location_ID();
|
||||||
Integer ii = new Integer(C_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);
|
setValue(ii);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -676,6 +676,8 @@ public class WLocationDialog extends Window implements EventListener
|
||||||
bpl.setName(bpl.getBPLocName(m_location));
|
bpl.setName(bpl.getBPLocName(m_location));
|
||||||
if (bpl.save())
|
if (bpl.save())
|
||||||
success = true;
|
success = true;
|
||||||
|
} else {
|
||||||
|
success = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue