我想通过代码在Prestashop上添加x个客户,但要有额外的字段

时间:2019-05-24 10:16:56

标签: php xml web-services prestashop customer

我正在尝试向客户添加代码,但是PrestaShop给我一个错误。 我正在使用PHP和XML

$XMLRQString = '<?xml version="1.0" encoding="utf-8"?>'.
    '<x:Winmax4GetEntitiesRQ xmlns:x="urn:Winmax4GetEntitiesRQ">'.
                    '</x:Winmax4GetEntitiesRQ >';
                    $Params=array(
                    'CompanyCode'=>'',
                    'UserLogin'=>'',
                    'UserPassword'=>'',
                    'Winmax4GetEntitiesRQXML'=> $XMLRQString
                    );
                    $return = $client->GetEntities($Params);
                    $XMLRSString = new SimpleXMLElement($return->GetEntitiesResult);

foreach ($XMLRSString->Entities->Entity as $entity)
{   
    $default_lang= Configuration::get('PS_LANG_DEFAULT');

    $customer=new Customer();

    $customer->email= $entity->Email;

    $customer->lastname= $entity->EntityType;

    $customer->firstname= [$default_lang => $entity->Name];

    $customer->contribuinte= $entity->TaxPayerID;

    $customer->passwd= $entity->TaxPayerID;

    $customer->active = 1;

    $customer->add();
}
  

错误:(1/1)ContextErrorException警告:preg_match()预期   参数2为字符串,给定数组

     

在Validate.php第172行中

     

在ValidateCore :: isCustomerName(array(object(SimpleXMLElement)))中   ObjectModel.php第1149行

     

在ObjectModelCore-> validateField('firstname',   ObjectModel.php第981行中的array(object(SimpleXMLElement)))

     

在ObjectModel.php第284行的ObjectModelCore-> validateFields()中

     

在ObjectModel.php第551行的ObjectModelCore-> getFields()中

     

在ObjectModelCore-> Customer.php第264行中的add(true,true)

     

在create_clients.php第66行的CustomerCore-> add()中

1 个答案:

答案 0 :(得分:2)

从SimpleXML存储值时,如果仅通过元素的标记名引用元素本身-这将是SimpleXMLElement的实例。当您需要元素的实际内容时,最简单的方法是将其转换为字符串...

$customer->firstname= (string)$entity->Name;