hide woo commerce dashboard status and reports from woo commerce from specific users but display to other users

For the dashboard case.

if ( !current_user_can('manage_options') ) {

function remove_dashboard_widgets() {

        // remove WooCommerce Dashboard Status
        remove_meta_box( 'woocommerce_dashboard_status', 'dashboard', 'normal');    
    }
    add_action('wp_user_dashboard_setup', 'remove_dashboard_widgets', 20);
    add_action('wp_dashboard_setup', 'remove_dashboard_widgets', 20);
}