dolibarr/htdocs/core/class/commonobjectline.class.php

98 lines
2.7 KiB
PHP
Raw Normal View History

2008-02-24 18:56:20 +01:00
<?php
/* Copyright (C) 2006-2008 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2012 Cedric Salvador <csalvador@gpcsolutions.fr>
2008-02-24 18:56:20 +01:00
*
* 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
2008-02-24 18:56:20 +01:00
* (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
2011-08-01 01:45:11 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2008-02-24 18:56:20 +01:00
*/
/**
2012-08-05 15:00:24 +02:00
* \file htdocs/core/class/commonobjectline.class.php
* \ingroup core
* \brief File of the superclass of classes of lines of business objects (invoice, contract, PROPAL, commands, etc. ...)
2011-06-19 16:35:16 +02:00
*/
2008-02-24 18:56:20 +01:00
/**
2012-08-05 15:00:24 +02:00
* Parent class for class inheritance lines of business objects
* This class is useless for the moment so no inherit are done on it
2011-06-19 16:35:16 +02:00
*/
abstract class CommonObjectLine extends CommonObject
2008-02-24 18:56:20 +01:00
{
2015-03-23 01:39:12 +01:00
/**
* Id of the line
* @var int
*/
public $id;
/**
* Id of the line
* @var int
2015-04-21 15:49:58 +02:00
* @deprecated Try to use id property as possible (even if field into database is still rowid)
* @see id
2015-03-23 01:39:12 +01:00
*/
public $rowid;
/**
2015-04-21 15:49:58 +02:00
* Product/service unit code ('km', 'm', 'p', ...)
* @var string
*/
public $fk_unit;
2015-04-21 15:49:58 +02:00
2008-02-24 18:56:20 +01:00
/**
2017-10-22 03:47:36 +02:00
* Returns the translation key from units dictionary.
* A langs->trans() must be called on result to get translated value.
*
* @param string $type Label type (long or short)
* @return string|int <0 if ko, label if ok
*/
2015-04-21 15:49:58 +02:00
public function getLabelOfUnit($type='long')
{
global $langs;
if (!$this->fk_unit) {
return '';
}
$langs->load('products');
$label_type = 'label';
if ($type == 'short')
{
$label_type = 'short_label';
}
$sql = 'select '.$label_type.' from '.MAIN_DB_PREFIX.'c_units where rowid='.$this->fk_unit;
$resql = $this->db->query($sql);
if($resql && $this->db->num_rows($resql) > 0)
{
$res = $this->db->fetch_array($resql);
$label = $res[$label_type];
$this->db->free($resql);
return $label;
}
else
{
$this->error=$this->db->error().' sql='.$sql;
2015-04-21 15:49:58 +02:00
dol_syslog(get_class($this)."::getLabelOfUnit Error ".$this->error, LOG_ERR);
return -1;
}
}
// Currently we need function at end of file CommonObject for all object lines. Should find a way to avoid duplicate code.
// For the moment we use the extends on CommonObject until PHP min is 5.4 so use Traits.
2008-02-24 18:56:20 +01:00
}