Difference between revisions of "Extrafields"

From Dolibarr ERP CRM Wiki
Jump to navigation Jump to search
(Ajout d'une partie vidéo concernant les extrafields. Not in the language of the page but it's better than nothing or it can help)
Tag: 2017 source edit
 
(15 intermediate revisions by 8 users not shown)
Line 1: Line 1:
 +
<!-- BEGIN origin interlang links -->
 +
<!-- You can edit this section but do NOT remove these comments
 +
    Links below will be automatically replicated on translated pages by PolyglotBot -->
 +
[[zh:附加字段]]
 +
[[fr:Champs_personnalises]]
 +
<!-- END interlang links -->
 +
 
{{TemplateDocDevEn}}
 
{{TemplateDocDevEn}}
= Extrafields =
 
  
Extrafields allow to add others datas to Dolibarr standard database schema. Introduced in version 3.2, extrafields are now implemented in businesses object :
+
=Extrafields=
 +
Extrafields allow to add others datas to Dolibarr standard database schema. Introduced in version 3.2, extrafields are now implemented in most business objects :
 
* Thirdparties & contacts  
 
* Thirdparties & contacts  
 
* Users
 
* Users
 
* Events
 
* Events
 +
* Proposal
 
* Customer Invoices
 
* Customer Invoices
* Proposal
+
* Orders
 +
* Supplier Proposal
 +
* Supplier Invoices
 +
* Supplier Orders
 
* Products & services
 
* Products & services
 
* Member & member type
 
* Member & member type
* Orders
 
 
* Projects & project tasks (since 3.4)
 
* Projects & project tasks (since 3.4)
 +
* Categories
 +
* Expense Report
  
== Technical implementation ==
+
= Technical implementation =
  
Each object has his table in database to store values of extrafields.
+
Each object has its table in database to store values of extrafields.
  
 
== Datatables extrafield tables models ==
 
== Datatables extrafield tables models ==
 +
 
   llx_''BaseTableNAme''_extrafields
 
   llx_''BaseTableNAme''_extrafields
 
   rowid                    integer AUTO_INCREMENT PRIMARY KEY,
 
   rowid                    integer AUTO_INCREMENT PRIMARY KEY,
Line 24: Line 37:
 
   import_key                varchar(14)
 
   import_key                varchar(14)
  
 +
 +
An example of mysql definition file for extrafields implementation on an object :
 +
 +
  create table llx_place_room_extrafields
 +
  (
 +
    rowid                    integer AUTO_INCREMENT PRIMARY KEY,
 +
    tms                      timestamp,
 +
    fk_object                integer NOT NULL,
 +
    import_key                varchar(14)                          -- import key
 +
  ) ENGINE=innodb;
 +
 +
= Usage =
 
== Load class for extrafields ==
 
== Load class for extrafields ==
 
To use extrafields all pages need include  
 
To use extrafields all pages need include  
<source lang="php">
+
<syntaxhighlight lang="php">
 
require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
 
require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
</source>
+
</syntaxhighlight>
  
 
== Load extrafield array in object ==
 
== Load extrafield array in object ==
<source lang="php">
+
<syntaxhighlight lang="php">
 
$extrafields = new ExtraFields($db);
 
$extrafields = new ExtraFields($db);
 
$extralabels=$extrafields->fetch_name_optionals_label($object->table_element);
 
$extralabels=$extrafields->fetch_name_optionals_label($object->table_element);
</source>
+
</syntaxhighlight>
  
 
$extralabels will be an array with code and label of extrafields.
 
$extralabels will be an array with code and label of extrafields.
 +
This code must be placed into the class for example into the function "write_file".
  
 
== Load extrafield into object ==
 
== Load extrafield into object ==
Line 42: Line 68:
 
Extrafields are loaded in $object->array_options array.
 
Extrafields are loaded in $object->array_options array.
  
<source lang="php">
+
<syntaxhighlight lang="php">
 
$object->fetch($rowid);
 
$object->fetch($rowid);
 
