public function refund($order_id)
 {
     $this->log_identifier = time();
     if (!$this->util->isPaymillOrder($order_id)) {
         return false;
     }
     $data = $this->getTransactionData($order_id);
     try {
         $result = $this->refund->create(array('transactionId' => $data['transaction'], 'params' => array('amount' => number_format($data['total_paid'], 2) * 100)));
         $return_value = isset($result['response_code']) && $result['response_code'] === 20000;
         $this->log('Refund resulted in ' . (string) $return_value, var_export($result, true));
         $db = Db::getInstance();
         $db->execute('UPDATE `' . _DB_PREFIX_ . 'pigmbh_paymill_transactiondata` SET `refund`=1 WHERE `id`=' . pSQL($order_id));
     } catch (Exception $exception) {
         $this->log('Refund exception ', var_export($exception->getMessage(), true));
         $return_value = false;
     }
     if ($return_value) {
         $new_order_state = Configuration::get('PS_OS_REFUND');
         $order = new Order($order_id);
         $history = new OrderHistory();
         $history->id_order = (int) $order->id;
         $history->changeIdOrderState($new_order_state, (int) $order->id);
         //order status=3
         $history->add(true);
     }
     return $return_value;
 }
Example #2
0
 public function initContent()
 {
     $order_id = (int) Tools::getValue('merchantReference');
     Logger::addLog('Adyen module: incoming notification for id_order ' . $order_id);
     if ($this->validateNotificationCredential()) {
         $psp_reference = (string) Tools::getValue('pspReference');
         $event_code = (string) Tools::getValue('eventCode');
         $auth_result = (string) Tools::getValue('authResult');
         $payment_method = (string) Tools::getValue('paymentMethod');
         $success = (string) Tools::getValue('success');
         $event_data = !empty($event_code) ? $event_code : $auth_result;
         // check if notification is already executed on server based on psp_reference and event_code
         if ((int) $order_id > 0 && !$this->isDuplicate($psp_reference, $event_code)) {
             // save notification to table so notification is handled only once
             Db::getInstance()->insert('adyen_event_data', array('psp_reference' => pSQL($psp_reference), 'adyen_event_code' => pSQL($event_code), 'adyen_event_result' => pSQL($event_data), 'id_order' => (int) $order_id, 'payment_method' => pSQL($payment_method), 'created_at' => date('Y-m-d H:i:s')));
             // get the order
             $order = new Order($order_id);
             $history = new OrderHistory();
             $history->id_order = (int) $order->id;
             if (strcmp($success, 'false') == 0 || $success == '' || $event_code == 'CANCELLATION') {
                 // failed if post value success is false or not filled in
                 $history->changeIdOrderState((int) Configuration::get('ADYEN_STATUS_CANCELLED'), (int) $order->id);
                 $history->add();
                 Logger::addLog('Adyen module: status for id_order ' . $order->id . ' is changed to cancelled');
             } else {
                 // if success is not false then check if eventCode is AUTHORISATION so that order status is accepted
                 if ($event_code == 'AUTHORISATION') {
                     $history->changeIdOrderState((int) Configuration::get('ADYEN_STATUS_AUTHORIZED'), (int) $order->id);
                     $history->add();
                     Logger::addLog('Adyen module: status for id_order ' . $order->id . ' is changed to authorized');
                 } else {
                     Logger::addLog('Adyen module: status for id_order ' . $order->id . ' is ' . $event_code . ' and is ignored');
                 }
             }
         } else {
             Logger::addLog('Adyen module: incoming notification ignored because it is already handled for id_order ' . $order_id);
         }
     } else {
         Logger::addLog('Adyen module: invalid credential for incoming notification of id_order ' . $order_id, 4);
         // unauthorized
         header('HTTP/1.1 401 Unauthorized', true, 401);
         exit;
     }
     // always return accepted
     die('[accepted]');
 }
 private function updateStatus($orderId, $statusId)
 {
     $order_state_id = $this->getStatus($statusId);
     $history = new OrderHistory();
     $history->id_order = $orderId;
     $history->id_order_state = $order_state_id;
     $history->changeIdOrderState($order_state_id, $orderId);
     $history->add(true);
 }
