Jump to content

Aggiungere prodotti tramite programmazione


Recommended Posts

Buonasera a tutti,

 

Sto tentando di implementare l'inserimento dei prodotti in Prestashop 1.5.6.2. tramite un modulo creato apposta per quest'uso.

 

Di fatto, richiamo questa funzione:

private function _saveContent()
{
$message = ''; 
$defaultLanguage = new Language((int)(Configuration::get('PS_LANG_DEFAULT')));  
$object = new Product();
$object->price = 22;
$object->id_tax_rules_group = 0;
$object->name = 'prova';
$object->id_manufacturer = 0;
$object->id_supplier = 0;
$object->quantity = 1;
$object->minimal_quantity = 1;
$object->additional_shipping_cost = 0; 
$object->wholesale_price = 0;
$object->ecotax = 0;
$object->width = 0;
$object->height = 0;
$object->depth = 0;
$object->weight = 0;
$object->out_of_stock = 0;
$object->active = 0;
$object->id_category_default = 22;
$object->category=array(22);
$object->available_for_order = 0;
$object->show_price = 1; 
$object->on_sale = 0;
$object->online_only = 1;
$object->meta_keywords = 'test'; 
$object->description_short = array((int)(Configuration::get('PS_LANG_DEFAULT')) => 'DESC'); 
$object->link_rewrite = array((int)(Configuration::get('PS_LANG_DEFAULT')) => 'LINK'); 
if($object->save())
$object->add();

$message = $this->displayConfirmation($this->l('I prodotti sono stati aggiornati correttamente'));
return $message;
}

Tuttavia appena eseguo il codice ottengo i seguenti errori:

[PrestaShopException]

Property Product->link_rewrite is empty
at line 878 in file classes/ObjectModel.php

872. 
873. 				$message = $this->validateField($field, $value, $id_lang);
874. 				if ($message !== true)
875. 				{
876. 					if ($die)
877. 						throw new PrestaShopException($message);
878. 					return $error_return ? $message : false;
879. 				}
880. 			}
881. 		}
882. 
ObjectModelCore->validateFieldsLang - [line 744 - classes/Product.php] - [2 Arguments]
ProductCore->validateFieldsLang - [line 296 - classes/ObjectModel.php] - [0 Argument]
ObjectModelCore->getFieldsLang - [line 480 - classes/ObjectModel.php] - [0 Argument]
ObjectModelCore->add - [line 499 - classes/Product.php] - [2 Arguments]
ProductCore->add - [line 166 - modules/skeleton/skeleton.php] - [0 Argument]
Skeleton->_saveContent - [line 95 - modules/skeleton/skeleton.php] - [0 Argument]
Skeleton->getContent - [line 685 - controllers/admin/AdminModulesController.php] - [0 Argument]
AdminModulesControllerCore->postProcessCallback - [line 811 - controllers/admin/AdminModulesController.php] - [0 Argument]
AdminModulesControllerCore->postProcess - [line 158 - classes/controller/Controller.php] - [0 Argument]
ControllerCore->run - [line 348 - classes/Dispatcher.php] - [0 Argument]
DispatcherCore->dispatch - [line 53 - admin9746/index.php] - [0 Argument]

Dalle varie ricerche fatte in internet sembra un problema dovuto alla gestione del multilingua di prestashop. Ho provato ad eliminare le altre lingue oltre all'italiano, ma non è cambiato nulla. 

 

Oltre all'errore, c'è da notare che il prodotto viene inserito nel database e lo visualizzo anche nella lista prodotti del backoffice, ma non risulta attivabile poichè mancano il link_rewrite e anche il nome del prodotto non viene assegnato.

 

Qualcuno ha qualche dritta da darmi?

 

Grazie mille!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...