dolibarr  13.0.2
ligneprelevement.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2010-2011 Juanjo Menent <jmenent@2byte.es>
5  * Copyright (C) 2015 Marcos GarcĂ­a <marcosgdf@gmail.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  */
21 
33 {
37  public $id;
38 
42  public $db;
43 
44  public $statuts = array();
45 
46 
52  public function __construct($db)
53  {
54  global $conf, $langs;
55 
56  $this->db = $db;
57 
58  // List of language codes for status
59 
60  $langs->load("withdrawals");
61  $this->statuts[0] = $langs->trans("StatusWaiting");
62  $this->statuts[2] = $langs->trans("StatusPaid");
63  $this->statuts[3] = $langs->trans("StatusRefused");
64  }
65 
72  public function fetch($rowid)
73  {
74  global $conf;
75 
76  $error = 0;
77 
78  $sql = "SELECT pl.rowid, pl.amount, p.ref, p.rowid as bon_rowid";
79  $sql .= ", pl.statut, pl.fk_soc";
80  $sql .= " FROM ".MAIN_DB_PREFIX."prelevement_lignes as pl";
81  $sql .= ", ".MAIN_DB_PREFIX."prelevement_bons as p";
82  $sql .= " WHERE pl.rowid=".$rowid;
83  $sql .= " AND p.rowid = pl.fk_prelevement_bons";
84  $sql .= " AND p.entity = ".$conf->entity;
85 
86  $resql = $this->db->query($sql);
87  if ($resql)
88  {
89  if ($this->db->num_rows($resql))
90  {
91  $obj = $this->db->fetch_object($resql);
92 
93  $this->id = $obj->rowid;
94  $this->amount = $obj->amount;
95  $this->socid = $obj->fk_soc;
96  $this->statut = $obj->statut;
97  $this->bon_ref = $obj->ref;
98  $this->bon_rowid = $obj->bon_rowid;
99  } else {
100  $error++;
101  dol_syslog("LignePrelevement::Fetch rowid=$rowid numrows=0");
102  }
103 
104  $this->db->free($resql);
105  } else {
106  $error++;
107  dol_syslog("LignePrelevement::Fetch rowid=$rowid");
108  dol_syslog($this->db->error());
109  }
110 
111  return $error;
112  }
113 
120  public function getLibStatut($mode = 0)
121  {
122  return $this->LibStatut($this->statut, $mode);
123  }
124 
125  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
133  public function LibStatut($status, $mode = 0)
134  {
135  // phpcs:enable
136  global $langs;
137 
138  if ($mode == 0)
139  {
140  return $langs->trans($this->statuts[$status]);
141  } elseif ($mode == 1)
142  {
143  if ($status == 0) return img_picto($langs->trans($this->statuts[$status]), 'statut1').' '.$langs->trans($this->statuts[$status]); // Waiting
144  elseif ($status == 2) return img_picto($langs->trans($this->statuts[$status]), 'statut6').' '.$langs->trans($this->statuts[$status]); // Credited
145  elseif ($status == 3) return img_picto($langs->trans($this->statuts[$status]), 'statut8').' '.$langs->trans($this->statuts[$status]); // Refused
146  } elseif ($mode == 2)
147  {
148  if ($status == 0) return img_picto($langs->trans($this->statuts[$status]), 'statut1');
149  elseif ($status == 2) return img_picto($langs->trans($this->statuts[$status]), 'statut6');
150  elseif ($status == 3) return img_picto($langs->trans($this->statuts[$status]), 'statut8');
151  } elseif ($mode == 3)
152  {
153  if ($status == 0) return $langs->trans($this->statuts[$status]).' '.img_picto($langs->trans($this->statuts[$status]), 'statut1');
154  elseif ($status == 2) return $langs->trans($this->statuts[$status]).' '.img_picto($langs->trans($this->statuts[$status]), 'statut6');
155  elseif ($status == 3) return $langs->trans($this->statuts[$status]).' '.img_picto($langs->trans($this->statuts[$status]), 'statut8');
156  }
157  }
158 
167  public static function replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
168  {
169  $tables = array(
170  'prelevement_lignes'
171  );
172 
173  return CommonObject::commonReplaceThirdparty($db, $origin_id, $dest_id, $tables);
174  }
175 }
if(!empty($arrayfields['u.datec']['checked'])) print_liste_field_titre("DateCreationShort"u if(!empty($arrayfields['u.tms']['checked'])) print_liste_field_titre("DateModificationShort"u if(!empty($arrayfields['u.statut']['checked'])) print_liste_field_titre("Status"u statut
Definition: list.php:632
LibStatut($status, $mode=0)
Return status label for a status.
static replaceThirdparty(DoliDB $db, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
Class to manage Dolibarr database access.
fetch($rowid)
Recupere l&#39;objet prelevement.
$conf db
API class for accounts.
Definition: inc.php:54
getLibStatut($mode=0)
Return status label of object.
__construct($db)
Constructor.
static commonReplaceThirdparty(DoliDB $db, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
img_picto($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt= '', $morecss= '', $marginleftonlyshort=2)
Show picto whatever it&#39;s its name (generic function)
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
Definition: index.php:1232
Class to manage withdrawals.