29require_once DOL_DOCUMENT_ROOT.
'/core/modules/societe/modules_societe.class.php';
38 public $name =
'Monkey';
39 public $version =
'dolibarr';
42 public $prefixcustomer =
'CU';
43 public $prefixsupplier =
'SU';
56 $this->code_modifiable = 1;
57 $this->code_modifiable_invalide = 1;
58 $this->code_modifiable_null = 1;
60 $this->prefixIsRequired = 0;
70 public function info($langs)
72 return $langs->trans(
"MonkeyNumRefModelDesc", $this->prefixcustomer, $this->prefixsupplier);
84 public function getExample($langs, $objsoc =
'', $type = -1)
86 return $this->prefixcustomer.
'0901-00001<br>'.$this->prefixsupplier.
'0901-00001';
104 $field =
'code_client';
105 $prefix = $this->prefixcustomer;
106 } elseif ($type == 1) {
107 $field =
'code_fournisseur';
108 $prefix = $this->prefixsupplier;
114 $posindice = strlen($prefix) + 6;
115 $sql =
"SELECT MAX(CAST(SUBSTRING(".$field.
" FROM ".$posindice.
") AS SIGNED)) as max";
116 $sql .=
" FROM ".MAIN_DB_PREFIX.
"societe";
117 $sql .=
" WHERE ".$field.
" LIKE '".$db->escape($prefix).
"____-%'";
118 $sql .=
" AND entity IN (".getEntity(
'societe').
")";
120 dol_syslog(get_class($this).
"::getNextValue", LOG_DEBUG);
122 $resql = $db->query($sql);
124 $obj = $db->fetch_object($resql);
126 $max = intval($obj->max);
137 if ($max >= (pow(10, 5) - 1)) {
140 $num = sprintf(
"%05d", $max + 1);
143 dol_syslog(get_class($this).
"::getNextValue return ".$prefix.$yymm.
"-".$num);
144 return $prefix.$yymm.
"-".$num;
161 public function verif($db, &$code, $soc, $type)
164 $code = strtoupper(trim($code));
166 if (empty($code) && $this->code_null && !
getDolGlobalString(
'MAIN_COMPANY_CODE_ALWAYS_REQUIRED')) {
168 } elseif (empty($code) && (!$this->code_null ||
getDolGlobalString(
'MAIN_COMPANY_CODE_ALWAYS_REQUIRED'))) {
172 $is_dispo = $this->
verif_dispo($db, $code, $soc, $type);
173 if ($is_dispo != 0) {
187 dol_syslog(get_class($this).
"::verif code=".$code.
" type=".$type.
" result=".$result);
205 $sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"societe";
207 $sql .=
" WHERE code_fournisseur = '".$db->escape($code).
"'";
209 $sql .=
" WHERE code_client = '".$db->escape($code).
"'";
211 $sql .=
" AND entity IN (".getEntity(
'societe').
")";
213 $sql .=
" AND rowid <> ".$soc->id;
216 dol_syslog(get_class($this).
"::verif_dispo", LOG_DEBUG);
217 $resql = $db->query($sql);
219 if ($db->num_rows($resql) == 0) {
Parent class for third parties code generators.
Class permettant la gestion monkey des codes tiers.
verif_syntax($code)
Renvoi si un code respecte la syntax.
info($langs)
Return description of module.
__construct($db)
Constructor.
verif_dispo($db, $code, $soc, $type=0)
Indicates if the code is available or not (by another third party)
getExample($langs, $objsoc='', $type=-1)
Return an example of result returned by getNextValue.
verif($db, &$code, $soc, $type)
Check validity of code according to its rules.
getNextValue($objsoc='', $type=-1)
Return next value.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.