34'@phan-var-force CommonObject $objecttmp';
36if (!empty($sall) || !empty($search_all)) {
37 $search_all = empty($sall) ? $search_all : $sall;
39 print
'<input type="hidden" name="search_all" value="'.$search_all.
'">';
42if ($massaction ==
'predeletedraft') {
43 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmMassDraftDeletion"), $langs->trans(
"ConfirmMassDeletionQuestion", count($toselect)),
"delete",
null,
'', 0, 200, 500, 1);
46if ($massaction ==
'predelete') {
47 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmMassDeletion"), $langs->trans(
"ConfirmMassDeletionQuestion", count($toselect)),
"delete",
null,
'', 0, 200, 500, 1);
50if ($massaction ==
'preclonetasks') {
52 foreach (
GETPOST(
'toselect') as $tmpselected) {
53 $selected .=
'&selected[]=' . $tmpselected;
56 $formquestion = array(
59 array(
'type' =>
'other',
'name' =>
'projectid',
'label' => $langs->trans(
'Project') .
': ',
'value' => $form->selectProjects(
$object->id,
'projectid',
'', 0, 1,
'', 0, array(),
$object->socid,
'1', 1,
'',
null, 1)),
61 print $form->formconfirm($_SERVER[
'PHP_SELF'] .
'?id=' .
$object->id . $selected, $langs->trans(
'ConfirmMassClone'),
'',
'clonetasks', $formquestion,
'', 1, 300, 590);
64if ($massaction ==
'preaffecttag' && isModEnabled(
'category')) {
65 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
67 $categ_types = array();
68 $categ_type_array = $categ->getMapList();
69 foreach ($categ_type_array as $categdef) {
71 if (isset(
$object) && $categdef[
'obj_table'] ==
$object->table_element) {
72 if (!array_key_exists($categdef[
'code'], $categ_types)) {
73 $categ_types[$categdef[
'code']] = array(
'code' => $categdef[
'code'],
'label' => $langs->trans($categdef[
'obj_class']));
76 if (isset($objecttmp) && $categdef[
'obj_table'] == $objecttmp->table_element) {
77 if (!array_key_exists($categdef[
'code'], $categ_types)) {
78 $categ_types[$categdef[
'code']] = array(
'code' => $categdef[
'code'],
'label' => $langs->trans($categdef[
'obj_class']));
83 $formquestion = array();
84 if (!empty($categ_types)) {
85 foreach ($categ_types as $categ_type) {
86 $categ_arbo_tmp = $form->select_all_categories($categ_type[
'code'],
'',
'parent', 0, 0, 3);
87 $formquestion[] = array(
89 'name' =>
'affecttag_'.$categ_type[
'code'],
91 'value' => $form->multiselectarray(
'contcats_'.$categ_type[
'code'], $categ_arbo_tmp,
GETPOST(
'contcats_'.$categ_type[
'code'],
'array'),
null,
null,
'', 0,
'60%',
'',
'', $langs->transnoentitiesnoconv(
"SelectTheTagsToAssign"))
94 $formquestion[] = array(
96 'name' =>
'affecttag_type',
98 'value' =>
'<input type="hidden" name="affecttag_type" id="affecttag_type" value="'.implode(
",", array_keys($categ_types)).
'"/>'
100 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmAffectTag"), $langs->trans(
"ConfirmAffectTagQuestion", count($toselect)),
"affecttag", $formquestion, 1, 0, 200, 500, 1);
106if ($massaction ==
'preupdateprice'
111 $formquestion = array();
113 $valuefield =
'<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
114 $valuefield .=
'<input type="number" name="pricerate" id="pricerate" min="-100" value="0" style="width: 100px; text-align: right; margin-right: 10px" />%';
115 $valuefield .=
'</div>';
117 $formquestion[] = array(
119 'name' =>
'pricerate',
120 'label' => $langs->trans(
"Rate"),
121 'value' => $valuefield
124 $descConfirmPreUpdatePrice=$langs->trans(
"ConfirmUpdatePriceQuestion", count($toselect));
126 $descConfirmPreUpdatePrice=$langs->trans(
"ConfirmUpdatePriceQuestion", count($toselect)*
getDolGlobalInt(
'PRODUIT_MULTIPRICES_LIMIT') .
' ('.$langs->transnoentities(
'PricingRule').
', '.$langs->transnoentities(
'MultiPricesNumPrices').
')');
129 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmUpdatePrice"), $descConfirmPreUpdatePrice,
"updateprice", $formquestion, 1, 0, 200, 500, 1);
132if ($massaction ==
'presetsupervisor') {
133 $formquestion = array();
135 $valuefield =
'<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
136 $valuefield .=
img_picto(
'',
'user').
' ';
137 $valuefield .= $form->select_dolusers(
'',
'supervisortoset', 1, $arrayofselected, 0,
'', 0,
$object->entity, 0, 0,
'', 0,
'',
'widthcentpercentminusx maxwidth300');
138 $valuefield .=
'</div>';
140 $formquestion[] = array(
142 'name' =>
'supervisortoset',
143 'label' => $langs->trans(
"Supervisor"),
144 'value' => $valuefield
147 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmSetSupervisor"), $langs->trans(
"ConfirmSetSupervisorQuestion", count($toselect)),
"setsupervisor", $formquestion, 1, 0, 200, 500, 1);
150if ($massaction ==
'preaffectuser') {
151 $formquestion = array();
153 $valuefielduser =
'<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 165px; padding-bottom: 6px; gap: 5px">';
154 $valuefielduser .=
img_picto(
'',
'user').
' ';
155 $valuefielduser .= $form->select_dolusers(
'',
'usertoaffect', 1, $arrayofselected, 0,
'', 0,
$object->entity, 0, 0,
'', 0,
'',
'widthcentpercentminusx maxwidth300');
156 $valuefielduser .=
'</div>';
158 $valuefieldprojrole =
'<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px; padding-bottom: 6px">';
159 $valuefieldprojrole .= $formcompany->selectTypeContact(
$object,
'',
'projectrole',
'internal',
'position', 0,
'widthcentpercentminusx maxwidth300', 0);
160 $valuefieldprojrole .=
'</div>';
162 $valuefieldtasksrole =
'<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
163 $valuefieldtasksrole .= $formcompany->selectTypeContact($taskstatic,
'',
'tasksrole',
'internal',
'position', 0,
'widthcentpercentminusx maxwidth300', 0);
164 $valuefieldtasksrole .=
'</div>';
166 $formquestion[] = array(
168 'name' =>
'usertoaffect',
169 'label' => $langs->trans(
"User"),
170 'value' => $valuefielduser
172 $formquestion[] = array(
174 'name' =>
'projectrole',
175 'label' => $langs->trans(
"ProjectRole"),
176 'value' => $valuefieldprojrole
179 $formquestion[] = array(
181 'name' =>
'tasksrole',
182 'label' => $langs->trans(
"TasksRole"),
183 'value' => $valuefieldtasksrole
186 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmAffectUser"), $langs->trans(
"ConfirmAffectUserQuestion", count($toselect)),
"affectuser", $formquestion, 1, 0, 200, 500, 1);
189if ($massaction ==
'presend') {
190 $langs->load(
"mails");
192 $listofselectedid = array();
193 $listofselectedrecipientobjid = array();
194 $listofselectedref = array();
196 if (!
GETPOST(
'cancel',
'alpha')) {
197 foreach ($arrayofselected as $toselectid) {
198 $result = $objecttmp->fetch($toselectid);
200 $listofselectedid[$toselectid] = $toselectid;
201 $thirdpartyid = ($objecttmp->fk_soc ? $objecttmp->fk_soc : $objecttmp->socid);
202 if (in_array($objecttmp->element, array(
'societe',
'conferenceorboothattendee'))) {
203 $thirdpartyid = $objecttmp->id;
204 } elseif ($objecttmp->element ==
'contact') {
205 $thirdpartyid = $objecttmp->id;
206 } elseif ($objecttmp->element ==
'expensereport') {
207 $thirdpartyid = $objecttmp->fk_user_author;
209 if (empty($thirdpartyid)) {
213 $listofselectedrecipientobjid[$thirdpartyid] = $thirdpartyid;
215 $listofselectedref[$thirdpartyid][$toselectid] = $objecttmp->ref;
220 print
'<input type="hidden" name="massaction" value="confirm_presend">';
225 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formmail.class.php';
227 $formmail->withform = -1;
228 $formmail->fromtype = (
GETPOST(
'fromtype') ?
GETPOST(
'fromtype') : (
getDolGlobalString(
'MAIN_MAIL_DEFAULT_FROMTYPE') ? $conf->global->MAIN_MAIL_DEFAULT_FROMTYPE :
'user'));
230 if ($formmail->fromtype ===
'user') {
231 $formmail->fromid = $user->id;
233 $formmail->trackid = $trackid;
234 $formmail->withfrom = 1;
235 $liste = $langs->trans(
"AllRecipientSelected", count($arrayofselected));
236 if (count($listofselectedrecipientobjid) == 1) {
238 $thirdpartyid = array_shift($listofselectedrecipientobjid);
239 if ($objecttmp->element ==
'expensereport') {
240 $fuser =
new User($db);
241 $fuser->fetch($thirdpartyid);
242 $liste[
'thirdparty'] = $fuser->getFullName($langs).
" <".$fuser->email.
">";
243 } elseif ($objecttmp->element ==
'contact') {
245 $fcontact->fetch($thirdpartyid);
246 $liste[
'contact'] = $fcontact->getFullName($langs).
" <".$fcontact->email.
">";
247 } elseif ($objecttmp->element ==
'partnership' &&
getDolGlobalString(
'PARTNERSHIP_IS_MANAGED_FOR') ==
'member') {
249 $fadherent->fetch($objecttmp->fk_member);
250 $liste[
'member'] = $fadherent->getFullName($langs).
" <".$fadherent->email.
">";
253 $soc->fetch($thirdpartyid);
254 foreach ($soc->thirdparty_and_contact_email_array(1) as $key => $value) {
255 $liste[$key] = $value;
258 $formmail->withtoreadonly = 0;
260 $formmail->withtoreadonly = 1;
264 $formmail->withoptiononeemailperrecipient = ((count($listofselectedref) == 1 && count(reset($listofselectedref)) == 1) || empty($liste)) ? 0 : (
GETPOSTINT(
'oneemailperrecipient') ? 1 : -1);
265 if (in_array($objecttmp->element, array(
'conferenceorboothattendee'))) {
266 $formmail->withoptiononeemailperrecipient = 0;
269 $formmail->withto = empty($liste) ? (
GETPOST(
'sendto',
'alpha') ?
GETPOST(
'sendto',
'alpha') : array()) : $liste;
270 $formmail->withtofree = empty($liste) ? 1 : 0;
271 $formmail->withtocc = 1;
273 if (!empty($topicmail)) {
274 $formmail->withtopic = $langs->transnoentities($topicmail,
'__REF__',
'__REF_CLIENT__');
276 $formmail->withtopic = 1;
278 if ($objecttmp->element ==
'contact') {
279 $formmail->withfile = 0;
280 $formmail->withmaindocfile = 0;
282 $formmail->withfile = 1;
284 if (isset($withmaindocfilemail)) {
285 $formmail->withmaindocfile = $withmaindocfilemail;
287 $formmail->withmaindocfile = 1;
288 if ($objecttmp->element !=
'societe') {
289 $formmail->withfile =
'<span class="hideonsmartphone opacitymedium">' . $langs->trans(
"OnlyPDFattachmentSupported") .
'</span>';
290 $formmail->withmaindocfile = -1;
295 $formmail->withbody = 1;
296 $formmail->withdeliveryreceipt = 1;
297 $formmail->withcancel = 1;
302 $substitutionarray[
'__EMAIL__'] = $sendto;
303 $substitutionarray[
'__CHECK_READ__'] =
'<img src="'.DOL_MAIN_URL_ROOT.
'/public/emailing/mailing-read.php?tag=undefined&securitykey='.
dol_hash(
getDolGlobalString(
'MAILING_EMAIL_UNSUBSCRIBE_KEY').
"-undefined",
'md5').
'" width="1" height="1" style="width:1px;height:1px" border="0"/>';
304 $substitutionarray[
'__ONLINE_PAYMENT_URL__'] =
'UrlToPayOnlineIfApplicable';
305 $substitutionarray[
'__ONLINE_PAYMENT_TEXT_AND_URL__'] =
'TextAndUrlToPayOnlineIfApplicable';
306 $substitutionarray[
'__THIRDPARTY_NAME__'] =
'__THIRDPARTY_NAME__';
307 $substitutionarray[
'__PROJECT_NAME__'] =
'__PROJECT_NAME__';
310 'mode' =>
'formemail'
315 $formmail->substit = $substitutionarray;
318 $formmail->param[
'action'] = $action;
319 $formmail->param[
'models'] = $modelmail;
320 $formmail->param[
'models_id'] =
GETPOSTINT(
'modelmailselected') ?
GETPOSTINT(
'modelmailselected') :
'-1';
321 $formmail->param[
'id'] = implode(
',', $arrayofselected);
323 if (
getDolGlobalString(
'MAILING_LIMIT_SENDBYWEB') && count($listofselectedrecipientobjid) > $conf->global->MAILING_LIMIT_SENDBYWEB) {
325 $langs->load(
"errors");
327 print
' - <a href="javascript: window.history.go(-1)">'.$langs->trans(
"GoBack").
'</a>';
328 $arrayofmassactions = array();
330 print $formmail->get_form();
336if ($massaction ==
'edit_extrafields') {
337 require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
338 $elementtype = $objecttmp->element;
342 $extrafields->fetch_name_optionals_label($elementtype);
343 $extrafields_list = $extrafields->attributes[$elementtype][
'label'];
345 $formquestion = array();
346 if (!empty($extrafields_list)) {
347 $myParamExtra =
$object->showOptionals($extrafields,
'create');
349 foreach ($extrafields_list as $extraKey => $extraLabel) {
350 $extrafields_list[$extraKey] = $langs->trans($extraLabel);
353 $formquestion[] = array(
355 'value' => $form->selectarray(
'extrafield-key-to-update', $extrafields_list,
GETPOST(
'extrafield-key-to-update'), 1)
359 $outputShowOutputFields =
'<div class="extrafields-inputs">';
361 foreach ($extrafields_list as $extraKey => $extraLabel) {
362 $outputShowOutputFields .=
'<div class="mass-action-extrafield" data-extrafield="'.$extraKey.
'" style="display:none;" >';
363 $outputShowOutputFields .=
'<br><span>'. $langs->trans(
'NewValue').
'</span>';
364 $outputShowOutputFields .= $extrafields->showInputField($extraKey,
'',
'', $keysuffix,
'', 0, $objecttmp->id, $objecttmp->table_element);
365 $outputShowOutputFields .=
'</div>';
367 $outputShowOutputFields .=
'<script>
369 $("#extrafield-key-to-update").on(\'change\',function(){
370 let selectedExtrtafield = $(this).val();
371 if($(".extrafields-inputs .product_extras_"+selectedExtrtafield) != undefined){
372 $(".mass-action-extrafield").hide();
373 $(".mass-action-extrafield[data-extrafield=" + selectedExtrtafield + "]").show();
378 $outputShowOutputFields .=
'</div>';
382 $formquestion[] = array(
384 'value' => $outputShowOutputFields
387 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmEditExtrafield"), $langs->trans(
"ConfirmEditExtrafieldQuestion", count($toselect)),
"confirm_edit_value_extrafields", $formquestion, 1, 0, 200, 500, 1);
393if ($massaction ==
'preenable') {
394 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmMassEnabling"), $langs->trans(
"ConfirmMassEnablingQuestion", count($toselect)),
"enable",
null,
'yes', 0, 200, 500, 1);
396if ($massaction ==
'predisable') {
397 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmMassDisabling"), $langs->trans(
"ConfirmMassDisablingQuestion", count($toselect)),
"disable",
null,
'', 0, 200, 500, 1);
399if ($massaction ==
'presetcommercial') {
400 $formquestion = array();
401 $userlist = $form->select_dolusers(
'',
'', 0,
null, 0,
'',
'', 0, 0, 0,
'AND u.statut = 1', 0,
'',
'', 0, 1);
402 $formquestion[] = array(
'type' =>
'other',
403 'name' =>
'affectedcommercial',
404 'label' => $form->editfieldkey(
'AllocateCommercial',
'commercial_id',
'',
$object, 0),
405 'value' => $form->multiselectarray(
'commercial', $userlist,
null, 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0,
'',
'',
'', 1));
406 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmAllocateCommercial"), $langs->trans(
"ConfirmAllocateCommercialQuestion", count($toselect)),
"affectcommercial", $formquestion, 1, 0, 200, 500, 1);
408if ($massaction ==
'unsetcommercial') {
409 $formquestion = array();
410 $userlist = $form->select_dolusers(
'',
'', 0,
null, 0,
'',
'', 0, 0, 0,
'AND u.statut = 1', 0,
'',
'', 0, 1);
411 $formquestion[] = array(
'type' =>
'other',
412 'name' =>
'unassigncommercial',
413 'label' => $form->editfieldkey(
'UnallocateCommercial',
'commercial_id',
'',
$object, 0),
414 'value' => $form->multiselectarray(
'commercial', $userlist,
null, 0, 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0,
'',
'',
'', 1));
415 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmUnallocateCommercial"), $langs->trans(
"ConfirmUnallocateCommercialQuestion", count($toselect)),
"unassigncommercial", $formquestion, 1, 0, 200, 500, 1);
418if ($massaction ==
'preapproveleave') {
419 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmMassLeaveApproval"), $langs->trans(
"ConfirmMassLeaveApprovalQuestion", count($toselect)),
"approveleave",
null,
'yes', 0, 200, 500, 1);
424 'toselect' => isset($toselect) ? $toselect : array(),
425 'uploaddir' => isset($uploaddir) ? $uploaddir : null,
426 'massaction' => $massaction
429$reshook = $hookmanager->executeHooks(
'doPreMassActions', $parameters,
$object, $action);
433 print $hookmanager->resPrint;
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Class to manage members of a foundation.
Class to manage categories.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessage($mesgs, $style='mesgs', $noduplicate=0)
Set event message in dol_events session object.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
complete_substitutions_array(&$substitutionarray, $outputlangs, $object=null, $parameters=null, $callfunc="completesubstitutionarray")
Complete the $substitutionarray with more entries coming from external module that had set the "subst...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getCommonSubstitutionArray($outputlangs, $onlykey=0, $exclude=null, $object=null, $include=null)
Return array of possible common substitutions.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_hash($chain, $type='0', $nosalt=0)
Returns a hash (non reversible encryption) of a string.