Example #4
0
function addSyspayOrderHistory($id_order, $order_state, $use_existings_payment = false)
{
    $history = new OrderHistory();
    $history->id_order = $id_order;
    $history->id_employee = (int) Configuration::get('SYSPAY_EMPLOYEE');
    $history->changeIdOrderState($order_state, $id_order, $use_existings_payment);
    $history->id_order_state = $order_state;
    $history->add(true);
}
function updateOrder($orderId, $response)
{
    $order_state_id = (int) Configuration::get('PS_OS_BCASH_CANCELLED');
    if ($response->transactionStatusId == 6) {
        $order_state_id = (int) Configuration::get('PS_OS_BCASH_REFUNDED');
    }
    $history = new OrderHistory();
    $history->id_order = $orderId;
    $history->id_order_state = $order_state_id;
    $history->changeIdOrderState($order_state_id, $orderId);
    $history->add(true);
}
 /**
  * @see FrontController::initContent()
  */
 public function initContent()
 {
     // if customer press "back" from VTweb, they'll be redirected to re-order link in order to put back their order into shopping cart (normally, their shopping cart is emptied before redirected to VTWeb, so re-order is needed to make sure they have their order back in shopping cart).
     $this->display_column_left = false;
     $this->display_column_right = false;
     parent::initContent();
     global $smarty;
     if (null !== Tools::getValue('order_id') && '' !== Tools::getValue('order_id')) {
         $order_id = Tools::getValue('order_id');
     }
     // set order status in backend to be failure
     $history = new OrderHistory();
     $history->id_order = $order_id;
     $history->changeIdOrderState(Configuration::get('VI_PAYMENT_FAILURE_STATUS_MAP'), $order_id);
     $history->add(true);
     //
     $cart = $this->context->cart;
     $status = 'back';
     $this->context->smarty->assign(array('status' => $status, 'order_id' => $order_id, 'this_path' => $this->module->getPathUri(), 'this_path_ssl' => Tools::getShopDomainSsl(true, true) . __PS_BASE_URI__ . 'modules/' . $this->module->name . '/'));
     $this->setTemplate('notification.tpl');
 }
 public function validateOrder($id_cart, $id_order_state, $amount_paid, $payment_method = 'Unknown', $message = null, $extra_vars = array(), $currency_special = null, $dont_touch_amount = false, $secure_key = false, Shop $shop = null)
 {
     $this->context->cart = new Cart($id_cart);
     $this->context->customer = new Customer($this->context->cart->id_customer);
     $this->context->language = new Language($this->context->cart->id_lang);
     $this->context->shop = $shop ? $shop : new Shop($this->context->cart->id_shop);
     ShopUrl::resetMainDomainCache();
     $id_currency = $currency_special ? (int) $currency_special : (int) $this->context->cart->id_currency;
     $this->context->currency = new Currency($id_currency, null, $this->context->shop->id);
     if (Configuration::get('PS_TAX_ADDRESS_TYPE') == 'id_address_delivery') {
         $context_country = $this->context->country;
     }
     $order_status = new OrderState((int) $id_order_state, (int) $this->context->language->id);
     if (!Validate::isLoadedObject($order_status)) {
         throw new PrestaShopException('Can\'t load Order status');
     }
     if (!$this->active) {
         die(Tools::displayError());
     }
     // Does order already exists ?
     if (Validate::isLoadedObject($this->context->cart) && $this->context->cart->OrderExists() == false) {
         if ($secure_key !== false && $secure_key != $this->context->cart->secure_key) {
             die(Tools::displayError());
         }
         // For each package, generate an order
         $delivery_option_list = $this->context->cart->getDeliveryOptionList();
         $package_list = $this->context->cart->getPackageList();
         $cart_delivery_option = $this->context->cart->getDeliveryOption();
         // If some delivery options are not defined, or not valid, use the first valid option
         foreach ($delivery_option_list as $id_address => $package) {
             if (!isset($cart_delivery_option[$id_address]) || !array_key_exists($cart_delivery_option[$id_address], $package)) {
                 foreach ($package as $key => $val) {
                     $cart_delivery_option[$id_address] = $key;
                     break;
                 }
             }
         }
         $order_list = array();
         $order_detail_list = array();
         do {
             $reference = Order::generateReference();
         } while (Order::getByReference($reference)->count());
         $this->currentOrderReference = $reference;
         $order_creation_failed = false;
         $cart_total_paid = (double) Tools::ps_round((double) $this->context->cart->getOrderTotal(true, Cart::BOTH), 2);
         foreach ($cart_delivery_option as $id_address => $key_carriers) {
             foreach ($delivery_option_list[$id_address][$key_carriers]['carrier_list'] as $id_carrier => $data) {
                 foreach ($data['package_list'] as $id_package) {
                     // Rewrite the id_warehouse
                     $package_list[$id_address][$id_package]['id_warehouse'] = (int) $this->context->cart->getPackageIdWarehouse($package_list[$id_address][$id_package], (int) $id_carrier);
                     $package_list[$id_address][$id_package]['id_carrier'] = $id_carrier;
                 }
             }
         }
         // Make sure CarRule caches are empty
         CartRule::cleanCache();
         $cart_rules = $this->context->cart->getCartRules();
         foreach ($cart_rules as $cart_rule) {
             if (($rule = new CartRule((int) $cart_rule['obj']->id)) && Validate::isLoadedObject($rule)) {
                 if ($error = $rule->checkValidity($this->context, true, true)) {
                     $this->context->cart->removeCartRule((int) $rule->id);
                     if (isset($this->context->cookie) && isset($this->context->cookie->id_customer) && $this->context->cookie->id_customer && !empty($rule->code)) {
                         if (Configuration::get('PS_ORDER_PROCESS_TYPE') == 1) {
                             Tools::redirect('index.php?controller=order-opc&submitAddDiscount=1&discount_name=' . urlencode($rule->code));
                         }
                         Tools::redirect('index.php?controller=order&submitAddDiscount=1&discount_name=' . urlencode($rule->code));
                     } else {
                         $rule_name = isset($rule->name[(int) $this->context->cart->id_lang]) ? $rule->name[(int) $this->context->cart->id_lang] : $rule->code;
                         $error = Tools::displayError(sprintf('CartRule ID %1s (%2s) used in this cart is not valid and has been withdrawn from cart', (int) $rule->id, $rule_name));
                         PrestaShopLogger::addLog($error, 3, '0000002', 'Cart', (int) $this->context->cart->id);
                     }
                 }
             }
         }
         foreach ($package_list as $id_address => $packageByAddress) {
             foreach ($packageByAddress as $id_package => $package) {
                 $order = new Order();
                 $order->product_list = $package['product_list'];
                 if (Configuration::get('PS_TAX_ADDRESS_TYPE') == 'id_address_delivery') {
                     $address = new Address($id_address);
                     $this->context->country = new Country($address->id_country, $this->context->cart->id_lang);
                     //						if (!$this->context->country->active)
                     //							throw new PrestaShopException('The delivery address country is not active.');
                 }
                 $carrier = null;
                 if (!$this->context->cart->isVirtualCart() && isset($package['id_carrier'])) {
                     $carrier = new Carrier($package['id_carrier'], $this->context->cart->id_lang);
                     $order->id_carrier = (int) $carrier->id;
                     $id_carrier = (int) $carrier->id;
                 } else {
                     $order->id_carrier = 0;
                     $id_carrier = 0;
                 }
                 $order->id_customer = (int) $this->context->cart->id_customer;
                 $order->id_address_invoice = (int) $this->context->cart->id_address_invoice;
                 $order->id_address_delivery = (int) $id_address;
                 $order->id_currency = $this->context->currency->id;
                 $order->id_lang = (int) $this->context->cart->id_lang;
                 $order->id_cart = (int) $this->context->cart->id;
                 $order->reference = $reference;
                 $order->id_shop = (int) $this->context->shop->id;
                 $order->id_shop_group = (int) $this->context->shop->id_shop_group;
                 $order->secure_key = $secure_key ? pSQL($secure_key) : pSQL($this->context->customer->secure_key);
                 $order->payment = $payment_method;
                 if (isset($this->name)) {
                     $order->module = $this->name;
                 }
                 $order->recyclable = $this->context->cart->recyclable;
                 $order->gift = (int) $this->context->cart->gift;
                 $order->gift_message = $this->context->cart->gift_message;
                 $order->mobile_theme = $this->context->cart->mobile_theme;
                 $order->conversion_rate = $this->context->currency->conversion_rate;
                 $amount_paid = !$dont_touch_amount ? Tools::ps_round((double) $amount_paid, 2) : $amount_paid;
                 $order->total_paid_real = 0;
                 $order->total_products = (double) $this->context->cart->getOrderTotal(false, Cart::ONLY_PRODUCTS, $order->product_list, $id_carrier);
                 $order->total_products_wt = (double) $this->context->cart->getOrderTotal(true, Cart::ONLY_PRODUCTS, $order->product_list, $id_carrier);
                 $order->total_discounts_tax_excl = (double) abs($this->context->cart->getOrderTotal(false, Cart::ONLY_DISCOUNTS, $order->product_list, $id_carrier));
                 $order->total_discounts_tax_incl = (double) abs($this->context->cart->getOrderTotal(true, Cart::ONLY_DISCOUNTS, $order->product_list, $id_carrier));
                 $order->total_discounts = $order->total_discounts_tax_incl;
                 $order->total_shipping_tax_excl = (double) $this->context->cart->getPackageShippingCost((int) $id_carrier, false, null, $order->product_list);
                 $order->total_shipping_tax_excl = Cart::updateShippingCost($order->total_shipping_tax_excl);
                 $order->total_shipping_tax_incl = (double) $this->context->cart->getPackageShippingCost((int) $id_carrier, true, null, $order->product_list);
                 $order->total_shipping_tax_incl = Cart::updateShippingCost($order->total_shipping_tax_incl);
                 $order->total_shipping = $order->total_shipping_tax_incl;
                 if (!is_null($carrier) && Validate::isLoadedObject($carrier)) {
                     $order->carrier_tax_rate = $carrier->getTaxesRate(new Address($this->context->cart->{Configuration::get('PS_TAX_ADDRESS_TYPE')}));
                 }
                 $order->total_wrapping_tax_excl = (double) abs($this->context->cart->getOrderTotal(false, Cart::ONLY_WRAPPING, $order->product_list, $id_carrier));
                 $order->total_wrapping_tax_incl = (double) abs($this->context->cart->getOrderTotal(true, Cart::ONLY_WRAPPING, $order->product_list, $id_carrier));
                 $order->total_wrapping = $order->total_wrapping_tax_incl;
                 $order->total_paid_tax_excl = (double) Tools::ps_round((double) $this->context->cart->getOrderTotal(false, Cart::BOTH, $order->product_list, $id_carrier), 2);
                 $order->total_paid_tax_incl = (double) Tools::ps_round((double) $this->context->cart->getOrderTotal(true, Cart::BOTH, $order->product_list, $id_carrier), 2);
                 $order->total_paid = $order->total_paid_tax_incl;
                 $order->invoice_date = '0000-00-00 00:00:00';
                 $order->delivery_date = '0000-00-00 00:00:00';
                 $order->comment = ' ';
                 // Creating order
                 $result = $order->add();
                 if (!$result) {
                     throw new PrestaShopException('Can\'t save Order');
                 }
                 // Amount paid by customer is not the right one -> Status = payment error
                 // We don't use the following condition to avoid the float precision issues : http://www.php.net/manual/en/language.types.float.php
                 // if ($order->total_paid != $order->total_paid_real)
                 // We use number_format in order to compare two string
                 if ($order_status->logable && number_format($cart_total_paid, 2) != number_format($amount_paid, 2)) {
                     $id_order_state = Configuration::get('PS_OS_ERROR');
                 }
                 $order_list[] = $order;
                 // Insert new Order detail list using cart for the current order
                 $order_detail = new OrderDetail(null, null, $this->context);
                 $order_detail->createList($order, $this->context->cart, $id_order_state, $order->product_list, 0, true, $package_list[$id_address][$id_package]['id_warehouse']);
                 $order_detail_list[] = $order_detail;
                 // Adding an entry in order_carrier table
                 if (!is_null($carrier)) {
                     $order_carrier = new OrderCarrier();
                     $order_carrier->id_order = (int) $order->id;
                     $order_carrier->id_carrier = (int) $id_carrier;
                     $order_carrier->weight = (double) $order->getTotalWeight();
                     $order_carrier->shipping_cost_tax_excl = (double) $order->total_shipping_tax_excl;
                     $order_carrier->shipping_cost_tax_incl = (double) $order->total_shipping_tax_incl;
                     $order_carrier->add();
                 }
             }
         }
         // The country can only change if the address used for the calculation is the delivery address, and if multi-shipping is activated
         if (Configuration::get('PS_TAX_ADDRESS_TYPE') == 'id_address_delivery') {
             $this->context->country = $context_country;
         }
         if (!$this->context->country->active) {
             throw new PrestaShopException('The order address country is not active.');
         }
         // Register Payment only if the order status validate the order
         if ($order_status->logable) {
             // $order is the last order loop in the foreach
             // The method addOrderPayment of the class Order make a create a paymentOrder
             //     linked to the order reference and not to the order id
             if (isset($extra_vars['transaction_id'])) {
                 $transaction_id = $extra_vars['transaction_id'];
             } else {
                 $transaction_id = null;
             }
             if (!$order->addOrderPayment($amount_paid, null, $transaction_id)) {
                 throw new PrestaShopException('Can\'t save Order Payment');
             }
         }
         // Next !
         $only_one_gift = false;
         $cart_rule_used = array();
         $products = $this->context->cart->getProducts();
         // Make sure CarRule caches are empty
         CartRule::cleanCache();
         foreach ($order_detail_list as $key => $order_detail) {
             $order = $order_list[$key];
             if (!$order_creation_failed && isset($order->id)) {
                 if (!$secure_key) {
                     $message .= '<br />' . Tools::displayError('Warning: the secure key is empty, check your payment account before validation');
                 }
                 // Optional message to attach to this order
                 if (isset($message) & !empty($message)) {
                     $msg = new Message();
                     $message = strip_tags($message, '<br>');
                     if (Validate::isCleanHtml($message)) {
                         $msg->message = $message;
                         $msg->id_order = intval($order->id);
                         $msg->private = 1;
                         $msg->add();
                     }
                 }
                 // Insert new Order detail list using cart for the current order
                 //$orderDetail = new OrderDetail(null, null, $this->context);
                 //$orderDetail->createList($order, $this->context->cart, $id_order_state);
                 // Construct order detail table for the email
                 $products_list = '';
                 $virtual_product = true;
                 $product_var_tpl_list = array();
                 foreach ($order->product_list as $product) {
                     $price = Product::getPriceStatic((int) $product['id_product'], false, $product['id_product_attribute'] ? (int) $product['id_product_attribute'] : null, 6, null, false, true, $product['cart_quantity'], false, (int) $order->id_customer, (int) $order->id_cart, (int) $order->{Configuration::get('PS_TAX_ADDRESS_TYPE')});
                     $price_wt = Product::getPriceStatic((int) $product['id_product'], true, $product['id_product_attribute'] ? (int) $product['id_product_attribute'] : null, 2, null, false, true, $product['cart_quantity'], false, (int) $order->id_customer, (int) $order->id_cart, (int) $order->{Configuration::get('PS_TAX_ADDRESS_TYPE')});
                     $product_price = Product::getTaxCalculationMethod() == PS_TAX_EXC ? Tools::ps_round($price, 2) : $price_wt;
                     $product_var_tpl = array('reference' => $product['reference'], 'name' => $product['name'] . (isset($product['attributes']) ? ' - ' . $product['attributes'] : ''), 'unit_price' => Tools::displayPrice($product_price, $this->context->currency, false), 'price' => Tools::displayPrice($product_price * $product['quantity'], $this->context->currency, false), 'quantity' => $product['quantity'], 'customization' => array());
                     $customized_datas = Product::getAllCustomizedDatas((int) $order->id_cart);
                     if (isset($customized_datas[$product['id_product']][$product['id_product_attribute']])) {
                         $product_var_tpl['customization'] = array();
                         foreach ($customized_datas[$product['id_product']][$product['id_product_attribute']][$order->id_address_delivery] as $customization) {
                             $customization_text = '';
                             if (isset($customization['datas'][Product::CUSTOMIZE_TEXTFIELD])) {
                                 foreach ($customization['datas'][Product::CUSTOMIZE_TEXTFIELD] as $text) {
                                     $customization_text .= $text['name'] . ': ' . $text['value'] . '<br />';
                                 }
                             }
                             if (isset($customization['datas'][Product::CUSTOMIZE_FILE])) {
                                 $customization_text .= sprintf(Tools::displayError('%d image(s)'), count($customization['datas'][Product::CUSTOMIZE_FILE])) . '<br />';
                             }
                             $customization_quantity = (int) $product['customization_quantity'];
                             $product_var_tpl['customization'][] = array('customization_text' => $customization_text, 'customization_quantity' => $customization_quantity, 'quantity' => Tools::displayPrice($customization_quantity * $product_price, $this->context->currency, false));
                         }
                     }
                     $product_var_tpl_list[] = $product_var_tpl;
                     // Check if is not a virutal product for the displaying of shipping
                     if (!$product['is_virtual']) {
                         $virtual_product &= false;
                     }
                 }
                 // end foreach ($products)
                 $product_list_txt = '';
                 $product_list_html = '';
                 if (count($product_var_tpl_list) > 0) {
                     $product_list_txt = $this->getEmailTemplateContent('order_conf_product_list.txt', Mail::TYPE_TEXT, $product_var_tpl_list);
                     $product_list_html = $this->getEmailTemplateContent('order_conf_product_list.tpl', Mail::TYPE_HTML, $product_var_tpl_list);
                 }
                 $cart_rules_list = array();
                 $total_reduction_value_ti = 0;
                 $total_reduction_value_tex = 0;
                 foreach ($cart_rules as $cart_rule) {
                     $package = array('id_carrier' => $order->id_carrier, 'id_address' => $order->id_address_delivery, 'products' => $order->product_list);
                     $values = array('tax_incl' => $cart_rule['obj']->getContextualValue(true, $this->context, CartRule::FILTER_ACTION_ALL_NOCAP, $package), 'tax_excl' => $cart_rule['obj']->getContextualValue(false, $this->context, CartRule::FILTER_ACTION_ALL_NOCAP, $package));
                     // If the reduction is not applicable to this order, then continue with the next one
                     if (!$values['tax_excl']) {
                         continue;
                     }
                     /* IF
                      ** - This is not multi-shipping
                      ** - The value of the voucher is greater than the total of the order
                      ** - Partial use is allowed
                      ** - This is an "amount" reduction, not a reduction in % or a gift
                      ** THEN
                      ** The voucher is cloned with a new value corresponding to the remainder
                      */
                     if (count($order_list) == 1 && $values['tax_incl'] > $order->total_products_wt - $total_reduction_value_ti && $cart_rule['obj']->partial_use == 1 && $cart_rule['obj']->reduction_amount > 0) {
                         // Create a new voucher from the original
                         $voucher = new CartRule($cart_rule['obj']->id);
                         // We need to instantiate the CartRule without lang parameter to allow saving it
                         unset($voucher->id);
                         // Set a new voucher code
                         $voucher->code = empty($voucher->code) ? substr(md5($order->id . '-' . $order->id_customer . '-' . $cart_rule['obj']->id), 0, 16) : $voucher->code . '-2';
                         if (preg_match('/\\-([0-9]{1,2})\\-([0-9]{1,2})$/', $voucher->code, $matches) && $matches[1] == $matches[2]) {
                             $voucher->code = preg_replace('/' . $matches[0] . '$/', '-' . (intval($matches[1]) + 1), $voucher->code);
                         }
                         // Set the new voucher value
                         if ($voucher->reduction_tax) {
                             $voucher->reduction_amount = $values['tax_incl'] - ($order->total_products_wt - $total_reduction_value_ti);
                             // Add total shipping amout only if reduction amount > total shipping
                             if ($voucher->free_shipping == 1 && $voucher->reduction_amount >= $order->total_shipping_tax_incl) {
                                 $voucher->reduction_amount -= $order->total_shipping_tax_incl;
                             }
                         } else {
                             $voucher->reduction_amount = $values['tax_excl'] - ($order->total_products - $total_reduction_value_tex);
                             // Add total shipping amout only if reduction amount > total shipping
                             if ($voucher->free_shipping == 1 && $voucher->reduction_amount >= $order->total_shipping_tax_excl) {
                                 $voucher->reduction_amount -= $order->total_shipping_tax_excl;
                             }
                         }
                         $voucher->id_customer = $order->id_customer;
                         $voucher->quantity = 1;
                         $voucher->quantity_per_user = 1;
                         $voucher->free_shipping = 0;
                         if ($voucher->add()) {
                             // If the voucher has conditions, they are now copied to the new voucher
                             CartRule::copyConditions($cart_rule['obj']->id, $voucher->id);
                             $params = array('{voucher_amount}' => Tools::displayPrice($voucher->reduction_amount, $this->context->currency, false), '{voucher_num}' => $voucher->code, '{firstname}' => $this->context->customer->firstname, '{lastname}' => $this->context->customer->lastname, '{id_order}' => $order->reference, '{order_name}' => $order->getUniqReference());
                             Mail::Send((int) $order->id_lang, 'voucher', sprintf(Mail::l('New voucher regarding your order %s', (int) $order->id_lang), $order->reference), $params, $this->context->customer->email, $this->context->customer->firstname . ' ' . $this->context->customer->lastname, null, null, null, null, _PS_MAIL_DIR_, false, (int) $order->id_shop);
                         }
                         $values['tax_incl'] -= $values['tax_incl'] - $order->total_products_wt;
                         $values['tax_excl'] -= $values['tax_excl'] - $order->total_products;
                     }
                     $total_reduction_value_ti += $values['tax_incl'];
                     $total_reduction_value_tex += $values['tax_excl'];
                     $order->addCartRule($cart_rule['obj']->id, $cart_rule['obj']->name, $values, 0, $cart_rule['obj']->free_shipping);
                     if ($id_order_state != Configuration::get('PS_OS_ERROR') && $id_order_state != Configuration::get('PS_OS_CANCELED') && !in_array($cart_rule['obj']->id, $cart_rule_used)) {
                         $cart_rule_used[] = $cart_rule['obj']->id;
                         // Create a new instance of Cart Rule without id_lang, in order to update its quantity
                         $cart_rule_to_update = new CartRule($cart_rule['obj']->id);
                         $cart_rule_to_update->quantity = max(0, $cart_rule_to_update->quantity - 1);
                         $cart_rule_to_update->update();
                     }
                     $cart_rules_list[] = array('voucher_name' => $cart_rule['obj']->name, 'voucher_reduction' => ($values['tax_incl'] != 0.0 ? '-' : '') . Tools::displayPrice($values['tax_incl'], $this->context->currency, false));
                 }
                 $cart_rules_list_txt = '';
                 $cart_rules_list_html = '';
                 if (count($cart_rules_list) > 0) {
                     $cart_rules_list_txt = $this->getEmailTemplateContent('order_conf_cart_rules.txt', Mail::TYPE_TEXT, $cart_rules_list);
                     $cart_rules_list_html = $this->getEmailTemplateContent('order_conf_cart_rules.tpl', Mail::TYPE_HTML, $cart_rules_list);
                 }
                 // Specify order id for message
                 $old_message = Message::getMessageByCartId((int) $this->context->cart->id);
                 if ($old_message) {
                     $update_message = new Message((int) $old_message['id_message']);
                     $update_message->id_order = (int) $order->id;
                     $update_message->update();
                     // Add this message in the customer thread
                     $customer_thread = new CustomerThread();
                     $customer_thread->id_contact = 0;
                     $customer_thread->id_customer = (int) $order->id_customer;
                     $customer_thread->id_shop = (int) $this->context->shop->id;
                     $customer_thread->id_order = (int) $order->id;
                     $customer_thread->id_lang = (int) $this->context->language->id;
                     $customer_thread->email = $this->context->customer->email;
                     $customer_thread->status = 'open';
                     $customer_thread->token = Tools::passwdGen(12);
                     $customer_thread->add();
                     $customer_message = new CustomerMessage();
                     $customer_message->id_customer_thread = $customer_thread->id;
                     $customer_message->id_employee = 0;
                     $customer_message->message = $update_message->message;
                     $customer_message->private = 0;
                     if (!$customer_message->add()) {
                         $this->errors[] = Tools::displayError('An error occurred while saving message');
                     }
                 }
                 // Hook validate order
                 Hook::exec('actionValidateOrder', array('cart' => $this->context->cart, 'order' => $order, 'customer' => $this->context->customer, 'currency' => $this->context->currency, 'orderStatus' => $order_status));
                 foreach ($this->context->cart->getProducts() as $product) {
                     if ($order_status->logable) {
                         ProductSale::addProductSale((int) $product['id_product'], (int) $product['cart_quantity']);
                     }
                 }
                 // Set the order status
                 $new_history = new OrderHistory();
                 $new_history->id_order = (int) $order->id;
                 $new_history->changeIdOrderState((int) $id_order_state, $order, true);
                 //$new_history->addWithemail(true, $extra_vars);
                 $new_history->add(true, $extra_vars);
                 // Switch to back order if needed
                 if (Configuration::get('PS_STOCK_MANAGEMENT') && $order_detail->getStockState()) {
                     $history = new OrderHistory();
                     $history->id_order = (int) $order->id;
                     $history->changeIdOrderState(Configuration::get('PS_OS_OUTOFSTOCK'), $order, true);
                     $history->addWithemail();
                 }
                 unset($order_detail);
                 // Order is reloaded because the status just changed
                 $order = new Order($order->id);
                 // Send an e-mail to customer (one order = one email)
                 if ($id_order_state != Configuration::get('PS_OS_ERROR') && $id_order_state != Configuration::get('PS_OS_CANCELED') && $this->context->customer->id) {
                     $invoice = new Address($order->id_address_invoice);
                     $delivery = new Address($order->id_address_delivery);
                     $delivery_state = $delivery->id_state ? new State($delivery->id_state) : false;
                     $invoice_state = $invoice->id_state ? new State($invoice->id_state) : false;
                     $data = array('{firstname}' => $this->context->customer->firstname, '{lastname}' => $this->context->customer->lastname, '{email}' => $this->context->customer->email, '{delivery_block_txt}' => $this->_getFormatedAddress($delivery, "\n"), '{invoice_block_txt}' => $this->_getFormatedAddress($invoice, "\n"), '{delivery_block_html}' => $this->_getFormatedAddress($delivery, '<br />', array('firstname' => '<span style="font-weight:bold;">%s</span>', 'lastname' => '<span style="font-weight:bold;">%s</span>')), '{invoice_block_html}' => $this->_getFormatedAddress($invoice, '<br />', array('firstname' => '<span style="font-weight:bold;">%s</span>', 'lastname' => '<span style="font-weight:bold;">%s</span>')), '{delivery_company}' => $delivery->company, '{delivery_firstname}' => $delivery->firstname, '{delivery_lastname}' => $delivery->lastname, '{delivery_address1}' => $delivery->address1, '{delivery_address2}' => $delivery->address2, '{delivery_city}' => $delivery->city, '{delivery_postal_code}' => $delivery->postcode, '{delivery_country}' => $delivery->country, '{delivery_state}' => $delivery->id_state ? $delivery_state->name : '', '{delivery_phone}' => $delivery->phone ? $delivery->phone : $delivery->phone_mobile, '{delivery_other}' => $delivery->other, '{invoice_company}' => $invoice->company, '{invoice_vat_number}' => $invoice->vat_number, '{invoice_firstname}' => $invoice->firstname, '{invoice_lastname}' => $invoice->lastname, '{invoice_address2}' => $invoice->address2, '{invoice_address1}' => $invoice->address1, '{invoice_city}' => $invoice->city, '{invoice_postal_code}' => $invoice->postcode, '{invoice_country}' => $invoice->country, '{invoice_state}' => $invoice->id_state ? $invoice_state->name : '', '{invoice_phone}' => $invoice->phone ? $invoice->phone : $invoice->phone_mobile, '{invoice_other}' => $invoice->other, '{order_name}' => $order->getUniqReference(), '{date}' => Tools::displayDate(date('Y-m-d H:i:s'), null, 1), '{carrier}' => $virtual_product || !isset($carrier->name) ? Tools::displayError('No carrier') : $carrier->name, '{payment}' => Tools::substr($order->payment, 0, 32), '{products}' => $product_list_html, '{products_txt}' => $product_list_txt, '{discounts}' => $cart_rules_list_html, '{discounts_txt}' => $cart_rules_list_txt, '{total_paid}' => Tools::displayPrice($order->total_paid, $this->context->currency, false), '{total_products}' => Tools::displayPrice($order->total_paid - $order->total_shipping - $order->total_wrapping + $order->total_discounts, $this->context->currency, false), '{total_discounts}' => Tools::displayPrice($order->total_discounts, $this->context->currency, false), '{total_shipping}' => Tools::displayPrice($order->total_shipping, $this->context->currency, false), '{total_wrapping}' => Tools::displayPrice($order->total_wrapping, $this->context->currency, false), '{total_tax_paid}' => Tools::displayPrice($order->total_products_wt - $order->total_products + ($order->total_shipping_tax_incl - $order->total_shipping_tax_excl), $this->context->currency, false));
                     if (is_array($extra_vars)) {
                         $data = array_merge($data, $extra_vars);
                     }
                     // Join PDF invoice
                     if ((int) Configuration::get('PS_INVOICE') && $order_status->invoice && $order->invoice_number) {
                         $pdf = new PDF($order->getInvoicesCollection(), PDF::TEMPLATE_INVOICE, $this->context->smarty);
                         $file_attachement['content'] = $pdf->render(false);
                         $file_attachement['name'] = Configuration::get('PS_INVOICE_PREFIX', (int) $order->id_lang, null, $order->id_shop) . sprintf('%06d', $order->invoice_number) . '.pdf';
                         $file_attachement['mime'] = 'application/pdf';
                     } else {
                         $file_attachement = null;
                     }
                     if (Validate::isEmail($this->context->customer->email)) {
                         //не трогать
                         Mail::Send((int) $order->id_lang, 'order_conf', Mail::l('Order confirmation', (int) $order->id_lang), $data, $this->context->customer->email, $this->context->customer->firstname . ' ' . $this->context->customer->lastname, null, null, $file_attachement, null, _PS_MAIL_DIR_, false, (int) $order->id_shop);
                     }
                 }
                 // updates stock in shops
                 if (Configuration::get('PS_ADVANCED_STOCK_MANAGEMENT')) {
                     $product_list = $order->getProducts();
                     foreach ($product_list as $product) {
                         // if the available quantities depends on the physical stock
                         if (StockAvailable::dependsOnStock($product['product_id'])) {
                             // synchronizes
                             StockAvailable::synchronize($product['product_id'], $order->id_shop);
                         }
                     }
                 }
             } else {
                 $error = Tools::displayError('Order creation failed');
                 PrestaShopLogger::addLog($error, 4, '0000002', 'Cart', intval($order->id_cart));
                 die($error);
             }
         }
         // End foreach $order_detail_list
         // Use the last order as currentOrder
         $this->currentOrder = (int) $order->id;
         return true;
     } else {
         $error = Tools::displayError('Cart cannot be loaded or an order has already been placed using this cart');
         PrestaShopLogger::addLog($error, 4, '0000001', 'Cart', intval($this->context->cart->id));
         die($error);
     }
 }
