[+] BO : add new feature, Order edition
This commit is contained in:
@@ -27,6 +27,8 @@
|
||||
|
||||
class AdminOrdersControllerCore extends AdminController
|
||||
{
|
||||
public $toolbar_title;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->table = 'order';
|
||||
@@ -52,7 +54,8 @@ class AdminOrdersControllerCore extends AdminController
|
||||
LEFT JOIN `'._DB_PREFIX_.'order_state` os ON (os.`id_order_state` = oh.`id_order_state`)
|
||||
LEFT JOIN `'._DB_PREFIX_.'order_state_lang` osl ON (os.`id_order_state` = osl.`id_order_state` AND osl.`id_lang` = '.(int)$this->context->language->id.')';
|
||||
$this->_where = 'AND oh.`id_order_history` = (SELECT MAX(`id_order_history`) FROM `'._DB_PREFIX_.'order_history` moh WHERE moh.`id_order` = a.`id_order` GROUP BY moh.`id_order`)';
|
||||
$this->_orderWay = 'DESC';
|
||||
$this->_orderBy = '`id_order`';
|
||||
$this->_orderWay = 'DESC'; // FIXME
|
||||
|
||||
$statesArray = array();
|
||||
$states = OrderState::getOrderStates((int)$this->context->language->id);
|
||||
@@ -65,7 +68,7 @@ class AdminOrdersControllerCore extends AdminController
|
||||
'reference' => array('title' => $this->l('Reference'), 'align' => 'center', 'width' => 65),
|
||||
'new' => array('title' => $this->l('New'), 'width' => 25, 'align' => 'center', 'type' => 'bool', 'filter_key' => 'new', 'tmpTableFilter' => true, 'icon' => array(0 => 'blank.gif', 1 => 'news-new.gif'), 'orderby' => false),
|
||||
'customer' => array('title' => $this->l('Customer'), 'filter_key' => 'customer', 'tmpTableFilter' => true),
|
||||
'total_paid' => array('title' => $this->l('Total'), 'width' => 70, 'align' => 'right', 'prefix' => '<b>', 'suffix' => '</b>', 'type' => 'price', 'currency' => true),
|
||||
'total_paid_tax_incl' => array('title' => $this->l('Total'), 'width' => 70, 'align' => 'right', 'prefix' => '<b>', 'suffix' => '</b>', 'type' => 'price', 'currency' => true),
|
||||
'payment' => array('title' => $this->l('Payment'), 'width' => 100),
|
||||
'osname' => array('title' => $this->l('Status'), 'width' => 230, 'type' => 'select', 'list' => $statesArray, 'filter_key' => 'os!id_order_state', 'filter_type' => 'int', 'width' => 200),
|
||||
'date_add' => array('title' => $this->l('Date'), 'width' => 120, 'align' => 'right', 'type' => 'datetime', 'filter_key' => 'a!date_add'),
|
||||
@@ -82,73 +85,118 @@ class AdminOrdersControllerCore extends AdminController
|
||||
parent::initForm();
|
||||
$this->addJqueryPlugin(array('autocomplete', 'fancybox', 'typewatch'));
|
||||
$cart = new Cart((int)Tools::getValue('id_cart'));
|
||||
$this->context->smarty->assign(array('recyclable_pack' => (int)Configuration::get('PS_RECYCLABLE_PACK'),
|
||||
'gift_wrapping' => (int)Configuration::get('PS_GIFT_WRAPPING'),
|
||||
'cart' => $cart,
|
||||
'currencies' => Currency::getCurrencies(),
|
||||
'langs' => Language::getLanguages(true, Context::getContext()->shop->id),
|
||||
'payment_modules' => PaymentModule::getInstalledPaymentModules(),
|
||||
'order_states' => OrderState::getOrderStates((int)Context::getContext()->cookie->id_lang)));
|
||||
$this->context->smarty->assign(array(
|
||||
'recyclable_pack' => (int)Configuration::get('PS_RECYCLABLE_PACK'),
|
||||
'gift_wrapping' => (int)Configuration::get('PS_GIFT_WRAPPING'),
|
||||
'cart' => $cart,
|
||||
'currencies' => Currency::getCurrencies(),
|
||||
'langs' => Language::getLanguages(true, Context::getContext()->shop->id),
|
||||
'payment_modules' => PaymentModule::getInstalledPaymentModules(),
|
||||
'order_states' => OrderState::getOrderStates((int)Context::getContext()->cookie->id_lang)));
|
||||
$this->content .= $this->context->smarty->fetch('orders/form.tpl');
|
||||
}
|
||||
|
||||
public function initToolbar()
|
||||
{
|
||||
if ($this->display == 'view')
|
||||
{
|
||||
$this->toolbar_btn['new'] = array(
|
||||
'short' => 'Create',
|
||||
'href' => '',
|
||||
'desc' => $this->l('Add a product'),
|
||||
'class' => 'add_product'
|
||||
);
|
||||
$this->toolbar_btn['standard_refund'] = array(
|
||||
'short' => 'Create',
|
||||
'href' => '',
|
||||
'desc' => $this->l('Standard refund'),
|
||||
'class' => 'process-icon-new standard_refund'
|
||||
);
|
||||
$this->toolbar_btn['partial_refund'] = array(
|
||||
'short' => 'Create',
|
||||
'href' => '',
|
||||
'desc' => $this->l('Partial refund'),
|
||||
'class' => 'process-icon-new partial_refund'
|
||||
);
|
||||
}
|
||||
return parent::initToolbar();
|
||||
}
|
||||
|
||||
public function setMedia()
|
||||
{
|
||||
parent::setMedia();
|
||||
$this->addJqueryUI('ui.datepicker');
|
||||
if ($this->tabAccess['edit'] == 1 && $this->display == 'view')
|
||||
{
|
||||
$this->addJS(_PS_JS_DIR_.'admin_order.js');
|
||||
$this->addJS(_PS_JS_DIR_.'tools.js');
|
||||
$this->addJqueryPlugin('autocomplete');
|
||||
$this->addJqueryPlugin('scrollTo');
|
||||
}
|
||||
}
|
||||
|
||||
public function printPDFIcons($id_order, $tr)
|
||||
{
|
||||
$order = new Order($id_order);
|
||||
$orderState = OrderHistory::getLastOrderState($id_order);
|
||||
if (!Validate::isLoadedObject($orderState) OR !Validate::isLoadedObject($order))
|
||||
$order_state = OrderHistory::getLastOrderState($id_order);
|
||||
if (!Validate::isLoadedObject($order_state) OR !Validate::isLoadedObject($order))
|
||||
die(Tools::displayError('Invalid objects'));
|
||||
|
||||
// Generate HTML code for printing Invoice Icon with link
|
||||
$content = '<span style="width:20px; margin-right:5px;">';
|
||||
if (($orderState->invoice && $order->invoice_number) && (int)$tr['product_number'])
|
||||
$content .= '<a href="pdf.php?id_order='.(int)$order->id.'&pdf"><img src="../img/admin/tab-invoice.gif" alt="invoice" /></a>';
|
||||
else
|
||||
$content .= '-';
|
||||
$content .= '</span>';
|
||||
$this->context->smarty->assign(array(
|
||||
'order' => $order,
|
||||
'order_state' => $order_state,
|
||||
'tr' => $tr
|
||||
));
|
||||
|
||||
// Generate HTML code for printing Delivery Icon with link
|
||||
$content .= '<span style="width:20px;">';
|
||||
if ($orderState->delivery && $order->delivery_number)
|
||||
$content .= '<a href="pdf.php?id_delivery='.(int)$order->delivery_number.'"><img src="../img/admin/delivery.gif" alt="delivery" /></a>';
|
||||
else
|
||||
$content .= '-';
|
||||
$content .= '</span>';
|
||||
|
||||
return $content;
|
||||
return $this->context->smarty->fetch('orders/_print_pdf_icon.tpl');
|
||||
}
|
||||
|
||||
public function postProcess()
|
||||
{
|
||||
/* Update shipping number */
|
||||
if (Tools::isSubmit('submitShippingNumber') AND ($id_order = (int)(Tools::getValue('id_order'))) AND Validate::isLoadedObject($order = new Order($id_order)))
|
||||
if (Tools::isSubmit('submitShippingNumber') AND ($id_order = (int)Tools::getValue('id_order')) AND Validate::isLoadedObject($order = new Order($id_order)))
|
||||
{
|
||||
if ($this->tabAccess['edit'] === '1')
|
||||
{
|
||||
if (!$order->hasBeenShipped())
|
||||
throw new PrestashopException('The shipping number can only be set once the order has been shipped.');
|
||||
$_GET['view'.$this->table] = true;
|
||||
|
||||
$shipping_number = pSQL(Tools::getValue('shipping_number'));
|
||||
$order->shipping_number = $shipping_number;
|
||||
$order->update();
|
||||
if ($shipping_number)
|
||||
if (Validate::isUrl(Tools::getValue('tracking_number')))
|
||||
{
|
||||
global $_LANGMAIL;
|
||||
$customer = new Customer((int)($order->id_customer));
|
||||
$carrier = new Carrier((int)($order->id_carrier));
|
||||
if (!Validate::isLoadedObject($customer) OR !Validate::isLoadedObject($carrier))
|
||||
die(Tools::displayError());
|
||||
$templateVars = array(
|
||||
'{followup}' => str_replace('@', $order->shipping_number, $carrier->url),
|
||||
'{firstname}' => $customer->firstname,
|
||||
'{lastname}' => $customer->lastname,
|
||||
'{id_order}' => (int)($order->id)
|
||||
);
|
||||
@Mail::Send((int)($order->id_lang), 'in_transit', Mail::l('Package in transit'), $templateVars,
|
||||
$customer->email, $customer->firstname.' '.$customer->lastname, NULL, NULL, NULL, NULL,
|
||||
_PS_MAIL_DIR_, true);
|
||||
// update shipping number
|
||||
$order->shipping_number = Tools::getValue('tracking_number');
|
||||
if ($order->update())
|
||||
{
|
||||
// Update order_carrier
|
||||
$id_order_invoice = Tools::getValue('id_order_invoice');
|
||||
$id_carrier = Tools::getValue('id_carrier');
|
||||
Db::getInstance()->execute('
|
||||
UPDATE `'._DB_PREFIX_.'order_carrier`
|
||||
SET `tracking_number` = '.pSQL(Tools::getValue('tracking_number')).'
|
||||
WHERE `id_order` = '.(int)$order->id.
|
||||
' AND `id_carrier` = '.(int)$id_carrier.
|
||||
($id_order_invoice ? ' AND `id_order_invoice` = '.(int)$id_order_invoice : ''));
|
||||
|
||||
global $_LANGMAIL;
|
||||
$customer = new Customer((int)$order->id_customer);
|
||||
$carrier = new Carrier((int)$order->id_carrier);
|
||||
if (!Validate::isLoadedObject($customer))
|
||||
throw new PrestashopException('Can\'t load Customer object');
|
||||
if (!Validate::isLoadedObject($carrier))
|
||||
throw new PrestashopException('Can\'t load Carrier object');
|
||||
$templateVars = array(
|
||||
'{followup}' => str_replace('@', $order->shipping_number, $carrier->url),
|
||||
'{firstname}' => $customer->firstname,
|
||||
'{lastname}' => $customer->lastname,
|
||||
'{id_order}' => (int)$order->id
|
||||
);
|
||||
@Mail::Send((int)$order->id_lang, 'in_transit', Mail::l('Package in transit'), $templateVars,
|
||||
$customer->email, $customer->firstname.' '.$customer->lastname, NULL, NULL, NULL, NULL,
|
||||
_PS_MAIL_DIR_, true);
|
||||
Tools::redirectAdmin(self::$currentIndex.'&id_order='.$order->id.'&vieworder&conf=4&token='.$this->token);
|
||||
}
|
||||
else
|
||||
$this->_errors[] = Tools::displayError('An error occured on updating of order');
|
||||
}
|
||||
else
|
||||
$this->_errors[] = Tools::displayError('Shipping number is incorrect');
|
||||
}
|
||||
else
|
||||
$this->_errors[] = Tools::displayError('You do not have permission to edit here.');
|
||||
@@ -256,11 +304,11 @@ class AdminOrdersControllerCore extends AdminController
|
||||
if (Validate::isLoadedObject($order))
|
||||
{
|
||||
$varsTpl = array(
|
||||
'{lastname}' => $customer->lastname,
|
||||
'{firstname}' => $customer->firstname,
|
||||
'{id_order}' => $order->id,
|
||||
'{message}' => (Configuration::get('PS_MAIL_TYPE') == 2 ? $cm->message : Tools::nl2br($cm->message))
|
||||
);
|
||||
'{lastname}' => $customer->lastname,
|
||||
'{firstname}' => $customer->firstname,
|
||||
'{id_order}' => $order->id,
|
||||
'{message}' => (Configuration::get('PS_MAIL_TYPE') == 2 ? $cm->message : Tools::nl2br($cm->message))
|
||||
);
|
||||
if (@Mail::Send((int)($order->id_lang), 'order_merchant_comment',
|
||||
Mail::l('New message regarding your order'), $varsTpl, $customer->email,
|
||||
$customer->firstname.' '.$customer->lastname, NULL, NULL, NULL, NULL, _PS_MAIL_DIR_, true))
|
||||
@@ -349,10 +397,11 @@ class AdminOrdersControllerCore extends AdminController
|
||||
{
|
||||
$reinjectableQuantity = (int)($orderDetail->product_quantity) - (int)($orderDetail->product_quantity_reinjected);
|
||||
$quantityToReinject = $qtyCancelProduct > $reinjectableQuantity ? $reinjectableQuantity : $qtyCancelProduct;
|
||||
if (!Product::reinjectQuantities($orderDetail, $quantityToReinject))
|
||||
$this->_errors[] = Tools::displayError('Cannot re-stock product').' <span class="bold">'.$orderDetail->product_name.'</span>';
|
||||
else
|
||||
{
|
||||
// TODO (Denis) : fix reinject quantities
|
||||
// if (!Product::reinjectQuantities($orderDetail, $quantityToReinject))
|
||||
// $this->_errors[] = Tools::displayError('Cannot re-stock product').' <span class="bold">'.$orderDetail->product_name.'</span>';
|
||||
// else
|
||||
// {
|
||||
$updProductAttributeID = !empty($orderDetail->product_attribute_id) ? (int)($orderDetail->product_attribute_id) : NULL;
|
||||
$newProductQty = Product::getQuantity($orderDetail->product_id, $updProductAttributeID);
|
||||
$product = get_object_vars(new Product($orderDetail->product_id, false, $this->context->language->id, $order->id_shop));
|
||||
@@ -367,7 +416,7 @@ class AdminOrdersControllerCore extends AdminController
|
||||
$product['stock_quantity'] = $updProduct['stock_quantity'];
|
||||
}
|
||||
Hook::exec('updateQuantity', array('product' => $product, 'order' => $order));
|
||||
}
|
||||
// }
|
||||
}
|
||||
|
||||
// Delete product
|
||||
@@ -436,6 +485,7 @@ class AdminOrdersControllerCore extends AdminController
|
||||
{
|
||||
Message::markAsReaded($_GET['messageReaded'], $this->context->employee->id);
|
||||
}
|
||||
// TODO clean PaymentCC
|
||||
else if (Tools::isSubmit('setTransactionId') && ((int)Tools::getValue('id_order')))
|
||||
{
|
||||
$order = new Order((int)(Tools::getValue('id_order')));
|
||||
@@ -449,9 +499,34 @@ class AdminOrdersControllerCore extends AdminController
|
||||
|
||||
unset($order, $pcc);
|
||||
}
|
||||
else if (Tools::isSubmit('submitAddPayment'))
|
||||
{
|
||||
if ($this->tabAccess['edit'] === '1')
|
||||
{
|
||||
$order = new Order(Tools::getValue('id_order'));
|
||||
$amount = str_replace(',', '.', Tools::getValue('payment_amount'));
|
||||
$currency = new Currency(Tools::getValue('payment_currency'));
|
||||
if (!Validate::isLoadedObject($order))
|
||||
$this->_errors[] = Tools::displayError('Order can\'t be found');
|
||||
elseif (!Validate::isPrice($amount))
|
||||
$this->_errors[] = Tools::displayError('Amount is invalid');
|
||||
elseif (!Validate::isString(Tools::getValue('payment_method')))
|
||||
$this->_errors[] = Tools::displayError('Payment method is invalid');
|
||||
elseif (!Validate::isString(Tools::getValue('payment_transaction_id')))
|
||||
$this->_errors[] = Tools::displayError('Transaction ID is invalid');
|
||||
elseif (!Validate::isLoadedObject($currency))
|
||||
$this->_errors[] = Tools::displayError('Currency is invalid');
|
||||
elseif (!Validate::isDate(Tools::getValue('payment_date')))
|
||||
$this->_errors[] = Tools::displayError('Date is invalid');
|
||||
else
|
||||
if (!$order->addOrderPayment($amount, Tools::getValue('payment_method'), Tools::getValue('payment_transaction_id'), $currency, Tools::getValue('payment_date')))
|
||||
$this->_errors[] = Tools::displayError('An error occured on adding of order payment');
|
||||
}
|
||||
else
|
||||
$this->_errors[] = Tools::displayError('You do not have permission to edit here.');
|
||||
}
|
||||
elseif (Tools::isSubmit('submitAddOrder') == 1 && ($id_cart = Tools::getValue('id_cart')) && ($module_name = pSQL(Tools::getValue('payment_module_name'))) && ($id_order_state = Tools::getValue('id_order_state')))
|
||||
{
|
||||
|
||||
if ($this->tabAccess['edit'] === '1')
|
||||
{
|
||||
$payment_module = Module::getInstanceByName($module_name);
|
||||
@@ -463,6 +538,29 @@ class AdminOrdersControllerCore extends AdminController
|
||||
else
|
||||
$this->_errors[] = Tools::displayError('You do not have permission to add here.');
|
||||
}
|
||||
elseif (Tools::isSubmit('submitAddressShipping') || Tools::isSubmit('submitAddressInvoice'))
|
||||
{
|
||||
if ($this->tabAccess['edit'] === '1')
|
||||
{
|
||||
$address = new Address(Tools::getValue('id_address'));
|
||||
if (Validate::isLoadedObject($address))
|
||||
{
|
||||
// Update the address on order
|
||||
$order = new Order(Tools::getValue('id_order'));
|
||||
if (Tools::isSubmit('submitAddressShipping'))
|
||||
$order->id_address_delivery = $address->id;
|
||||
elseif (Tools::isSubmit('submitAddressInvoice'))
|
||||
$order->id_address_invoice = $address->id;
|
||||
$order->update();
|
||||
Tools::redirectAdmin(self::$currentIndex.'&id_order='.$order->id.'&vieworder&conf=4&token='.$this->token);
|
||||
}
|
||||
else
|
||||
$this->_errors[] = Tools::displayErrror('This address can\'t be loaded');
|
||||
}
|
||||
else
|
||||
$this->_errors[] = Tools::displayError('You do not have permission to edit here.');
|
||||
}
|
||||
|
||||
parent::postProcess();
|
||||
}
|
||||
|
||||
@@ -470,22 +568,11 @@ class AdminOrdersControllerCore extends AdminController
|
||||
{
|
||||
$order = $this->loadObject();
|
||||
if (!Validate::isLoadedObject($order))
|
||||
return;
|
||||
throw new PrestashopException('object can\'t be loaded');
|
||||
|
||||
$customer = new Customer($order->id_customer);
|
||||
$carrier = new Carrier($order->id_carrier);
|
||||
$products = $order->getProducts();
|
||||
|
||||
foreach ($products as &$product)
|
||||
{
|
||||
if ($product['image'] != null)
|
||||
{
|
||||
$name = 'product_mini_'.(int)$product['product_id'].(isset($product['product_attribute_id']) ? '_'.(int)$product['product_attribute_id'] : '').'.jpg';
|
||||
// generate image cache, only for back office
|
||||
$product['image_tag'] = cacheImage(_PS_IMG_DIR_.'p/'.$product['image']->getExistingImgPath().'.jpg', $name, 45, 'jpg');
|
||||
$product['image_size'] = getimagesize(_PS_TMP_IMG_DIR_.$name);
|
||||
}
|
||||
}
|
||||
$products = $this->getProducts($order);
|
||||
|
||||
// Carrier module call
|
||||
$carrier_module_call = null;
|
||||
@@ -514,11 +601,14 @@ class AdminOrdersControllerCore extends AdminController
|
||||
$deliveryState = new State((int)($addressDelivery->id_state));
|
||||
}
|
||||
|
||||
$this->toolbar_title = $this->l('Order #').sprintf('%06d', $order->id).' - '.$customer->firstname.' '.$customer->lastname;
|
||||
|
||||
// Smarty assign
|
||||
$this->tpl_view_vars = array(
|
||||
'order' => $order,
|
||||
'cart' => new Cart($order->id),
|
||||
'customer' => $customer,
|
||||
'customer_addresses' => $customer->getAddresses($this->context->language->id),
|
||||
'addresses' => array(
|
||||
'delivery' => $addressDelivery,
|
||||
'deliveryState' => isset($deliveryState) ? $deliveryState : null,
|
||||
@@ -528,6 +618,7 @@ class AdminOrdersControllerCore extends AdminController
|
||||
'customerStats' => $customer->getStats(),
|
||||
'products' => $products,
|
||||
'discounts' => $order->getCartRules(),
|
||||
'total_paid' => $order->getTotalPaid(),
|
||||
'returns' => OrderReturn::getOrdersReturn($order->id_customer, $order->id),
|
||||
'slips' => OrderSlip::getOrdersSlip($order->id_customer, $order->id),
|
||||
'orderMessages' => OrderMessage::getOrderMessages($order->id_lang),
|
||||
@@ -539,20 +630,23 @@ class AdminOrdersControllerCore extends AdminController
|
||||
'sources' => ConnectionsSource::getOrderSources($order->id),
|
||||
'currentState' => OrderHistory::getLastOrderState($order->id),
|
||||
'currency' => new Currency($order->id_currency),
|
||||
'currencies' => Currency::getCurrencies(),
|
||||
'previousOrder' => $order->getPreviousOrderId(),
|
||||
'nextOrder' => $order->getNextOrderId(),
|
||||
'currentIndex' => self::$currentIndex,
|
||||
'carrierModuleCall' => $carrier_module_call,
|
||||
'iso_code_lang' => $this->context->language->iso_code,
|
||||
'id_lang' => $this->context->language->id,
|
||||
'paymentCCDetails' => PaymentCC::getByOrderId($order->id),
|
||||
|
||||
'can_edit' => ($this->tabAccess['edit'] == 1),
|
||||
'current_id_lang' => $this->context->language->id,
|
||||
'invoices_collection' => $order->getInvoicesCollection(),
|
||||
'HOOK_INVOICE' => Hook::exec('invoice', array('id_order' => $order->id)),
|
||||
'HOOK_ADMIN_ORDER' => Hook::exec('adminOrder', array('id_order' => $order->id))
|
||||
);
|
||||
|
||||
return parent::initView();
|
||||
}
|
||||
|
||||
public function ajaxProcessSearchCustomers()
|
||||
{
|
||||
if ($customers = Customer::searchByName(pSQL(Tools::getValue('customer_search'))))
|
||||
@@ -571,11 +665,18 @@ class AdminOrdersControllerCore extends AdminController
|
||||
{
|
||||
foreach ($products AS &$product)
|
||||
{
|
||||
$product['price'] = Tools::displayPrice(Tools::convertPrice($product['price'], $currency), $currency);
|
||||
// Formatted price
|
||||
$product['formatted_price'] = Tools::displayPrice(Tools::convertPrice($product['price_tax_incl'], $currency), $currency);
|
||||
// Concret price
|
||||
$product['price_tax_incl'] = Tools::ps_round(Tools::convertPrice($product['price_tax_incl'], $currency), 2);
|
||||
$product['price_tax_excl'] = Tools::ps_round(Tools::convertPrice($product['price_tax_excl'], $currency), 2);
|
||||
$productObj = new Product((int)$product['id_product'], false, (int)$this->context->language->id);
|
||||
$combinations = array();
|
||||
$attributes = $productObj->getAttributesGroups((int)$this->context->language->id);
|
||||
$product['qty_in_stock'] = StockAvailable::getQuantityAvailableByProduct((int)$product['id_product'], 0, (int)$this->context->shop->getID());
|
||||
// Tax rate for this customer
|
||||
if (Tools::isSubmit('id_address'))
|
||||
$product['tax_rate'] = $productObj->getTaxesRate(new Address(Tools::getValue('id_address')));
|
||||
foreach($attributes AS $attribute)
|
||||
{
|
||||
if (!isset($combinations[$attribute['id_product_attribute']]['attributes']))
|
||||
@@ -584,7 +685,13 @@ class AdminOrdersControllerCore extends AdminController
|
||||
$combinations[$attribute['id_product_attribute']]['id_product_attribute'] = $attribute['id_product_attribute'];
|
||||
$combinations[$attribute['id_product_attribute']]['default_on'] = $attribute['default_on'];
|
||||
if (!isset($combinations[$attribute['id_product_attribute']]['price']))
|
||||
$combinations[$attribute['id_product_attribute']]['price'] = Tools::displayPrice(Tools::convertPrice(Product::getPriceStatic((int)$product['id_product'], true, $attribute['id_product_attribute']), $currency), $currency);
|
||||
{
|
||||
$price_tax_incl = Product::getPriceStatic((int)$product['id_product'], true, $attribute['id_product_attribute']);
|
||||
$price_tax_excl = Product::getPriceStatic((int)$product['id_product'], false, $attribute['id_product_attribute']);
|
||||
$combinations[$attribute['id_product_attribute']]['price_tax_incl'] = Tools::ps_round(Tools::convertPrice($price_tax_incl, $currency), 2);
|
||||
$combinations[$attribute['id_product_attribute']]['price_tax_excl'] = Tools::ps_round(Tools::convertPrice($price_tax_excl, $currency), 2);
|
||||
$combinations[$attribute['id_product_attribute']]['formatted_price'] = Tools::displayPrice(Tools::convertPrice($price_tax_incl, $currency), $currency);
|
||||
}
|
||||
if (!isset($combinations[$attribute['id_product_attribute']]['qty_in_stock']))
|
||||
$combinations[$attribute['id_product_attribute']]['qty_in_stock']= StockAvailable::getQuantityAvailableByProduct((int)$product['id_product'], $attribute['id_product_attribute'], (int)$this->context->shop->getID());
|
||||
}
|
||||
@@ -593,8 +700,10 @@ class AdminOrdersControllerCore extends AdminController
|
||||
$combination['attributes'] = rtrim($combination['attributes'], ' - ');
|
||||
$product['combinations'] = $combinations;
|
||||
}
|
||||
$to_return = array('products' => $products,
|
||||
'found' => true);
|
||||
$to_return = array(
|
||||
'products' => $products,
|
||||
'found' => true
|
||||
);
|
||||
}
|
||||
else
|
||||
$to_return = array('found' => false);
|
||||
@@ -623,4 +732,480 @@ class AdminOrdersControllerCore extends AdminController
|
||||
$this->content = Tools::jsonEncode(array('errors' => true, 'result' => $this->l('Error in sending the email to your customer.')));
|
||||
}
|
||||
}
|
||||
|
||||
public function ajaxProcessAddProductOnOrder()
|
||||
{
|
||||
// Load object
|
||||
$order = new Order(Tools::getValue('id_order'));
|
||||
if (!Validate::isLoadedObject($order))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Order object')
|
||||
)));
|
||||
|
||||
$product_informations = $_POST['add_product'];
|
||||
$product = new Product($product_informations['product_id'], false, $order->id_lang);
|
||||
if (!Validate::isLoadedObject($product))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Product object')
|
||||
)));
|
||||
|
||||
if (isset($product_informations['product_attribute_id']) && $product_informations['product_attribute_id'])
|
||||
{
|
||||
$combination = new Combination($product_informations['product_attribute_id']);
|
||||
if (!Validate::isLoadedObject($combination))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Combination object')
|
||||
)));
|
||||
}
|
||||
|
||||
// Create new cart
|
||||
$cart = new Cart();
|
||||
$cart->id_group_shop = $order->id_group_shop;
|
||||
$cart->id_shop = $order->id_shop;
|
||||
$cart->id_customer = $order->id_customer;
|
||||
$cart->id_carrier = $order->id_carrier;
|
||||
$cart->id_address_delivery = $order->id_address_delivery;
|
||||
$cart->id_address_invoice = $order->id_address_invoice;
|
||||
$cart->id_currency = $order->id_currency;
|
||||
$cart->id_customer = $order->id_customer;
|
||||
$cart->id_lang = $order->id_lang;
|
||||
$cart->id_carrier = $order->id_carrier;
|
||||
$cart->secure_key = $order->secure_key;
|
||||
|
||||
// Save new cart
|
||||
$cart->add();
|
||||
|
||||
// Save context (in order to apply cart rule)
|
||||
$this->context->cart = $cart;
|
||||
$this->context->customer = new Customer($order->id_customer);
|
||||
|
||||
// Add product to cart
|
||||
$cart->updateQty($product_informations['product_quantity'], $product->id, isset($combination) ? $combination->id : null, false, 'up', new Shop($cart->id_shop));
|
||||
|
||||
$use_taxes = ($order->getTaxCalculationMethod() == PS_TAX_INC);
|
||||
|
||||
$initial_prodcut_price_tax_incl = Product::getPriceStatic($product->id, $use_taxes, isset($combination) ? $combination->id : null, 2, null, false, true, 1,
|
||||
false, $order->id_customer, $cart->id, $order->{Configuration::get('PS_TAX_ADDRESS_TYPE')});
|
||||
|
||||
if ($product_informations['product_price_tax_incl'] < $initial_prodcut_price_tax_incl)
|
||||
{
|
||||
$reduction_tax_incl = $initial_prodcut_price_tax_incl - $product_informations['product_price_tax_incl'];
|
||||
|
||||
// FIXME Cart Rule isn't applied but correctly save in database
|
||||
$cart_rule = new CartRule();
|
||||
$cart_rule->id_customer = $order->id_customer;
|
||||
$cart_rule->date_from = date('Y-m-d H:i:s', time());
|
||||
$cart_rule->date_to = date('Y-m-d H:i:s', time() + 24 * 3600);
|
||||
$cart_rule->quantity = 1;
|
||||
$cart_rule->quantity_per_user = 1;
|
||||
$cart_rule->minimum_amount_currency = $order->id_currency;
|
||||
$cart_rule->reduction_product = $product->id;
|
||||
$cart_rule->reduction_amount = $reduction_tax_incl;
|
||||
$cart_rule->reduction_currency = $order->id_currency;
|
||||
$cart_rule->active = 1;
|
||||
$cart_rule->add();
|
||||
|
||||
$cart->addCartRule($cart_rule->id);
|
||||
//$order->addCartRule($cart_rule->id, $cart_rule->name, $cart_rule->getContextualValue(true));
|
||||
}
|
||||
|
||||
// If order is valid, we can create a new invoice or edit an existing invoice
|
||||
if ($order->valid)
|
||||
{
|
||||
$order_invoice = new OrderInvoice($product_informations['invoice']);
|
||||
// Create new invoice
|
||||
if ($order_invoice->id == 0)
|
||||
{
|
||||
// Create Cart rule in order to make free shipping
|
||||
if (isset($invoice_informations['free_shipping']) && $invoice_informations['free_shipping'])
|
||||
{
|
||||
// FIXME Cart Rule isn't applied but correctly save in database
|
||||
$cart_rule = new CartRule();
|
||||
$cart_rule->id_customer = $order->id_customer;
|
||||
$cart_rule->date_from = date('Y-m-d H:i:s', time());
|
||||
$cart_rule->date_to = date('Y-m-d H:i:s', time() + 24 * 3600);
|
||||
$cart_rule->quantity = 1;
|
||||
$cart_rule->quantity_per_user = 1;
|
||||
$cart_rule->minimum_amount_currency = $order->id_currency;
|
||||
$cart_rule->reduction_currency = $order->id_currency;
|
||||
$cart_rule->free_shipping = true;
|
||||
$cart_rule->active = 1;
|
||||
$cart_rule->add();
|
||||
|
||||
$cart->addCartRule($cart_rule->id);
|
||||
//$order->addCartRule($cart_rule->id, $cart_rule->name, $cart_rule->getContextualValue(true));
|
||||
}
|
||||
if (Tools::isSubmit('add_invoice'))
|
||||
$invoice_informations = $_POST['add_invoice'];
|
||||
$order_invoice->id_order = $order->id;
|
||||
if ($order_invoice->number)
|
||||
Configuration::updateValue('PS_INVOICE_START_NUMBER', false);
|
||||
else
|
||||
$order_invoice->number = Order::getLastInvoiceNumber() + 1;
|
||||
$order_invoice->total_paid_tax_excl = Tools::ps_round((float)$cart->getOrderTotal(false, Cart::BOTH), 2);
|
||||
$order_invoice->total_paid_tax_incl = Tools::ps_round((float)$cart->getOrderTotal($use_taxes, Cart::BOTH), 2);
|
||||
$order_invoice->total_products = (float)$cart->getOrderTotal(false, Cart::ONLY_PRODUCTS);
|
||||
$order_invoice->total_products_wt = (float)$cart->getOrderTotal($use_taxes, Cart::ONLY_PRODUCTS);
|
||||
$order_invoice->total_shipping_tax_excl = (float)$cart->getOrderShippingCost(null, false);
|
||||
$order_invoice->total_shipping_tax_incl = (float)$cart->getOrderShippingCost();
|
||||
$order_invoice->total_wrapping_tax_excl = abs($cart->getOrderTotal(false, Cart::ONLY_WRAPPING));
|
||||
$order_invoice->total_wrapping_tax_incl = abs($cart->getOrderTotal($use_taxes, Cart::ONLY_WRAPPING));
|
||||
|
||||
// Update current order field, only shipping because other field is updated later
|
||||
$order->total_shipping += (float)$cart->getOrderShippingCost();
|
||||
$order->total_shipping_tax_excl += (float)$cart->getOrderShippingCost(null, false);
|
||||
$order->total_shipping_tax_incl += (float)$cart->getOrderShippingCost(null, $use_taxes);
|
||||
|
||||
$order->total_wrapping += abs($cart->getOrderTotal($use_taxes, Cart::ONLY_WRAPPING));
|
||||
$order->total_wrapping_tax_excl += abs($cart->getOrderTotal(false, Cart::ONLY_WRAPPING));
|
||||
$order->total_wrapping_tax_incl += abs($cart->getOrderTotal($use_taxes, Cart::ONLY_WRAPPING));
|
||||
$order_invoice->add();
|
||||
// Adding an entry in order_carrier table
|
||||
Db::getInstance()->execute('
|
||||
INSERT INTO `'._DB_PREFIX_.'order_carrier` (`id_order`, `id_carrier`, `id_order_invoice`, `weight`, `shipping_cost_tax_excl`, `shipping_cost_tax_incl`, `date_add`) VALUES
|
||||
('.(int)$order->id.', '.(int)$order->id_carrier.', '.(int)$order_invoice->id.', '.(float)$cart->getTotalWeight().', '.(float)$cart->getOrderShippingCost(null, false).', '.(float)$cart->getOrderShippingCost(null, $use_taxes).', NOW())');
|
||||
}
|
||||
// Update current invoice
|
||||
else
|
||||
{
|
||||
$order_invoice->total_paid_tax_excl += Tools::ps_round((float)($cart->getOrderTotal(false, Cart::BOTH)), 2);
|
||||
$order_invoice->total_paid_tax_incl += Tools::ps_round((float)($cart->getOrderTotal($use_taxes, Cart::BOTH)), 2);
|
||||
$order_invoice->total_products += (float)$cart->getOrderTotal(false, Cart::ONLY_PRODUCTS);
|
||||
$order_invoice->total_products_wt += (float)$cart->getOrderTotal($use_taxes, Cart::ONLY_PRODUCTS);
|
||||
$order_invoice->total_shipping_tax_excl += (float)$cart->getOrderShippingCost(null, false);
|
||||
$order_invoice->total_shipping_tax_incl += (float)$cart->getOrderShippingCost(null, $use_taxes);
|
||||
$order_invoice->total_wrapping_tax_excl += abs($cart->getOrderTotal(false, Cart::ONLY_WRAPPING));
|
||||
$order_invoice->total_wrapping_tax_incl += abs($cart->getOrderTotal($use_taxes, Cart::ONLY_WRAPPING));
|
||||
$order_invoice->update();
|
||||
}
|
||||
}
|
||||
|
||||
// Create Order detail information
|
||||
$order_detail = new OrderDetail();
|
||||
$order_detail->createList($order, $cart, OrderHistory::getLastOrderState($order->id), $cart->getProducts(), (isset($order_invoice) ? $order_invoice->id : 0), $use_taxes);
|
||||
|
||||
// update totals amount of order
|
||||
$order->total_products += (float)$cart->getOrderTotal(false, Cart::ONLY_PRODUCTS);
|
||||
$order->total_products_wt += (float)$cart->getOrderTotal($use_taxes, Cart::ONLY_PRODUCTS);
|
||||
|
||||
$order->total_paid += Tools::ps_round((float)($cart->getOrderTotal(true, Cart::BOTH)), 2);
|
||||
$order->total_paid_tax_excl += Tools::ps_round((float)($cart->getOrderTotal(false, Cart::BOTH)), 2);
|
||||
$order->total_paid_tax_incl += Tools::ps_round((float)($cart->getOrderTotal($use_taxes, Cart::BOTH)), 2);
|
||||
|
||||
// Save changes of order
|
||||
$order->update();
|
||||
|
||||
$products = $this->getProducts($order);
|
||||
// Get the last product
|
||||
$product = $products[max(array_keys($products))];
|
||||
|
||||
// Assign to smarty informations in order to show the new product line
|
||||
$this->context->smarty->assign(array(
|
||||
'product' => $product,
|
||||
'order' => $order,
|
||||
'currency' => new Currency($order->id_currency),
|
||||
'can_edit' => $this->tabAccess['edit'],
|
||||
'invoices_collection' => $order->getInvoicesCollection()
|
||||
));
|
||||
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => true,
|
||||
'view' => $this->context->smarty->fetch('orders/_product_line.tpl'),
|
||||
'can_edit' => $this->tabAccess['add'],
|
||||
'order' => $order
|
||||
)));
|
||||
}
|
||||
|
||||
public function ajaxProcessLoadProductInformation()
|
||||
{
|
||||
$order_detail = new OrderDetail(Tools::getValue('id_order_detail'));
|
||||
if (!Validate::isLoadedObject($order_detail))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load OrderDetail object')
|
||||
)));
|
||||
|
||||
$product = new Product($order_detail->product_id);
|
||||
if (!Validate::isLoadedObject($product))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Product object')
|
||||
)));
|
||||
|
||||
$address = new Address(Tools::getValue('id_address'));
|
||||
if (!Validate::isLoadedObject($address))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Address object')
|
||||
)));
|
||||
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => true,
|
||||
'product' => $product,
|
||||
'tax_rate' => $product->getTaxesRate($address),
|
||||
'price_tax_incl' => Product::getPriceStatic($product->id, true, $order_detail->product_attribute_id, 2),
|
||||
'price_tax_excl' => Product::getPriceStatic($product->id, false, $order_detail->product_attribute_id, 2)
|
||||
)));
|
||||
}
|
||||
|
||||
public function ajaxProcessEditProductOnOrder()
|
||||
{
|
||||
// Return value
|
||||
$res = true;
|
||||
|
||||
$order_detail = new OrderDetail(Tools::getValue('product_id_order_detail'));
|
||||
if (Tools::isSubmit('product_invoice'))
|
||||
$order_invoice = new OrderInvoice(Tools::getValue('product_invoice'));
|
||||
|
||||
$this->doEditProductValidation($order_detail, isset($order_invoice) ? $order_invoice : null);
|
||||
|
||||
$product_price_tax_incl = Tools::ps_round(Tools::getValue('product_price_tax_incl'), 2);
|
||||
$product_price_tax_excl = Tools::ps_round(Tools::getValue('product_price_tax_excl'), 2);
|
||||
$total_products_tax_incl = $product_price_tax_incl * Tools::getValue('product_quantity');
|
||||
$total_products_tax_excl = $product_price_tax_excl * Tools::getValue('product_quantity');
|
||||
|
||||
// Calculate differences of price (Before / After)
|
||||
$diff_price_tax_incl = $total_products_tax_incl - $order_detail->total_price_tax_incl;
|
||||
$diff_price_tax_excl = $total_products_tax_excl - $order_detail->total_price_tax_excl;
|
||||
|
||||
// Apply change on OrderInvoice
|
||||
if (isset($order_invoice))
|
||||
// If OrderInvoice to use is different, we update the old invoice and new invoice
|
||||
if ($order_detail->id_order_invoice != $order_invoice->id)
|
||||
{
|
||||
$old_order_invoice = new OrderInvoice($order_detail->id_order_invoice);
|
||||
// We remove cost of products
|
||||
$old_order_invoice->total_products -= $order_detail->total_price_tax_excl;
|
||||
$old_order_invoice->total_products_wt -= $order_detail->total_price_tax_incl;
|
||||
|
||||
$old_order_invoice->total_paid_tax_excl -= $order_detail->total_price_tax_excl;
|
||||
$old_order_invoice->total_paid_tax_incl -= $order_detail->total_price_tax_incl;
|
||||
|
||||
$res &= $old_order_invoice->update();
|
||||
// TODO remove invoice if no item ?
|
||||
|
||||
$order_invoice->total_products += $order_detail->total_price_tax_excl;
|
||||
$order_invoice->total_products_wt += $order_detail->total_price_tax_incl;
|
||||
|
||||
$order_invoice->total_paid_tax_excl += $order_detail->total_price_tax_excl;
|
||||
$order_invoice->total_paid_tax_incl += $order_detail->total_price_tax_incl;
|
||||
|
||||
$order_detail->id_order_invoice = $order_invoice->id;
|
||||
}
|
||||
|
||||
if ($diff_price_tax_incl != 0 && $diff_price_tax_excl != 0)
|
||||
{
|
||||
$order_detail->unit_price_tax_excl = $product_price_tax_excl;
|
||||
$order_detail->unit_price_tax_incl = $product_price_tax_incl;
|
||||
|
||||
$order_detail->total_price_tax_incl += $diff_price_tax_incl;
|
||||
$order_detail->total_price_tax_excl += $diff_price_tax_excl;
|
||||
|
||||
if (isset($order_invoice))
|
||||
{
|
||||
// Apply changes on OrderInvoice
|
||||
$order_invoice->total_products += $diff_price_tax_excl;
|
||||
$order_invoice->total_products_wt += $diff_price_tax_incl;
|
||||
|
||||
$order_invoice->total_paid_tax_excl += $diff_price_tax_excl;
|
||||
$order_invoice->total_paid_tax_incl += $diff_price_tax_incl;
|
||||
}
|
||||
|
||||
// Apply changes on Order
|
||||
$order = new Order($order_detail->id_order);
|
||||
$order->total_products += $diff_price_tax_excl;
|
||||
$order->total_products_wt += $diff_price_tax_incl;
|
||||
|
||||
$order->total_paid += $diff_price_tax_incl;
|
||||
$order->total_paid_tax_excl += $diff_price_tax_excl;
|
||||
$order->total_paid_tax_incl += $diff_price_tax_incl;
|
||||
|
||||
$res &= $order->update();
|
||||
}
|
||||
|
||||
$order_detail->product_quantity = Tools::getValue('product_quantity');
|
||||
// Save order detail
|
||||
$res &= $order_detail->update();
|
||||
// Save order invoice
|
||||
if (isset($order_invoice))
|
||||
$res &= $order_invoice->update();
|
||||
|
||||
$products = $this->getProducts($order);
|
||||
// Get the last product
|
||||
$product = $products[$order_detail->id];
|
||||
|
||||
// Assign to smarty informations in order to show the new product line
|
||||
$this->context->smarty->assign(array(
|
||||
'product' => $product,
|
||||
'order' => $order,
|
||||
'currency' => new Currency($order->id_currency),
|
||||
'can_edit' => $this->tabAccess['edit']
|
||||
));
|
||||
|
||||
if (!$res)
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => $res,
|
||||
'error' => Tools::displayError('Error occured on edition of this product line')
|
||||
)));
|
||||
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => $res,
|
||||
'view' => $this->context->smarty->fetch('orders/_product_line.tpl'),
|
||||
'can_edit' => $this->tabAccess['add'],
|
||||
'invoices_collection' => $order->getInvoicesCollection(),
|
||||
'order' => $order
|
||||
)));
|
||||
}
|
||||
|
||||
public function ajaxProcessDeleteProductLine()
|
||||
{
|
||||
$res = true;
|
||||
|
||||
$order_detail = new OrderDetail(Tools::getValue('id_order_detail'));
|
||||
$order = new Order(Tools::getValue('id_order'));
|
||||
|
||||
$this->doDeleteProductLinveValidation($order_detail, $order);
|
||||
|
||||
// Update OrderInvoice of this OrderDetail
|
||||
if ($order_detail->id_order_invoice != 0)
|
||||
{
|
||||
$order_invoice = new OrderInvoice($order_detail->id_order_invoice);
|
||||
|
||||
/*
|
||||
TODO refresh total_discount
|
||||
$order_invoice->total_discount_tax_excl -= ;
|
||||
$order_invoice->total_discount_tax_incl -= ;
|
||||
$order_invoice->total_shipping_tax_excl -= ;
|
||||
$order_invoice->total_shipping_tax_incl -= ;
|
||||
$order_invoice->total_wrapping_tax_excl -= ;
|
||||
$order_invoice->total_wrapping_tax_incl -= ;
|
||||
*/
|
||||
$order_invoice->total_paid_tax_excl -= $order_detail->total_price_tax_incl;
|
||||
$order_invoice->total_paid_tax_incl -= $order_detail->total_price_tax_excl;
|
||||
$order_invoice->total_products -= $order_detail->total_price_tax_incl;
|
||||
$order_invoice->total_products_wt -= $order_detail->total_price_tax_excl;
|
||||
$res &= $order_invoice->update();
|
||||
}
|
||||
|
||||
// Update Order
|
||||
/*
|
||||
* TODO
|
||||
$order->total_discounts -= ;
|
||||
$order->total_discounts_tax_incl -= ;
|
||||
$order->total_discounts_tax_excl -= ;
|
||||
$order->total_discounts_tax_excl -= ;
|
||||
$order->total_shipping -= ;
|
||||
$order->total_shipping_tax_incl -= ;
|
||||
$order->total_shipping_tax_excl -= ;
|
||||
$order->total_wrapping -= ;
|
||||
$order->total_wrapping_tax_incl -= ;
|
||||
$order->total_wrapping_tax_excl -= ;
|
||||
*/
|
||||
$order->total_paid -= $order_detail->total_price_tax_incl;
|
||||
$order->total_paid_tax_incl -= $order_detail->total_price_tax_incl;
|
||||
$order->total_paid_tax_excl -= $order_detail->total_price_tax_excl;
|
||||
$order->total_products -= $order_detail->total_price_tax_incl;
|
||||
$order->total_products_wt -= $order_detail->total_price_tax_excl;
|
||||
|
||||
$res &= $order->update();
|
||||
|
||||
// Delete OrderDetail
|
||||
$res &= $order_detail->delete();
|
||||
|
||||
if (!$res)
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => $res,
|
||||
'error' => Tools::displayError('Error occured on deletion of this product line')
|
||||
)));
|
||||
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => $res,
|
||||
'order' => $order
|
||||
)));
|
||||
}
|
||||
|
||||
protected function doEditProductValidation(OrderDetail $order_detail, OrderInvoice $order_invoice = null)
|
||||
{
|
||||
if (!Validate::isLoadedObject($order_detail))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Order Detail object')
|
||||
)));
|
||||
|
||||
if (!empty($order_invoice) && !Validate::isLoadedObject($order_invoice))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Invoice object')
|
||||
)));
|
||||
|
||||
if ($order_detail->id_order != Tools::getValue('id_order'))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t edit this Order Detail for this order')
|
||||
)));
|
||||
|
||||
if ($order_invoice->id_order != Tools::getValue('id_order'))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t use this invoice for this order')
|
||||
)));
|
||||
|
||||
// Clean price
|
||||
$product_price_tax_incl = str_replace(',', '.', Tools::getValue('product_price_tax_incl'));
|
||||
$product_price_tax_excl = str_replace(',', '.', Tools::getValue('product_price_tax_excl'));
|
||||
|
||||
if (!Validate::isPrice($product_price_tax_incl) || !Validate::isPrice($product_price_tax_excl))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Invalid price')
|
||||
)));
|
||||
|
||||
if (!Validate::isUnsignedInt(Tools::getValue('product_quantity')))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Invalid quantity')
|
||||
)));
|
||||
}
|
||||
|
||||
protected function doDeleteProductLinveValidation(OrderDetail $order_detail, Order $order)
|
||||
{
|
||||
if (!Validate::isLoadedObject($order_detail))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Order Detail object')
|
||||
)));
|
||||
|
||||
if (!Validate::isLoadedObject($order))
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t load Order object')
|
||||
)));
|
||||
|
||||
if ($order_detail->id_order != $order->id)
|
||||
die(Tools::jsonEncode(array(
|
||||
'result' => false,
|
||||
'error' => Tools::displayError('Can\'t delete this Order Detail for this order')
|
||||
)));
|
||||
}
|
||||
|
||||
protected function getProducts($order)
|
||||
{
|
||||
$products = $order->getProducts();
|
||||
|
||||
foreach ($products as &$product)
|
||||
{
|
||||
if ($product['image'] != null)
|
||||
{
|
||||
$name = 'product_mini_'.(int)$product['product_id'].(isset($product['product_attribute_id']) ? '_'.(int)$product['product_attribute_id'] : '').'.jpg';
|
||||
// generate image cache, only for back office
|
||||
$product['image_tag'] = cacheImage(_PS_IMG_DIR_.'p/'.$product['image']->getExistingImgPath().'.jpg', $name, 45, 'jpg');
|
||||
$product['image_size'] = getimagesize(_PS_TMP_IMG_DIR_.$name);
|
||||
}
|
||||
}
|
||||
|
||||
return $products;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user