HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: //proc/self/cwd/guiaweb/htdocs/core/class/html.formpropal.class.php
<?php
/* Copyright (C) 2012 Laurent Destailleur   <eldy@users.sourceforge.net>
 * Copyright (C) 2022 Josep LluĂ­s Amador	<joseplluis@lliuretic.cat>
 *
 * 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 <https://www.gnu.org/licenses/>.
 */

/**
 *	\file       htdocs/core/class/html.formpropal.class.php
 *  \ingroup    core
 *	\brief      File of class with all html predefined components
 */


/**
 *	Class to manage generation of HTML components for proposal management
 */
class FormPropal
{
	/**
	 * @var DoliDB Database handler.
	 */
	public $db;

	/**
	 * @var string Error code (or message)
	 */
	public $error = '';


	/**
	 * Constructor
	 *
	 * @param		DoliDB		$db      Database handler
	 */
	public function __construct($db)
	{
		$this->db = $db;
	}

	/**
	 *    Return combo list of different statuses of a proposal
	 *    Values are id of table c_propalst
	 *
	 *    @param	string	$selected   	Preselected value
	 *    @param	int		$short			Use short labels
	 *    @param	int		$excludedraft	0=All status, 1=Exclude draft status
	 *    @param	int 	$showempty		1=Add empty line
	 *    @param    string  $mode           'customer', 'supplier'
	 *    @param    string  $htmlname       Name of select field
	 *    @param	string	$morecss		More css
	 *    @return	void
	 */
	public function selectProposalStatus($selected = '', $short = 0, $excludedraft = 0, $showempty = 1, $mode = 'customer', $htmlname = 'propal_statut', $morecss = '')
	{
		global $langs;

		$prefix = '';
		$listofstatus = array();
		if ($mode == 'supplier') {
			$prefix = 'SupplierProposalStatus';

			$langs->load("supplier_proposal");
			$listofstatus = array(
				0=>array('id'=>0, 'code'=>'PR_DRAFT'),
				1=>array('id'=>1, 'code'=>'PR_OPEN'),
				2=>array('id'=>2, 'code'=>'PR_SIGNED'),
				3=>array('id'=>3, 'code'=>'PR_NOTSIGNED'),
				4=>array('id'=>4, 'code'=>'PR_CLOSED')
			);
		} else {
			$prefix = "PropalStatus";

			$sql = "SELECT id, code, label, active FROM ".$this->db->prefix()."c_propalst";
			$sql .= " WHERE active = 1";
			dol_syslog(get_class($this)."::selectProposalStatus", LOG_DEBUG);
			$resql = $this->db->query($sql);
			if ($resql) {
				$num = $this->db->num_rows($resql);
				$i = 0;
				if ($num) {
					while ($i < $num) {
						$obj = $this->db->fetch_object($resql);
						$listofstatus[$obj->id] = array('id'=>$obj->id, 'code'=>$obj->code, 'label'=>$obj->label);
						$i++;
					}
				}
			} else {
				dol_print_error($this->db);
			}
		}

		print '<select id="'.$htmlname.'" name="'.$htmlname.'" class="flat'.($morecss ? ' '.$morecss : '').'">';
		if ($showempty) {
			print '<option value="-1">&nbsp;</option>';
		}

		$i = 0;
		foreach ($listofstatus as $key => $obj) {
			if ($excludedraft) {
				if ($obj['code'] == 'Draft' || $obj['code'] == 'PR_DRAFT') {
					$i++;
					continue;
				}
			}
			if ($selected != '' && $selected == $obj['id']) {
				print '<option value="'.$obj['id'].'" selected>';
			} else {
				print '<option value="'.$obj['id'].'">';
			}
			$key = $obj['code'];
			if ($langs->trans($prefix.$key.($short ? 'Short' : '')) != $prefix.$key.($short ? 'Short' : '')) {
				print $langs->trans($prefix.$key.($short ? 'Short' : ''));
			} else {
				$conv_to_new_code = array('PR_DRAFT'=>'Draft', 'PR_OPEN'=>'Validated', 'PR_CLOSED'=>'Closed', 'PR_SIGNED'=>'Signed', 'PR_NOTSIGNED'=>'NotSigned', 'PR_FAC'=>'Billed');
				if (!empty($conv_to_new_code[$obj['code']])) {
					$key = $conv_to_new_code[$obj['code']];
				}

				print ($langs->trans($prefix.$key.($short ? 'Short' : '')) != $prefix.$key.($short ? 'Short' : '')) ? $langs->trans($prefix.$key.($short ? 'Short' : '')) : ($obj['label'] ? $obj['label'] : $obj['code']);
			}
			print '</option>';
			$i++;
		}
		// Option for Signed+Billed
		if ($mode == 'customer') {
			if ($selected != '' && $selected == "2,4") {
				print '<option value="2,4" selected>';
			} else {
				print '<option value="2,4">';
			}
			print($langs->trans($prefix.'Signed'.($short ? 'Short' : '')).' '.$langs->trans("or").' '.$langs->trans($prefix.'Billed'.($short ? 'Short' : '')));
			print '</option>';
		}
		print '</select>';

		print ajax_combobox($htmlname, array(), 0, 0, 'resolve', ($showempty < 0 ? (string) $showempty : '-1'), $morecss);
	}
}