Column name

This commit is contained in:
Michael RICOIS 2018-01-31 11:34:17 +01:00
parent 8b15ef46a6
commit 70afb97e26

View File

@ -1,9 +1,10 @@
<?php
if(!defined('_PS_VERSION_')) {
if (!defined('_PS_VERSION_')) {
exit;
}
include_once(_PS_ROOT_DIR_.'/modules/privatesales/Sale.php');
require_once(PS_ADMIN_DIR . '/helpers/HelperFormBootstrap.php');
require_once _PS_ROOT_DIR_.'/modules/privatesales/Sale.php';
require_once PS_ADMIN_DIR .'/helpers/HelperFormBootstrap.php';
class AdminAntDropshippingtracking extends AdminTab
{
@ -296,7 +297,7 @@ class AdminAntDropshippingtracking extends AdminTab
INSERT INTO `'._DB_PREFIX_.'shipping_history`
VALUES (
'.(int) $order->id.',
"'.pSQL($o['shipping_number']).'",
"'.pSQL($o['tracking_number']).'",
NOW(),
0,
'.(int)$id_sale.'
@ -394,6 +395,7 @@ class AdminAntDropshippingtracking extends AdminTab
$help = '<br>
<p class="help-block">'.$this->l('Format: id_order;tracking_number;carrier;tracking_link').'</p>
<p class="help-block">'.$this->l('The subsequent columns and the first line are ignored.').'</p>
<p class="help-block">'.$this->l('Without tracking infos, .').'</p>
';
$input = array(
'label' => $this->l('Sale: '),