Bukimedia / PrestaSharp

CSharp .Net client library for the PrestaShop API via web service
GNU General Public License v3.0
154 stars 152 forks source link

Can't add products Prestashop 1.7.4.3 #369

Open albertg5 opened 4 years ago

albertg5 commented 4 years ago

Additional information Prestasharp: 1.0.5 PrestaShop version: 1.7.4.3 PHP version: PHP 7.2

I added products with the same code to Prestashop 1.7.2.4 without problem, but when I change url and account and try to do the same with another Prestashop v1.7.4.3 I get an error like System.InvalidOperationException: 'El objeto que acepta valores Null debe tener un valor.'

` ProductFactory prodFactory = new ProductFactory(BaseUrl, Account, Password);

Bukimedia.PrestaSharp.Entities.AuxEntities.language idioma;

product p = new product();

idioma = new Bukimedia.PrestaSharp.Entities.AuxEntities.language();

idioma.id = 1; idioma.Value = "Test product name"

p.name.Add(idioma);

prodFactory.Add(p); `

366