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