bobdrinktech Merchant Od Netherlands Użytkownik od kwi 2015 bobdrinktech 7 maj 2015 11:43 The VATin add-on places the retrieved address in the wrong field. Now it places it all in ""address1"" however it should be splitting it up in mailcode (7553HT) and city (Hengelo OV) The Companyname is placed correct. Is it possible to automaticly delete non-valid VATnumbers.
litecart Main Crew Od Sweden Użytkownik od lut 2013 litecart 8 maj 2015 00:11 The VIES service just returns a textarea e.g. STREETNAME IN CAPITALS LINE 2 WITH ASSUMABLY POSTCODE AND CITY Since addresses are country specific we can only rely on line 1. The logic is trying to split the rows by line breaks: $address1 = preg_replace('/^(.)(?:\r|\n)./', '$1', $result->address); Try the following to output some debug what's inside your specific result: Find return array( 'tax_id' => $vatin, 'company' => $company, 'address1' => trim($address1), ); Replace with return array( 'tax_id' => $vatin, 'company' => $company, 'address1' => trim($address1), 'alert' => print_r($result, true), );
bobdrinktech Merchant Od Netherlands Użytkownik od kwi 2015 bobdrinktech 9 maj 2015 13:46 To me its all Chinees. With all respect for the Chinees people. I have absolutely no Idea where and what to do with these PHP lines. Maybe, maybe If you can give me a step by step guidance I might be able to fix something. I do some translations with Notepad++ thats all.