Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function view(OrderInterface $order, $view_mode)
 {
     if ($view_mode == 'customer' || $view_mode == 'view') {
         $tracking = array();
         $result = db_query('SELECT sid FROM {uc_shipments} WHERE order_id = :id', [':id' => $order->id()]);
         foreach ($result as $shipment) {
             $shipment = Shipment::load($shipment->sid);
             if ($shipment->tracking_number) {
                 $tracking[$shipment->carrier]['data'] = $shipment->carrier;
                 $tracking[$shipment->carrier]['children'][] = $shipment->tracking_number;
             } else {
                 foreach ($shipment->packages as $package) {
                     if ($package->tracking_number) {
                         $tracking[$shipment->carrier]['data'] = $shipment->carrier;
                         $tracking[$shipment->carrier]['children'][] = $package->tracking_number;
                     }
                 }
             }
         }
         // Do not show an empty pane to customers.
         if ($view_mode == 'view' || !empty($tracking)) {
             $build['tracking'] = array('#theme' => 'item_list', '#items' => $tracking);
             return $build;
         }
     }
 }
Ejemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function buildForm(array $form, FormStateInterface $form_state, OrderInterface $uc_order = NULL, $shipment = NULL)
 {
     // Sometimes $shipment is an ID, sometimes it's an object. FIX THIS! @todo
     if (!is_object($shipment)) {
         // Then $shipment is an ID.
         $shipment = Shipment::load($shipment);
     } elseif (isset($shipment->sid)) {
         $form['sid'] = array('#type' => 'value', '#value' => $shipment->sid);
         $shipment = Shipment::load($shipment->sid);
         $methods = \Drupal::moduleHandler()->invokeAll('uc_fulfillment_method');
         if (isset($methods[$shipment->shipping_method])) {
             $method = $methods[$shipment->shipping_method];
         }
     }
     $form['order_id'] = array('#type' => 'value', '#value' => $uc_order->id());
     $addresses = array();
     $form['packages'] = array('#type' => 'fieldset', '#title' => $this->t('Packages'), '#tree' => TRUE);
     if (isset($shipment->o_street1)) {
         $o_address = new \stdClass();
         foreach ($shipment as $field => $value) {
             if (substr($field, 0, 2) == 'o_') {
                 $o_address->{substr($field, 2)} = $value;
             }
         }
         $addresses[] = (object) $o_address;
     }
     foreach ($shipment->packages as $id => $package) {
         foreach ($package->addresses as $address) {
             if (!in_array($address, $addresses)) {
                 $addresses[] = (object) $address;
             }
         }
         // Create list of products and get a representative product (last one in
         // the loop) to use for some default values
         $product_list = array();
         $declared_value = 0;
         foreach ($package->products as $product) {
             $product_list[] = $product->qty . ' x ' . $product->model;
             $declared_value += $product->qty * $product->price;
         }
         $pkg_form = array('#type' => 'fieldset', '#title' => $this->t('Package @id', ['@id' => $id]));
         $pkg_form['products'] = array('#theme' => 'item_list', '#items' => $product_list);
         $pkg_form['pkg_type'] = array('#type' => 'textfield', '#title' => $this->t('Package type'), '#default_value' => $package->pkg_type, '#description' => $this->t('For example: Box, pallet, tube, envelope, etc.'));
         if (isset($method) && is_array($method['ship']['pkg_types'])) {
             $pkg_form['pkg_type']['#type'] = 'select';
             $pkg_form['pkg_type']['#options'] = $method['ship']['pkg_types'];
             $pkg_form['pkg_type']['#description'] = '';
         }
         $pkg_form['declared_value'] = array('#type' => 'uc_price', '#title' => $this->t('Declared value'), '#default_value' => isset($package->value) ? $package->value : $declared_value);
         $pkg_form['weight'] = array('#type' => 'container', '#attributes' => array('class' => array('uc-inline-form', 'clearfix')), '#description' => $this->t('Weight of the package. Default value is sum of product weights in the package.'), '#weight' => 15);
         $pkg_form['weight']['weight'] = array('#type' => 'number', '#title' => $this->t('Weight'), '#min' => 0, '#step' => 'any', '#default_value' => isset($package->weight) ? $package->weight : 0, '#size' => 10);
         $pkg_form['weight']['units'] = array('#type' => 'select', '#title' => $this->t('Units'), '#options' => array('lb' => $this->t('Pounds'), 'kg' => $this->t('Kilograms'), 'oz' => $this->t('Ounces'), 'g' => $this->t('Grams')), '#default_value' => isset($package->weight_units) ? $package->weight_units : \Drupal::config('uc_store.settings')->get('weight.units'));
         $pkg_form['dimensions'] = array('#type' => 'container', '#attributes' => array('class' => array('uc-inline-form', 'clearfix')), '#title' => $this->t('Dimensions'), '#description' => $this->t('Physical dimensions of the packaged product.'), '#weight' => 20);
         $pkg_form['dimensions']['length'] = array('#type' => 'number', '#title' => $this->t('Length'), '#min' => 0, '#step' => 'any', '#default_value' => isset($package->length) ? $package->length : 1, '#size' => 8);
         $pkg_form['dimensions']['width'] = array('#type' => 'number', '#title' => $this->t('Width'), '#min' => 0, '#step' => 'any', '#default_value' => isset($package->width) ? $package->width : 1, '#size' => 8);
         $pkg_form['dimensions']['height'] = array('#type' => 'number', '#title' => $this->t('Height'), '#min' => 0, '#step' => 'any', '#default_value' => isset($package->height) ? $package->height : 1, '#size' => 8);
         $pkg_form['dimensions']['units'] = array('#type' => 'select', '#title' => $this->t('Units of measurement'), '#options' => array('in' => $this->t('Inches'), 'ft' => $this->t('Feet'), 'cm' => $this->t('Centimeters'), 'mm' => $this->t('Millimeters')), '#default_value' => isset($package->length_units) ? $package->length_units : \Drupal::config('uc_store.settings')->get('length.units'));
         $pkg_form['tracking_number'] = array('#type' => 'textfield', '#title' => $this->t('Tracking number'), '#default_value' => isset($package->tracking_number) ? $package->tracking_number : '');
         $form['packages'][$id] = $pkg_form;
     }
     if (!empty($shipment->d_street1)) {
         foreach ($shipment as $field => $value) {
             if (substr($field, 0, 2) == 'd_') {
                 $uc_order->{'delivery_' . substr($field, 2)} = $value;
             }
         }
     }
     $form += \Drupal::formBuilder()->getForm('\\Drupal\\uc_fulfillment\\Form\\AddressForm', $addresses, $uc_order);
     $form['shipment'] = array('#type' => 'fieldset', '#title' => $this->t('Shipment data'));
     // Determine shipping option chosen by the customer.
     $message = '';
     if (isset($uc_order->quote['method'])) {
         // Order has a quote attached.
         $method = $uc_order->quote['method'];
         $methods = \Drupal::moduleHandler()->invokeAll('uc_fulfillment_method');
         if (isset($methods[$method])) {
             // Quote is from a currently-active shipping method.
             $services = $methods[$method]['quote']['accessorials'];
             $method = $services[$uc_order->quote['accessorials']];
         }
         $message = $this->t('Customer selected "@method" as the shipping method and paid @rate', ['@method' => $method, '@rate' => uc_currency_format($uc_order->quote['rate'])]);
     } else {
         // No quotes for this order.
         $message = $this->t('There are no shipping quotes attached to this order. Customer was not charged for shipping.');
     }
     // Inform administrator of customer's shipping choice.
     $form['shipment']['shipping_choice'] = array('#type' => 'container', '#markup' => $message);
     $form['shipment']['shipping_method'] = array('#type' => 'hidden', '#value' => isset($shipment->shipping_method) ? $shipment->shipping_method : 'manual');
     $form['shipment']['carrier'] = array('#type' => 'textfield', '#title' => $this->t('Carrier'), '#default_value' => isset($shipment->carrier) ? $shipment->carrier : '');
     $form['shipment']['accessorials'] = array('#type' => 'textfield', '#title' => $this->t('Shipment options'), '#default_value' => isset($shipment->accessorials) ? $shipment->accessorials : '', '#description' => $this->t('Short notes about the shipment, e.g. residential, overnight, etc.'));
     $form['shipment']['transaction_id'] = array('#type' => 'textfield', '#title' => $this->t('Transaction ID'), '#default_value' => isset($shipment->transaction_id) ? $shipment->transaction_id : '');
     $form['shipment']['tracking_number'] = array('#type' => 'textfield', '#title' => $this->t('Tracking number'), '#default_value' => isset($shipment->tracking_number) ? $shipment->tracking_number : '');
     $ship_date = REQUEST_TIME;
     if (isset($shipment->ship_date)) {
         $ship_date = $shipment->ship_date;
     }
     $exp_delivery = REQUEST_TIME;
     if (isset($shipment->expected_delivery)) {
         $exp_delivery = $shipment->expected_delivery;
     }
     $form['shipment']['ship_date'] = array('#type' => 'datetime', '#title' => $this->t('Ship date'), '#date_date_element' => 'date', '#date_time_element' => 'none', '#default_value' => DrupalDateTime::createFromTimestamp($ship_date));
     $form['shipment']['expected_delivery'] = array('#type' => 'datetime', '#title' => $this->t('Expected delivery'), '#date_date_element' => 'date', '#date_time_element' => 'none', '#default_value' => DrupalDateTime::createFromTimestamp($exp_delivery));
     $form['shipment']['cost'] = array('#type' => 'uc_price', '#title' => $this->t('Shipping cost'), '#default_value' => isset($shipment->cost) ? $shipment->cost : 0);
     $form['actions'] = array('#type' => 'actions');
     $form['actions']['submit'] = array('#type' => 'submit', '#value' => $this->t('Save shipment'), '#weight' => 10);
     return $form;
 }
 /**
  * {@inheritdoc}
  */
 public function submitForm(array &$form, FormStateInterface $form_state)
 {
     $package = Package::load($form_state->getValue('package_id'));
     $shipment = Shipment::load($package->sid);
     $methods = \Drupal::moduleHandler()->invokeAll('uc_fulfillment_method');
     if (isset($methods[$shipment->shipping_method]['cancel']) && function_exists($methods[$shipment->shipping_method]['cancel'])) {
         $result = call_user_func($methods[$shipment->shipping_method]['cancel'], $shipment->tracking_number, array($package->tracking_number));
         if ($result) {
             db_update('uc_packages')->fields(array('sid' => NULL, 'label_image' => NULL, 'tracking_number' => NULL))->condition('package_id', $package->package_id)->execute();
             if (isset($package->label_image)) {
                 file_usage_delete($package->label_image, 'uc_fulfillment', 'package', $package->package_id);
                 file_delete($package->label_image);
                 unset($package->label_image);
             }
             unset($shipment->packages[$package->package_id]);
             if (!count($shipment->packages)) {
                 $shipment->delete();
             }
         }
     }
     $form_state->setRedirectUrl($this->getCancelUrl());
 }
 /**
  * Displays the details of a package.
  *
  * @param $package
  *   The package object.
  *
  * @return array
  *   A render array.
  */
 public function viewPackage($package)
 {
     $shipment = Shipment::load($package->sid);
     $build = array('#type' => 'container', '#attributes' => array('class' => array('order-pane', 'pos-left')));
     $build['title'] = array('#type' => 'container', '#markup' => $this->t('Package %id:', ['%id' => $package->package_id]), '#attributes' => array('class' => array('order-pane-title')));
     $rows = array();
     $rows[] = array($this->t('Contents:'), Xss::filterAdmin($package->description));
     if ($shipment) {
         $methods = \Drupal::moduleHandler()->invokeAll('uc_fulfillment_method');
         if (isset($methods[$shipment->shipping_method])) {
             $pkg_type = $methods[$shipment->shipping_method]['ship']['pkg_types'][$package->pkg_type];
         }
     }
     $rows[] = array($this->t('Package type:'), isset($pkg_type) ? $pkg_type : SafeMarkup::checkPlain($package->pkg_type));
     if ($package->length && $package->width && $package->height) {
         $rows[] = array($this->t('Dimensions:'), $this->t('@l x @w x @h', ['@l' => uc_length_format($package->length), '@w' => uc_length_format($package->width), '@h' => uc_length_format($package->height)]));
     }
     $rows[] = array($this->t('Insured value:'), array('data' => array('#theme' => 'uc_price', '#price' => $package->value)));
     if ($package->tracking_number) {
         $rows[] = array($this->t('Tracking number:'), SafeMarkup::checkPlain($package->tracking_number));
     }
     if ($shipment && isset($package->label_image) && file_exists($package->label_image->uri)) {
         $rows[] = array($this->t('Label:'), Link::fromTextAndUrl($this->t('Click to view.'), Url::fromUri('admin/store/orders/' . $package->order_id . '/shipments/labels/' . $shipment->shipping_method . '/' . $package->label_image->uri))->toString());
     } else {
         $rows[] = array($this->t('Label:'), $this->t('n/a'));
     }
     $build['package'] = array('#theme' => 'table', '#rows' => $rows, 'attributes' => array('style' => 'width:auto;'));
     return $build;
 }
 /**
  * {@inheritdoc}
  */
 public function submitForm(array &$form, FormStateInterface $form_state)
 {
     $shipment = Shipment::load($form_state->getValue('sid'));
     $methods = \Drupal::moduleHandler()->invokeAll('uc_fulfillment_method');
     if ($shipment->tracking_number && isset($methods[$shipment->shipping_method]['cancel']) && function_exists($methods[$shipment->shipping_method]['cancel'])) {
         $result = call_user_func($methods[$shipment->shipping_method]['cancel'], $shipment->tracking_number);
         if ($result) {
             $shipment->delete();
         } else {
             drupal_set_message($this->t('The shipment %tracking could not be canceled with %carrier. To delete it anyway, remove the tracking number and try again.', ['%tracking' => $shipment->tracking_number, '%carrier' => $shipment->carrier]), 'warning');
         }
     } else {
         $shipment->delete();
     }
     $form_state->setRedirectUrl($this->getCancelUrl());
 }
 /**
  * {@inheritdoc}
  */
 public function convert($value, $definition, $name, array $defaults)
 {
     return Shipment::load($value);
 }