static function get_bring_shipping_info_for_order()
 {
     $result = [];
     $screen = get_current_screen();
     if ($screen && $screen->id == 'shop_order' || is_ajax()) {
         global $post;
         $post_id = $post ? $post->ID : $_GET['post_id'];
         $order = new Bring_WC_Order_Adapter(new WC_Order($post_id));
         $result = $order->get_shipping_data();
     }
     return $result;
 }