/**
     * @param Bring_WC_Order_Adapter $order
     */
    static function render_packages($order)
    {
        $shipping_item_tip = __('Shipping item id', 'bring-fraktguiden');
        ?>
    <table class="bring-booking-packages">
      <thead>
      <tr>
        <th title="<?php 
        echo $shipping_item_tip;
        ?>
"><?php 
        _e('#', 'bring-fraktguiden');
        ?>
</th>
        <th><?php 
        _e('Product', 'bring-fraktguiden');
        ?>
</th>
        <th><?php 
        _e('Width', 'bring-fraktguiden');
        ?>
 (cm)</th>
        <th><?php 
        _e('Height', 'bring-fraktguiden');
        ?>
 (cm)</th>
        <th><?php 
        _e('Length', 'bring-fraktguiden');
        ?>
 (cm)</th>
        <th><?php 
        _e('Weight', 'bring-fraktguiden');
        ?>
 (kg)</th>
      </tr>
      </thead>
      <tbody>
      <?php 
        foreach ($order->get_packages_formatted(false, true) as $key => $package) {
            ?>
        <?php 
            $shipping_item_id = $package['shipping_item_info']['item_id'];
            $service_data = Fraktguiden_Helper::get_service_data_for_key($package['shipping_item_info']['shipping_method']['service']);
            ?>
        <tr>
          <td title="<?php 
            echo $shipping_item_tip;
            ?>
">
            <?php 
            echo $shipping_item_id;
            ?>
          </td>
          <td>
            <?php 
            echo $service_data[Fraktguiden_Helper::get_option('service_name')];
            ?>
            <?php 
            $pickup_point = $order->get_pickup_point_for_shipping_item($shipping_item_id);
            if (!empty($pickup_point)) {
                ?>
              <span class="tips"
                    data-tip="<?php 
                echo str_replace('|', '<br/>', $pickup_point['cached']);
                ?>
">
                [<?php 
                _e('Pickup Point', 'bring-fraktguiden');
                ?>
]
              </span>
              <?php 
            }
            ?>
          </td>
          <td>
            <?php 
            echo $package['dimensions']['widthInCm'];
            ?>
          </td>
          <td>
            <?php 
            echo $package['dimensions']['heightInCm'];
            ?>
          </td>
          <td>
            <?php 
            echo $package['dimensions']['lengthInCm'];
            ?>
          </td>
          <td>
            <?php 
            echo $package['weightInKg'];
            ?>
          </td>
        </tr>
      <?php 
        }
        ?>
      </tbody>
    </table>
    <?php 
    }