| @@ -41,211 +41,211 @@ discard block | ||
| 41 | 41 | */ | 
| 42 | 42 | class Bbctypes extends CommonObject | 
| 43 | 43 |  { | 
| 44 | - /** | |
| 45 | - * @var string Id to identify managed objects | |
| 46 | - */ | |
| 47 | - public $element = 'bbctypes'; | |
| 48 | - /** | |
| 49 | - * @var string Name of table without prefix where object is stored | |
| 50 | - */ | |
| 51 | - public $table_element = 'bbc_types'; | |
| 52 | - | |
| 53 | - /** | |
| 54 | - * @var BbctypesLine[] Lines | |
| 55 | - */ | |
| 56 | - public $lines = array(); | |
| 57 | - | |
| 58 | - /** | |
| 59 | - */ | |
| 44 | + /** | |
| 45 | + * @var string Id to identify managed objects | |
| 46 | + */ | |
| 47 | + public $element = 'bbctypes'; | |
| 48 | + /** | |
| 49 | + * @var string Name of table without prefix where object is stored | |
| 50 | + */ | |
| 51 | + public $table_element = 'bbc_types'; | |
| 52 | + | |
| 53 | + /** | |
| 54 | + * @var BbctypesLine[] Lines | |
| 55 | + */ | |
| 56 | + public $lines = array(); | |
| 57 | + | |
| 58 | + /** | |
| 59 | + */ | |
| 60 | 60 | |
| 61 | - public $idType; | |
| 62 | - public $numero; | |
| 63 | - public $nom; | |
| 64 | - public $active; | |
| 65 | - | |
| 66 | - /** | |
| 67 | - * Constructor | |
| 68 | - * | |
| 69 | - * @param DoliDb $db Database handler | |
| 70 | - */ | |
| 71 | - public function __construct(DoliDB $db) | |
| 72 | -	{ | |
| 73 | - $this->db = $db; | |
| 74 | - } | |
| 75 | - | |
| 76 | - /** | |
| 77 | - * Create object into database | |
| 78 | - * | |
| 79 | - * @param User $user User that creates | |
| 80 | - * @param bool $notrigger false=launch triggers after, true=disable triggers | |
| 81 | - * | |
| 82 | - * @return int <0 if KO, Id of created object if OK | |
| 83 | - */ | |
| 84 | - public function create(User $user, $notrigger = false) | |
| 85 | -	{ | |
| 86 | - dol_syslog(__METHOD__, LOG_DEBUG); | |
| 87 | - | |
| 88 | - $error = 0; | |
| 89 | - | |
| 90 | - // Clean parameters | |
| 61 | + public $idType; | |
| 62 | + public $numero; | |
| 63 | + public $nom; | |
| 64 | + public $active; | |
| 65 | + | |
| 66 | + /** | |
| 67 | + * Constructor | |
| 68 | + * | |
| 69 | + * @param DoliDb $db Database handler | |
| 70 | + */ | |
| 71 | + public function __construct(DoliDB $db) | |
| 72 | +    { | |
| 73 | + $this->db = $db; | |
| 74 | + } | |
| 75 | + | |
| 76 | + /** | |
| 77 | + * Create object into database | |
| 78 | + * | |
| 79 | + * @param User $user User that creates | |
| 80 | + * @param bool $notrigger false=launch triggers after, true=disable triggers | |
| 81 | + * | |
| 82 | + * @return int <0 if KO, Id of created object if OK | |
| 83 | + */ | |
| 84 | + public function create(User $user, $notrigger = false) | |
| 85 | +    { | |
| 86 | + dol_syslog(__METHOD__, LOG_DEBUG); | |
| 87 | + | |
| 88 | + $error = 0; | |
| 89 | + | |
| 90 | + // Clean parameters | |
| 91 | 91 | |
| 92 | -		if (isset($this->idType)) { | |
| 93 | - $this->idType = trim($this->idType); | |
| 94 | - } | |
| 95 | -		if (isset($this->numero)) { | |
| 96 | - $this->numero = trim($this->numero); | |
| 97 | - } | |
| 98 | -		if (isset($this->nom)) { | |
| 99 | - $this->nom = trim($this->nom); | |
| 100 | - } | |
| 101 | -		if (isset($this->active)) { | |
| 102 | - $this->active = trim($this->active); | |
| 103 | - } | |
| 104 | - | |
| 105 | - | |
| 106 | - | |
| 107 | - // Check parameters | |
| 108 | - // Put here code to add control on parameters values | |
| 109 | - | |
| 110 | - // Insert request | |
| 111 | -		$sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; | |
| 92 | +        if (isset($this->idType)) { | |
| 93 | + $this->idType = trim($this->idType); | |
| 94 | + } | |
| 95 | +        if (isset($this->numero)) { | |
| 96 | + $this->numero = trim($this->numero); | |
| 97 | + } | |
| 98 | +        if (isset($this->nom)) { | |
| 99 | + $this->nom = trim($this->nom); | |
| 100 | + } | |
| 101 | +        if (isset($this->active)) { | |
| 102 | + $this->active = trim($this->active); | |
| 103 | + } | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + // Check parameters | |
| 108 | + // Put here code to add control on parameters values | |
| 109 | + | |
| 110 | + // Insert request | |
| 111 | +        $sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; | |
| 112 | 112 | |
| 113 | - $sql.= 'numero,'; | |
| 114 | - $sql.= 'nom'; | |
| 115 | - $sql.= 'active'; | |
| 113 | + $sql.= 'numero,'; | |
| 114 | + $sql.= 'nom'; | |
| 115 | + $sql.= 'active'; | |
| 116 | 116 | |
| 117 | 117 | |
| 118 | -		$sql .= ') VALUES ('; | |
| 118 | +        $sql .= ') VALUES ('; | |
| 119 | 119 | |
| 120 | - $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; | |
| 121 | - $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; | |
| 122 | - $sql .= ' '.(! isset($this->active)?'NULL':$this->active); | |
| 120 | + $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; | |
| 121 | + $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; | |
| 122 | + $sql .= ' '.(! isset($this->active)?'NULL':$this->active); | |
| 123 | 123 | |
| 124 | 124 | |
| 125 | - $sql .= ')'; | |
| 126 | - | |
| 127 | - $this->db->begin(); | |
| 128 | - | |
| 129 | - $resql = $this->db->query($sql); | |
| 130 | -		if (!$resql) { | |
| 131 | - $error ++; | |
| 132 | - $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 133 | -			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 134 | - } | |
| 135 | - | |
| 136 | -		if (!$error) { | |
| 137 | - $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element); | |
| 138 | - | |
| 139 | -			if (!$notrigger) { | |
| 140 | - // Uncomment this and change MYOBJECT to your own tag if you | |
| 141 | - // want this action to call a trigger. | |
| 142 | - | |
| 143 | - //// Call triggers | |
| 144 | -				//$result=$this->call_trigger('MYOBJECT_CREATE',$user); | |
| 145 | - //if ($result < 0) $error++; | |
| 146 | - //// End call triggers | |
| 147 | - } | |
| 148 | - } | |
| 149 | - | |
| 150 | - // Commit or rollback | |
| 151 | -		if ($error) { | |
| 152 | - $this->db->rollback(); | |
| 153 | - | |
| 154 | - return - 1 * $error; | |
| 155 | -		} else { | |
| 156 | - $this->db->commit(); | |
| 157 | - | |
| 158 | - return $this->id; | |
| 159 | - } | |
| 160 | - } | |
| 161 | - | |
| 162 | - /** | |
| 163 | - * Load object in memory from the database | |
| 164 | - * | |
| 165 | - * @param int $id Id object | |
| 166 | - * @param string $ref Ref | |
| 167 | - * | |
| 168 | - * @return int <0 if KO, 0 if not found, >0 if OK | |
| 169 | - */ | |
| 170 | - public function fetch($id, $ref = null) | |
| 171 | -	{ | |
| 172 | - dol_syslog(__METHOD__, LOG_DEBUG); | |
| 173 | - | |
| 174 | - $sql = 'SELECT'; | |
| 175 | - $sql .= ' t.idType,'; | |
| 125 | + $sql .= ')'; | |
| 126 | + | |
| 127 | + $this->db->begin(); | |
| 128 | + | |
| 129 | + $resql = $this->db->query($sql); | |
| 130 | +        if (!$resql) { | |
| 131 | + $error ++; | |
| 132 | + $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 133 | +            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 134 | + } | |
| 135 | + | |
| 136 | +        if (!$error) { | |
| 137 | + $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element); | |
| 138 | + | |
| 139 | +            if (!$notrigger) { | |
| 140 | + // Uncomment this and change MYOBJECT to your own tag if you | |
| 141 | + // want this action to call a trigger. | |
| 142 | + | |
| 143 | + //// Call triggers | |
| 144 | +                //$result=$this->call_trigger('MYOBJECT_CREATE',$user); | |
| 145 | + //if ($result < 0) $error++; | |
| 146 | + //// End call triggers | |
| 147 | + } | |
| 148 | + } | |
| 149 | + | |
| 150 | + // Commit or rollback | |
| 151 | +        if ($error) { | |
| 152 | + $this->db->rollback(); | |
| 153 | + | |
| 154 | + return - 1 * $error; | |
| 155 | +        } else { | |
| 156 | + $this->db->commit(); | |
| 157 | + | |
| 158 | + return $this->id; | |
| 159 | + } | |
| 160 | + } | |
| 161 | + | |
| 162 | + /** | |
| 163 | + * Load object in memory from the database | |
| 164 | + * | |
| 165 | + * @param int $id Id object | |
| 166 | + * @param string $ref Ref | |
| 167 | + * | |
| 168 | + * @return int <0 if KO, 0 if not found, >0 if OK | |
| 169 | + */ | |
| 170 | + public function fetch($id, $ref = null) | |
| 171 | +    { | |
| 172 | + dol_syslog(__METHOD__, LOG_DEBUG); | |
| 173 | + | |
| 174 | + $sql = 'SELECT'; | |
| 175 | + $sql .= ' t.idType,'; | |
| 176 | 176 | |
| 177 | - $sql .= " t.numero,"; | |
| 178 | - $sql .= " t.nom,"; | |
| 179 | - $sql .= " t.active"; | |
| 177 | + $sql .= " t.numero,"; | |
| 178 | + $sql .= " t.nom,"; | |
| 179 | + $sql .= " t.active"; | |
| 180 | 180 | |
| 181 | 181 | |
| 182 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; | |
| 183 | -		if (null !== $ref) { | |
| 184 | - $sql .= ' WHERE t.ref = ' . '\'' . $ref . '\''; | |
| 185 | -		} else { | |
| 186 | - $sql .= ' WHERE t.idType = ' . $id; | |
| 187 | - } | |
| 188 | - | |
| 189 | - $resql = $this->db->query($sql); | |
| 190 | -		if ($resql) { | |
| 191 | - $numrows = $this->db->num_rows($resql); | |
| 192 | -			if ($numrows) { | |
| 193 | - $obj = $this->db->fetch_object($resql); | |
| 194 | - | |
| 195 | - $this->id = $obj->idType; | |
| 182 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; | |
| 183 | +        if (null !== $ref) { | |
| 184 | + $sql .= ' WHERE t.ref = ' . '\'' . $ref . '\''; | |
| 185 | +        } else { | |
| 186 | + $sql .= ' WHERE t.idType = ' . $id; | |
| 187 | + } | |
| 188 | + | |
| 189 | + $resql = $this->db->query($sql); | |
| 190 | +        if ($resql) { | |
| 191 | + $numrows = $this->db->num_rows($resql); | |
| 192 | +            if ($numrows) { | |
| 193 | + $obj = $this->db->fetch_object($resql); | |
| 194 | + | |
| 195 | + $this->id = $obj->idType; | |
| 196 | 196 | |
| 197 | - $this->idType = $obj->idType; | |
| 198 | - $this->numero = $obj->numero; | |
| 199 | - $this->nom = $obj->nom; | |
| 200 | - $this->active = $obj->active; | |
| 197 | + $this->idType = $obj->idType; | |
| 198 | + $this->numero = $obj->numero; | |
| 199 | + $this->nom = $obj->nom; | |
| 200 | + $this->active = $obj->active; | |
| 201 | 201 | |
| 202 | 202 | |
| 203 | - } | |
| 204 | - $this->db->free($resql); | |
| 205 | - | |
| 206 | -			if ($numrows) { | |
| 207 | - return 1; | |
| 208 | -			} else { | |
| 209 | - return 0; | |
| 210 | - } | |
| 211 | -		} else { | |
| 212 | - $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 213 | -			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 214 | - | |
| 215 | - return - 1; | |
| 216 | - } | |
| 217 | - } | |
| 218 | - | |
| 219 | - /** | |
| 220 | - * Load object in memory from the database | |
| 221 | - * | |
| 222 | - * @param string $sortorder Sort Order | |
| 223 | - * @param string $sortfield Sort field | |
| 224 | - * @param int $limit offset limit | |
| 225 | - * @param int $offset offset limit | |
| 226 | - * @param array $filter filter array | |
| 227 | - * @param string $filtermode filter mode (AND or OR) | |
| 228 | - * | |
| 229 | - * @return int <0 if KO, >0 if OK | |
| 230 | - */ | |
| 231 | - public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') | |
| 232 | -	{ | |
| 233 | - dol_syslog(__METHOD__, LOG_DEBUG); | |
| 234 | - | |
| 235 | - $sql = 'SELECT'; | |
| 236 | - $sql .= " t.idType,"; | |
| 237 | - $sql .= " t.numero,"; | |
| 238 | - $sql .= " t.nom,"; | |
| 239 | - $sql .= " t.active"; | |
| 203 | + } | |
| 204 | + $this->db->free($resql); | |
| 205 | + | |
| 206 | +            if ($numrows) { | |
| 207 | + return 1; | |
| 208 | +            } else { | |
| 209 | + return 0; | |
| 210 | + } | |
| 211 | +        } else { | |
| 212 | + $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 213 | +            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 214 | + | |
| 215 | + return - 1; | |
| 216 | + } | |
| 217 | + } | |
| 218 | + | |
| 219 | + /** | |
| 220 | + * Load object in memory from the database | |
| 221 | + * | |
| 222 | + * @param string $sortorder Sort Order | |
| 223 | + * @param string $sortfield Sort field | |
| 224 | + * @param int $limit offset limit | |
| 225 | + * @param int $offset offset limit | |
| 226 | + * @param array $filter filter array | |
| 227 | + * @param string $filtermode filter mode (AND or OR) | |
| 228 | + * | |
| 229 | + * @return int <0 if KO, >0 if OK | |
| 230 | + */ | |
| 231 | + public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') | |
| 232 | +    { | |
| 233 | + dol_syslog(__METHOD__, LOG_DEBUG); | |
| 234 | + | |
| 235 | + $sql = 'SELECT'; | |
| 236 | + $sql .= " t.idType,"; | |
| 237 | + $sql .= " t.numero,"; | |
| 238 | + $sql .= " t.nom,"; | |
| 239 | + $sql .= " t.active"; | |
| 240 | 240 | |
| 241 | 241 | |
| 242 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; | |
| 242 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; | |
| 243 | 243 | |
| 244 | - // Manage filter | |
| 245 | - $sqlwhere = array(); | |
| 244 | + // Manage filter | |
| 245 | + $sqlwhere = array(); | |
| 246 | 246 | |
| 247 | -		foreach ($filter as $key => $value) { | |
| 248 | -		    if(is_string($value)){ | |
| 247 | +        foreach ($filter as $key => $value) { | |
| 248 | +            if(is_string($value)){ | |
| 249 | 249 | $sqlwhere [] = $key . ' LIKE \'%' . $this->db->escape($value) . '%\''; | 
| 250 | 250 | continue; | 
| 251 | 251 | } | 
| @@ -256,232 +256,232 @@ discard block | ||
| 256 | 256 | } | 
| 257 | 257 | } | 
| 258 | 258 | |
| 259 | -		if (count($sqlwhere) > 0) { | |
| 260 | -			$sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); | |
| 261 | - } | |
| 259 | +        if (count($sqlwhere) > 0) { | |
| 260 | +            $sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); | |
| 261 | + } | |
| 262 | 262 | |
| 263 | -		if (!empty($sortfield)) { | |
| 264 | - $sql .= $this->db->order($sortfield,$sortorder); | |
| 265 | - } | |
| 266 | -		if (!empty($limit)) { | |
| 267 | - $sql .= ' ' . $this->db->plimit($limit + 1, $offset); | |
| 268 | - } | |
| 269 | - $this->lines = array(); | |
| 270 | - | |
| 271 | - $resql = $this->db->query($sql); | |
| 272 | -		if ($resql) { | |
| 273 | - $num = $this->db->num_rows($resql); | |
| 274 | - | |
| 275 | -			while ($obj = $this->db->fetch_object($resql)) { | |
| 276 | - $line = new BbctypesLine(); | |
| 277 | - | |
| 278 | - $line->id = $obj->idType; | |
| 279 | - $line->idType = $obj->idType; | |
| 280 | - $line->numero = $obj->numero; | |
| 281 | - $line->nom = $obj->nom; | |
| 282 | - $line->active = $obj->active; | |
| 283 | - | |
| 284 | - $this->lines[$line->id] = $line; | |
| 285 | - } | |
| 286 | - $this->db->free($resql); | |
| 287 | - | |
| 288 | - return $num; | |
| 289 | -		} else { | |
| 290 | - $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 291 | -			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 292 | - | |
| 293 | - return - 1; | |
| 294 | - } | |
| 295 | - } | |
| 296 | - | |
| 297 | - /** | |
| 298 | - * Update object into database | |
| 299 | - * | |
| 300 | - * @param User $user User that modifies | |
| 301 | - * @param bool $notrigger false=launch triggers after, true=disable triggers | |
| 302 | - * | |
| 303 | - * @return int <0 if KO, >0 if OK | |
| 304 | - */ | |
| 305 | - public function update(User $user, $notrigger = false) | |
| 306 | -	{ | |
| 307 | - $error = 0; | |
| 308 | - | |
| 309 | - dol_syslog(__METHOD__, LOG_DEBUG); | |
| 310 | - | |
| 311 | - // Clean parameters | |
| 263 | +        if (!empty($sortfield)) { | |
| 264 | + $sql .= $this->db->order($sortfield,$sortorder); | |
| 265 | + } | |
| 266 | +        if (!empty($limit)) { | |
| 267 | + $sql .= ' ' . $this->db->plimit($limit + 1, $offset); | |
| 268 | + } | |
| 269 | + $this->lines = array(); | |
| 270 | + | |
| 271 | + $resql = $this->db->query($sql); | |
| 272 | +        if ($resql) { | |
| 273 | + $num = $this->db->num_rows($resql); | |
| 274 | + | |
| 275 | +            while ($obj = $this->db->fetch_object($resql)) { | |
| 276 | + $line = new BbctypesLine(); | |
| 277 | + | |
| 278 | + $line->id = $obj->idType; | |
| 279 | + $line->idType = $obj->idType; | |
| 280 | + $line->numero = $obj->numero; | |
| 281 | + $line->nom = $obj->nom; | |
| 282 | + $line->active = $obj->active; | |
| 283 | + | |
| 284 | + $this->lines[$line->id] = $line; | |
| 285 | + } | |
| 286 | + $this->db->free($resql); | |
| 287 | + | |
| 288 | + return $num; | |
| 289 | +        } else { | |
| 290 | + $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 291 | +            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 292 | + | |
| 293 | + return - 1; | |
| 294 | + } | |
| 295 | + } | |
| 296 | + | |
| 297 | + /** | |
| 298 | + * Update object into database | |
| 299 | + * | |
| 300 | + * @param User $user User that modifies | |
| 301 | + * @param bool $notrigger false=launch triggers after, true=disable triggers | |
| 302 | + * | |
| 303 | + * @return int <0 if KO, >0 if OK | |
| 304 | + */ | |
| 305 | + public function update(User $user, $notrigger = false) | |
| 306 | +    { | |
| 307 | + $error = 0; | |
| 308 | + | |
| 309 | + dol_syslog(__METHOD__, LOG_DEBUG); | |
| 310 | + | |
| 311 | + // Clean parameters | |
| 312 | 312 | |
| 313 | -		if (isset($this->idType)) { | |
| 314 | - $this->idType = trim($this->idType); | |
| 315 | - } | |
| 316 | -		if (isset($this->numero)) { | |
| 317 | - $this->numero = trim($this->numero); | |
| 318 | - } | |
| 319 | -		if (isset($this->nom)) { | |
| 320 | - $this->nom = trim($this->nom); | |
| 321 | - } | |
| 322 | -		if (isset($this->active)) { | |
| 323 | - $this->active = trim($this->active); | |
| 324 | - } | |
| 313 | +        if (isset($this->idType)) { | |
| 314 | + $this->idType = trim($this->idType); | |
| 315 | + } | |
| 316 | +        if (isset($this->numero)) { | |
| 317 | + $this->numero = trim($this->numero); | |
| 318 | + } | |
| 319 | +        if (isset($this->nom)) { | |
| 320 | + $this->nom = trim($this->nom); | |
| 321 | + } | |
| 322 | +        if (isset($this->active)) { | |
| 323 | + $this->active = trim($this->active); | |
| 324 | + } | |
| 325 | 325 | |
| 326 | 326 | |
| 327 | 327 | |
| 328 | - // Check parameters | |
| 329 | - // Put here code to add a control on parameters values | |
| 328 | + // Check parameters | |
| 329 | + // Put here code to add a control on parameters values | |
| 330 | 330 | |
| 331 | - // Update request | |
| 332 | - $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; | |
| 331 | + // Update request | |
| 332 | + $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; | |
| 333 | 333 | |
| 334 | - $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; | |
| 335 | - $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; | |
| 336 | - $sql .= ' active = '.(isset($this->active)?$this->active:"null"); | |
| 334 | + $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; | |
| 335 | + $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; | |
| 336 | + $sql .= ' active = '.(isset($this->active)?$this->active:"null"); | |
| 337 | 337 | |
| 338 | 338 | |
| 339 | - $sql .= ' WHERE idType=' . $this->id; | |
| 340 | - | |
| 341 | - $this->db->begin(); | |
| 342 | - | |
| 343 | - $resql = $this->db->query($sql); | |
| 344 | -		if (!$resql) { | |
| 345 | - $error ++; | |
| 346 | - $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 347 | -			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 348 | - } | |
| 349 | - | |
| 350 | -		if (!$error && !$notrigger) { | |
| 351 | - // Uncomment this and change MYOBJECT to your own tag if you | |
| 352 | - // want this action calls a trigger. | |
| 353 | - | |
| 354 | - //// Call triggers | |
| 355 | -			//$result=$this->call_trigger('MYOBJECT_MODIFY',$user); | |
| 356 | -			//if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} | |
| 357 | - //// End call triggers | |
| 358 | - } | |
| 359 | - | |
| 360 | - // Commit or rollback | |
| 361 | -		if ($error) { | |
| 362 | - $this->db->rollback(); | |
| 363 | - | |
| 364 | - return - 1 * $error; | |
| 365 | -		} else { | |
| 366 | - $this->db->commit(); | |
| 367 | - | |
| 368 | - return 1; | |
| 369 | - } | |
| 370 | - } | |
| 371 | - | |
| 372 | - /** | |
| 373 | - * Delete object in database | |
| 374 | - * | |
| 375 | - * @param User $user User that deletes | |
| 376 | - * @param bool $notrigger false=launch triggers after, true=disable triggers | |
| 377 | - * | |
| 378 | - * @return int <0 if KO, >0 if OK | |
| 379 | - */ | |
| 380 | - public function delete(User $user, $notrigger = false) | |
| 381 | -	{ | |
| 382 | - dol_syslog(__METHOD__, LOG_DEBUG); | |
| 383 | - | |
| 384 | - $error = 0; | |
| 385 | - | |
| 386 | - $this->db->begin(); | |
| 387 | - | |
| 388 | -		if (!$error) { | |
| 389 | -			if (!$notrigger) { | |
| 390 | - // Uncomment this and change MYOBJECT to your own tag if you | |
| 391 | - // want this action calls a trigger. | |
| 392 | - | |
| 393 | - //// Call triggers | |
| 394 | -				//$result=$this->call_trigger('MYOBJECT_DELETE',$user); | |
| 395 | -				//if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} | |
| 396 | - //// End call triggers | |
| 397 | - } | |
| 398 | - } | |
| 399 | - | |
| 400 | -		if (!$error) { | |
| 401 | - $sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element; | |
| 402 | - $sql .= ' WHERE idType=' . $this->id; | |
| 403 | - | |
| 404 | - $resql = $this->db->query($sql); | |
| 405 | -			if (!$resql) { | |
| 406 | - $error ++; | |
| 407 | - $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 408 | -				dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 409 | - } | |
| 410 | - } | |
| 411 | - | |
| 412 | - // Commit or rollback | |
| 413 | -		if ($error) { | |
| 414 | - $this->db->rollback(); | |
| 415 | - | |
| 416 | - return - 1 * $error; | |
| 417 | -		} else { | |
| 418 | - $this->db->commit(); | |
| 419 | - | |
| 420 | - return 1; | |
| 421 | - } | |
| 422 | - } | |
| 423 | - | |
| 424 | - /** | |
| 425 | - * Load an object from its id and create a new one in database | |
| 426 | - * | |
| 427 | - * @param int $fromid Id of object to clone | |
| 428 | - * | |
| 429 | - * @return int New id of clone | |
| 430 | - */ | |
| 431 | - public function createFromClone($fromid) | |
| 432 | -	{ | |
| 433 | - dol_syslog(__METHOD__, LOG_DEBUG); | |
| 434 | - | |
| 435 | - global $user; | |
| 436 | - $error = 0; | |
| 437 | - $object = new Bbctypes($this->db); | |
| 438 | - | |
| 439 | - $this->db->begin(); | |
| 440 | - | |
| 441 | - // Load source object | |
| 442 | - $object->fetch($fromid); | |
| 443 | - // Reset object | |
| 444 | - $object->id = 0; | |
| 445 | - | |
| 446 | - // Clear fields | |
| 447 | - // ... | |
| 448 | - | |
| 449 | - // Create clone | |
| 450 | - $result = $object->create($user); | |
| 451 | - | |
| 452 | - // Other options | |
| 453 | -		if ($result < 0) { | |
| 454 | - $error ++; | |
| 455 | - $this->errors = $object->errors; | |
| 456 | -			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 457 | - } | |
| 458 | - | |
| 459 | - // End | |
| 460 | -		if (!$error) { | |
| 461 | - $this->db->commit(); | |
| 462 | - | |
| 463 | - return $object->id; | |
| 464 | -		} else { | |
| 465 | - $this->db->rollback(); | |
| 466 | - | |
| 467 | - return - 1; | |
| 468 | - } | |
| 469 | - } | |
| 470 | - | |
| 471 | - /** | |
| 472 | - * Return a link to the user card (with optionaly the picto) | |
| 473 | - * Use this->id,this->lastname, this->firstname | |
| 474 | - * | |
| 475 | - * @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto) | |
| 476 | - * @param string $option On what the link point to | |
| 339 | + $sql .= ' WHERE idType=' . $this->id; | |
| 340 | + | |
| 341 | + $this->db->begin(); | |
| 342 | + | |
| 343 | + $resql = $this->db->query($sql); | |
| 344 | +        if (!$resql) { | |
| 345 | + $error ++; | |
| 346 | + $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 347 | +            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 348 | + } | |
| 349 | + | |
| 350 | +        if (!$error && !$notrigger) { | |
| 351 | + // Uncomment this and change MYOBJECT to your own tag if you | |
| 352 | + // want this action calls a trigger. | |
| 353 | + | |
| 354 | + //// Call triggers | |
| 355 | +            //$result=$this->call_trigger('MYOBJECT_MODIFY',$user); | |
| 356 | +            //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} | |
| 357 | + //// End call triggers | |
| 358 | + } | |
| 359 | + | |
| 360 | + // Commit or rollback | |
| 361 | +        if ($error) { | |
| 362 | + $this->db->rollback(); | |
| 363 | + | |
| 364 | + return - 1 * $error; | |
| 365 | +        } else { | |
| 366 | + $this->db->commit(); | |
| 367 | + | |
| 368 | + return 1; | |
| 369 | + } | |
| 370 | + } | |
| 371 | + | |
| 372 | + /** | |
| 373 | + * Delete object in database | |
| 374 | + * | |
| 375 | + * @param User $user User that deletes | |
| 376 | + * @param bool $notrigger false=launch triggers after, true=disable triggers | |
| 377 | + * | |
| 378 | + * @return int <0 if KO, >0 if OK | |
| 379 | + */ | |
| 380 | + public function delete(User $user, $notrigger = false) | |
| 381 | +    { | |
| 382 | + dol_syslog(__METHOD__, LOG_DEBUG); | |
| 383 | + | |
| 384 | + $error = 0; | |
| 385 | + | |
| 386 | + $this->db->begin(); | |
| 387 | + | |
| 388 | +        if (!$error) { | |
| 389 | +            if (!$notrigger) { | |
| 390 | + // Uncomment this and change MYOBJECT to your own tag if you | |
| 391 | + // want this action calls a trigger. | |
| 392 | + | |
| 393 | + //// Call triggers | |
| 394 | +                //$result=$this->call_trigger('MYOBJECT_DELETE',$user); | |
| 395 | +                //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} | |
| 396 | + //// End call triggers | |
| 397 | + } | |
| 398 | + } | |
| 399 | + | |
| 400 | +        if (!$error) { | |
| 401 | + $sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element; | |
| 402 | + $sql .= ' WHERE idType=' . $this->id; | |
| 403 | + | |
| 404 | + $resql = $this->db->query($sql); | |
| 405 | +            if (!$resql) { | |
| 406 | + $error ++; | |
| 407 | + $this->errors[] = 'Error ' . $this->db->lasterror(); | |
| 408 | +                dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 409 | + } | |
| 410 | + } | |
| 411 | + | |
| 412 | + // Commit or rollback | |
| 413 | +        if ($error) { | |
| 414 | + $this->db->rollback(); | |
| 415 | + | |
| 416 | + return - 1 * $error; | |
| 417 | +        } else { | |
| 418 | + $this->db->commit(); | |
| 419 | + | |
| 420 | + return 1; | |
| 421 | + } | |
| 422 | + } | |
| 423 | + | |
| 424 | + /** | |
| 425 | + * Load an object from its id and create a new one in database | |
| 426 | + * | |
| 427 | + * @param int $fromid Id of object to clone | |
| 428 | + * | |
| 429 | + * @return int New id of clone | |
| 430 | + */ | |
| 431 | + public function createFromClone($fromid) | |
| 432 | +    { | |
| 433 | + dol_syslog(__METHOD__, LOG_DEBUG); | |
| 434 | + | |
| 435 | + global $user; | |
| 436 | + $error = 0; | |
| 437 | + $object = new Bbctypes($this->db); | |
| 438 | + | |
| 439 | + $this->db->begin(); | |
| 440 | + | |
| 441 | + // Load source object | |
| 442 | + $object->fetch($fromid); | |
| 443 | + // Reset object | |
| 444 | + $object->id = 0; | |
| 445 | + | |
| 446 | + // Clear fields | |
| 447 | + // ... | |
| 448 | + | |
| 449 | + // Create clone | |
| 450 | + $result = $object->create($user); | |
| 451 | + | |
| 452 | + // Other options | |
| 453 | +        if ($result < 0) { | |
| 454 | + $error ++; | |
| 455 | + $this->errors = $object->errors; | |
| 456 | +            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | |
| 457 | + } | |
| 458 | + | |
| 459 | + // End | |
| 460 | +        if (!$error) { | |
| 461 | + $this->db->commit(); | |
| 462 | + | |
| 463 | + return $object->id; | |
| 464 | +        } else { | |
| 465 | + $this->db->rollback(); | |
| 466 | + | |
| 467 | + return - 1; | |
| 468 | + } | |
| 469 | + } | |
| 470 | + | |
| 471 | + /** | |
| 472 | + * Return a link to the user card (with optionaly the picto) | |
| 473 | + * Use this->id,this->lastname, this->firstname | |
| 474 | + * | |
| 475 | + * @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto) | |
| 476 | + * @param string $option On what the link point to | |
| 477 | 477 | * @param integer $notooltip 1=Disable tooltip | 
| 478 | 478 | * @param int $maxlen Max length of visible user name | 
| 479 | 479 | * @param string $morecss Add more css on link | 
| 480 | - * @return string String with URL | |
| 481 | - */ | |
| 482 | - function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') | |
| 483 | -	{ | |
| 484 | - global $langs, $conf, $db; | |
| 480 | + * @return string String with URL | |
| 481 | + */ | |
| 482 | + function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') | |
| 483 | +    { | |
| 484 | + global $langs, $conf, $db; | |
| 485 | 485 | global $dolibarr_main_authentication, $dolibarr_main_demo; | 
| 486 | 486 | global $menumanager; | 
| 487 | 487 | |
| @@ -496,92 +496,92 @@ discard block | ||
| 496 | 496 | $link = '<a href="'.DOL_URL_ROOT.'/flightLog/card.php?id='.$this->id.'"'; | 
| 497 | 497 | $link.= ($notooltip?'':' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss?' '.$morecss:'').'"'); | 
| 498 | 498 | $link.= '>'; | 
| 499 | - $linkend='</a>'; | |
| 499 | + $linkend='</a>'; | |
| 500 | 500 | |
| 501 | 501 | if ($withpicto) | 
| 502 | 502 |          { | 
| 503 | 503 | $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); | 
| 504 | 504 | if ($withpicto != 2) $result.=' '; | 
| 505 | - } | |
| 506 | - $result.= $link . $this->ref . $linkend; | |
| 507 | - return $result; | |
| 508 | - } | |
| 505 | + } | |
| 506 | + $result.= $link . $this->ref . $linkend; | |
| 507 | + return $result; | |
| 508 | + } | |
| 509 | 509 | |
| 510 | - /** | |
| 511 | - * Retourne le libelle du status d'un user (actif, inactif) | |
| 512 | - * | |
| 513 | - * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto | |
| 514 | - * @return string Label of status | |
| 515 | - */ | |
| 516 | - function getLibStatut($mode=0) | |
| 517 | -	{ | |
| 518 | - return $this->LibStatut($this->status,$mode); | |
| 519 | - } | |
| 520 | - | |
| 521 | - /** | |
| 522 | - * Renvoi le libelle d'un status donne | |
| 523 | - * | |
| 524 | - * @param int $status Id status | |
| 525 | - * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto | |
| 526 | - * @return string Label of status | |
| 527 | - */ | |
| 528 | - function LibStatut($status,$mode=0) | |
| 529 | -	{ | |
| 530 | - global $langs; | |
| 531 | - | |
| 532 | - if ($mode == 0) | |
| 533 | -		{ | |
| 534 | - $prefix=''; | |
| 535 | -			if ($status == 1) return $langs->trans('Enabled'); | |
| 536 | -			if ($status == 0) return $langs->trans('Disabled'); | |
| 537 | - } | |
| 538 | - if ($mode == 1) | |
| 539 | -		{ | |
| 540 | -			if ($status == 1) return $langs->trans('Enabled'); | |
| 541 | -			if ($status == 0) return $langs->trans('Disabled'); | |
| 542 | - } | |
| 543 | - if ($mode == 2) | |
| 544 | -		{ | |
| 545 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 546 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 547 | - } | |
| 548 | - if ($mode == 3) | |
| 549 | -		{ | |
| 550 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); | |
| 551 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); | |
| 552 | - } | |
| 553 | - if ($mode == 4) | |
| 554 | -		{ | |
| 555 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 556 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 557 | - } | |
| 558 | - if ($mode == 5) | |
| 559 | -		{ | |
| 560 | -			if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); | |
| 561 | -			if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); | |
| 562 | - } | |
| 563 | - | |
| 564 | - return ""; | |
| 565 | - } | |
| 510 | + /** | |
| 511 | + * Retourne le libelle du status d'un user (actif, inactif) | |
| 512 | + * | |
| 513 | + * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto | |
| 514 | + * @return string Label of status | |
| 515 | + */ | |
| 516 | + function getLibStatut($mode=0) | |
| 517 | +    { | |
| 518 | + return $this->LibStatut($this->status,$mode); | |
| 519 | + } | |
| 520 | + | |
| 521 | + /** | |
| 522 | + * Renvoi le libelle d'un status donne | |
| 523 | + * | |
| 524 | + * @param int $status Id status | |
| 525 | + * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto | |
| 526 | + * @return string Label of status | |
| 527 | + */ | |
| 528 | + function LibStatut($status,$mode=0) | |
| 529 | +    { | |
| 530 | + global $langs; | |
| 531 | + | |
| 532 | + if ($mode == 0) | |
| 533 | +        { | |
| 534 | + $prefix=''; | |
| 535 | +            if ($status == 1) return $langs->trans('Enabled'); | |
| 536 | +            if ($status == 0) return $langs->trans('Disabled'); | |
| 537 | + } | |
| 538 | + if ($mode == 1) | |
| 539 | +        { | |
| 540 | +            if ($status == 1) return $langs->trans('Enabled'); | |
| 541 | +            if ($status == 0) return $langs->trans('Disabled'); | |
| 542 | + } | |
| 543 | + if ($mode == 2) | |
| 544 | +        { | |
| 545 | +            if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 546 | +            if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 547 | + } | |
| 548 | + if ($mode == 3) | |
| 549 | +        { | |
| 550 | +            if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); | |
| 551 | +            if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); | |
| 552 | + } | |
| 553 | + if ($mode == 4) | |
| 554 | +        { | |
| 555 | +            if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 556 | +            if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 557 | + } | |
| 558 | + if ($mode == 5) | |
| 559 | +        { | |
| 560 | +            if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); | |
| 561 | +            if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); | |
| 562 | + } | |
| 563 | + | |
| 564 | + return ""; | |
| 565 | + } | |
| 566 | 566 | |
| 567 | 567 | |
| 568 | - /** | |
| 569 | - * Initialise object with example values | |
| 570 | - * Id must be 0 if object instance is a specimen | |
| 571 | - * | |
| 572 | - * @return void | |
| 573 | - */ | |
| 574 | - public function initAsSpecimen() | |
| 575 | -	{ | |
| 576 | - $this->id = 0; | |
| 568 | + /** | |
| 569 | + * Initialise object with example values | |
| 570 | + * Id must be 0 if object instance is a specimen | |
| 571 | + * | |
| 572 | + * @return void | |
| 573 | + */ | |
| 574 | + public function initAsSpecimen() | |
| 575 | +    { | |
| 576 | + $this->id = 0; | |
| 577 | 577 | |
| 578 | - $this->idType = ''; | |
| 579 | - $this->numero = ''; | |
| 580 | - $this->nom = ''; | |
| 581 | - $this->active = ''; | |
| 578 | + $this->idType = ''; | |
| 579 | + $this->numero = ''; | |
| 580 | + $this->nom = ''; | |
| 581 | + $this->active = ''; | |
| 582 | 582 | |
| 583 | 583 | |
| 584 | - } | |
| 584 | + } | |
| 585 | 585 | |
| 586 | 586 | } | 
| 587 | 587 | |
| @@ -590,21 +590,21 @@ discard block | ||
| 590 | 590 | */ | 
| 591 | 591 | class BbctypesLine | 
| 592 | 592 |  { | 
| 593 | - /** | |
| 594 | - * @var int ID | |
| 595 | - */ | |
| 596 | - public $id; | |
| 597 | - /** | |
| 598 | - * @var mixed Sample line property 1 | |
| 599 | - */ | |
| 593 | + /** | |
| 594 | + * @var int ID | |
| 595 | + */ | |
| 596 | + public $id; | |
| 597 | + /** | |
| 598 | + * @var mixed Sample line property 1 | |
| 599 | + */ | |
| 600 | 600 | |
| 601 | - public $idType; | |
| 602 | - public $numero; | |
| 603 | - public $nom; | |
| 604 | - public $active; | |
| 605 | - | |
| 606 | - /** | |
| 607 | - * @var mixed Sample line property 2 | |
| 608 | - */ | |
| 601 | + public $idType; | |
| 602 | + public $numero; | |
| 603 | + public $nom; | |
| 604 | + public $active; | |
| 605 | + | |
| 606 | + /** | |
| 607 | + * @var mixed Sample line property 2 | |
| 608 | + */ | |
| 609 | 609 | |
| 610 | 610 | } | 
| @@ -110,16 +110,16 @@ discard block | ||
| 110 | 110 | // Insert request | 
| 111 | 111 |  		$sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; | 
| 112 | 112 | |
| 113 | - $sql.= 'numero,'; | |
| 114 | - $sql.= 'nom'; | |
| 115 | - $sql.= 'active'; | |
| 113 | + $sql .= 'numero,'; | |
| 114 | + $sql .= 'nom'; | |
| 115 | + $sql .= 'active'; | |
| 116 | 116 | |
| 117 | 117 | |
| 118 | 118 |  		$sql .= ') VALUES ('; | 
| 119 | 119 | |
| 120 | - $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; | |
| 121 | - $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; | |
| 122 | - $sql .= ' '.(! isset($this->active)?'NULL':$this->active); | |
| 120 | + $sql .= ' ' . (!isset($this->numero) ? 'NULL' : $this->numero) . ','; | |
| 121 | + $sql .= ' ' . (!isset($this->nom) ? 'NULL' : "'" . $this->db->escape($this->nom) . "'") . ','; | |
| 122 | + $sql .= ' ' . (!isset($this->active) ? 'NULL' : $this->active); | |
| 123 | 123 | |
| 124 | 124 | |
| 125 | 125 | $sql .= ')'; | 
| @@ -128,7 +128,7 @@ discard block | ||
| 128 | 128 | |
| 129 | 129 | $resql = $this->db->query($sql); | 
| 130 | 130 |  		if (!$resql) { | 
| 131 | - $error ++; | |
| 131 | + $error++; | |
| 132 | 132 | $this->errors[] = 'Error ' . $this->db->lasterror(); | 
| 133 | 133 |  			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | 
| 134 | 134 | } | 
| @@ -151,7 +151,7 @@ discard block | ||
| 151 | 151 |  		if ($error) { | 
| 152 | 152 | $this->db->rollback(); | 
| 153 | 153 | |
| 154 | - return - 1 * $error; | |
| 154 | + return -1 * $error; | |
| 155 | 155 |  		} else { | 
| 156 | 156 | $this->db->commit(); | 
| 157 | 157 | |
| @@ -212,7 +212,7 @@ discard block | ||
| 212 | 212 | $this->errors[] = 'Error ' . $this->db->lasterror(); | 
| 213 | 213 |  			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | 
| 214 | 214 | |
| 215 | - return - 1; | |
| 215 | + return -1; | |
| 216 | 216 | } | 
| 217 | 217 | } | 
| 218 | 218 | |
| @@ -228,7 +228,7 @@ discard block | ||
| 228 | 228 | * | 
| 229 | 229 | * @return int <0 if KO, >0 if OK | 
| 230 | 230 | */ | 
| 231 | - public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') | |
| 231 | + public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, array $filter = array(), $filtermode = 'AND') | |
| 232 | 232 |  	{ | 
| 233 | 233 | dol_syslog(__METHOD__, LOG_DEBUG); | 
| 234 | 234 | |
| @@ -239,32 +239,32 @@ discard block | ||
| 239 | 239 | $sql .= " t.active"; | 
| 240 | 240 | |
| 241 | 241 | |
| 242 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; | |
| 242 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; | |
| 243 | 243 | |
| 244 | 244 | // Manage filter | 
| 245 | 245 | $sqlwhere = array(); | 
| 246 | 246 | |
| 247 | 247 |  		foreach ($filter as $key => $value) { | 
| 248 | -		    if(is_string($value)){ | |
| 248 | +		    if (is_string($value)) { | |
| 249 | 249 | $sqlwhere [] = $key . ' LIKE \'%' . $this->db->escape($value) . '%\''; | 
| 250 | 250 | continue; | 
| 251 | 251 | } | 
| 252 | 252 | |
| 253 | -            if(is_int($value)){ | |
| 254 | - $sqlwhere [] = $key . ' = ' .(int)$value; | |
| 253 | +            if (is_int($value)) { | |
| 254 | + $sqlwhere [] = $key . ' = ' . (int) $value; | |
| 255 | 255 | continue; | 
| 256 | 256 | } | 
| 257 | 257 | } | 
| 258 | 258 | |
| 259 | 259 |  		if (count($sqlwhere) > 0) { | 
| 260 | -			$sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); | |
| 260 | +			$sql .= ' WHERE ' . implode(' ' . $filtermode . ' ', $sqlwhere); | |
| 261 | 261 | } | 
| 262 | 262 | |
| 263 | 263 |  		if (!empty($sortfield)) { | 
| 264 | - $sql .= $this->db->order($sortfield,$sortorder); | |
| 264 | + $sql .= $this->db->order($sortfield, $sortorder); | |
| 265 | 265 | } | 
| 266 | 266 |  		if (!empty($limit)) { | 
| 267 | - $sql .= ' ' . $this->db->plimit($limit + 1, $offset); | |
| 267 | + $sql .= ' ' . $this->db->plimit($limit + 1, $offset); | |
| 268 | 268 | } | 
| 269 | 269 | $this->lines = array(); | 
| 270 | 270 | |
| @@ -290,7 +290,7 @@ discard block | ||
| 290 | 290 | $this->errors[] = 'Error ' . $this->db->lasterror(); | 
| 291 | 291 |  			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | 
| 292 | 292 | |
| 293 | - return - 1; | |
| 293 | + return -1; | |
| 294 | 294 | } | 
| 295 | 295 | } | 
| 296 | 296 | |
| @@ -331,9 +331,9 @@ discard block | ||
| 331 | 331 | // Update request | 
| 332 | 332 | $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; | 
| 333 | 333 | |
| 334 | - $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; | |
| 335 | - $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; | |
| 336 | - $sql .= ' active = '.(isset($this->active)?$this->active:"null"); | |
| 334 | + $sql .= ' numero = ' . (isset($this->numero) ? $this->numero : "null") . ','; | |
| 335 | + $sql .= ' nom = ' . (isset($this->nom) ? "'" . $this->db->escape($this->nom) . "'" : "null") . ','; | |
| 336 | + $sql .= ' active = ' . (isset($this->active) ? $this->active : "null"); | |
| 337 | 337 | |
| 338 | 338 | |
| 339 | 339 | $sql .= ' WHERE idType=' . $this->id; | 
| @@ -342,7 +342,7 @@ discard block | ||
| 342 | 342 | |
| 343 | 343 | $resql = $this->db->query($sql); | 
| 344 | 344 |  		if (!$resql) { | 
| 345 | - $error ++; | |
| 345 | + $error++; | |
| 346 | 346 | $this->errors[] = 'Error ' . $this->db->lasterror(); | 
| 347 | 347 |  			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | 
| 348 | 348 | } | 
| @@ -361,7 +361,7 @@ discard block | ||
| 361 | 361 |  		if ($error) { | 
| 362 | 362 | $this->db->rollback(); | 
| 363 | 363 | |
| 364 | - return - 1 * $error; | |
| 364 | + return -1 * $error; | |
| 365 | 365 |  		} else { | 
| 366 | 366 | $this->db->commit(); | 
| 367 | 367 | |
| @@ -403,7 +403,7 @@ discard block | ||
| 403 | 403 | |
| 404 | 404 | $resql = $this->db->query($sql); | 
| 405 | 405 |  			if (!$resql) { | 
| 406 | - $error ++; | |
| 406 | + $error++; | |
| 407 | 407 | $this->errors[] = 'Error ' . $this->db->lasterror(); | 
| 408 | 408 |  				dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | 
| 409 | 409 | } | 
| @@ -413,7 +413,7 @@ discard block | ||
| 413 | 413 |  		if ($error) { | 
| 414 | 414 | $this->db->rollback(); | 
| 415 | 415 | |
| 416 | - return - 1 * $error; | |
| 416 | + return -1 * $error; | |
| 417 | 417 |  		} else { | 
| 418 | 418 | $this->db->commit(); | 
| 419 | 419 | |
| @@ -451,7 +451,7 @@ discard block | ||
| 451 | 451 | |
| 452 | 452 | // Other options | 
| 453 | 453 |  		if ($result < 0) { | 
| 454 | - $error ++; | |
| 454 | + $error++; | |
| 455 | 455 | $this->errors = $object->errors; | 
| 456 | 456 |  			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); | 
| 457 | 457 | } | 
| @@ -464,7 +464,7 @@ discard block | ||
| 464 | 464 |  		} else { | 
| 465 | 465 | $this->db->rollback(); | 
| 466 | 466 | |
| 467 | - return - 1; | |
| 467 | + return -1; | |
| 468 | 468 | } | 
| 469 | 469 | } | 
| 470 | 470 | |
| @@ -479,7 +479,7 @@ discard block | ||
| 479 | 479 | * @param string $morecss Add more css on link | 
| 480 | 480 | * @return string String with URL | 
| 481 | 481 | */ | 
| 482 | - function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') | |
| 482 | + function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $maxlen = 24, $morecss = '') | |
| 483 | 483 |  	{ | 
| 484 | 484 | global $langs, $conf, $db; | 
| 485 | 485 | global $dolibarr_main_authentication, $dolibarr_main_demo; | 
| @@ -490,20 +490,20 @@ discard block | ||
| 490 | 490 | $companylink = ''; | 
| 491 | 491 | |
| 492 | 492 |          $label = '<u>' . $langs->trans("MyModule") . '</u>'; | 
| 493 | - $label.= '<div width="100%">'; | |
| 494 | -        $label.= '<b>' . $langs->trans('Ref') . ':</b> ' . $this->ref; | |
| 493 | + $label .= '<div width="100%">'; | |
| 494 | +        $label .= '<b>' . $langs->trans('Ref') . ':</b> ' . $this->ref; | |
| 495 | 495 | |
| 496 | - $link = '<a href="'.DOL_URL_ROOT.'/flightLog/card.php?id='.$this->id.'"'; | |
| 497 | - $link.= ($notooltip?'':' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss?' '.$morecss:'').'"'); | |
| 498 | - $link.= '>'; | |
| 499 | - $linkend='</a>'; | |
| 496 | + $link = '<a href="' . DOL_URL_ROOT . '/flightLog/card.php?id=' . $this->id . '"'; | |
| 497 | + $link .= ($notooltip ? '' : ' title="' . dol_escape_htmltag($label, 1) . '" class="classfortooltip' . ($morecss ? ' ' . $morecss : '') . '"'); | |
| 498 | + $link .= '>'; | |
| 499 | + $linkend = '</a>'; | |
| 500 | 500 | |
| 501 | 501 | if ($withpicto) | 
| 502 | 502 |          { | 
| 503 | - $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); | |
| 504 | - if ($withpicto != 2) $result.=' '; | |
| 503 | + $result .= ($link . img_object(($notooltip ? '' : $label), 'label', ($notooltip ? '' : 'class="classfortooltip"')) . $linkend); | |
| 504 | + if ($withpicto != 2) $result .= ' '; | |
| 505 | 505 | } | 
| 506 | - $result.= $link . $this->ref . $linkend; | |
| 506 | + $result .= $link . $this->ref . $linkend; | |
| 507 | 507 | return $result; | 
| 508 | 508 | } | 
| 509 | 509 | |
| @@ -513,9 +513,9 @@ discard block | ||
| 513 | 513 | * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto | 
| 514 | 514 | * @return string Label of status | 
| 515 | 515 | */ | 
| 516 | - function getLibStatut($mode=0) | |
| 516 | + function getLibStatut($mode = 0) | |
| 517 | 517 |  	{ | 
| 518 | - return $this->LibStatut($this->status,$mode); | |
| 518 | + return $this->LibStatut($this->status, $mode); | |
| 519 | 519 | } | 
| 520 | 520 | |
| 521 | 521 | /** | 
| @@ -525,13 +525,13 @@ discard block | ||
| 525 | 525 | * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto | 
| 526 | 526 | * @return string Label of status | 
| 527 | 527 | */ | 
| 528 | - function LibStatut($status,$mode=0) | |
| 528 | + function LibStatut($status, $mode = 0) | |
| 529 | 529 |  	{ | 
| 530 | 530 | global $langs; | 
| 531 | 531 | |
| 532 | 532 | if ($mode == 0) | 
| 533 | 533 |  		{ | 
| 534 | - $prefix=''; | |
| 534 | + $prefix = ''; | |
| 535 | 535 |  			if ($status == 1) return $langs->trans('Enabled'); | 
| 536 | 536 |  			if ($status == 0) return $langs->trans('Disabled'); | 
| 537 | 537 | } | 
| @@ -542,23 +542,23 @@ discard block | ||
| 542 | 542 | } | 
| 543 | 543 | if ($mode == 2) | 
| 544 | 544 |  		{ | 
| 545 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 546 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 545 | +			if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4') . ' ' . $langs->trans('Enabled'); | |
| 546 | +			if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5') . ' ' . $langs->trans('Disabled'); | |
| 547 | 547 | } | 
| 548 | 548 | if ($mode == 3) | 
| 549 | 549 |  		{ | 
| 550 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); | |
| 551 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); | |
| 550 | +			if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4'); | |
| 551 | +			if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5'); | |
| 552 | 552 | } | 
| 553 | 553 | if ($mode == 4) | 
| 554 | 554 |  		{ | 
| 555 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 556 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 555 | +			if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4') . ' ' . $langs->trans('Enabled'); | |
| 556 | +			if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5') . ' ' . $langs->trans('Disabled'); | |
| 557 | 557 | } | 
| 558 | 558 | if ($mode == 5) | 
| 559 | 559 |  		{ | 
| 560 | -			if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); | |
| 561 | -			if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); | |
| 560 | +			if ($status == 1) return $langs->trans('Enabled') . ' ' . img_picto($langs->trans('Enabled'), 'statut4'); | |
| 561 | +			if ($status == 0) return $langs->trans('Disabled') . ' ' . img_picto($langs->trans('Disabled'), 'statut5'); | |
| 562 | 562 | } | 
| 563 | 563 | |
| 564 | 564 | return ""; | 
| @@ -501,7 +501,9 @@ discard block | ||
| 501 | 501 | if ($withpicto) | 
| 502 | 502 |          { | 
| 503 | 503 | $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); | 
| 504 | - if ($withpicto != 2) $result.=' '; | |
| 504 | +            if ($withpicto != 2) { | |
| 505 | + $result.=' '; | |
| 506 | + } | |
| 505 | 507 | } | 
| 506 | 508 | $result.= $link . $this->ref . $linkend; | 
| 507 | 509 | return $result; | 
| @@ -532,33 +534,57 @@ discard block | ||
| 532 | 534 | if ($mode == 0) | 
| 533 | 535 |  		{ | 
| 534 | 536 | $prefix=''; | 
| 535 | -			if ($status == 1) return $langs->trans('Enabled'); | |
| 536 | -			if ($status == 0) return $langs->trans('Disabled'); | |
| 537 | +			if ($status == 1) { | |
| 538 | +			    return $langs->trans('Enabled'); | |
| 539 | + } | |
| 540 | +			if ($status == 0) { | |
| 541 | +			    return $langs->trans('Disabled'); | |
| 542 | + } | |
| 537 | 543 | } | 
| 538 | 544 | if ($mode == 1) | 
| 539 | 545 |  		{ | 
| 540 | -			if ($status == 1) return $langs->trans('Enabled'); | |
| 541 | -			if ($status == 0) return $langs->trans('Disabled'); | |
| 546 | +			if ($status == 1) { | |
| 547 | +			    return $langs->trans('Enabled'); | |
| 548 | + } | |
| 549 | +			if ($status == 0) { | |
| 550 | +			    return $langs->trans('Disabled'); | |
| 551 | + } | |
| 542 | 552 | } | 
| 543 | 553 | if ($mode == 2) | 
| 544 | 554 |  		{ | 
| 545 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 546 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 555 | +			if ($status == 1) { | |
| 556 | +			    return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 557 | + } | |
| 558 | +			if ($status == 0) { | |
| 559 | +			    return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 560 | + } | |
| 547 | 561 | } | 
| 548 | 562 | if ($mode == 3) | 
| 549 | 563 |  		{ | 
| 550 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); | |
| 551 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); | |
| 564 | +			if ($status == 1) { | |
| 565 | +			    return img_picto($langs->trans('Enabled'),'statut4'); | |
| 566 | + } | |
| 567 | +			if ($status == 0) { | |
| 568 | +			    return img_picto($langs->trans('Disabled'),'statut5'); | |
| 569 | + } | |
| 552 | 570 | } | 
| 553 | 571 | if ($mode == 4) | 
| 554 | 572 |  		{ | 
| 555 | -			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 556 | -			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 573 | +			if ($status == 1) { | |
| 574 | +			    return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); | |
| 575 | + } | |
| 576 | +			if ($status == 0) { | |
| 577 | +			    return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); | |
| 578 | + } | |
| 557 | 579 | } | 
| 558 | 580 | if ($mode == 5) | 
| 559 | 581 |  		{ | 
| 560 | -			if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); | |
| 561 | -			if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); | |
| 582 | +			if ($status == 1) { | |
| 583 | +			    return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); | |
| 584 | + } | |
| 585 | +			if ($status == 0) { | |
| 586 | +			    return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); | |
| 587 | + } | |
| 562 | 588 | } | 
| 563 | 589 | |
| 564 | 590 | return ""; | 
| @@ -28,7 +28,7 @@ discard block | ||
| 28 | 28 | // Protection if the user can't acces to the module | 
| 29 | 29 | if (!$user->rights->flightLog->vol->access) | 
| 30 | 30 |  { | 
| 31 | - accessforbidden(); | |
| 31 | + accessforbidden(); | |
| 32 | 32 | } | 
| 33 | 33 | |
| 34 | 34 | |
| @@ -42,54 +42,54 @@ discard block | ||
| 42 | 42 | //l'utilisateur a le droit de selectionner le ballon qu'il veut | 
| 43 | 43 | if (($user->rights->flightLog->vol->detail)) | 
| 44 | 44 |  { | 
| 45 | -	if(isset($_GET["ballon"])){ | |
| 46 | - $idBallon = $_GET['ballon']; | |
| 47 | -	}else{ | |
| 48 | - $idBallon =1; | |
| 49 | - } | |
| 45 | +    if(isset($_GET["ballon"])){ | |
| 46 | + $idBallon = $_GET['ballon']; | |
| 47 | +    }else{ | |
| 48 | + $idBallon =1; | |
| 49 | + } | |
| 50 | 50 | |
| 51 | 51 |  }else{ | 
| 52 | 52 | |
| 53 | - //l'utilisateur n'a pas le choix du ballon | |
| 54 | - //il est titulaire d'un ballon | |
| 55 | - $query = 'SELECT * FROM llx_bbc_ballons'; | |
| 56 | - $query.= ' WHERE `fk_responsable` = '.$user->id; | |
| 57 | - $resql = $db->query($query); | |
| 58 | -	if($resql){ | |
| 59 | - $num = $db->num_rows($resql); | |
| 60 | - $i = 0; | |
| 61 | -		if($num){ | |
| 62 | - print'</tr>'; | |
| 63 | -			while($i <$num){ | |
| 64 | - $obj = $db->fetch_object($resql); //vol | |
| 65 | -				if($obj){ | |
| 66 | - $idBallon = ($obj->rowid); | |
| 67 | - } | |
| 68 | - } | |
| 69 | -		}else{ | |
| 70 | - //il n'est pas titulaire d'un ballon | |
| 71 | -			accessforbidden("Vous n'êtes pas titulaire du ballon"); | |
| 72 | - } | |
| 73 | - } | |
| 53 | + //l'utilisateur n'a pas le choix du ballon | |
| 54 | + //il est titulaire d'un ballon | |
| 55 | + $query = 'SELECT * FROM llx_bbc_ballons'; | |
| 56 | + $query.= ' WHERE `fk_responsable` = '.$user->id; | |
| 57 | + $resql = $db->query($query); | |
| 58 | +    if($resql){ | |
| 59 | + $num = $db->num_rows($resql); | |
| 60 | + $i = 0; | |
| 61 | +        if($num){ | |
| 62 | + print'</tr>'; | |
| 63 | +            while($i <$num){ | |
| 64 | + $obj = $db->fetch_object($resql); //vol | |
| 65 | +                if($obj){ | |
| 66 | + $idBallon = ($obj->rowid); | |
| 67 | + } | |
| 68 | + } | |
| 69 | +        }else{ | |
| 70 | + //il n'est pas titulaire d'un ballon | |
| 71 | +            accessforbidden("Vous n'êtes pas titulaire du ballon"); | |
| 72 | + } | |
| 73 | + } | |
| 74 | 74 | } | 
| 75 | 75 |  if($idBallon != -1){ | 
| 76 | 76 | |
| 77 | - //balloon with ID | |
| 78 | - $ballon = New Bbc_ballons($db); | |
| 77 | + //balloon with ID | |
| 78 | + $ballon = New Bbc_ballons($db); | |
| 79 | 79 | |
| 80 | -	if($ballon->fetch($idBallon)==-1){ | |
| 81 | - print "ERROR".$idBallon."<br/>"; | |
| 82 | - } | |
| 83 | - //titulaire with ballon ID | |
| 80 | +    if($ballon->fetch($idBallon)==-1){ | |
| 81 | + print "ERROR".$idBallon."<br/>"; | |
| 82 | + } | |
| 83 | + //titulaire with ballon ID | |
| 84 | 84 | $titulaire = new User($db); | 
| 85 | 85 | $titulaire->fetch($ballon->fk_responsable); | 
| 86 | 86 | //flight with balloon ID | 
| 87 | - $query = 'SELECT *, TIMEDIFF(heureA,heureD) AS time FROM llx_bbc_vols'; | |
| 88 | - $query.= ' WHERE `BBC_ballons_idBBC_ballons` = '.$ballon->id; | |
| 89 | - $query.= ' AND `incidents` NOT LIKE \'RAS\''; | |
| 90 | - $query.= ' AND `incidents` NOT LIKE \'\''; | |
| 91 | - $query.= ' ORDER BY date'; | |
| 92 | - $resql = $db->query($query); | |
| 87 | + $query = 'SELECT *, TIMEDIFF(heureA,heureD) AS time FROM llx_bbc_vols'; | |
| 88 | + $query.= ' WHERE `BBC_ballons_idBBC_ballons` = '.$ballon->id; | |
| 89 | + $query.= ' AND `incidents` NOT LIKE \'RAS\''; | |
| 90 | + $query.= ' AND `incidents` NOT LIKE \'\''; | |
| 91 | + $query.= ' ORDER BY date'; | |
| 92 | + $resql = $db->query($query); | |
| 93 | 93 | } | 
| 94 | 94 | |
| 95 | 95 | |
| @@ -102,27 +102,27 @@ discard block | ||
| 102 | 102 | |
| 103 | 103 |  llxHeader('','Carnet de vol',''); | 
| 104 | 104 |  if($msg && $idBallon != -1){ | 
| 105 | - print $msg; | |
| 105 | + print $msg; | |
| 106 | 106 |  }else{ | 
| 107 | - $form=new Form($db); | |
| 107 | + $form=new Form($db); | |
| 108 | 108 | |
| 109 | - print '<!-- debut cartouche rapport --> | |
| 109 | + print '<!-- debut cartouche rapport --> | |
| 110 | 110 | <div class="tabs"> | 
| 111 | 111 | <a class="tab" href="readFlightsBalloon.php?ballon='.$idBallon.'">Carnet de vol</a> | 
| 112 | 112 | <a id="active" class="tab" href="readBalloonInc.php?ballon='.$idBallon.'">Incidents</a> | 
| 113 | 113 | </div>'; | 
| 114 | - print '<div class="tabBar">'; | |
| 115 | - print "<form name='readBalloon' action=\"readFlightsBalloon.php\" method=\"get\">\n"; | |
| 116 | - print '<input type="hidden" name="mode" value="SELECT">'; | |
| 117 | - print '<table width="100%" class="border">'; | |
| 118 | - print '<tr><td>Ballon</td><td colspan="3">'; | |
| 119 | -	if($user->rights->flightLog->vol->detail){ | |
| 120 | - select_balloons($idBallon); | |
| 121 | -	}else{ | |
| 122 | - print $ballon->immat; | |
| 123 | - } | |
| 114 | + print '<div class="tabBar">'; | |
| 115 | + print "<form name='readBalloon' action=\"readFlightsBalloon.php\" method=\"get\">\n"; | |
| 116 | + print '<input type="hidden" name="mode" value="SELECT">'; | |
| 117 | + print '<table width="100%" class="border">'; | |
| 118 | + print '<tr><td>Ballon</td><td colspan="3">'; | |
| 119 | +    if($user->rights->flightLog->vol->detail){ | |
| 120 | + select_balloons($idBallon); | |
| 121 | +    }else{ | |
| 122 | + print $ballon->immat; | |
| 123 | + } | |
| 124 | 124 | |
| 125 | - print'</td></tr>'; | |
| 125 | + print'</td></tr>'; | |
| 126 | 126 | //titulaire | 
| 127 | 127 | print '<tr>'; | 
| 128 | 128 | print '<td>Titulaire</td>'; | 
| @@ -134,10 +134,10 @@ discard block | ||
| 134 | 134 | print '<td>'.dol_print_date($ballon->date, 'dayrfc').'</td>'; | 
| 135 | 135 | print '</tr>'; | 
| 136 | 136 | $num = 0; | 
| 137 | -	if($resql){ | |
| 138 | - //fetch pilot | |
| 137 | +    if($resql){ | |
| 138 | + //fetch pilot | |
| 139 | 139 | |
| 140 | - $num = $db->num_rows($resql); | |
| 140 | + $num = $db->num_rows($resql); | |
| 141 | 141 | //>Nombre d'incidences | 
| 142 | 142 | print '<tr>'; | 
| 143 | 143 | print '<td>Nombre d\'incidences</td>'; | 
| @@ -149,54 +149,54 @@ discard block | ||
| 149 | 149 | |
| 150 | 150 | |
| 151 | 151 | print '<table class="border" width="100%">'; | 
| 152 | - $i = 0; | |
| 153 | -		if($num){ | |
| 154 | - print '<tr class="liste_titre">'; | |
| 155 | - print '<td class="liste_titre"> identifiant </td>'; | |
| 156 | - print '<td class="liste_titre"> Date </td>'; | |
| 157 | - print '<td class="liste_titre"> Ballon </td>'; | |
| 158 | - print '<td class="liste_titre"> Pilote </td>'; | |
| 159 | - print '<td class="liste_titre"> Lieu depart </td>'; | |
| 160 | - print '<td class="liste_titre"> Lieu arrivee </td>'; | |
| 161 | - print '<td class="liste_titre"> Heure depart</td>'; | |
| 162 | - print '<td class="liste_titre"> Heure Arrivee </td>'; | |
| 163 | - print '<td class="liste_titre"> Duree (min) </td>'; | |
| 164 | - print '<td class="liste_titre"> Nbr Pax </td>'; | |
| 165 | - print '<td class="liste_titre"> Rem </td>'; | |
| 166 | - print '<td class="liste_titre"> Incidents </td>'; | |
| 167 | -			if($user->rights->flightLog->vol->status){ | |
| 168 | - print '<td class="liste_titre"> Statut </td>'; | |
| 169 | - } | |
| 170 | - print'</tr>'; | |
| 171 | -			while($i <$num){ | |
| 172 | - $obj = $db->fetch_object($resql); //vol | |
| 173 | - print '<tr>'; | |
| 174 | -				if($obj){ | |
| 175 | - $pilot = New User($db); //pilot | |
| 176 | - $pilot->fetch($obj->fk_pilot); | |
| 177 | - print '<td><a href="fiche.php?vol='.$obj->idBBC_vols.'">'.$obj->idBBC_vols.'</a></td>'; | |
| 178 | - print '<td>'.$obj->date.'</td>'; | |
| 179 | - print '<td>'.$ballon->immat.'</td>'; | |
| 180 | - print '<td>'.$pilot->getNomUrl().'</a></td>'; | |
| 181 | - print '<td>'.$obj->lieuD.'</td>'; | |
| 182 | - print '<td>'.$obj->lieuA.'</td>'; | |
| 183 | - print '<td>'.$obj->heureD.'</td>'; | |
| 184 | - print '<td>'.$obj->heureA.'</td>'; | |
| 185 | - print '<td>'.$obj->time.'</td>'; | |
| 186 | - print '<td>'.$obj->nbrPax.'</td>'; | |
| 187 | - print '<td>'.$obj->remarque.'</td>'; | |
| 188 | - print '<td>'.$obj->incidents.'</td>'; | |
| 189 | -					if($user->rights->flightLog->vol->status){ | |
| 190 | - $vol = new Bbcvols($db); | |
| 191 | - $vol->fetch($obj->idBBC_vols); | |
| 152 | + $i = 0; | |
| 153 | +        if($num){ | |
| 154 | + print '<tr class="liste_titre">'; | |
| 155 | + print '<td class="liste_titre"> identifiant </td>'; | |
| 156 | + print '<td class="liste_titre"> Date </td>'; | |
| 157 | + print '<td class="liste_titre"> Ballon </td>'; | |
| 158 | + print '<td class="liste_titre"> Pilote </td>'; | |
| 159 | + print '<td class="liste_titre"> Lieu depart </td>'; | |
| 160 | + print '<td class="liste_titre"> Lieu arrivee </td>'; | |
| 161 | + print '<td class="liste_titre"> Heure depart</td>'; | |
| 162 | + print '<td class="liste_titre"> Heure Arrivee </td>'; | |
| 163 | + print '<td class="liste_titre"> Duree (min) </td>'; | |
| 164 | + print '<td class="liste_titre"> Nbr Pax </td>'; | |
| 165 | + print '<td class="liste_titre"> Rem </td>'; | |
| 166 | + print '<td class="liste_titre"> Incidents </td>'; | |
| 167 | +            if($user->rights->flightLog->vol->status){ | |
| 168 | + print '<td class="liste_titre"> Statut </td>'; | |
| 169 | + } | |
| 170 | + print'</tr>'; | |
| 171 | +            while($i <$num){ | |
| 172 | + $obj = $db->fetch_object($resql); //vol | |
| 173 | + print '<tr>'; | |
| 174 | +                if($obj){ | |
| 175 | + $pilot = New User($db); //pilot | |
| 176 | + $pilot->fetch($obj->fk_pilot); | |
| 177 | + print '<td><a href="fiche.php?vol='.$obj->idBBC_vols.'">'.$obj->idBBC_vols.'</a></td>'; | |
| 178 | + print '<td>'.$obj->date.'</td>'; | |
| 179 | + print '<td>'.$ballon->immat.'</td>'; | |
| 180 | + print '<td>'.$pilot->getNomUrl().'</a></td>'; | |
| 181 | + print '<td>'.$obj->lieuD.'</td>'; | |
| 182 | + print '<td>'.$obj->lieuA.'</td>'; | |
| 183 | + print '<td>'.$obj->heureD.'</td>'; | |
| 184 | + print '<td>'.$obj->heureA.'</td>'; | |
| 185 | + print '<td>'.$obj->time.'</td>'; | |
| 186 | + print '<td>'.$obj->nbrPax.'</td>'; | |
| 187 | + print '<td>'.$obj->remarque.'</td>'; | |
| 188 | + print '<td>'.$obj->incidents.'</td>'; | |
| 189 | +                    if($user->rights->flightLog->vol->status){ | |
| 190 | + $vol = new Bbcvols($db); | |
| 191 | + $vol->fetch($obj->idBBC_vols); | |
| 192 | 192 | print '<td>' . $vol->getStatus().'</td>'; | 
| 193 | - } | |
| 194 | - } | |
| 195 | - print'</tr>'; | |
| 196 | - $i++; | |
| 197 | - } | |
| 198 | - } | |
| 199 | - print'</table>'; | |
| 193 | + } | |
| 194 | + } | |
| 195 | + print'</tr>'; | |
| 196 | + $i++; | |
| 197 | + } | |
| 198 | + } | |
| 199 | + print'</table>'; | |
| 200 | 200 | |
| 201 | 201 | } | 
| 202 | 202 | /*************************************************** |