$object->fetch_optionals($rowid,$extralabels);
 
$object->fetch_optionals($rowid,$extralabels);
</source>
+
</syntaxhighlight>
 +
 
 +
This code must be placed just after the above.
 +
 
 +
== Display extrafield value into PDF or HTML ==
 +
After load extrafields
 +
 
 +
HTML Exemple
 +
<syntaxhighlight lang="php">
 +
print $object->array_options ['options_XXX'];
 +
</syntaxhighlight>
 +
Where XXX is the code of the extrafields
 +
 
 +
PDF example
 +
<syntaxhighlight lang="php">
 +
$pdf->MultiCell (0,5, $outputlangs->convToOutputCharset($object->array_options ['options_XXX']),0,'L'); )
 +
</syntaxhighlight>
 +
Where XXX is the code of the extrafields
 +
 
 +
A dedicated page to show how to integrate extrafileds into PDF can be found there : [[Add Extrafields on PDF Models]]
 +
 
 +
== Display extrafield value of lines into PDF or HTML ==
 +
After load extrafields
 +
 
 +
HTML Exemple
 +
<syntaxhighlight lang="php">
 +
print $object->lines[$i]->array_options['options_XXX'];
 +
</syntaxhighlight>
 +
Where XXX is the code of the extrafields
 +
 
 +
PDF example
 +
<syntaxhighlight lang="php">
 +
$pdf->MultiCell (0,5, $outputlangs->convToOutputCharset($object->lines[$i]->array_options['options_XXX']),0,'L');
 +
</syntaxhighlight>
 +
Where XXX is the code of the extrafields
 +
 
 +
 
 +
== How to change the labels of the columns when using models (propals, etc.) ==
 +
In the PHP code of the model you can change the labels of your extrafield by changing into the function named "_tableau(...)"
  
 
== Before call $object->create() or $object->update() ==
 
== Before call $object->create() or $object->update() ==
  
Values of extrafields sent by form need to be retrieve. For do that, use this method :
+
Values of extrafields sent by form need to be retrieve. For doing that, use this method :
<source lang="php">
+
<syntaxhighlight lang="php">
 
$ret = $extrafields->setOptionalsFromPost($extralabels,$object);
 
$ret = $extrafields->setOptionalsFromPost($extralabels,$object);
</source>
+
</syntaxhighlight>
 
 
  
 
== Inside edit page to display extrafields ==
 
== Inside edit page to display extrafields ==
  
  
<source lang="php">
+
<syntaxhighlight lang="php">
 
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action);    // Note that $action and $object may have been modified by hook
 
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action);    // Note that $action and $object may have been modified by hook
 
if (empty($reshook) && ! empty($extrafields->attribute_label))
 
if (empty($reshook) && ! empty($extrafields->attribute_label))
Line 64: Line 127:
 
       print $object->showOptionals($extrafields,'edit');
 
       print $object->showOptionals($extrafields,'edit');
 
}
 
}
</source>
+
</syntaxhighlight>
  
 
== Inside view page to display extrafields ==
 
== Inside view page to display extrafields ==
  
<source lang="php">
+
<syntaxhighlight lang="php">
 
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action);    // Note that $action and $object may have been modified by hook
 
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action);    // Note that $action and $object may have been modified by hook
 
if (empty($reshook) && ! empty($extrafields->attribute_label))
 
if (empty($reshook) && ! empty($extrafields->attribute_label))
Line 74: Line 137:
 
       print $object->showOptionals($extrafields);
 
       print $object->showOptionals($extrafields);
 
}
 
}
</source>
+
</syntaxhighlight>
  
 
== After fetch method of this object class ==
 
== After fetch method of this object class ==
<source lang="php">
+
<syntaxhighlight lang="php">
 
require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
 
require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
 
$extrafields=new ExtraFields($this->db);
 
$extrafields=new ExtraFields($this->db);
Line 84: Line 147:
 
$this->fetch_optionals($this->id,$extralabels);
 
