dolibarr 19.0.3
checkVatPopup.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2006-2016 Laurent Destailleur <eldy@users.sourceforge.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
24if (! defined('NOTOKENRENEWAL')) {
25 define('NOTOKENRENEWAL', '1');
26} // Do not roll the Anti CSRF token (used if MAIN_SECURITY_CSRF_WITH_TOKEN is on)
27
28require "../../main.inc.php";
29require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
30require_once NUSOAP_PATH.'/nusoap.php';
31
32$langs->load("companies");
33
34//http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl
35$WS_DOL_URL = 'https://ec.europa.eu/taxation_customs/vies/services/checkVatService';
36//$WS_DOL_URL_WSDL=$WS_DOL_URL.'?wsdl';
37$WS_DOL_URL_WSDL = 'https://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl';
38$WS_METHOD = 'checkVat';
39
40
41$conf->dol_hide_topmenu = 1;
42$conf->dol_hide_leftmenu = 1;
43
44llxHeader('', $langs->trans("VATIntraCheckableOnEUSite"));
45
46print '<div class="vatcheckarea margintoponly marginbottomonly">';
47
48print load_fiche_titre($langs->trans("VATIntraCheckableOnEUSite"), '', 'title_setup');
49
50$vatNumber = GETPOST("vatNumber", 'alpha');
51
52if (!$vatNumber) {
53 print '<br>';
54 print '<span class="error">'.$langs->transnoentities("ErrorFieldRequired", $langs->trans("VATIntraShort")).'</span><br>';
55} else {
56 $vatNumber = preg_replace('/\^\w/', '', $vatNumber);
57 $vatNumber = str_replace(array(' ', '.'), '', $vatNumber);
58 $countryCode = substr($vatNumber, 0, 2);
59 $vatNumber = substr($vatNumber, 2);
60
61 print '<b>'.$langs->trans("Country").'</b>: '.$countryCode.'<br>';
62 print '<b>'.$langs->trans("VATIntraShort").'</b>: '.$vatNumber.'<br>';
63 print '<br>';
64
65 // Set the parameters to send to the WebService
66 $parameters = array("countryCode" => $countryCode,
67 "vatNumber" => $vatNumber);
68
69 // Set the WebService URL
70 dol_syslog("Create nusoap_client for URL=".$WS_DOL_URL." WSDL=".$WS_DOL_URL_WSDL);
71 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
72 $params = getSoapParams();
73 //ini_set('default_socket_timeout', $params['response_timeout']);
74 //$soapclient = new SoapClient($WS_DOL_URL_WSDL,$params);
75 $soapclient = new nusoap_client($WS_DOL_URL_WSDL, true, $params['proxy_host'], $params['proxy_port'], $params['proxy_login'], $params['proxy_password'], $params['connection_timeout'], $params['response_timeout']);
76 $soapclient->soap_defencoding = 'utf-8';
77 $soapclient->xml_encoding = 'utf-8';
78 $soapclient->decode_utf8 = false;
79
80 // Check for an error
81 $err = $soapclient->getError();
82 if ($err) {
83 dol_syslog("Constructor error ".$WS_DOL_URL, LOG_ERR);
84 }
85
86 // Call the WebService and store its result in $result.
87 dol_syslog("Call method ".$WS_METHOD);
88 $result = $soapclient->call($WS_METHOD, $parameters);
89
90 //var_dump($parameters);
91 //var_dump($soapclient);
92 //print "x".is_array($result)."i";
93 //var_dump($result);
94 //print $soapclient->request.'<br>';
95 //print $soapclient->response.'<br>';
96
97 $messagetoshow = '';
98 print '<b>'.$langs->trans("Response").'</b>:<br>';
99
100 // Service indisponible
101 if (!is_array($result) || preg_match('/SERVICE_UNAVAILABLE/i', $result['faultstring'])) {
102 print '<span class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</span><br>';
103 $messagetoshow = $soapclient->response;
104 } elseif (preg_match('/TIMEOUT/i', $result['faultstring'])) {
105 print '<span class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</span><br>';
106 $messagetoshow = $soapclient->response;
107 } elseif (preg_match('/SERVER_BUSY/i', $result['faultstring'])) {
108 print '<span class="error">'.$langs->trans("ErrorServiceUnavailableTryLater").'</span><br>';
109 $messagetoshow = $soapclient->response;
110 } elseif ($result['faultstring']) {
111 print '<span class="error">'.$langs->trans("Error").'</span><br>';
112 $messagetoshow = $result['faultstring'];
113 } elseif (preg_match('/INVALID_INPUT/i', $result['faultstring'])
114 || ($result['requestDate'] && !$result['valid'])) {
115 // Syntaxe ko
116 if ($result['requestDate']) {
117 print $langs->trans("Date").': '.$result['requestDate'].'<br>';
118 }
119 print $langs->trans("VATIntraSyntaxIsValid").': <span class="error">'.$langs->trans("No").'</span> (Might be a non europeen VAT)<br>';
120 print $langs->trans("ValueIsValid").': <span class="error">'.$langs->trans("No").'</span> (Might be a non europeen VAT)<br>';
121 //$messagetoshow=$soapclient->response;
122 } else {
123 // Syntaxe ok
124 if ($result['requestDate']) {
125 print $langs->trans("Date").': '.$result['requestDate'].'<br>';
126 }
127 print $langs->trans("VATIntraSyntaxIsValid").': <span class="ok">'.$langs->trans("Yes").'</span><br>';
128 print $langs->trans("ValueIsValid").': ';
129 if (preg_match('/MS_UNAVAILABLE/i', $result['faultstring'])) {
130 print '<span class="error">'.$langs->trans("ErrorVATCheckMS_UNAVAILABLE", $countryCode).'</span><br>';
131 } else {
132 if (!empty($result['valid']) && ($result['valid'] == 1 || $result['valid'] == 'true')) {
133 print '<span class="ok">'.$langs->trans("Yes").'</span>';
134 print '<br>';
135 print $langs->trans("Name").': '.$result['name'].'<br>';
136 print $langs->trans("Address").': '.$result['address'].'<br>';
137 } else {
138 print '<span class="error">'.$langs->trans("No").'</span>';
139 print '<br>'."\n";
140 }
141 }
142 }
143
144 // Show log data into page
145 // print "\n";
146 // print '<!-- ';
147 // var_dump($result);
148 // print '-->';
149}
150
151print '<br>';
152print $langs->trans("VATIntraManualCheck", $langs->trans("VATIntraCheckURL"), $langs->transnoentitiesnoconv("VATIntraCheckURL")).'<br>';
153print '<br>';
154print '<div class="center"><input type="button" class="button" value="'.$langs->trans("CloseWindow").'" onclick="window.close()"></div>';
155
156if ($messagetoshow) {
157 print '<br><br>';
158 print "\n".'Error returned:<br>';
159 print nl2br($messagetoshow);
160}
161
162print '</div>';
163
164// End of page
165llxFooter();
166$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
getSoapParams()
Return array to use for SoapClient constructor.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.