Example #8
0
 /**
  * @param $order_id
  * @param $status
  * @return OrderHistory
  */
 public function setOrderStatus($order_id, $status)
 {
     $status_id = (int) $this->statuses[$status];
     $history = new OrderHistory();
     $history->id_order = $order_id;
     $history->id_order_state = $status_id;
     $history->changeIdOrderState($status_id, $order_id);
     if ($this->getConfigValue('MOLLIE_MAIL_WHEN_' . strtoupper($status))) {
         $history->addWithemail();
     } else {
         $history->add();
     }
     return $history;
 }
 public function execNotification()
 {
     $veritrans = new Veritrans_Config();
     Veritrans_Config::$isProduction = Configuration::get('VN_ENVIRONMENT') == 'production' ? true : false;
     Veritrans_Config::$serverKey = Configuration::get('VN_SERVER_KEY');
     $veritrans_notification = new Veritrans_Notification();
     $history = new OrderHistory();
     $history->id_order = (int) $veritrans_notification->order_id;
     //Validating order
     //if ($veritrans_notification->isVerified())
     //{
     //$history->id_order = (int)$veritrans_notification->order_id;
     //error_log('notif verified');
     //error_log('message notif: '.(int)$veritrans_notification->order_id);
     $order_id_notif = (int) $veritrans_notification->order_id;
     if ($veritrans_notification->transaction_status == 'capture') {
         if ($veritrans_notification->fraud_status == 'accept') {
             $history->changeIdOrderState(Configuration::get('VN_PAYMENT_SUCCESS_STATUS_MAP'), $order_id_notif);
             echo 'Valid success notification accepted.';
         } else {
             if ($veritrans_notification->fraud_status == 'challenge') {
                 $history->changeIdOrderState(Configuration::get('VN_PAYMENT_CHALLENGE_STATUS_MAP'), $order_id_notif);
                 echo 'Valid challenge notification accepted.';
             }
         }
     } else {
         if ($veritrans_notification->transaction_status == 'settlement') {
             if ($veritrans_notification->payment_type != 'credit_card') {
                 $history->changeIdOrderState(Configuration::get('VN_PAYMENT_SUCCESS_STATUS_MAP'), $order_id_notif);
                 echo 'Valid success notification accepted.';
             } else {
                 echo 'Credit card settlement notification accepted.';
             }
         } else {
             if ($veritrans_notification->transaction_status == 'pending') {
                 $history->changeIdOrderState(Configuration::get('VN_PAYMENT_CHALLENGE_STATUS_MAP'), $order_id_notif);
                 echo 'Pending notification accepted.';
             } else {
                 if ($veritrans_notification->transaction_status == 'cancel') {
                     $history->changeIdOrderState(Configuration::get('VN_PAYMENT_FAILURE_STATUS_MAP'), $order_id_notif);
                     echo 'Pending notification accepted.';
                 } else {
                     $history->changeIdOrderState(Configuration::get('VN_PAYMENT_FAILURE_STATUS_MAP'), $order_id_notif);
                     echo 'Valid failure notification accepted';
                 }
             }
         }
     }
     $history->add(true);
     //}
     exit;
 }
