mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-25 14:46:06 +03:00
fixes
This commit is contained in:
parent
d862d98001
commit
3ede32ff51
@ -146,7 +146,7 @@ class OpencartApiClient {
|
|||||||
'telephone' => !empty($data['telephone']) ? $data['telephone'] : '0000',
|
'telephone' => !empty($data['telephone']) ? $data['telephone'] : '0000',
|
||||||
'fax' => $data['fax'],
|
'fax' => $data['fax'],
|
||||||
);
|
);
|
||||||
$a = $this->request('customer', array(), $customer);
|
$this->request('customer', array(), $customer);
|
||||||
|
|
||||||
$products = array();
|
$products = array();
|
||||||
foreach ($data['order_product'] as $order_product) {
|
foreach ($data['order_product'] as $order_product) {
|
||||||
@ -155,7 +155,7 @@ class OpencartApiClient {
|
|||||||
'quantity' => $order_product['quantity']
|
'quantity' => $order_product['quantity']
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$b = $this->request('cart/add', array(), array('product' => $products));
|
$this->request('cart/add', array(), array('product' => $products));
|
||||||
|
|
||||||
$payment_address = array(
|
$payment_address = array(
|
||||||
'payment_address' => $data['payment_address'],
|
'payment_address' => $data['payment_address'],
|
||||||
@ -169,13 +169,13 @@ class OpencartApiClient {
|
|||||||
'country_id' => $data['payment_country_id'],
|
'country_id' => $data['payment_country_id'],
|
||||||
'zone_id' => !empty($data['payment_zone_id']) ? $data['payment_zone_id'] : 0,
|
'zone_id' => !empty($data['payment_zone_id']) ? $data['payment_zone_id'] : 0,
|
||||||
);
|
);
|
||||||
$c = $this->request('payment/address', array(), $payment_address);
|
$this->request('payment/address', array(), $payment_address);
|
||||||
|
|
||||||
$this->request('payment/methods', array(), array());
|
$this->request('payment/methods', array(), array());
|
||||||
$payment_method = array(
|
$payment_method = array(
|
||||||
'payment_method' => $data['payment_code']
|
'payment_method' => $data['payment_code']
|
||||||
);
|
);
|
||||||
$d = $this->request('payment/method', array(), $payment_method);
|
$this->request('payment/method', array(), $payment_method);
|
||||||
|
|
||||||
$shipping_address = array(
|
$shipping_address = array(
|
||||||
'shipping_address' => $data['shipping_address'],
|
'shipping_address' => $data['shipping_address'],
|
||||||
@ -189,13 +189,13 @@ class OpencartApiClient {
|
|||||||
'country_id' => $data['shipping_country_id'],
|
'country_id' => $data['shipping_country_id'],
|
||||||
'zone_id' => !empty($data['shipping_zone_id']) ? $data['shipping_zone_id'] : 0,
|
'zone_id' => !empty($data['shipping_zone_id']) ? $data['shipping_zone_id'] : 0,
|
||||||
);
|
);
|
||||||
$e = $this->request('shipping/address', array(), $shipping_address);
|
$this->request('shipping/address', array(), $shipping_address);
|
||||||
|
|
||||||
$this->request('shipping/methods', array(), array());
|
$this->request('shipping/methods', array(), array());
|
||||||
$shipping_method = array(
|
$shipping_method = array(
|
||||||
'shipping_method' => $data['shipping_code']
|
'shipping_method' => $data['shipping_code']
|
||||||
);
|
);
|
||||||
$f = $this->request('shipping/method', array(), $shipping_method);
|
$this->request('shipping/method', array(), $shipping_method);
|
||||||
|
|
||||||
$order = array(
|
$order = array(
|
||||||
'shipping_method' => $data['shipping_code'],
|
'shipping_method' => $data['shipping_code'],
|
||||||
@ -204,9 +204,7 @@ class OpencartApiClient {
|
|||||||
'comment' => $data['comment'],
|
'comment' => $data['comment'],
|
||||||
'affiliate_id' => $data['affiliate_id'],
|
'affiliate_id' => $data['affiliate_id'],
|
||||||
);
|
);
|
||||||
$g = $this->request('order/edit', array('order_id' => $order_id), $order);
|
$this->request('order/edit', array('order_id' => $order_id), $order);
|
||||||
|
|
||||||
//var_dump($a, $b, $c, $d, $e, $f, $g);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function addOrder($data) {
|
public function addOrder($data) {
|
||||||
@ -227,7 +225,7 @@ class OpencartApiClient {
|
|||||||
'telephone' => $data['telephone'],
|
'telephone' => $data['telephone'],
|
||||||
'fax' => $data['fax'],
|
'fax' => $data['fax'],
|
||||||
);
|
);
|
||||||
$b = $this->request('customer', array(), $customer);
|
$this->request('customer', array(), $customer);
|
||||||
|
|
||||||
$products = array();
|
$products = array();
|
||||||
foreach($data['order_product'] as $product) {
|
foreach($data['order_product'] as $product) {
|
||||||
@ -237,7 +235,7 @@ class OpencartApiClient {
|
|||||||
);
|
);
|
||||||
$products[] = $product;
|
$products[] = $product;
|
||||||
}
|
}
|
||||||
$c = $this->request('cart/add', array(), array('product' => $products));
|
$this->request('cart/add', array(), array('product' => $products));
|
||||||
|
|
||||||
$payment_address = array(
|
$payment_address = array(
|
||||||
'payment_address' => $data['payment_address'],
|
'payment_address' => $data['payment_address'],
|
||||||
@ -251,7 +249,7 @@ class OpencartApiClient {
|
|||||||
'country_id' => $data['payment_country_id'],
|
'country_id' => $data['payment_country_id'],
|
||||||
'zone_id' => $data['payment_zone_id'],
|
'zone_id' => $data['payment_zone_id'],
|
||||||
);
|
);
|
||||||
$d = $this->request('payment/address', array(), $payment_address);
|
$this->request('payment/address', array(), $payment_address);
|
||||||
|
|
||||||
$shipping_address = array(
|
$shipping_address = array(
|
||||||
'shipping_address' => $data['shipping_address'],
|
'shipping_address' => $data['shipping_address'],
|
||||||
@ -265,19 +263,19 @@ class OpencartApiClient {
|
|||||||
'country_id' => $data['shipping_country_id'],
|
'country_id' => $data['shipping_country_id'],
|
||||||
'zone_id' => !empty($data['shipping_zone_id']) ? $data['shipping_zone_id'] : 0,
|
'zone_id' => !empty($data['shipping_zone_id']) ? $data['shipping_zone_id'] : 0,
|
||||||
);
|
);
|
||||||
$e = $this->request('shipping/address', array(), $shipping_address);
|
$this->request('shipping/address', array(), $shipping_address);
|
||||||
|
|
||||||
$this->request('shipping/methods', array(), array());
|
$this->request('shipping/methods', array(), array());
|
||||||
$shipping_method = array(
|
$shipping_method = array(
|
||||||
'shipping_method' => $data['shipping_code']
|
'shipping_method' => $data['shipping_code']
|
||||||
);
|
);
|
||||||
$f = $this->request('shipping/method', array(), $shipping_method);
|
$this->request('shipping/method', array(), $shipping_method);
|
||||||
|
|
||||||
$this->request('payment/methods', array(), array());
|
$this->request('payment/methods', array(), array());
|
||||||
$payment_method = array(
|
$payment_method = array(
|
||||||
'payment_method' => $data['payment_code']
|
'payment_method' => $data['payment_code']
|
||||||
);
|
);
|
||||||
$g = $this->request('payment/method', array(), $payment_method);
|
$this->request('payment/method', array(), $payment_method);
|
||||||
|
|
||||||
$order = array(
|
$order = array(
|
||||||
'shipping_method' => $data['shipping_code'],
|
'shipping_method' => $data['shipping_code'],
|
||||||
@ -286,9 +284,7 @@ class OpencartApiClient {
|
|||||||
'comment' => $data['comment'],
|
'comment' => $data['comment'],
|
||||||
'affiliate_id' => $data['affiliate_id'],
|
'affiliate_id' => $data['affiliate_id'],
|
||||||
);
|
);
|
||||||
$h = $this->request('order/add', array(), $order);
|
$this->request('order/add', array(), $order);
|
||||||
|
|
||||||
//var_dump($a, $b, $c, $d, $e, $f, $g, $h);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getInnerIpAddr() {
|
private function getInnerIpAddr() {
|
||||||
|
Loading…
Reference in New Issue
Block a user