$this->fetch_optionals($this->id,$extralabels);
 
}
 
}
</source>
+
</syntaxhighlight>
  
 
==After Update method of this object class :==
 
==After Update method of this object class :==
<source lang="php">
+
<syntaxhighlight lang="php">
 
// Actions on extra fields (by external module or standard code)
 
// Actions on extra fields (by external module or standard code)
 
// FIXME le hook fait double emploi avec le trigger !!
 
// FIXME le hook fait double emploi avec le trigger !!
Line 105: Line 168:
 
}
 
}
 
else if ($reshook < 0) $error++;
 
else if ($reshook < 0) $error++;
</source>
+
</syntaxhighlight>
  
 
== After delete method of this object class ==
 
== After delete method of this object class ==
<source lang="php">
+
<syntaxhighlight lang="php">
 
// Removed extrafields
 
// Removed extrafields
 
if (! $error)
 
if (! $error)
Line 122: Line 185:
 
   }
 
   }
 
}
 
}
</source>
+
</syntaxhighlight>
  
 
==Admin pages ==
 
==Admin pages ==
<source lang="php">
+
<syntaxhighlight lang="php">
 
$elementtype='facture'; //Must be the $table_element of the class that manage extrafield
 
$elementtype='facture'; //Must be the $table_element of the class that manage extrafield
</source>
+
</syntaxhighlight>
  
==Repair Database ==
+
=Repair Database =
 
Search and find definition of $listofmodulesextra add the new extrafield declaration
 
Search and find definition of $listofmodulesextra add the new extrafield declaration
<source lang="php">
+
<syntaxhighlight lang="php">
 
$listofmodulesextra=array('societe'=>'societe','adherent'=>'adherent','product'=>'product',
 
$listofmodulesextra=array('societe'=>'societe','adherent'=>'adherent','product'=>'product',
 
'socpeople'=>'socpeople', 'commande'=>'commande', 'facture'=>'facture',
 
'socpeople'=>'socpeople', 'commande'=>'commande', 'facture'=>'facture',
 
'commande_fournisseur'=>'commande_fournisseur', 'actioncomm'=>'actioncomm',
 
'commande_fournisseur'=>'commande_fournisseur', 'actioncomm'=>'actioncomm',
 
'adherent_type'=>'adherent_type','user'=>'user','projet'=>'projet', 'projet_task'=>'projet_task');
 
'adherent_type'=>'adherent_type','user'=>'user','projet'=>'projet', 'projet_task'=>'projet_task');
</source>
+
</syntaxhighlight>
 +
 
 +
= Related videos =
 +
 
 +
Extrafields:
 +
(vocal in french but subtitles are available and review in this language)
 +
 
 +
<youtube width="200" height="180">Eex2YXxToS0</youtube>
 +
<youtube width="200" height="180">QQnyoUGsN1c</youtube>
 +
<youtube width="200" height="180">md6JHbd8o_0</youtube>

Latest revision as of 17:57, 24 October 2022


Extrafields

Extrafields allow to add others datas to Dolibarr standard database schema. Introduced in version 3.2, extrafields are now implemented in most business objects :

  • Thirdparties & contacts
  • Users
  • Events
  • Proposal
  • Customer Invoices
  • Orders
  • Supplier Proposal
  • Supplier Invoices
  • Supplier Orders
  • Products & services
  • Member & member type
  • Projects & project tasks (since 3.4)
  • Categories
  • Expense Report

Technical implementation

Each object has its table in database to store values of extrafields.

Datatables extrafield tables models

 llx_BaseTableNAme_extrafields
 rowid                     integer AUTO_INCREMENT PRIMARY KEY,
 tms                       timestamp,
 fk_object                 integer NOT NULL,
 import_key                varchar(14)


An example of mysql definition file for extrafields implementation on an object :

 create table llx_place_room_extrafields
 (
   rowid                     integer AUTO_INCREMENT PRIMARY KEY,
   tms                       timestamp,
   fk_object                 integer NOT NULL,
   import_key                varchar(14)                          		-- import key
 ) ENGINE=innodb;