Example #10
0
 public function cancelOrder($order_id)
 {
     $order = new Order($order_id);
     $history = new OrderHistory();
     $history->id_order = (int) $order->id;
     $history->changeIdOrderState((int) Configuration::get('ADYEN_STATUS_CANCELLED'), (int) $order->id);
     $history->add();
     Logger::addLog('Adyen module: order cancceled with id_order ' . $order_id);
 }
function hipayValidateOrder($cart = null, $orderState = _PS_OS_ERROR_)
{
    echo '-fnVO';
    $hipay = new HiPay_Tpp();
    $customer = new Customer((int) $cart->id_customer);
    if ($orderState == 'skip') {
        // Simply log the callback
        $msg = new Message();
        $message = $hipay->l('HiPay - Callback initiated');
        $message .= ' - ' . $hipay->l('Transaction_reference : ') . $_POST['transaction_reference'];
        $message .= ' - ' . $hipay->l('State : ') . $_POST['state'];
        $message .= ' - ' . $hipay->l('Status : ') . $_POST['status'];
        $message .= ' - ' . $hipay->l('Message : ') . $_POST['message'];
        $message .= ' - ' . $hipay->l('data : ') . $_POST['cdata1'];
        $message = strip_tags($message, '<br>');
        if (Validate::isCleanHtml($message)) {
            $msg->message = $message;
            $msg->id_order = intval($order->id);
            $msg->private = 1;
            $msg->add();
        }
        HipayLogger::addLog($hipay->l('Callback process', 'hipay'), HipayLogger::ERROR, 'hipayValidateOrder status skip - cid : ' . (int) $_POST['order']->id);
        die;
        return;
    }
    if ($orderState == '124') {
        // NOTE only status 124 present, because logically, status 124 needs to be processed BEFORE status 125 can be send.
        // 124 = If orderstate is refund requested, we don't add a new order but only the log
        // 125 = If orderstate is refund approved, we don't add a new order but only the log
        hipayUpdateOrder($cart, $orderState);
        return;
    }
    HipayLogger::addLog($hipay->l('Callback paiement starting', 'hipay'), HipayLogger::NOTICE, 'Cart id : ' . $cart->id . ' - Order state : ' . $orderState);
    $id_cart = $cart->id;
    $id_order_state = $orderState;
    $amount_paid = $_POST['captured_amount'];
    $message = $hipay->l('Transaction Reference:') . ' ' . $_POST['transaction_reference'] . '
                ' . $hipay->l('State:') . ' ' . $_POST['state'] . '
                ' . $hipay->l('Status:') . ' ' . $_POST['status'] . '
                ' . $hipay->l('Message:') . ' ' . $_POST['message'] . '
                ' . $hipay->l('Data:') . ' ' . $_POST['cdata1'] . '
                ' . $hipay->l('orderState:') . ' ' . $orderState . '
                ' . $hipay->l('Payment mean:') . ' ' . $_POST['payment_product'] . '
                ' . $hipay->l('Payment has began at:') . ' ' . $_POST['date_created'] . '
                ' . $hipay->l('Payment received at:') . ' ' . $_POST['date_authorized'] . '
                ' . $hipay->l('authorization Code:') . ' ' . $_POST['authorization_code'] . '
                ' . $hipay->l('Currency:') . ' ' . $_POST['currency'] . '
                ' . $hipay->l('Customer IP address:') . ' ' . $_POST['ip_address'];
    /**
     * Validate an order in database
     * Function called from a payment module
     *
     * @param integer $id_cart
     *        	Value
     * @param integer $id_order_state
     *        	Value
     * @param float $amount_paid
     *        	Amount really paid by customer (in the default currency)
     * @param string $payment_method
     *        	Payment method (eg. 'Credit card')
     * @param string $message
     *        	Message to attach to order
     */
    // Local Cards update
    $local_card_name = '';
    // Initialize to empty string
    if ($_POST['payment_product'] != '') {
        // Add the card name
        $local_card_name = ' via ' . (string) ucwords($_POST['payment_product']);
        // Retrieve xml list
        if (file_exists(_PS_ROOT_DIR_ . '/modules/' . $hipay->name . '/special_cards.xml')) {
            $local_cards = simplexml_load_file(_PS_ROOT_DIR_ . '/modules/' . $hipay->name . '/special_cards.xml');
            // If cards exists
            if (isset($local_cards)) {
                // If cards count > 0
                if (count($local_cards)) {
                    // Go through each card
                    foreach ($local_cards as $key => $value) {
                        // If card code value = payment_product value
                        if ((string) $value->code == trim($_POST['payment_product'])) {
                            // Add the card name
                            $local_card_name = ' via ' . (string) $value->name;
                        }
                    }
                }
            }
        }
    }
    $secure_key = $customer->secure_key;
    if ($secure_key == null) {
        // If secure key is null force a secure key
        $secure_key = md5(uniqid(rand(), true));
    }
    // If captured amount is zero, capture amount to be paid to prevent errors
    // Then update to actual captured amount when order has been created.
    $update_order_payment = false;
    if ($amount_paid <= 0) {
        $amount_paid = $_POST['authorized_amount'];
        $update_order_payment = true;
    }
    if ($hipay->validateOrder(intval($id_cart), $id_order_state, $amount_paid, $hipay->displayName . $local_card_name, $message, array(), NULL, false, $secure_key)) {
        $GLOBALS['_HIPAY_CALLBACK_ORDER_ID_'] = $hipay->currentOrder;
        // Check if the amount_paid = 0
        // If amount_paid = 0, PS will an error paid status.
        // We need to update that to the id_order_state.
        if ($amount_paid == 0) {
            $new_order = new order($hipay->currentOrder);
            $history = new OrderHistory();
            $history->id_order = (int) $hipay->currentOrder;
            $history->changeIdOrderState((int) $id_order_state, $new_order, true);
            $history->add();
        }
        // If $update_order_payment = true then update order_payment with captured_amount.
        if ($update_order_payment) {
            $new_order = new order($hipay->currentOrder);
            $sql = "UPDATE `" . _DB_PREFIX_ . "order_payment`\r\n                        SET `amount` = '" . $_POST['captured_amount'] . "'\r\n                        WHERE `order_reference`='" . $new_order->reference . "'";
            Db::getInstance()->execute($sql);
        }
        // Add card details to orderpayments
        // $hipay->currentOrder should give the current cart ID
        if (isset($_POST['payment_method']->token)) {
            $new_order = new order($hipay->currentOrder);
            $sql = "UPDATE `" . _DB_PREFIX_ . "order_payment`\r\n                        SET `card_number` = '" . pSQL($_POST['payment_method']->pan) . "',\r\n                        `transaction_id` = '" . pSQL($_POST['transaction_reference']) . "',\r\n                        `card_brand` = '" . pSQL($_POST['payment_method']->brand) . "',\r\n                        `card_expiration` = '" . pSQL($_POST['payment_method']->card_expiry_month) . "/" . pSQL($_POST['payment_method']->card_expiry_year) . "',\r\n                        `card_holder` = '" . pSQL($_POST['payment_method']->card_holder) . "'\r\n                        WHERE `order_reference`='" . pSQL($new_order->reference) . "'";
            Db::getInstance()->execute($sql);
        }
        // Add HIPAY_CAPTURE message to allow use of refund and capture
        $tag = 'HIPAY_CAPTURE ';
        $amount = $_POST['captured_amount'];
        $msgs = Message::getMessagesByOrderId($hipay->currentOrder, true);
        //true for private messages (got example from AdminOrdersController)
        $create_new_msg = true;
        if (count($msgs)) {
            foreach ($msgs as $msg) {
                $line = $msg['message'];
                if (startsWith($line, $tag)) {
                    $create_new_msg = false;
                    $to_update_msg = new Message($msg['id_message']);
                    $to_update_msg->message = $tag . $amount;
                    $to_update_msg->save();
                    break;
                }
            }
        }
        if ($create_new_msg) {
            // Create msg
            $msg = new Message();
            $message = 'HIPAY_CAPTURE ' . $amount;
            $message = strip_tags($message, '<br>');
            if (Validate::isCleanHtml($message)) {
                $msg->message = $message;
                $msg->id_order = intval((int) $hipay->currentOrder);
                $msg->private = 1;
                $msg->add();
            }
        }
        // 'OK ORDER';
        HipayLogger::addLog($hipay->l('Callback paiement successful', 'hipay'), HipayLogger::NOTICE, 'Cart id : ' . $cart->id . ' - Order state : ' . $orderState . ' - Message : ' . $message);
    } else {
        // 'KO ORDER';
        HipayLogger::addLog($hipay->l('Callback paiement failed', 'hipay'), HipayLogger::NOTICE, 'Cart id : ' . $cart->id . ' - Order state : ' . $orderState . ' - Message : ' . $message);
    }
}
 private function cancelOrder()
 {
     $order_id = (int) $this->module->currentOrder;
     $order_state_id = (int) Configuration::get('PS_OS_BCASH_CANCELLED');
     $history = new OrderHistory();
     $history->id_order = $order_id;
     $history->id_order_state = $order_state_id;
     $history->changeIdOrderState($order_state_id, $order_id);
     $history->add(true);
 }
