@@ -226,9 +226,10 @@ abstract class CustomModeleNumRefSaturne extends ModeleNumRefSaturne
226
226
/**
227
227
* Return description of module
228
228
*
229
- * @return string Texte descripif
229
+ * @param String $mode Either "standard" for normal prefix or "custom"
230
+ * @return String Descriptive text
230
231
*/
231
- public function info (): string
232
+ public function info ($ mode = ' standard ' ): string
232
233
{
233
234
234
235
global $ conf , $ langs , $ db , $ moduleNameLowerCase ;
@@ -238,8 +239,21 @@ public function info(): string
238
239
$ form = new Form ($ db );
239
240
$ className = get_class ($ this );
240
241
241
- $ modName = str_replace ('mod_ ' , '' , $ className );
242
- $ confName = strtoupper ($ moduleNameLowerCase . '_ ' . $ modName . '_ADDON ' );
242
+ if ($ mode == 'custom ' ) {
243
+ $ modName = explode ('_ ' , $ className );
244
+ $ type = dol_strtoupper ($ modName [1 ]);
245
+ $ confName = strtoupper (dol_strtoupper ($ moduleNameLowerCase ) . '_ ' . $ type . '_CUSTOM_ADDON ' );
246
+
247
+ $ tooltip = $ langs ->trans ("GenericMaskCodes " , $ langs ->transnoentities (ucfirst ($ modName [1 ])), $ langs ->transnoentities (ucfirst ($ modName [1 ])));
248
+ $ tooltip .= $ langs ->trans ("GenericMaskCodes2 " );
249
+ $ tooltip .= $ langs ->trans ("GenericMaskCodes3 " );
250
+ $ tooltip .= $ langs ->trans ("GenericMaskCodes5 " );
251
+ } else {
252
+ $ modName = str_replace ('mod_ ' , '' , $ className );
253
+ $ confName = strtoupper ($ moduleNameLowerCase . '_ ' . $ modName . '_ADDON ' );
254
+
255
+ $ tooltip = $ langs ->trans ("SaturneGenericMaskCodes " );
256
+ }
243
257
244
258
$ texte = $ langs ->trans ('GenericNumRefModelDesc ' )."<br> \n" ;
245
259
$ texte .= '<form action=" ' . $ _SERVER ['PHP_SELF ' ] . '?module_name= ' . $ moduleNameLowerCase . '" method="POST"> ' ;
@@ -248,8 +262,6 @@ public function info(): string
248
262
$ texte .= '<input type="hidden" name="mask" value=" ' . $ confName .'"> ' ;
249
263
$ texte .= '<table class="nobordernopadding" width="100%"> ' ;
250
264
251
- $ tooltip = $ langs ->trans ("SaturneGenericMaskCodes " );
252
-
253
265
// Parametrage du prefix
254
266
$ texte .= '<tr><td> ' .$ langs ->trans ("Mask " ).':</td> ' ;
255
267
$ texte .= '<td class="right"> ' .$ form ->textwithpicto ('<input type="text" class="flat minwidth175" name="addon_value" value=" ' .$ conf ->global ->$ confName .'"> ' , $ tooltip , 1 , 1 ).'</td> ' ;
@@ -341,6 +353,29 @@ public function getNextValue(object $object): string
341
353
return $ this ->prefix . $ num ;
342
354
}
343
355
356
+ /**
357
+ * Return next custom value
358
+ *
359
+ * @return string Value if OK, 0 if KO
360
+ */
361
+ public function getNextCustomValue (object $ object ): string
362
+ {
363
+ global $ conf , $ db , $ moduleNameUpperCase ;
364
+
365
+ $ type = dol_strtoupper ($ object ->element );
366
+ $ mask = getDolGlobalString ($ moduleNameUpperCase . '_ ' . $ type . '_CUSTOM_ADDON ' );
367
+
368
+ if (dol_strlen ($ mask ) <= 0 ) {
369
+ $ this ->error = 'NotConfigured ' ;
370
+ return 0 ;
371
+ }
372
+
373
+ $ date = (empty ($ object ->date_c ) ? (empty ($ object ->date_creation ) ? dol_now () : $ object ->date_creation ) : $ object ->date_c );
374
+ $ ret = get_next_value ($ db , $ mask , $ object ->table_element , 'ref ' , '' , (is_object ($ object ) ? $ object : '' ), $ date , 'next ' , false , null , $ conf ->entity );
375
+
376
+ return $ ret ;
377
+ }
378
+
344
379
/**
345
380
* Set prefix and suffix for custom value
346
381
*
0 commit comments