mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-08 00:52:01 +01:00
Fix better management of export of extrafield computed.
This commit is contained in:
@@ -215,6 +215,9 @@ class DolibarrModules // Can not be abstract, because we need to insta
|
||||
*/
|
||||
public $descriptionlong;
|
||||
|
||||
|
||||
// For exports
|
||||
|
||||
/**
|
||||
* @var string Module export code
|
||||
*/
|
||||
@@ -225,6 +228,19 @@ class DolibarrModules // Can not be abstract, because we need to insta
|
||||
*/
|
||||
public $export_label;
|
||||
|
||||
public $export_permission;
|
||||
public $export_fields_array;
|
||||
public $export_TypeFields_array;
|
||||
public $export_entities_array;
|
||||
public $export_special_array; // special or computed field
|
||||
public $export_dependencies_array;
|
||||
public $export_sql_start;
|
||||
public $export_sql_end;
|
||||
public $export_sql_order;
|
||||
|
||||
|
||||
// For import
|
||||
|
||||
/**
|
||||
* @var string Module import code
|
||||
*/
|
||||
@@ -235,6 +251,7 @@ class DolibarrModules // Can not be abstract, because we need to insta
|
||||
*/
|
||||
public $import_label;
|
||||
|
||||
|
||||
/**
|
||||
* @var string Module constant name
|
||||
*/
|
||||
@@ -343,6 +360,13 @@ class DolibarrModules // Can not be abstract, because we need to insta
|
||||
public $hidden = false;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Constructor. Define names, constants, directories, boxes, permissions
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user