123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <?php
- /* Copyright (C) 2012-2013 Charles-Fr BENKE <charles.fr@benke.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- * or see http://www.gnu.org/
- */
- /**
- * \file htdocs/core/class/html.formcontract.class.php
- * \ingroup core
- * \brief File of class with all html predefined components
- */
- /**
- * Class to manage generation of HTML components for contract module
- */
- class FormContract
- {
- var $db;
- var $error;
- /**
- * Constructor
- *
- * @param DoliDB $db Database handler
- */
- public function __construct($db)
- {
- $this->db = $db;
- }
- /**
- * Show a combo list with contracts qualified for a third party
- *
- * @param int $socid Id third party (-1=all, 0=only contracts not linked to a third party, id=contracts not linked or linked to third party id)
- * @param int $selected Id contract preselected
- * @param string $htmlname Nom de la zone html
- * @param int $maxlength Maximum length of label
- * @param int $showempty Show empty line
- * @return int Nbr of project if OK, <0 if KO
- */
- function select_contract($socid=-1, $selected='', $htmlname='contrattid', $maxlength=16, $showempty=1)
- {
- global $db,$user,$conf,$langs;
- $hideunselectables = false;
- if (! empty($conf->global->PROJECT_HIDE_UNSELECTABLES)) $hideunselectables = true;
- // Search all contacts
- $sql = 'SELECT c.rowid, c.ref, c.fk_soc, c.statut';
- $sql.= ' FROM '.MAIN_DB_PREFIX .'contrat as c';
- $sql.= " WHERE c.entity = ".$conf->entity;
- //if ($contratListId) $sql.= " AND c.rowid IN (".$contratListId.")";
- if ($socid == 0) $sql.= " AND (c.fk_soc = 0 OR c.fk_soc IS NULL)";
- if ($socid > 0) $sql.= " AND (c.fk_soc=".$socid." OR c.fk_soc IS NULL)";
- $sql.= " ORDER BY c.ref ";
- dol_syslog(get_class($this)."::select_contract", LOG_DEBUG);
- $resql=$db->query($sql);
- if ($resql)
- {
- print '<select class="flat" name="'.$htmlname.'">';
- if ($showempty) print '<option value="0"> </option>';
- $num = $db->num_rows($resql);
- $i = 0;
- if ($num)
- {
- while ($i < $num)
- {
- $obj = $db->fetch_object($resql);
- // If we ask to filter on a company and user has no permission to see all companies and project is linked to another company, we hide project.
- if ($socid > 0 && (empty($obj->fk_soc) || $obj->fk_soc == $socid) && ! $user->rights->societe->lire)
- {
- // Do nothing
- }
- else
- {
- $labeltoshow=dol_trunc($obj->ref,18);
- //if ($obj->public) $labeltoshow.=' ('.$langs->trans("SharedProject").')';
- //else $labeltoshow.=' ('.$langs->trans("Private").')';
- if (!empty($selected) && $selected == $obj->rowid && $obj->statut > 0)
- {
- print '<option value="'.$obj->rowid.'" selected>'.$labeltoshow.'</option>';
- }
- else
- {
- $disabled=0;
- if (! $obj->statut > 0)
- {
- $disabled=1;
- $labeltoshow.=' ('.$langs->trans("Draft").')';
- }
- if ($socid > 0 && (! empty($obj->fk_soc) && $obj->fk_soc != $socid))
- {
- $disabled=1;
- $labeltoshow.=' - '.$langs->trans("LinkedToAnotherCompany");
- }
- if ($hideunselectables && $disabled)
- {
- $resultat='';
- }
- else
- {
- $resultat='<option value="'.$obj->rowid.'"';
- if ($disabled) $resultat.=' disabled';
- //if ($obj->public) $labeltoshow.=' ('.$langs->trans("Public").')';
- //else $labeltoshow.=' ('.$langs->trans("Private").')';
- $resultat.='>'.$labeltoshow;
- $resultat.='</option>';
- }
- print $resultat;
- }
- }
- $i++;
- }
- }
- print '</select>';
- $db->free($resql);
-
- if (!empty($conf->use_javascript_ajax))
- {
- // Make select dynamic
- include_once DOL_DOCUMENT_ROOT . '/core/lib/ajax.lib.php';
- print ajax_combobox($htmlname);
- }
-
- return $num;
- }
- else
- {
- dol_print_error($db);
- return -1;
- }
- }
-
- /**
- * Show a form to select a contract
- *
- * @param int $page Page
- * @param int $socid Id third party (-1=all, 0=only contracts not linked to a third party, id=contracts not linked or linked to third party id)
- * @param int $selected Id contract preselected
- * @param string $htmlname Nom de la zone html
- * @param int $maxlength Maximum length of label
- * @param int $showempty Show empty line
- * @return int Nbr of project if OK, <0 if KO
- */
- function formSelectContract($page, $socid=-1, $selected='', $htmlname='contrattid', $maxlength=16, $showempty=1)
- {
- global $langs;
-
- print "\n";
- print '<form method="post" action="'.$page.'">';
- print '<input type="hidden" name="action" value="setcontract">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- $this->select_contract($socid, $selected, $htmlname, $maxlength, $showempty);
- print '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
- print '</form>';
- }
-
- }
|