Skip to content

Commit

Permalink
Evarisk#3402 [ProjectCreation] fix: require thirdparty and project
Browse files Browse the repository at this point in the history
  • Loading branch information
evarisk-micka committed Oct 12, 2023
1 parent 87ed3bc commit 8efd219
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions core/tpl/digiriskdolibarr_projectcreation_action.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php';
require_once DOL_DOCUMENT_ROOT . '/core/lib/admin.lib.php';

require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php';
require_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php';
require_once DOL_DOCUMENT_ROOT . '/user/class/usergroup.class.php';

$userGroup = new UserGroup($db);

$userGroup = new UserGroup($db);
$project = new Project($db);
$third_party = new Societe($db);
//Set multi entity sharing

$params = array(
Expand Down

0 comments on commit 8efd219

Please sign in to comment.