25 if (!defined(
'NOTOKENRENEWAL')) {
26 define(
'NOTOKENRENEWAL', 1);
28 if (!defined(
'NOREQUIREMENU')) {
29 define(
'NOREQUIREMENU',
'1');
31 if (!defined(
'NOREQUIREHTML')) {
32 define(
'NOREQUIREHTML',
'1');
34 if (!defined(
'NOREQUIREAJAX')) {
35 define(
'NOREQUIREAJAX',
'1');
37 if (!defined(
'NOREQUIRESOC')) {
38 define(
'NOREQUIRESOC',
'1');
42 require
'../../main.inc.php';
43 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
60 dol_syslog(
'ziptown call with MAIN_USE_ZIPTOWN_DICTIONNARY='.(empty($conf->global->MAIN_USE_ZIPTOWN_DICTIONNARY) ?
'' : $conf->global->MAIN_USE_ZIPTOWN_DICTIONNARY));
65 $return_arr = array();
72 if (!empty($conf->global->MAIN_USE_ZIPTOWN_DICTIONNARY)) {
73 $sql =
"SELECT z.rowid, z.zip, z.town, z.fk_county, z.fk_pays as fk_country";
74 $sql .=
", c.rowid as fk_country, c.code as country_code, c.label as country";
75 $sql .=
", d.rowid as fk_county, d.code_departement as county_code, d.nom as county";
76 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_ziptown as z";
77 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"c_departements as d ON z.fk_county = d.rowid";
78 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"c_regions as r ON d.fk_region = r.code_region,";
79 $sql .=
" ".MAIN_DB_PREFIX.
"c_country as c";
80 $sql .=
" WHERE z.fk_pays = c.rowid";
81 $sql .=
" AND z.active = 1 AND c.active = 1";
83 $sql .=
" AND z.zip LIKE '".$db->escape($zipcode).
"%'";
86 $sql .=
" AND z.town LIKE '%".$db->escape($town).
"%'";
88 $sql .=
" ORDER BY z.zip, z.town";
89 $sql .= $db->plimit(100);
92 $sql =
"SELECT DISTINCT s.zip, s.town, s.fk_departement as fk_county, s.fk_pays as fk_country";
93 $sql .=
", c.code as country_code, c.label as country";
94 $sql .=
", d.code_departement as county_code , d.nom as county";
95 $sql .=
" FROM ".MAIN_DB_PREFIX.
'societe as s';
96 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"c_departements as d ON s.fk_departement = d.rowid";
97 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
'c_country as c ON s.fk_pays = c.rowid';
100 $sql .=
" s.zip LIKE '".$db->escape($zipcode).
"%'";
103 $sql .=
" s.town LIKE '%".$db->escape($town).
"%'";
105 $sql .=
" ORDER BY s.fk_pays, s.zip, s.town";
106 $sql .= $db->plimit(100);
110 $resql = $db->query($sql);
113 while ($row = $db->fetch_array(
$resql)) {
114 $country = $row[
'fk_country'] ? ($langs->transnoentitiesnoconv(
'Country'.$row[
'country_code']) !=
'Country'.$row[
'country_code'] ? $langs->transnoentitiesnoconv(
'Country'.$row[
'country_code']) : $row[
'country']) :
'';
115 $county = $row[
'fk_county'] ? ($langs->transnoentitiesnoconv($row[
'county_code']) != $row[
'county_code'] ? $langs->transnoentitiesnoconv($row[
'county_code']) : ($row[
'county'] !=
'-' ? $row[
'county'] :
'')) :
'';
117 $row_array[
'label'] = $row[
'zip'].
' '.$row[
'town'];
118 $row_array[
'label'] .= ($county || $country) ?
' (' :
'';
119 $row_array[
'label'] .= $county;
120 $row_array[
'label'] .= ($county && $country ?
' - ' :
'');
121 $row_array[
'label'] .= $country;
122 $row_array[
'label'] .= ($county || $country) ?
')' :
'';
124 $row_array[
'value'] = $row[
'zip'];
125 $row_array[
'town'] = $row[
'town'];
128 $row_array[
'value'] = $row[
'town'];
129 $row_array[
'zipcode'] = $row[
'zip'];
131 $row_array[
'selectcountry_id'] = $row[
'fk_country'];
132 $row_array[
'state_id'] = $row[
'fk_county'];
135 $row_array[
'states'] = $formcompany->select_state(
'', $row[
'fk_country'],
'');
137 array_push($return_arr, $row_array);
141 echo json_encode($return_arr);
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
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.
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.