Esempio n. 1
0
 /**
  * Submit handler for the views form.
  *
  * @param array $form
  *   An associative array containing the structure of the form.
  * @param \Drupal\Core\Form\FormStateInterface $form_state
  *   The current state of the form.
  */
 public function viewsFormSubmit(&$form, FormStateInterface $form_state)
 {
     $triggering_element = $form_state->getTriggeringElement();
     if (!empty($triggering_element['#remove_line_item'])) {
         $row_index = $triggering_element['#row_index'];
         $line_item = $this->getEntity($this->view->result[$row_index]);
         $this->cartManager->removeLineItem($line_item->getOrder(), $line_item);
     }
 }
Esempio n. 2
0
 /**
  * Submit handler for the views form.
  *
  * @param array $form
  *   An associative array containing the structure of the form.
  * @param \Drupal\Core\Form\FormStateInterface $form_state
  *   The current state of the form.
  */
 public function viewsFormSubmit(&$form, FormStateInterface $form_state)
 {
     $quantities = $form_state->getValue($this->options['id']);
     foreach ($quantities as $row_index => $quantity) {
         $line_item = $this->getEntity($this->view->result[$row_index]);
         if ($line_item->getQuantity() != $quantity) {
             $line_item->setQuantity($quantity);
             $order = $line_item->getOrder();
             $this->cartManager->updateLineItem($order, $line_item);
         }
     }
 }
Esempio n. 3
0
 /**
  * {@inheritdoc}
  */
 public function submitForm(array &$form, FormStateInterface $form_state)
 {
     parent::submitForm($form, $form_state);
     $line_item_type_storage = $this->entityManager->getStorage('commerce_line_item_type');
     /** @var \Drupal\commerce_order\Entity\LineItemInterface $line_item */
     $line_item = $this->entity;
     /** @var \Drupal\commerce\PurchasableEntityInterface $purchased_entity */
     $purchased_entity = $line_item->getPurchasedEntity();
     /** @var \Drupal\commerce_order\Entity\LineItemTypeInterface $line_item_type */
     $line_item_type = $line_item_type_storage->load($line_item->bundle());
     $store = $this->selectStore($purchased_entity);
     $cart = $this->cartProvider->getCart($line_item_type->getOrderTypeId(), $store);
     if (!$cart) {
         $cart = $this->cartProvider->createCart('default', $store);
     }
     $this->cartManager->addLineItem($cart, $line_item, $form_state->get(['settings', 'combine']));
     drupal_set_message(t('@entity added to @cart-link.', ['@entity' => $purchased_entity->label(), '@cart-link' => Link::createFromRoute('your cart', 'commerce_cart.page')->toString()]));
 }
Esempio n. 4
0
 /**
  * {@inheritdoc}
  */
 function submitForm(array &$form, FormStateInterface $form_state)
 {
     $variation = $this->variationStorage->load($form_state->getValue('variation'));
     $available_stores = $variation->getProduct()->getStores();
     if (count($available_stores) === 1) {
         $store = reset($available_stores);
     } else {
         $store = $this->storeContext->getStore();
         if (!in_array($store, $available_stores)) {
             // Throw an exception.
         }
     }
     // @todo The order type should not be hardcoded.
     $cart = $this->cartProvider->getCart('default', $store);
     if (!$cart) {
         $cart = $this->cartProvider->createCart('default', $store);
     }
     $quantity = $form_state->getValue('quantity');
     $combine = $form['#settings']['combine'];
     $this->cartManager->addEntity($cart, $variation, $quantity, $combine);
     drupal_set_message(t('@variation added to @cart-link.', ['@variation' => $variation->label(), '@cart-link' => Link::createFromRoute('your cart', 'commerce_cart.page')->toString()]));
 }