Usage

Load class for extrafields

To use extrafields all pages need include

require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';

Load extrafield array in object

$extrafields = new ExtraFields($db);
$extralabels=$extrafields->fetch_name_optionals_label($object->table_element);

$extralabels will be an array with code and label of extrafields. This code must be placed into the class for example into the function "write_file".

Load extrafield into object

Extrafields are loaded in $object->array_options array.

$object->fetch($rowid);
$object->fetch_optionals($rowid,$extralabels);

This code must be placed just after the above.

Display extrafield value into PDF or HTML

After load extrafields

HTML Exemple

print $object->array_options ['options_XXX'];

Where XXX is the code of the extrafields

PDF example

$pdf->MultiCell (0,5, $outputlangs->convToOutputCharset($object->array_options ['options_XXX']),0,'L'); )

Where XXX is the code of the extrafields

A dedicated page to show how to integrate extrafileds into PDF can be found there : Add Extrafields on PDF Models

Display extrafield value of lines into PDF or HTML

After load extrafields

HTML Exemple

print $object->lines[$i]->array_options['options_XXX'];

Where XXX is the code of the extrafields

PDF example

$pdf->MultiCell (0,5, $outputlangs->convToOutputCharset($object->lines[$i]->array_options['options_XXX']),0,'L');

Where XXX is the code of the extrafields


How to change the labels of the columns when using models (propals, etc.)

In the PHP code of the model you can change the labels of your extrafield by changing into the function named "_tableau(...)"

Before call $object->create() or $object->update()

Values of extrafields sent by form need to be retrieve. For doing that, use this method :

$ret = $extrafields->setOptionalsFromPost($extralabels,$object);

Inside edit page to display extrafields

$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action);    // Note that $action and $object may have been modified by hook
if (empty($reshook) && ! empty($extrafields->attribute_label))
{
      print $object->showOptionals($extrafields,'edit');
}

Inside view page to display extrafields

$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action);    // Note that $action and $object may have been modified by hook
if (empty($reshook) && ! empty($extrafields->attribute_label))
{
      print $object->showOptionals($extrafields);
}

After fetch method of this object class

require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
$extrafields=new ExtraFields($this->db);
$extralabels=$extrafields->fetch_name_optionals_label($this->table_element,true);
if (count($extralabels)>0) {
	$this->fetch_optionals($this->id,$extralabels);
}

After Update method of this object class :

// Actions on extra fields (by external module or standard code)
// FIXME le hook fait double emploi avec le trigger !!
$hookmanager->initHooks(array('HookModuleNamedao'));
$parameters=array('socid'=>$this->id);
$reshook=$hookmanager->executeHooks('insertExtraFields',$parameters,$this,$action);    // Note that $action and $object may have been modified by some hooks
if (empty($reshook))
{
	if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) // For avoid conflicts if trigger used
	{
            $result=$this->insertExtraFields();
            if ($result < 0)
            {
            	$error++;
            }
        }
}
else if ($reshook < 0) $error++;

After delete method of this object class

// Removed extrafields
if (! $error)
{
      if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) // For avoid conflicts if trigger used
      {
      $result=$this->deleteExtraFields();
      if ($result < 0)
      {
        $error++;
        dol_syslog(get_class($this)."::delete erreur ".$errorflag." ".$this->error, LOG_ERR);
      }
   }
}

Admin pages

$elementtype='facture'; //Must be the $table_element of the class that manage extrafield

Repair Database

Search and find definition of $listofmodulesextra add the new extrafield declaration

$listofmodulesextra=array('societe'=>'societe','adherent'=>'adherent','product'=>'product',
			'socpeople'=>'socpeople', 'commande'=>'commande', 'facture'=>'facture',
			'commande_fournisseur'=>'commande_fournisseur', 'actioncomm'=>'actioncomm',
			'adherent_type'=>'adherent_type','user'=>'user','projet'=>'projet', 'projet_task'=>'projet_task');

Related videos

Extrafields: (vocal in french but subtitles are available and review in this language)