{
try
{
ItemLocal item = ItemUtil.getLocalHome( ).findByPrimaryKey( itemId );
OrderItemLocal oitem = OrderItemUtil.getLocalHome( ).create( quantity, item.getItemValue( ).getListPrice( ) );
oitem.setItem( item );
getOrderItems( ).add( oitem );
}
catch ( NamingException n )
{
throw new CreateException( n.toString( ) );