dolibarr 19.0.4
massactions_pre.tpl.php
1<?php
2/* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
3 * Copyright (C) 2013-2014 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
21// Following var must be set:
22// $action
23// $arrayofselected = array of id selected
24// $objecttmp = new MyObject($db);
25// $topicmail="SendSupplierProposalRef";
26// $modelmail="supplier_proposal_send";
27// $trackid='ord'.$objecttmp->id;
28//
29// Following var can be set
30// $object = Object fetched;
31// $sendto
32// $withmaindocfilemail
33if (!empty($sall) || !empty($search_all)) {
34 $search_all = empty($sall) ? $search_all : $sall;
35
36 print '<input type="hidden" name="search_all" value="'.$search_all.'">';
37}
38
39if ($massaction == 'predeletedraft') {
40 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDraftDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
41}
42
43if ($massaction == 'predelete') {
44 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
45}
46
47if ($massaction == 'preclonetasks') {
48 $selected = '';
49 foreach (GETPOST('toselect') as $tmpselected) {
50 $selected .= '&selected[]=' . $tmpselected;
51 }
52
53 $formquestion = array(
54 array('type' => 'other', 'name' => 'projectid', 'label' => $langs->trans('Project') .': ', 'value' => $form->selectProjects('', 'projectid', '', '', '', '', '', '', '', 1, 1)),
55 );
56 print $form->formconfirm($_SERVER['PHP_SELF'] . '?id=' . $object->id . $selected, $langs->trans('ConfirmMassClone'), '', 'clonetasks', $formquestion, '', 1, 300, 590);
57}
58
59if ($massaction == 'preaffecttag' && isModEnabled('category')) {
60 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
61 $categ = new Categorie($db);
62 $categ_types = array();
63 $categ_type_array = $categ->getMapList();
64 foreach ($categ_type_array as $categdef) {
65 // Test on $object (should be useless, we already check on $objecttmp just after)
66 if (isset($object) && $categdef['obj_table'] == $object->table_element) {
67 if (!array_key_exists($categdef['code'], $categ_types)) {
68 $categ_types[$categdef['code']] = array('code'=>$categdef['code'], 'label'=>$langs->trans($categdef['obj_class']));
69 }
70 }
71 if (isset($objecttmp) && $categdef['obj_table'] == $objecttmp->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']));
74 }
75 }
76 }
77
78 $formquestion = array();
79 if (!empty($categ_types)) {
80 foreach ($categ_types as $categ_type) {
81 $categ_arbo_tmp = $form->select_all_categories($categ_type['code'], '', 'parent', 0, 0, 3);
82 $formquestion[] = array(
83 'type' => 'other',
84 'name' => 'affecttag_'.$categ_type['code'],
85 'label' => '',
86 'value' => $form->multiselectarray('contcats_'.$categ_type['code'], $categ_arbo_tmp, GETPOST('contcats_'.$categ_type['code'], 'array'), null, null, '', 0, '60%', '', '', $langs->transnoentitiesnoconv("SelectTheTagsToAssign"))
87 );
88 }
89 $formquestion[] = array(
90 'type' => 'other',
91 'name' => 'affecttag_type',
92 'label' => '',
93 'value' => '<input type="hidden" name="affecttag_type" id="affecttag_type" value="'.implode(",", array_keys($categ_types)).'"/>'
94 );
95 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAffectTag"), $langs->trans("ConfirmAffectTagQuestion", count($toselect)), "affecttag", $formquestion, 1, 0, 200, 500, 1);
96 } else {
97 setEventMessage('CategTypeNotFound');
98 }
99}
100
101if ($massaction == 'preupdateprice'
102 && (getDolGlobalString('PRODUCT_PRICE_UNIQ')
103 || getDolGlobalString('PRODUIT_CUSTOMER_PRICES')
104 || getDolGlobalString('PRODUIT_MULTIPRICES')
105 )) {
106 $formquestion = array();
107
108 $valuefield = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
109 $valuefield .= '<input type="number" name="pricerate" id="pricerate" min="-100" value="0" style="width: 100px; text-align: right; margin-right: 10px" />%';
110 $valuefield .= '</div>';
111
112 $formquestion[] = array(
113 'type' => 'other',
114 'name' => 'pricerate',
115 'label' => $langs->trans("Rate"),
116 'value' => $valuefield
117 );
118
119 $descConfirmPreUpdatePrice=$langs->trans("ConfirmUpdatePriceQuestion", count($toselect));
120 if (getDolGlobalString('PRODUIT_MULTIPRICES')) {
121 $descConfirmPreUpdatePrice=$langs->trans("ConfirmUpdatePriceQuestion", count($toselect)*getDolGlobalInt('PRODUIT_MULTIPRICES_LIMIT') .' ('.$langs->transnoentities('PricingRule').', '.$langs->transnoentities('MultiPricesNumPrices').')');
122 }
123
124 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmUpdatePrice"), $descConfirmPreUpdatePrice, "updateprice", $formquestion, 1, 0, 200, 500, 1);
125}
126
127if ($massaction == 'presetsupervisor') {
128 $formquestion = array();
129
130 $valuefield = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
131 $valuefield .= img_picto('', 'user').' ';
132 $valuefield .= $form->select_dolusers('', 'supervisortoset', 1, $arrayofselected, 0, '', 0, $object->entity, 0, 0, '', 0, '', 'widthcentpercentminusx maxwidth300');
133 $valuefield .= '</div>';
134
135 $formquestion[] = array(
136 'type' => 'other',
137 'name' => 'supervisortoset',
138 'label' => $langs->trans("Supervisor"),
139 'value' => $valuefield
140 );
141
142 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmSetSupervisor"), $langs->trans("ConfirmSetSupervisorQuestion", count($toselect)), "setsupervisor", $formquestion, 1, 0, 200, 500, 1);
143}
144
145if ($massaction == 'preaffectuser') {
146 $formquestion = array();
147
148 $valuefielduser = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 165px; padding-bottom: 6px; gap: 5px">';
149 $valuefielduser .= img_picto('', 'user').' ';
150 $valuefielduser .= $form->select_dolusers('', 'usertoaffect', 1, $arrayofselected, 0, '', 0, $object->entity, 0, 0, '', 0, '', 'widthcentpercentminusx maxwidth300');
151 $valuefielduser .= '</div>';
152
153 $valuefieldprojrole = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px; padding-bottom: 6px">';
154 $valuefieldprojrole .= $formcompany->selectTypeContact($object, '', 'projectrole', 'internal', 'position', 0, 'widthcentpercentminusx maxwidth300', 0);
155 $valuefieldprojrole .= '</div>';
156
157 $valuefieldtasksrole = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
158 $valuefieldtasksrole .= $formcompany->selectTypeContact($taskstatic, '', 'tasksrole', 'internal', 'position', 0, 'widthcentpercentminusx maxwidth300', 0);
159 $valuefieldtasksrole .= '</div>';
160
161 $formquestion[] = array(
162 'type' => 'other',
163 'name' => 'usertoaffect',
164 'label' => $langs->trans("User"),
165 'value' => $valuefielduser
166 );
167 $formquestion[] = array(
168 'type' => 'other',
169 'name' => 'projectrole',
170 'label' => $langs->trans("ProjectRole"),
171 'value' => $valuefieldprojrole
172 );
173
174 $formquestion[] = array(
175 'type' => 'other',
176 'name' => 'tasksrole',
177 'label' => $langs->trans("TasksRole"),
178 'value' => $valuefieldtasksrole
179 );
180
181 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAffectUser"), $langs->trans("ConfirmAffectUserQuestion", count($toselect)), "affectuser", $formquestion, 1, 0, 200, 500, 1);
182}
183
184if ($massaction == 'presend') {
185 $langs->load("mails");
186
187 $listofselectedid = array();
188 $listofselectedrecipientobjid = array();
189 $listofselectedref = array();
190
191 if (!GETPOST('cancel', 'alpha')) {
192 foreach ($arrayofselected as $toselectid) {
193 $result = $objecttmp->fetch($toselectid);
194 if ($result > 0) {
195 $listofselectedid[$toselectid] = $toselectid;
196 $thirdpartyid = ($objecttmp->fk_soc ? $objecttmp->fk_soc : $objecttmp->socid); // For proposal, order, invoice, conferenceorbooth, ...
197 if (in_array($objecttmp->element, array('societe', 'conferenceorboothattendee'))) {
198 $thirdpartyid = $objecttmp->id;
199 } elseif ($objecttmp->element == 'contact') {
200 $thirdpartyid = $objecttmp->id;
201 } elseif ($objecttmp->element == 'expensereport') {
202 $thirdpartyid = $objecttmp->fk_user_author;
203 }
204 if (empty($thirdpartyid)) {
205 $thirdpartyid = 0;
206 }
207 if ($thirdpartyid) {
208 $listofselectedrecipientobjid[$thirdpartyid] = $thirdpartyid;
209 }
210 $listofselectedref[$thirdpartyid][$toselectid] = $objecttmp->ref;
211 }
212 }
213 }
214
215 print '<input type="hidden" name="massaction" value="confirm_presend">';
216
217 print dol_get_fiche_head(null, '', '');
218
219 // Create mail form
220 include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
221 $formmail = new FormMail($db);
222 $formmail->withform = -1;
223 $formmail->fromtype = (GETPOST('fromtype') ? GETPOST('fromtype') : (getDolGlobalString('MAIN_MAIL_DEFAULT_FROMTYPE') ? $conf->global->MAIN_MAIL_DEFAULT_FROMTYPE : 'user'));
224
225 if ($formmail->fromtype === 'user') {
226 $formmail->fromid = $user->id;
227 }
228 $formmail->trackid = $trackid;
229 $formmail->withfrom = 1;
230 $liste = $langs->trans("AllRecipientSelected", count($arrayofselected));
231 if (count($listofselectedrecipientobjid) == 1) { // Only 1 different recipient selected, we can suggest contacts
232 $liste = array();
233 $thirdpartyid = array_shift($listofselectedrecipientobjid);
234 if ($objecttmp->element == 'expensereport') {
235 $fuser = new User($db);
236 $fuser->fetch($thirdpartyid);
237 $liste['thirdparty'] = $fuser->getFullName($langs)." &lt;".$fuser->email."&gt;";
238 } elseif ($objecttmp->element == 'contact') {
239 $fcontact = new Contact($db);
240 $fcontact->fetch($thirdpartyid);
241 $liste['contact'] = $fcontact->getFullName($langs)." &lt;".$fcontact->email."&gt;";
242 } elseif ($objecttmp->element == 'partnership' && getDolGlobalString('PARTNERSHIP_IS_MANAGED_FOR') == 'member') {
243 $fadherent = new Adherent($db);
244 $fadherent->fetch($objecttmp->fk_member);
245 $liste['member'] = $fadherent->getFullName($langs)." &lt;".$fadherent->email."&gt;";
246 } else {
247 $soc = new Societe($db);
248 $soc->fetch($thirdpartyid);
249 foreach ($soc->thirdparty_and_contact_email_array(1) as $key => $value) {
250 $liste[$key] = $value;
251 }
252 }
253 $formmail->withtoreadonly = 0;
254 } else {
255 $formmail->withtoreadonly = 1;
256 }
257
258
259 $formmail->withoptiononeemailperrecipient = ((count($listofselectedref) == 1 && count(reset($listofselectedref)) == 1) || empty($liste)) ? 0 : (GETPOST('oneemailperrecipient', 'int') ? 1 : -1);
260 if (in_array($objecttmp->element, array('conferenceorboothattendee'))) {
261 $formmail->withoptiononeemailperrecipient = 0;
262 }
263
264 $formmail->withto = empty($liste) ? (GETPOST('sendto', 'alpha') ? GETPOST('sendto', 'alpha') : array()) : $liste;
265 $formmail->withtofree = empty($liste) ? 1 : 0;
266 $formmail->withtocc = 1;
267 $formmail->withtoccc = $conf->global->MAIN_EMAIL_USECCC;
268 if (!empty($topicmail)) {
269 $formmail->withtopic = $langs->transnoentities($topicmail, '__REF__', '__REF_CLIENT__');
270 } else {
271 $formmail->withtopic = 1;
272 }
273 if ($objecttmp->element == 'contact') {
274 $formmail->withfile = 0;
275 $formmail->withmaindocfile = 0; // Add a checkbox "Attach also main document"
276 } else {
277 $formmail->withfile = 1; // $formmail->withfile = 2 to allow to upload files is not yet supported in mass action
278 // Add a checkbox "Attach also main document"
279 if (isset($withmaindocfilemail)) {
280 $formmail->withmaindocfile = $withmaindocfilemail;
281 } else { // Do an automatic definition of $formmail->withmaindocfile
282 $formmail->withmaindocfile = 1;
283 if ($objecttmp->element != 'societe') {
284 $formmail->withfile = '<span class="hideonsmartphone opacitymedium">' . $langs->trans("OnlyPDFattachmentSupported") . '</span>';
285 $formmail->withmaindocfile = -1; // Add a checkbox "Attach also main document" but not checked by default
286 }
287 }
288 }
289
290 $formmail->withbody = 1;
291 $formmail->withdeliveryreceipt = 1;
292 $formmail->withcancel = 1;
293
294 // Make substitution in email content
295 $substitutionarray = getCommonSubstitutionArray($langs, 0, null, $object);
296
297 $substitutionarray['__EMAIL__'] = $sendto;
298 $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"/>';
299 $substitutionarray['__ONLINE_PAYMENT_URL__'] = 'UrlToPayOnlineIfApplicable';
300 $substitutionarray['__ONLINE_PAYMENT_TEXT_AND_URL__'] = 'TextAndUrlToPayOnlineIfApplicable';
301 $substitutionarray['__THIRDPARTY_NAME__'] = '__THIRDPARTY_NAME__';
302 $substitutionarray['__PROJECT_NAME__'] = '__PROJECT_NAME__';
303
304 $parameters = array(
305 'mode' => 'formemail'
306 );
307 complete_substitutions_array($substitutionarray, $langs, $object, $parameters);
308
309 // Array of substitutions
310 $formmail->substit = $substitutionarray;
311
312 // Tableau des parametres complementaires du post
313 $formmail->param['action'] = $action;
314 $formmail->param['models'] = $modelmail; // the filter to know which kind of template emails to show. 'none' means no template suggested.
315 $formmail->param['models_id'] = GETPOST('modelmailselected', 'int') ? GETPOST('modelmailselected', 'int') : '-1';
316 $formmail->param['id'] = join(',', $arrayofselected);
317 // $formmail->param['returnurl']=$_SERVER["PHP_SELF"].'?id='.$object->id;
318 if (getDolGlobalString('MAILING_LIMIT_SENDBYWEB') && count($listofselectedrecipientobjid) > $conf->global->MAILING_LIMIT_SENDBYWEB) {
319 // Note: MAILING_LIMIT_SENDBYWEB may be forced by conf.php file and variable $dolibarr_mailing_limit_sendbyweb
320 $langs->load("errors");
321 print img_warning().' '.$langs->trans('WarningNumberOfRecipientIsRestrictedInMassAction', $conf->global->MAILING_LIMIT_SENDBYWEB);
322 print ' - <a href="javascript: window.history.go(-1)">'.$langs->trans("GoBack").'</a>';
323 $arrayofmassactions = array();
324 } else {
325 print $formmail->get_form();
326 }
327
328 print dol_get_fiche_end();
329}
330
331if ($massaction == 'edit_extrafields') {
332 require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
333 $elementtype = $objecttmp->element;
335 $extrafields = new ExtraFields($db);
336 $keysuffix = '';
337 $extrafields->fetch_name_optionals_label($elementtype);
338 $extrafields_list = $extrafields->attributes[$elementtype]['label'];
339
340 $formquestion = array();
341 if (!empty($extrafields_list)) {
342 $myParamExtra = $object->showOptionals($extrafields, 'create');
343
344 foreach ($extrafields_list as $extraKey => $extraLabel) {
345 $extrafields_list[$extraKey] = $langs->trans($extraLabel);
346 }
347
348 $formquestion[] = array(
349 'type' => 'other',
350 'value' => $form->selectarray('extrafield-key-to-update', $extrafields_list, GETPOST('extrafield-key-to-update'), 1)
351 );
352
353
354 $outputShowOutputFields = '<div class="extrafields-inputs">';
355
356 foreach ($extrafields_list as $extraKey => $extraLabel) {
357 $outputShowOutputFields.= '<div class="mass-action-extrafield" data-extrafield="'.$extraKey.'" style="display:none;" >';
358 $outputShowOutputFields.= '<br><span>'. $langs->trans('NewValue').'</span>';
359 $outputShowOutputFields.= $extrafields->showInputField($extraKey, '', '', $keysuffix, '', 0, $objecttmp->id, $objecttmp->table_element);
360 $outputShowOutputFields.= '</div>';
361 }
362 $outputShowOutputFields.= '<script>
363 jQuery(function($) {
364 $("#extrafield-key-to-update").on(\'change\',function(){
365 let selectedExtrtafield = $(this).val();
366 if($(".extrafields-inputs .product_extras_"+selectedExtrtafield) != undefined){
367 $(".mass-action-extrafield").hide();
368 $(".mass-action-extrafield[data-extrafield=" + selectedExtrtafield + "]").show();
369 }
370 });
371 });
372 </script>';
373 $outputShowOutputFields.= '</div>';
374
375
376
377 $formquestion[] = array(
378 'type' => 'other',
379 'value' => $outputShowOutputFields
380 );
381
382 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmEditExtrafield"), $langs->trans("ConfirmEditExtrafieldQuestion", count($toselect)), "confirm_edit_value_extrafields", $formquestion, 1, 0, 200, 500, 1);
383 } else {
384 setEventMessage($langs->trans("noExtrafields"));
385 }
386}
387
388if ($massaction == 'preenable') {
389 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassEnabling"), $langs->trans("ConfirmMassEnablingQuestion", count($toselect)), "enable", null, 'yes', 0, 200, 500, 1);
390}
391if ($massaction == 'predisable') {
392 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDisabling"), $langs->trans("ConfirmMassDisablingQuestion", count($toselect)), "disable", null, '', 0, 200, 500, 1);
393}
394if ($massaction == 'presetcommercial') {
395 $formquestion = array();
396 $userlist = $form->select_dolusers('', '', 0, null, 0, '', '', 0, 0, 0, 'AND u.statut = 1', 0, '', '', 0, 1);
397 $formquestion[] = array('type' => 'other',
398 'name' => 'affectedcommercial',
399 'label' => $form->editfieldkey('AllocateCommercial', 'commercial_id', '', $object, 0),
400 'value' => $form->multiselectarray('commercial', $userlist, null, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0, '', '', '', 1));
401 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAllocateCommercial"), $langs->trans("ConfirmAllocateCommercialQuestion", count($toselect)), "affectcommercial", $formquestion, 1, 0, 200, 500, 1);
402}
403if ($massaction == 'preapproveleave') {
404 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassLeaveApproval"), $langs->trans("ConfirmMassLeaveApprovalQuestion", count($toselect)), "approveleave", null, 'yes', 0, 200, 500, 1);
405}
406
407// Allow Pre-Mass-Action hook (eg for confirmation dialog)
408$parameters = array(
409 'toselect' => isset($toselect) ? $toselect : array(),
410 'uploaddir' => isset($uploaddir) ? $uploaddir : null,
411 'massaction' => $massaction
412);
413
414$reshook = $hookmanager->executeHooks('doPreMassActions', $parameters, $object, $action);
415if ($reshook < 0) {
416 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
417} else {
418 print $hookmanager->resPrint;
419}
Class to manage members of a foundation.
Class to manage categories.
Class to manage standard extra fields.
Classe permettant la generation du formulaire html d'envoi de mail unitaire Usage: $formail = new For...
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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.
Contact()
Old copy.
Definition index.php:572