-
-
Save rolldone/54104ff4a8ea47fd73743884c0a84d59 to your computer and use it in GitHub Desktop.
Create combinations,products and update stock with Prestashop WEBSERVICE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function add_combination($data){ | |
global $webService, $config; | |
try{ | |
$xml = $webService->get(array('url' => $config["ps_shop"].'api/combinations?schema=blank')); | |
$combination = $xml->children()->children(); | |
$combination->associations->product_option_values->product_option_values[0]->id = $data["option_id"]; | |
$combination->reference = $data["code"]; | |
$combination->id_product = $data["id_product"]; | |
$combination->price = $data["price"]; //Prix TTC | |
$combination->show_price = 1; | |
$combination->quantity = $data["quantity"]; //Prix TTC | |
$combination->minimal_quantity = 1; | |
//$product_option_value->id = 1; | |
$opt = array('resource' => 'combinations'); | |
$opt['postXml'] = $xml->asXML(); | |
sleep(1); | |
$xml = $webService->add($opt); | |
$combination = $xml->combination; | |
} catch (PrestaShopWebserviceException $e){ | |
return; | |
} | |
//insert stock | |
return $combination; | |
} | |
function make_product_options($data){ | |
global $webService, $config; | |
try{ | |
$xml = $webService->get(array('url' => $config["ps_shop"].'api/product_option_values?schema=blank')); | |
$product_option_value = $xml->children()->children(); | |
//$product_option_value->id = 1; | |
$product_option_value->id_attribute_group = $data["id_attribute_group"]; | |
$product_option_value->name->language[0][0] = $data["name"]; | |
$product_option_value->name->language[0][0]['id'] = 1; | |
$opt = array('resource' => 'product_option_values'); | |
$opt['postXml'] = $xml->asXML(); | |
sleep(1); | |
$xml = $webService->add($opt); | |
$product_option_value = $xml->product_option_value; | |
} catch (PrestaShopWebserviceException $e){ | |
return 0; | |
} | |
//insert stock | |
return (int) $product_option_value->id; | |
} | |
function make_father_product($data){ | |
global $webService, $config; | |
try{ | |
$xml = $webService->get(array('url' => $config["ps_shop"].'api/products?schema=blank')); | |
$product = $xml->children()->children(); | |
$product->price = $data["price"]; //Prix TTC | |
$product->wholesale_price =$data["price"]; //Prix d'achat | |
$product->active = '1'; | |
$product->on_sale = 1; //on ne veux pas de bandeau promo | |
$product->show_price = 1; | |
$product->available_for_order = 1; | |
$product->name->language[0][0] = $data["name"]; | |
$product->name->language[0][0]['id'] = 1; | |
$product->description->language[0][0] = $data["description"]; | |
$product->description->language[0][0]['id'] = 1; | |
$product->description_short->language[0][0] = $data["description"]; | |
$product->description_short->language[0][0]['id'] = 1; | |
$product->reference = $data["code"]; | |
$product->associations->categories->addChild('category')->addChild('id', $data["category_id"]); | |
$product->id_category_default = $data["category_id"]; | |
//$product->associations->stock_availables->stock_available->quantity = 1222; | |
$opt = array('resource' => 'products'); | |
$opt['postXml'] = $xml->asXML(); | |
sleep(1); | |
$xml = $webService->add($opt); | |
$product = $xml->product; | |
} catch (PrestaShopWebserviceException $e){ | |
return; | |
} | |
return (int) $product->id; | |
} | |
function make_product($data){ | |
global $webService, $config; | |
try{ | |
$xml = $webService->get(array('url' => $config["ps_shop"].'api/products?schema=blank')); | |
$product = $xml->children()->children(); | |
$product->price = $data["price"]; //Prix TTC | |
$product->wholesale_price =$data["price"]; //Prix d'achat | |
$product->active = '1'; | |
$product->on_sale = 1; //on ne veux pas de bandeau promo | |
$product->show_price = 1; | |
$product->available_for_order = 1; | |
$product->name->language[0][0] = $data["name"]; | |
$product->name->language[0][0]['id'] = 1; | |
$product->description->language[0][0] = $data["description"]; | |
$product->description->language[0][0]['id'] = 1; | |
$product->description_short->language[0][0] = $data["description"]; | |
$product->description_short->language[0][0]['id'] = 1; | |
$product->reference = $data["code"]; | |
$product->associations->categories->addChild('category')->addChild('id', $data["category_id"]); | |
$product->id_category_default = $data["category_id"]; | |
//$product->associations->stock_availables->stock_available->quantity = 1222; | |
$opt = array('resource' => 'products'); | |
$opt['postXml'] = $xml->asXML(); | |
sleep(1); | |
$xml = $webService->add($opt); | |
$product = $xml->product; | |
} catch (PrestaShopWebserviceException $e){ | |
return; | |
} | |
//insert stock | |
set_product_quantity($data["quantity"], $product->id, $product->associations->stock_availables->stock_available->id, $product->associations->stock_availables->stock_available->id_product_attribute); | |
return $product->id; | |
} | |
/** | |
* Actualizar stock usando WS | |
*/ | |
function set_product_quantity($quantity, $ProductId, $StokId, $AttributeId){ | |
global $webService, $config; | |
try { | |
$opt = array(); | |
$opt['resource'] = "stock_availables"; | |
$opt['filter'] = array('id_product' => $ProductId, "id_product_attribute" => $AttributeId); | |
$xml = $webService->get($opt); | |
$resources = $xml->children()->children()[0]; | |
$StokId = (int) $resources['id'][0]; | |
$xml = $webService->get(array('url' => $config["ps_shop"].'api/stock_availables?schema=blank')); | |
$resources = $xml -> children() -> children(); | |
$resources->id = $StokId; | |
$resources->id_product = $ProductId; | |
$resources->quantity = $quantity; | |
$resources->id_shop = 1; | |
$resources->out_of_stock =0; | |
$resources->depends_on_stock = 0; | |
$resources->id_product_attribute =$AttributeId; | |
$opt = array('resource' => 'stock_availables'); | |
$opt['putXml'] = $xml->asXML(); | |
$opt['id'] = $StokId; | |
$xml = $webService->edit($opt); | |
} catch (PrestaShopWebserviceException $ex) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment