32require
'../../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/treeview.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
46$langs->loadLangs(array(
"main",
"categories",
"takepos",
"printing"));
50$action =
GETPOST(
'action',
'aZ09');
51$printer1 =
GETPOST(
'printer1',
'alpha');
52$printer2 =
GETPOST(
'printer2',
'alpha');
53$printer3 =
GETPOST(
'printer3',
'alpha');
57if (is_numeric($type)) {
58 $type = array_search($type, $categstatic->MAP_ID);
61if (!$user->hasRight(
'categorie',
'lire')) {
70if ($action ==
"SavePrinter1") {
71 $printedcategories =
";";
72 if (is_array($printer1)) {
73 foreach ($printer1 as $cat) {
74 $printedcategories = $printedcategories.$cat.
";";
80if ($action ==
"SavePrinter2") {
81 $printedcategories =
";";
82 if (is_array($printer2)) {
83 foreach ($printer2 as $cat) {
84 $printedcategories = $printedcategories.$cat.
";";
90if ($action ==
"SavePrinter3") {
91 $printedcategories =
";";
92 if (is_array($printer3)) {
93 foreach ($printer3 as $cat) {
94 $printedcategories = $printedcategories.$cat.
";";
106$form =
new Form($db);
108$title = $langs->trans(
"Categories");
109$title .=
' ('.$langs->trans(empty(Categorie::$MAP_TYPE_TITLE_AREA[$type]) ? ucfirst($type) :
Categorie::$MAP_TYPE_TITLE_AREA[$type]).
')';
112 '/includes/jquery/plugins/jquerytreeview/jquery.treeview.js',
113 '/includes/jquery/plugins/jquerytreeview/lib/jquery.cookie.js',
115$arrayofcss = array(
'/includes/jquery/plugins/jquerytreeview/jquery.treeview.css');
117llxHeader(
'', $title,
'',
'', 0, 0, $arrayofjs, $arrayofcss,
'',
'mod-takepos page-admin_orderprinters');
124print
'<div class="fichecenter"><div class="fichethirdleft">';
126print
'</div><div class="fichetwothirdright">';
131print
'<div class="fichecenter"><br>';
135$cate_arbo = $categstatic->get_full_arbo($type);
138$fulltree = $cate_arbo;
142$data[] = array(
'rowid' => 0,
'fk_menu' => -1,
'title' =>
"racine",
'mainmenu' =>
'',
'leftmenu' =>
'',
'fk_mainmenu' =>
'',
'fk_leftmenu' =>
'');
143foreach ($fulltree as $key => $val) {
144 $categstatic->id = $val[
'id'];
145 $categstatic->ref = $val[
'label'];
146 $categstatic->color = $val[
'color'];
147 $categstatic->type = $type;
149 $li = $categstatic->getNomUrl(1,
'', 60);
154 'rowid' => $val[
'rowid'],
155 'fk_menu' => empty($val[
'fk_menu']) ? 0 : $val[
'fk_menu'],
156 'fk_parent' => $val[
'fk_parent'],
157 'label' => $val[
'label']
162print
'<table class="liste nohover" width="100%">';
163print
'<tr class="liste_titre"><td>'.$langs->trans(
"Printer").
' 1</td><td></td><td class="right">';
165$nbofentries = (count($data) - 1);
166print
'<form action="orderprinters.php">';
167print
'<input type="hidden" name="token" value="'.newToken().
'">';
168if ($nbofentries > 0) {
169 print
'<tr class="pair"><td colspan="3">';
170 print
'<input type="hidden" name="action" value="SavePrinter1">';
171 foreach ($data as $row) {
172 if (strpos(
getDolGlobalString(
'TAKEPOS_PRINTED_CATEGORIES_1'),
';'.$row[
"rowid"].
';') !==
false) {
173 $checked =
'checked';
177 if ($row[
"fk_menu"] >= 0) {
178 print
'<input type="checkbox" name="printer1[]" value="'.$row[
"rowid"].
'" '.$checked.
'>'.$row[
"label"].
'<br>';
183 print
'<tr class="pair">';
184 print
'<td colspan="3"><table class="nobordernopadding"><tr class="nobordernopadding"><td>'.img_picto_common(
'',
'treemenu/branchbottom.gif').
'</td>';
185 print
'<td valign="middle">';
186 print $langs->trans(
"NoCategoryYet");
188 print
'<td> </td>';
189 print
'</table></td>';
193print
'<input type="submit" class="button button-save" value="'.$langs->trans(
"Save").
'"></form><br><br>';
196print
'<table class="liste nohover" width="100%">';
197print
'<tr class="liste_titre"><td>'.$langs->trans(
"Printer").
' 2</td><td></td><td class="right">';
199$nbofentries = (count($data) - 1);
200print
'<form action="orderprinters.php">';
201print
'<input type="hidden" name="token" value="'.newToken().
'">';
202if ($nbofentries > 0) {
203 print
'<tr class="pair"><td colspan="3">';
204 print
'<input type="hidden" name="action" value="SavePrinter2">';
205 foreach ($data as $row) {
206 if (strpos(
getDolGlobalString(
'TAKEPOS_PRINTED_CATEGORIES_2'),
';'.$row[
"rowid"].
';') !==
false) {
207 $checked =
'checked';
211 if ($row[
"fk_menu"] >= 0) {
212 print
'<input type="checkbox" name="printer2[]" value="'.$row[
"rowid"].
'" '.$checked.
'>'.$row[
"label"].
'<br>';
217 print
'<tr class="pair">';
218 print
'<td colspan="3"><table class="nobordernopadding"><tr class="nobordernopadding"><td>'.img_picto_common(
'',
'treemenu/branchbottom.gif').
'</td>';
219 print
'<td valign="middle">';
220 print $langs->trans(
"NoCategoryYet");
222 print
'<td> </td>';
223 print
'</table></td>';
227print
'<input type="submit" class="button button-save" value="'.$langs->trans(
"Save").
'"></form>';
230print
'<table class="liste nohover" width="100%">';
231print
'<tr class="liste_titre"><td>'.$langs->trans(
"Printer").
' 3</td><td></td><td class="right">';
233$nbofentries = (count($data) - 1);
234print
'<form action="orderprinters.php">';
235print
'<input type="hidden" name="token" value="'.newToken().
'">';
236if ($nbofentries > 0) {
237 print
'<tr class="pair"><td colspan="3">';
238 print
'<input type="hidden" name="action" value="SavePrinter3">';
239 foreach ($data as $row) {
240 if (strpos(
getDolGlobalString(
'TAKEPOS_PRINTED_CATEGORIES_3'),
';'.$row[
"rowid"].
';') !==
false) {
241 $checked =
'checked';
245 if ($row[
"fk_menu"] >= 0) {
246 print
'<input type="checkbox" name="printer3[]" value="'.$row[
"rowid"].
'" '.$checked.
'>'.$row[
"label"].
'<br>';
251 print
'<tr class="pair">';
252 print
'<td colspan="3"><table class="nobordernopadding"><tr class="nobordernopadding"><td>'.img_picto_common(
'',
'treemenu/branchbottom.gif').
'</td>';
253 print
'<td valign="middle">';
254 print $langs->trans(
"NoCategoryYet");
256 print
'<td> </td>';
257 print
'</table></td>';
262print
'<input type="submit" class="button button-save" value="'.$langs->trans(
"Save").
'"></form>';
$id
Support class for third parties, contacts, members, users or resources.
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage categories.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_htmlcleanlastbr($stringtodecode)
This function remove all ending and br at end.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.