forked from Wavyzz/dolibarr
157 lines
4.4 KiB
PHP
157 lines
4.4 KiB
PHP
<?php
|
|
/* Copyright (C) 2004-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
|
|
* Copyright (C) 2006 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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 2 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/includes/modules/societe/mod_codecompta_aquarium.php
|
|
\ingroup societe
|
|
\brief Fichier de la classe des gestion aquarium des codes compta des societes clientes
|
|
\version $Id: mod_codecompta_aquarium.php,v 1.17 2011/07/31 23:28:14 eldy Exp $
|
|
*/
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/includes/modules/societe/modules_societe.class.php");
|
|
|
|
/**
|
|
\class mod_codecompta_aquarium
|
|
\brief Classe permettant la gestion aquarium des codes compta des societes clients
|
|
*/
|
|
class mod_codecompta_aquarium extends ModeleAccountancyCode
|
|
{
|
|
var $nom;
|
|
|
|
|
|
/**
|
|
* \brief Constructor
|
|
*/
|
|
function mod_codecompta_aquarium()
|
|
{
|
|
$this->nom = "Aquarium";
|
|
}
|
|
|
|
|
|
/**
|
|
* \brief Return description of module
|
|
* \param $langs Object langs
|
|
* \return string Description
|
|
*/
|
|
function info($langs)
|
|
{
|
|
return $langs->trans("ModuleCompanyCode".$this->nom);
|
|
}
|
|
|
|
|
|
/**
|
|
* \brief Return accountancy account code for a third party
|
|
* \param DB Database handler
|
|
* \param societe Third party object
|
|
* \param type 'customer' or 'supplier'
|
|
* \return int >=0 if OK, <0 if KO
|
|
*/
|
|
function get_code($DB, $societe, $type)
|
|
{
|
|
$prefixcodecomptacustomer='411';
|
|
$prefixcodecomptasupplier='401';
|
|
|
|
$i = 0;
|
|
$this->db = $DB;
|
|
|
|
dol_syslog("mod_codecompta_aquarium::get_code search code for type=".$type." company=".$societe->nom);
|
|
|
|
// Regle gestion compte compta
|
|
$codetouse='';
|
|
if ($type == 'customer') $codetouse = $prefixcodecomptacustomer;
|
|
if ($type == 'supplier') $codetouse = $prefixcodecomptasupplier;
|
|
if ($type == 'customer') $codetouse.=$societe->code_client;
|
|
if ($type == 'supplier') $codetouse.=$societe->code_fournisseur;
|
|
$codetouse=strtoupper(preg_replace('/([^a-z0-9])/i','',$codetouse));
|
|
|
|
$is_dispo = $this->verif($DB, $codetouse, $societe, $type);
|
|
if (! $is_dispo)
|
|
{
|
|
/*
|
|
// On tente ajout suffix
|
|
while ($is_dispo == 0 && $i < 37)
|
|
{
|
|
$arr = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
$altcodetouse = $codetouse . substr($arr, $i, 1);
|
|
|
|
$is_dispo = $this->verif($DB, $altcodetouse, $societe, $type);
|
|
|
|
$i++;
|
|
}
|
|
*/
|
|
// Pour retour
|
|
// $this->code=$altcodetouse;
|
|
$this->code=$codetouse;
|
|
}
|
|
else
|
|
{
|
|
// Pour retour
|
|
$this->code=$codetouse;
|
|
}
|
|
dol_syslog("mod_codecompta_aquarium::get_code found code=".$this->code);
|
|
return $is_dispo;
|
|
}
|
|
|
|
|
|
/**
|
|
* \brief Return if a code is available
|
|
* \param db Database handler
|
|
* \param code Code of third party
|
|
* \param societe Object third party
|
|
* \param type 'supplier' or 'customer'
|
|
* \return int 0 if OK but not available, >0 if OK and available, <0 if KO
|
|
*/
|
|
function verif($db, $code, $societe, $type)
|
|
{
|
|
$sql = "SELECT ";
|
|
if ($type == 'customer') $sql.= "code_compta";
|
|
if ($type == 'supplier') $sql.= "code_compta_fournisseur";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."societe";
|
|
$sql.= " WHERE ";
|
|
if ($type == 'customer') $sql.= "code_compta";
|
|
if ($type == 'supplier') $sql.= "code_compta_fournisseur";
|
|
$sql.= " = '".$code."'";
|
|
$sql.= " AND rowid != ".$societe->id;
|
|
|
|
$resql=$db->query($sql);
|
|
if ($resql)
|
|
{
|
|
if ($db->num_rows($resql) == 0)
|
|
{
|
|
dol_syslog("mod_codecompta_aquarium::verif code '".$code."' available");
|
|
return 1; // Dispo
|
|
}
|
|
else
|
|
{
|
|
dol_syslog("mod_codecompta_aquarium::verif code '".$code."' not available");
|
|
return 0; // Non dispo
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$this->error=$db->error()." sql=".$sql;
|
|
dol_syslog("mod_codecompta_aquarium::verif error".$this->error, LOG_ERR);
|
|
return -1; // Erreur
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|