dolibarr  17.0.4
company.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
3  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2007-2019 Laurent Destailleur <eldy@users.sourceforge.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
25 if (!defined('NOTOKENRENEWAL')) {
26  define('NOTOKENRENEWAL', 1); // Disables token renewal
27 }
28 if (!defined('NOREQUIREMENU')) {
29  define('NOREQUIREMENU', '1');
30 }
31 if (!defined('NOREQUIREHTML')) {
32  define('NOREQUIREHTML', '1');
33 }
34 if (!defined('NOREQUIREAJAX')) {
35  define('NOREQUIREAJAX', '1');
36 }
37 if (!defined('NOREQUIRESOC')) {
38  define('NOREQUIRESOC', '1');
39 }
40 
41 // Load Dolibarr environment
42 require '../../main.inc.php';
43 require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
44 
45 $htmlname = GETPOST('htmlname', 'aZ09');
46 $filter = GETPOST('filter', 'alpha');
47 $outjson = (GETPOST('outjson', 'int') ? GETPOST('outjson', 'int') : 0);
48 $action = GETPOST('action', 'aZ09');
49 $id = GETPOST('id', 'int');
50 $excludeids = GETPOST('excludeids', 'intcomma');
51 $showtype = GETPOSTINT('showtype');
52 $showcode = GETPOSTINT('showcode');
53 
54 $object = new Societe($db);
55 if ($id > 0) {
56  $object->fetch($id);
57 }
58 
59 // Security check
60 if ($user->socid > 0) {
61  unset($action);
62  $socid = $user->socid;
63  $object->id = $socid;
64 }
65 restrictedArea($user, 'societe', $object->id, '&societe');
66 
67 
68 /*
69  * View
70  */
71 
72 //print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
73 //print_r($_GET);
74 
75 if (!empty($action) && $action == 'fetch' && !empty($id)) {
76  require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
77 
78  $outjson = array();
79 
80  if ($object->id > 0) {
81  $outref = $object->ref;
82  $outname = $object->name;
83  $outdesc = '';
84  $outtype = $object->type;
85 
86  $outjson = array('ref' => $outref, 'name' => $outname, 'desc' => $outdesc, 'type' => $outtype);
87  }
88 
89  echo json_encode($outjson);
90 } else {
91  require_once DOL_DOCUMENT_ROOT.'/core/class/html.form.class.php';
92 
93  $langs->load("companies");
94 
95  top_httphead();
96 
97  if (empty($htmlname)) {
98  return;
99  }
100 
101  // Filter on the company to search can be:
102  // Into an array with key $htmlname123 (we take first one found). Which page use this ?
103  // Into a var with name $htmlname can be 'prodid', 'productid', ...
104  $match = preg_grep('/('.preg_quote($htmlname, '/').'[0-9]+)/', array_keys($_GET));
105  sort($match);
106 
107  $id = (!empty($match[0]) ? $match[0] : ''); // Take first key found into GET array with matching $htmlname123
108 
109  // When used from jQuery, the search term is added as GET param "term".
110  $searchkey = (($id && GETPOST($id, 'alpha')) ? GETPOST($id, 'alpha') : (($htmlname && GETPOST($htmlname, 'alpha')) ?GETPOST($htmlname, 'alpha') : ''));
111  if (!$searchkey) {
112  return;
113  }
114 
115  if (empty($form) || !is_object($form)) {
116  $form = new Form($db);
117  }
118 
119  if (!empty($excludeids)) {
120  $excludeids = explode(',', $excludeids);
121  } else {
122  $excludeids = array();
123  }
124 
125  $arrayresult = $form->select_thirdparty_list(0, $htmlname, $filter, 1, $showtype, 0, null, $searchkey, $outjson, 0, 'minwidth100', '', false, $excludeids, $showcode);
126 
127  $db->close();
128 
129  if ($outjson) {
130  print json_encode($arrayresult);
131  }
132 }
Class to manage generation of HTML components Only common components must be here.
Class to manage third parties objects (customers, suppliers, prospects...)
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
GETPOSTINT($paramname, $method=0)
Return value of a param into GET or POST supervariable.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1440
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.