Example #13
0
 public function changeOrderState($id_order, $id_order_state)
 {
     $order_state = new OrderState((int) $id_order_state);
     $order = new Order((int) $id_order);
     $current_order_state = $order->getCurrentOrderState();
     if (!Validate::isLoadedObject($order_state)) {
         //throw new Exception($this->l('The new order status is invalid.'));
         return false;
     } elseif (!Validate::isLoadedObject($order)) {
         //throw new Exception($this->l('The order is invalid.'));
         return false;
     } else {
         if ($current_order_state->id != $order_state->id) {
             // Create new OrderHistory
             $history = new OrderHistory();
             $history->id_order = $order->id;
             if (isset($this->context->employee->id)) {
                 $history->id_employee = (int) $this->context->employee->id;
             }
             $use_existings_payment = false;
             if (!$order->hasInvoice()) {
                 $use_existings_payment = true;
             }
             $history->changeIdOrderState((int) $id_order_state, $order, $use_existings_payment);
             $history->add(true);
             return true;
         } else {
             return false;
         }
     }
 }
function changeStatusOrder($order_exist, $id_order, $orderState, $order, $callback_arr = '')
{
    $bool = false;
    //LOG
    HipayLog('--------------- Début changeStatusOrder');
    if ($order_exist && $id_order) {
        //LOG
        HipayLog('--------------- oderexist && id_order');
        if ((int) $order->getCurrentState() != (int) $orderState && !controleIfStatushistoryExist($id_order, _PS_OS_PAYMENT_, $orderState)) {
            //LOG
            HipayLog('--------------- statut différent');
            $order_history = new OrderHistory();
            //LOG
            HipayLog('--------------- order_history init');
            $order_history->id_order = $id_order;
            //LOG
            HipayLog('--------------- order_id init');
            $order_history->changeIdOrderState($orderState, $id_order, true);
            //LOG
            HipayLog('--------------- changeIdOrderState(' . $orderState . ',' . $id_order . ')');
            $order_history->add();
            //LOG
            HipayLog('--------------- statut changé = ' . $orderState);
            $bool = true;
        }
        if (!empty($callback_arr) && isset($callback_arr['status']) && $callback_arr['status'] == HIPAY_STATUS_CAPTURED) {
            $hipay = new HiPay_Tpp();
            // historise le callback sous forme de message
            $message = $hipay->l('HiPay - Callback initiated') . "<br>";
            $message .= ' - ' . $hipay->l('Transaction_reference : ') . $callback_arr['transaction_reference'] . "<br>";
            $message .= ' - ' . $hipay->l('State : ') . $callback_arr['state'] . "<br>";
            $message .= ' - ' . $hipay->l('Status : ') . $callback_arr['status'] . "<br>";
            $message .= ' - ' . $hipay->l('Message : ') . $callback_arr['message'] . "<br>";
            $message .= ' - ' . $hipay->l('Amount : ') . $callback_arr['authorized_amount'] . "<br>";
            $message = strip_tags($message, '<br>');
            if (Validate::isCleanHtml($message)) {
                $msg = new Message();
                $msg->message = $message;
                $msg->id_order = (int) $order->id;
                $msg->private = 1;
                $msg->add();
            }
        }
        // Init / MAJ de la ligne message HIPAY_CAPTURE
        addHipayCaptureMessage($callback_arr, $order->id);
        //LOG
        HipayLog('--------------- statut est le même');
        // Controle if it's again a partially captured and inferior to the total order
        //LOG
        HipayLog('--------------- Controle si status 117 et amount > amount captured');
        if (!empty($callback_arr) && isset($callback_arr['status']) && $callback_arr['status'] == HIPAY_STATUS_CAPTURE_REQUESTED && $callback_arr['captured_amount'] < $callback_arr['authorized_amount']) {
            //LOG
            HipayLog('--------------- captured_amount (' . $callback_arr['captured_amount'] . ') est < à authorized_amount (' . $callback_arr['authorized_amount'] . ')');
            $bool = true;
        }
        return $bool;
    }
    //LOG
    HipayLog('--------------- pas de changement de statut car pas de commande');
    return $bool;
}
 public function execNotification()
 {
     $veritrans = new Veritrans_Config();
     Veritrans_Config::$isProduction = Configuration::get('VT_ENVIRONMENT') == 'production' ? true : false;
     Veritrans_Config::$serverKey = Configuration::get('VT_SERVER_KEY');
     $veritrans_notification = new Veritrans_Notification();
     $history = new OrderHistory();
     $history->id_order = (int) $veritrans_notification->order_id;
     error_log('message notif');
     error_log(print_r($veritrans_notification, TRUE));
     error_log('==============================================');
     // check if order history already been updated to payment success, then save to array $order_history.
     $order_id_notif = (int) $veritrans_notification->order_id;
     $order = new Order($order_id_notif);
     $order_histories = $order->getHistory($this->context->language->id, Configuration::get('VT_PAYMENT_SUCCESS_STATUS_MAP'));
     // if (empty($order_histories))
     // 	error_log("not found in DB");
     // error_log(print_r($order_histories,true));
     // print_r($order_histories,true);
     //Validating order
     //if ($veritrans_notification->isVerified())
     //{
     //$history->id_order = (int)$veritrans_notification->order_id;
     //error_log('notif verified');
     //error_log('message notif: '.(int)$veritrans_notification->order_id);
     if ($veritrans_notification->transaction_status == 'capture') {
         if ($veritrans_notification->fraud_status == 'accept') {
             // if order history !contains payment accepted, then update DB. Else, don't update DB
             if (empty($order_histories)) {
                 $history->changeIdOrderState(Configuration::get('VT_PAYMENT_SUCCESS_STATUS_MAP'), $order_id_notif);
                 echo 'Valid success notification accepted.';
             } else {
                 error_log("########## Transaction has already been updated to success status once, no need to update again");
             }
         } else {
             if ($veritrans_notification->fraud_status == 'challenge') {
                 $history->changeIdOrderState(Configuration::get('VT_PAYMENT_CHALLENGE_STATUS_MAP'), $order_id_notif);
                 echo 'Valid challenge notification accepted.';
             }
         }
     } else {
         if ($veritrans_notification->transaction_status == 'settlement') {
             if ($veritrans_notification->payment_type != 'credit_card') {
                 // if order history !contains payment accepted, then update DB. Else, don't update DB
                 if (empty($order_histories)) {
                     $history->changeIdOrderState(Configuration::get('VT_PAYMENT_SUCCESS_STATUS_MAP'), $order_id_notif);
                     echo 'Valid success notification accepted.';
                 } else {
                     error_log("########## Transaction has already been updated to success status once, no need to update again");
                 }
             } else {
                 echo 'Credit card settlement notification accepted.';
             }
         } else {
             if ($veritrans_notification->transaction_status == 'pending') {
                 $history->changeIdOrderState(Configuration::get('VT_PAYMENT_CHALLENGE_STATUS_MAP'), $order_id_notif);
                 echo 'Pending notification accepted.';
             } else {
                 if ($veritrans_notification->transaction_status == 'cancel') {
                     $history->changeIdOrderState(Configuration::get('VT_PAYMENT_FAILURE_STATUS_MAP'), $order_id_notif);
                     echo 'Pending notification accepted.';
                 } else {
                     if ($veritrans_notification->transaction_status == 'expire') {
                         $history->changeIdOrderState(Configuration::get('VT_PAYMENT_FAILURE_STATUS_MAP'), $order_id_notif);
                         echo 'Expire notification accepted.';
                     } else {
                         $history->changeIdOrderState(Configuration::get('VT_PAYMENT_FAILURE_STATUS_MAP'), $order_id_notif);
                         echo 'Valid failure notification accepted';
                     }
                 }
             }
         }
     }
     try {
         $history->add(true);
     } catch (Exception $e) {
         echo 'Order history not added: ' . $e->getMessage();
         exit;
     }
     //}
     exit;
 }
 /**
  * @brief generate the invoice when the order is ready to be shipped.
  * the merchant can also cancel the order
  *
  */
 public function hookadminOrder($params)
 {
     if (!$this->active) {
         return false;
     }
     $order = new Order($params['id_order']);
     $klarna = new Klarna();
     $klarnaInt = new KlarnaIntegration($klarna);
     if ($order->module != $this->moduleName) {
         return false;
     }
     $address_invoice = new Address((int) $order->id_address_invoice);
     $country = new Country((int) $address_invoice->id_country);
     $currency = new Currency((int) $order->id_currency);
     $smarty = $this->context->smarty;
     $klarna->config(Configuration::get('KLARNA_STORE_ID_' . $this->countries[$country->iso_code]['name']), Configuration::get('KLARNA_SECRET_' . $this->countries[$country->iso_code]['name']), $this->countries[$country->iso_code]['code'], $this->countries[$country->iso_code]['langue'], $this->countries[$country->iso_code]['currency'], Configuration::get('KLARNA_MOD'), 'mysql', $this->_getDb());
     $customer = new Customer($order->id_customer);
     $row = Db::getInstance()->getRow('SELECT * FROM `' . _DB_PREFIX_ . 'klarna_rno` WHERE `id_cart` = ' . (int) $order->id_cart);
     $this->initReservation($klarna, new Cart((int) $order->id_cart), $customer, htmlentities($row['house_number'], ENT_QUOTES, 'ISO-8859-1'), htmlentities($row['house_ext'], ENT_QUOTES, 'ISO-8859-1'));
     if ($country->iso_code == 'DE' || $country->iso_code == 'NL') {
         $gender = $customer->id_gender == 1 ? 1 : 0;
     } else {
         $gender = null;
     }
     if ($this->orderHasBeenPending($order) && !$this->orderHasBeenAccepted($order) && !$this->orderHasBeenDeclined($order)) {
         $redirect = true;
         try {
             $result = $klarna->checkOrderStatus($row['rno'], 0);
             $history = new OrderHistory();
             $history->id_order = (int) $order->id;
             $history->id_employee = (int) $this->context->employee->id;
             if ($result == KlarnaFlags::ACCEPTED) {
                 $history->changeIdOrderState((int) Configuration::get('KLARNA_PAYMENT_ACCEPTED'), $order->id);
                 $message = $this->l('Klarna has changed the status of this order to Klarna: Payment accepted');
             } elseif ($result == KlarnaFlags::PENDING) {
                 $type = 'pending';
                 $smarty->assign('shipped_state', (int) Configuration::get('PS_OS_SHIPPING'));
                 $message = $this->l('Order still in pending verification, please try again later. Every time you open a pending order in Prestashop, a check for the current status will be made.');
                 $noHistory = true;
             } elseif ($result == KlarnaFlags::DENIED) {
                 $history->changeIdOrderState((int) Configuration::get('PS_OS_CANCELED'), $order->id);
                 Db::getInstance()->autoExecute(_DB_PREFIX_ . 'klarna_rno', array('state' => self::CANCEL), 'UPDATE', '`id_cart` = ' . (int) $order->id_cart);
                 $type = 'denied';
                 $message = $this->l('Klarna has changed the status of this order to Canceled.');
                 $result = $klarnaInt->cancel($row['rno']);
             }
         } catch (Exception $e) {
             $smarty->assign('error', (int) $e->getCode() . ': ' . Tools::safeOutput($e->getMessage()));
             $redirect = false;
         }
         if ($redirect) {
             if (!isset($noHistory)) {
                 $history->add();
             }
             $current_index = __PS_BASE_URI__ . basename(_PS_ADMIN_DIR_) . '/index.php' . (($controller = Tools::getValue('controller')) ? '?controller=' . $controller : '');
             if ($back = Tools::getValue('back')) {
                 $current_index .= '&back=' . urlencode($back);
             }
             if (!Tools::getValue('message')) {
                 Tools::redirectAdmin($current_index . '&id_order=' . $order->id . '&vieworder&conf=4&token=' . Tools::getValue('token') . '&message=' . $message . (isset($type) ? '&type=' . $type : '&wasPending'));
             }
         }
     }
     if ($order->getCurrentState() == Configuration::get('PS_OS_CANCELED') && !$order->hasBeenShipped() && $row['state'] != self::CANCEL) {
         try {
             $result = $klarnaInt->cancel($row['rno']);
             $smarty->assign('message', $this->l('The order has been canceled in Prestashop and the reservation has been canceled at Klarna.'));
             Db::getInstance()->autoExecute(_DB_PREFIX_ . 'klarna_rno', array('state' => self::CANCEL), 'UPDATE', '`id_cart` = ' . (int) $order->id_cart);
         } catch (Exception $e) {
             $smarty->assign('error', (int) $e->getCode() . ': ' . Tools::safeOutput($e->getMessage()));
         }
     }
     if ($order->hasBeenShipped() && $row['invoice'] == '') {
         $pclass = $row['type'] == 'invoice' ? KlarnaPClass::INVOICE : (int) $row['pclass'];
         try {
             $klarna->setEstoreInfo((int) $order->id);
             $result = $klarnaInt->activate($row['pno'], $row['rno'], $gender, '', KlarnaFlags::NO_FLAG, $pclass);
         } catch (Exception $e) {
             $smarty->assign('error', (int) $e->getCode() . ': ' . Tools::safeOutput($e->getMessage()));
         }
         if (isset($result) && $result[0] == 'ok') {
             Db::getInstance()->autoExecute(_DB_PREFIX_ . 'klarna_rno', array('invoice' => pSQL($result[1]), 'state' => self::SHIPPED), 'UPDATE', '`id_cart` = ' . (int) $order->id_cart);
             $smarty->assign('invoiceLink', substr($result[1], 0, 4) == 'http' ? Tools::safeOutput($result[1]) : 'https://online.klarna.com/invoices/' . Tools::safeOutput($result[1]) . '.pdf');
             if (Configuration::get('KLARNA_EMAIL')) {
                 $klarna->emailInvoice(Tools::safeOutput($result[1]));
             }
         }
     } elseif ($order->hasBeenShipped()) {
         $smarty->assign('invoiceLink', 'https://online.klarna.com/invoices/' . Tools::safeOutput($row['invoice']) . '.pdf');
     }
     $smarty->assign('version', _PS_VERSION_ >= 1.5 ? 1 : 0);
     if ($row['state'] == self::CANCEL) {
         $smarty->assign('denied', true);
         if (!Tools::getValue('message')) {
             $smarty->assign('message', $this->l('The order has been canceled in Prestashop and the reservation has been canceled at Klarna.'));
         }
     }
     if (Tools::getValue('wasPending')) {
         $smarty->assign('wasPending', true);
     }
     if (Tools::getValue('message')) {
         $smarty->assign('message', Tools::safeOutput(Tools::getValue('message')));
     }
     if (Tools::getValue('type')) {
         $smarty->assign(Tools::safeOutput(Tools::getValue('type')), true);
     }
     return $this->display(__FILE__, 'tpl/adminOrder.tpl');
 }
