Tried with this, same problem. Meta data still empty:
//Add meta to item order
add_action( 'woocommerce_new_order_item', 'woo_add_custom_inventory_fields_meta', 99, 3 );
function woo_add_custom_inventory_fields_meta( $item_id, $item, $order_id ) {
if( isset( $item->legacy_values['_ean_field'] ) ) {
wc_add_order_item_meta( $item_id, '_ean_field', $item->legacy_values['_ean_field'] );
}
}
Maybe i has change your code wrong