26require_once DOL_DOCUMENT_ROOT.
'/core/modules/societe/modules_societe.class.php';
37 public $name =
'Aquarium';
43 public $version =
'dolibarr';
45 public $prefixcustomeraccountancycode;
47 public $prefixsupplieraccountancycode;
49 public $position = 20;
58 if (!isset($conf->global->COMPANY_AQUARIUM_MASK_CUSTOMER) || trim($conf->global->COMPANY_AQUARIUM_MASK_CUSTOMER) ==
'') {
59 $conf->global->COMPANY_AQUARIUM_MASK_CUSTOMER =
'411';
61 if (!isset($conf->global->COMPANY_AQUARIUM_MASK_SUPPLIER) || trim($conf->global->COMPANY_AQUARIUM_MASK_SUPPLIER) ==
'') {
62 $conf->global->COMPANY_AQUARIUM_MASK_SUPPLIER =
'401';
65 if (!empty($conf->global->COMPANY_AQUARIUM_NO_PREFIX)) {
66 $this->prefixcustomeraccountancycode =
'';
67 $this->prefixsupplieraccountancycode =
'';
69 $this->prefixcustomeraccountancycode = $conf->global->COMPANY_AQUARIUM_MASK_CUSTOMER;
70 $this->prefixsupplieraccountancycode = $conf->global->COMPANY_AQUARIUM_MASK_SUPPLIER;
81 public function info($langs)
86 $langs->load(
"companies");
89 $texte =
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
90 $texte .=
'<input type="hidden" name="token" value="'.newToken().
'">';
91 $texte .=
'<input type="hidden" name="page_y" value="">';
92 $texte .=
'<input type="hidden" name="action" value="setModuleOptions">';
93 $texte .=
'<input type="hidden" name="param1" value="COMPANY_AQUARIUM_MASK_SUPPLIER">';
94 $texte .=
'<input type="hidden" name="param2" value="COMPANY_AQUARIUM_MASK_CUSTOMER">';
95 $texte .=
'<table class="nobordernopadding" width="100%">';
96 $s1 = $form->textwithpicto(
'<input type="text" class="flat" size="4" name="value1" value="'.$conf->global->COMPANY_AQUARIUM_MASK_SUPPLIER.
'">', $tooltip, 1, 1);
97 $s2 = $form->textwithpicto(
'<input type="text" class="flat" size="4" name="value2" value="'.$conf->global->COMPANY_AQUARIUM_MASK_CUSTOMER.
'">', $tooltip, 1, 1);
100 $texte .= $langs->trans(
"ModuleCompanyCodeCustomer".$this->
name,
'{s2}').
"<br>\n";
101 $texte .= $langs->trans(
"ModuleCompanyCodeSupplier".$this->
name,
'{s1}').
"<br>\n";
102 $texte = str_replace(array(
'{s1}',
'{s2}'), array($s1, $s2), $texte);
104 if (!isset($conf->global->COMPANY_AQUARIUM_REMOVE_SPECIAL) || !empty($conf->global->$conf->global->COMPANY_AQUARIUM_REMOVE_SPECIAL)) {
105 $texte .= $langs->trans(
'RemoveSpecialChars').
' = '.
yn(1).
"<br>\n";
108 if (!empty($conf->global->COMPANY_AQUARIUM_CLEAN_REGEX)) {
109 $texte .= $langs->trans(
'COMPANY_AQUARIUM_CLEAN_REGEX').
' = '.$conf->global->COMPANY_AQUARIUM_CLEAN_REGEX.
"<br>\n";
112 if (!empty($conf->global->COMPANY_AQUARIUM_NO_PREFIX)) {
113 $texte .= $langs->trans(
'COMPANY_AQUARIUM_NO_PREFIX').
' = '.$conf->global->COMPANY_AQUARIUM_NO_PREFIX.
"<br>\n";
116 $texte .=
'<td class="right"><input type="submit" class="button button-edit reposition" name="modify" value="'.$langs->trans(
"Modify").
'"></td>';
117 $texte .=
'</tr></table>';
134 $s .= $this->prefixcustomeraccountancycode.
'CUSTCODE';
136 $s .= $this->prefixsupplieraccountancycode.
'SUPPCODE';
150 public function get_code($db, $societe, $type =
'')
158 dol_syslog(
"mod_codecompta_aquarium::get_code search code for type=".$type.
" company=".(!empty($societe->name) ? $societe->name :
''));
161 if ($type ==
'customer') {
162 $codetouse = (!empty($societe->code_client) ? $societe->code_client :
'CUSTCODE');
163 $prefix = $this->prefixcustomeraccountancycode;
164 } elseif ($type ==
'supplier') {
165 $codetouse = (!empty($societe->code_fournisseur) ? $societe->code_fournisseur :
'SUPPCODE');
166 $prefix = $this->prefixsupplieraccountancycode;
168 $this->error =
'Bad value for parameter type';
175 if (!isset($conf->global->COMPANY_AQUARIUM_REMOVE_SPECIAL) || !empty($conf->global->COMPANY_AQUARIUM_REMOVE_SPECIAL)) {
176 $codetouse = preg_replace(
'/([^a-z0-9])/i',
'', $codetouse);
179 if (!empty($conf->global->COMPANY_AQUARIUM_REMOVE_ALPHA)) {
180 $codetouse = preg_replace(
'/([a-z])/i',
'', $codetouse);
183 if (!empty($conf->global->COMPANY_AQUARIUM_CLEAN_REGEX)) {
184 $codetouse = preg_replace(
'/'.$conf->global->COMPANY_AQUARIUM_CLEAN_REGEX.
'/',
'\1\2\3', $codetouse);
187 $codetouse = $prefix.strtoupper($codetouse);
189 $is_dispo = $this->
verif($db, $codetouse, $societe, $type);
191 $this->code = $codetouse;
194 $this->code = $codetouse;
196 dol_syslog(
"mod_codecompta_aquarium::get_code found code=".$this->code);
210 public function verif($db, $code, $societe, $type)
213 if ($type ==
'customer') {
214 $sql .=
"code_compta";
215 } elseif ($type ==
'supplier') {
216 $sql .=
"code_compta_fournisseur";
218 $sql .=
" FROM ".MAIN_DB_PREFIX.
"societe";
220 if ($type ==
'customer') {
221 $sql .=
"code_compta";
222 } elseif ($type ==
'supplier') {
223 $sql .=
"code_compta_fournisseur";
225 $sql .=
" = '".$db->escape($code).
"'";
226 if (!empty($societe->id)) {
227 $sql .=
" AND rowid <> ".$societe->id;
230 $resql = $db->query($sql);
232 if ($db->num_rows($resql) == 0) {
233 dol_syslog(
"mod_codecompta_aquarium::verif code '".$code.
"' available");
236 dol_syslog(
"mod_codecompta_aquarium::verif code '".$code.
"' not available");
240 $this->error = $db->error().
" sql=".$sql;
Parent class for third parties accountancy code generators.
Class to manage accountancy code of thirdparties with Aquarium rules.
info($langs)
Return description of module.
verif($db, $code, $societe, $type)
Return if a code is available.
get_code($db, $societe, $type='')
Set accountancy account code for a third party into this->code.
getExample($langs, $objsoc=0, $type=-1)
Return an example of result returned by getNextValue.
__construct()
Constructor.
yn($yesno, $case=1, $color=0)
Return yes or no in current language.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
$conf db name
Only used if Module[ID]Name translation string is not found.