Example #17
0
 private function changeTrackOrderState($orderId, $entrega = 1)
 {
     if (!empty($orderId) and Configuration::get('EKO_CTT_CHANGE_STATS')) {
         $order = new Order((int) $orderId);
         $use_existings_payment = !$order->hasInvoice();
         $new_history = new OrderHistory();
         $new_history->id_order = (int) $orderId;
         if ($entrega == 1) {
             if ($order->current_state != (int) Configuration::get('EKO_CTT_OS_0')) {
                 $new_history->changeIdOrderState((int) Configuration::get('EKO_CTT_OS_0'), $order, $use_existings_payment);
                 $new_history->add(true);
             }
         }
         if ($entrega == 2) {
             if ($order->current_state != (int) Configuration::get('EKO_CTT_OS_1')) {
                 $new_history->changeIdOrderState((int) Configuration::get('EKO_CTT_OS_1'), $order, $use_existings_payment);
                 $new_history->add(true);
             }
         }
     }
     return true;
 }
 *  @author    PAYMILL <*****@*****.**>
 *  @copyright 2012-2014 PAYMILL
 *  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
include_once dirname(__FILE__) . '/../../config/config.inc.php';
include_once dirname(__FILE__) . '/paymill/v2/lib/Services/Paymill/Transactions.php';
include_once dirname(__FILE__) . '/pigmbhpaymill.php';
$request = Tools::jsonDecode(Tools::file_get_contents('php://input'), true);
if (validateNotification($request)) {
    $order_id = getOrderIdFromNotification($request['event_resource']['transaction']['description']);
    $new_order_state = Configuration::get('PS_OS_REFUND');
    $order = new Order($order_id);
    $history = new OrderHistory();
    $history->id_order = (int) $order->id;
    $history->changeIdOrderState($new_order_state, (int) $order->id);
    $history->add(true);
    echo 'OK';
}
function validateNotification($notification)
{
    $result = false;
    if (isNotificationFormatValid($notification) && $notification['event_type'] === 'refund.succeeded') {
        $transaction_object = new Services_Paymill_Transactions(Configuration::get('PIGMBH_PAYMILL_PRIVATEKEY'), 'https://api.paymill.com/v2/');
        $id = $notification['event_resource']['transaction']['id'];
        $transaction_result = $transaction_object->getOne($id);
        $result = isset($transaction_result['id']) && $transaction_result['id'] === $id;
    }
    return $result;
}
function isNotificationFormatValid($notification)
{
Example #19
0
     if (_PS_VERSION_ >= '1.5') {
         $ppec->getContext()->cookie->id_cart = $cart->id;
         $ppec->validateOrder((int) $cart->id, $payment_type, (double) $cart->getOrderTotal(true, Cart::BOTH), 'PayPal', $message, $transaction, (int) $cart->id_currency, false, $customer->secure_key, $ppec->getContext()->shop);
     } else {
         $ppec->validateOrder((int) $cart->id, $payment_type, (double) $cart->getOrderTotal(true, Cart::BOTH), 'PayPal', $message, $transaction, (int) $cart->id_currency, false, $customer->secure_key);
     }
     if (!$ppec->currentOrder) {
         $ppec->logs[] = $this->l('Cannot create order');
     } else {
         $id_order = (int) $ppec->currentOrder;
         $order = new Order($id_order);
         $history = new OrderHistory();
         $history->id_order = (int) $id_order;
         $history->changeIdOrderState((int) $payment_type, $id_order);
         $history->addWithemail();
         $history->add();
     }
     unset(Context::getContext()->cookie->{PaypalExpressCheckout::$COOKIE_NAME});
     // Update for the Paypal shipping cost
     if ($order) {
         $values = array('key' => $customer->secure_key, 'id_module' => (int) $ppec->id, 'id_cart' => (int) $cart->id, 'id_order' => (int) $ppec->currentOrder);
         $query = http_build_query($values, '', '&');
         if (_PS_VERSION_ < '1.5') {
             Tools::redirectLink(__PS_BASE_URI__ . '/modules/paypal/express_checkout/submit.php?' . $query);
         } else {
             $controller = new FrontController();
             $controller->init();
             Tools::redirect(Context::getContext()->link->getModuleLink('paypal', 'submit', $values));
         }
     }
 } else {
Example #20
0
 public function confirmOrder($custom)
 {
     $cart = new Cart((int) $custom['id_cart']);
     $cart_details = $cart->getSummaryDetails(null, true);
     $cart_hash = sha1(serialize($cart->nbProducts()));
     $this->context->cart = $cart;
     $address = new Address((int) $cart->id_address_invoice);
     $this->context->country = new Country((int) $address->id_country);
     $this->context->customer = new Customer((int) $cart->id_customer);
     $this->context->language = new Language((int) $cart->id_lang);
     $this->context->currency = new Currency((int) $cart->id_currency);
     if (isset($cart->id_shop)) {
         $this->context->shop = new Shop($cart->id_shop);
     }
     $this->createLog($cart->getProducts(true));
     $mc_gross = Tools::getValue('mc_gross');
     $total_price = Tools::ps_round($cart_details['total_price'], 2);
     $message = null;
     $result = $this->verify();
     if (strcmp($result, VERIFIED) == 0) {
         if ($mc_gross != $total_price) {
             $payment = (int) Configuration::get('PS_OS_ERROR');
             $message = $this->l('Price payed on paypal is not the same that on PrestaShop.') . '<br />';
         } elseif ($custom['hash'] != $cart_hash) {
             $payment = (int) Configuration::get('PS_OS_ERROR');
             $message = $this->l('Cart changed, please retry.') . '<br />';
         } else {
             $payment = (int) Configuration::get('PS_OS_WS_PAYMENT');
             $message = $this->l('Payment accepted.') . '<br />';
         }
         $customer = new Customer((int) $cart->id_customer);
         $id_order = (int) Order::getOrderByCartId((int) $cart->id);
         $transaction = array('currency' => pSQL(Tools::getValue(CURRENCY)), 'id_invoice' => pSQL(Tools::getValue(ID_INVOICE)), 'id_transaction' => pSQL(Tools::getValue(ID_TRANSACTION)), 'payment_date' => pSQL(Tools::getValue(PAYMENT_DATE)), 'shipping' => (double) Tools::getValue(SHIPPING), 'total_paid' => (double) Tools::getValue(TOTAL_PAID));
         $this->validateOrder($cart->id, $payment, $total_price, $this->displayName, $message, $transaction, $cart->id_currency, false, $customer->secure_key);
         $history = new OrderHistory();
         $history->id_order = (int) $id_order;
         $history->changeIdOrderState((int) $payment, (int) $id_order);
         $history->addWithemail();
         $history->add();
     }
 }