dolibarr  16.0.5
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
33 
34 
35 if ($massaction == 'predeletedraft') {
36  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDraftDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
37 }
38 
39 if ($massaction == 'predelete') {
40  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
41 }
42 
43 if ($massaction == 'preaffecttag' && isModEnabled('category')) {
44  require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
45  $categ = new Categorie($db);
46  $categ_types = array();
47  $categ_type_array = $categ->getMapList();
48  foreach ($categ_type_array as $categdef) {
49  // Test on $object (should be useless, we already check on $objecttmp just after)
50  if (isset($object) && $categdef['obj_table'] == $object->table_element) {
51  if (!array_key_exists($categdef['code'], $categ_types)) {
52  $categ_types[$categdef['code']] = array('code'=>$categdef['code'], 'label'=>$langs->trans($categdef['obj_class']));
53  }
54  }
55  if (isset($objecttmp) && $categdef['obj_table'] == $objecttmp->table_element) {
56  if (!array_key_exists($categdef['code'], $categ_types)) {
57  $categ_types[$categdef['code']] = array('code'=>$categdef['code'], 'label'=>$langs->trans($categdef['obj_class']));
58  }
59  }
60  }
61 
62  $formquestion = array();
63  if (!empty($categ_types)) {
64  foreach ($categ_types as $categ_type) {
65  $cate_arbo = $form->select_all_categories($categ_type['code'], null, 'parent', null, null, 1);
66  $formquestion[] = array('type' => 'other',
67  'name' => 'affecttag_'.$categ_type['code'],
68  'label' => $langs->trans("Tag").' '.$categ_type['label'],
69  'value' => $form->multiselectarray('contcats_'.$categ_type['code'], $cate_arbo, GETPOST('contcats_'.$categ_type['code'], 'array'), null, null, null, null, '60%'));
70  }
71  $formquestion[] = array('type' => 'other',
72  'name' => 'affecttag_type',
73  'label' => '',
74  'value' => '<input type="hidden" name="affecttag_type" id="affecttag_type" value="'.implode(",", array_keys($categ_types)).'"/>');
75  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAffectTag"), $langs->trans("ConfirmAffectTagQuestion", count($toselect)), "affecttag", $formquestion, 1, 0, 200, 500, 1);
76  } else {
77  setEventMessage('CategTypeNotFound');
78  }
79 }
80 
81 if ($massaction == 'presend') {
82  $langs->load("mails");
83 
84  $listofselectedid = array();
85  $listofselectedrecipientobjid = array();
86  $listofselectedref = array();
87 
88  if (!GETPOST('cancel', 'alpha')) {
89  foreach ($arrayofselected as $toselectid) {
90  $result = $objecttmp->fetch($toselectid);
91  if ($result > 0) {
92  $listofselectedid[$toselectid] = $toselectid;
93  $thirdpartyid = ($objecttmp->fk_soc ? $objecttmp->fk_soc : $objecttmp->socid); // For proposal, order, invoice, conferenceorbooth, ...
94  if (in_array($objecttmp->element, array('societe', 'conferenceorboothattendee'))) {
95  $thirdpartyid = $objecttmp->id;
96  }
97  if ($objecttmp->element == 'expensereport') {
98  $thirdpartyid = $objecttmp->fk_user_author;
99  }
100  if (empty($thirdpartyid)) {
101  $thirdpartyid = 0;
102  }
103  if ($thirdpartyid) {
104  $listofselectedrecipientobjid[$thirdpartyid] = $thirdpartyid;
105  }
106  $listofselectedref[$thirdpartyid][$toselectid] = $objecttmp->ref;
107  }
108  }
109  }
110 
111  print '<input type="hidden" name="massaction" value="confirm_presend">';
112 
113  print dol_get_fiche_head(null, '', '');
114 
115  // Create mail form
116  include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
117  $formmail = new FormMail($db);
118  $formmail->withform = -1;
119  $formmail->fromtype = (GETPOST('fromtype') ? GETPOST('fromtype') : (!empty($conf->global->MAIN_MAIL_DEFAULT_FROMTYPE) ? $conf->global->MAIN_MAIL_DEFAULT_FROMTYPE : 'user'));
120 
121  if ($formmail->fromtype === 'user') {
122  $formmail->fromid = $user->id;
123  }
124  $formmail->trackid = $trackid;
125  $formmail->withfrom = 1;
126  $liste = $langs->trans("AllRecipientSelected", count($arrayofselected));
127  if (count($listofselectedrecipientobjid) == 1) { // Only 1 different recipient selected, we can suggest contacts
128  $liste = array();
129  $thirdpartyid = array_shift($listofselectedrecipientobjid);
130  if ($objecttmp->element == 'expensereport') {
131  $fuser = new User($db);
132  $fuser->fetch($thirdpartyid);
133  $liste['thirdparty'] = $fuser->getFullName($langs)." &lt;".$fuser->email."&gt;";
134  } elseif ($objecttmp->element == 'partnership' && getDolGlobalString('PARTNERSHIP_IS_MANAGED_FOR') == 'member') {
135  $fadherent = new Adherent($db);
136  $fadherent->fetch($objecttmp->fk_member);
137  $liste['member'] = $fadherent->getFullName($langs)." &lt;".$fadherent->email."&gt;";
138  } else {
139  $soc = new Societe($db);
140  $soc->fetch($thirdpartyid);
141  foreach ($soc->thirdparty_and_contact_email_array(1) as $key => $value) {
142  $liste[$key] = $value;
143  }
144  }
145  $formmail->withtoreadonly = 0;
146  } else {
147  $formmail->withtoreadonly = 1;
148  }
149 
150 
151  $formmail->withoptiononeemailperrecipient = ((count($listofselectedref) == 1 && count(reset($listofselectedref)) == 1) || empty($liste)) ? 0 : (GETPOST('oneemailperrecipient', 'int') ? 1 : -1);
152  if (in_array($objecttmp->element, array('conferenceorboothattendee'))) {
153  $formmail->withoptiononeemailperrecipient = 0;
154  }
155 
156  $formmail->withto = empty($liste) ? (GETPOST('sendto', 'alpha') ?GETPOST('sendto', 'alpha') : array()) : $liste;
157  $formmail->withtofree = empty($liste) ? 1 : 0;
158  $formmail->withtocc = 1;
159  $formmail->withtoccc = $conf->global->MAIN_EMAIL_USECCC;
160  if (!empty($topicmail)) {
161  $formmail->withtopic = $langs->transnoentities($topicmail, '__REF__', '__REF_CLIENT__');
162  } else {
163  $formmail->withtopic = 1;
164  }
165  $formmail->withfile = 1; // $formmail->withfile = 2 to allow to upload files is not yet supported in mass action
166  // Add a checkbox "Attach also main document"
167  if (isset($withmaindocfilemail)) {
168  $formmail->withmaindocfile = $withmaindocfilemail;
169  } else { // Do an automatic definition of $formmail->withmaindocfile
170  $formmail->withmaindocfile = 1;
171  if ($objecttmp->element != 'societe') {
172  $formmail->withfile = '<span class="hideonsmartphone opacitymedium">'.$langs->trans("OnlyPDFattachmentSupported").'</span>';
173  $formmail->withmaindocfile = -1; // Add a checkbox "Attach also main document" but not checked by default
174  }
175  }
176  $formmail->withbody = 1;
177  $formmail->withdeliveryreceipt = 1;
178  $formmail->withcancel = 1;
179 
180  // Make substitution in email content
181  $substitutionarray = getCommonSubstitutionArray($langs, 0, null, $object);
182 
183  $substitutionarray['__EMAIL__'] = $sendto;
184  $substitutionarray['__CHECK_READ__'] = (is_object($object) && is_object($object->thirdparty)) ? '<img src="'.DOL_MAIN_URL_ROOT.'/public/emailing/mailing-read.php?tag='.urlencode($object->thirdparty->tag).'&securitykey='.urlencode($conf->global->MAILING_EMAIL_UNSUBSCRIBE_KEY).'" width="1" height="1" style="width:1px;height:1px" border="0"/>' : '';
185  $substitutionarray['__PERSONALIZED__'] = ''; // deprecated
186  $substitutionarray['__CONTACTCIVNAME__'] = '';
187 
188  $parameters = array(
189  'mode' => 'formemail'
190  );
191  complete_substitutions_array($substitutionarray, $langs, $object, $parameters);
192 
193  // Array of substitutions
194  $formmail->substit = $substitutionarray;
195 
196  // Tableau des parametres complementaires du post
197  $formmail->param['action'] = $action;
198  $formmail->param['models'] = $modelmail; // the filter to know which kind of template emails to show. 'none' means no template suggested.
199  $formmail->param['models_id'] = GETPOST('modelmailselected', 'int') ? GETPOST('modelmailselected', 'int') : '-1';
200  $formmail->param['id'] = join(',', $arrayofselected);
201  // $formmail->param['returnurl']=$_SERVER["PHP_SELF"].'?id='.$object->id;
202  if (!empty($conf->global->MAILING_LIMIT_SENDBYWEB) && count($listofselectedrecipientobjid) > $conf->global->MAILING_LIMIT_SENDBYWEB) {
203  $langs->load("errors");
204  print img_warning().' '.$langs->trans('WarningNumberOfRecipientIsRestrictedInMassAction', $conf->global->MAILING_LIMIT_SENDBYWEB);
205  print ' - <a href="javascript: window.history.go(-1)">'.$langs->trans("GoBack").'</a>';
206  $arrayofmassactions = array();
207  } else {
208  print $formmail->get_form();
209  }
210 
211  print dol_get_fiche_end();
212 }
213 
214 if ($massaction == 'edit_extrafields') {
215  require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
216  $elementtype = $objecttmp->element;
218  $extrafields = new ExtraFields($db);
219  $keysuffix = '';
220  $extrafields->fetch_name_optionals_label($elementtype);
221  $extrafields_list = $extrafields->attributes[$elementtype]['label'];
222 
223  $formquestion = array();
224  if (!empty($extrafields_list)) {
225  $myParamExtra = $object->showOptionals($extrafields, 'create');
226 
227  foreach ($extrafields_list as $extraKey => $extraLabel) {
228  $extrafields_list[$extraKey] = $langs->trans($extraLabel);
229  }
230 
231  $formquestion[] = array(
232  'type' => 'other',
233  'value' => $form->selectarray('extrafield-key-to-update', $extrafields_list, GETPOST('extrafield-key-to-update'), 1)
234  );
235 
236 
237  $outputShowOutputFields = '<div class="extrafields-inputs">';
238 
239  foreach ($extrafields_list as $extraKey => $extraLabel) {
240  $outputShowOutputFields.= '<div class="mass-action-extrafield" data-extrafield="'.$extraKey.'" style="display:none;" >';
241  $outputShowOutputFields.= '<br><span>'. $langs->trans('NewValue').'</span>';
242  $outputShowOutputFields.= $extrafields->showInputField($extraKey, '', '', $keysuffix, '', 0, $objecttmp->id, $objecttmp->table_element);
243  $outputShowOutputFields.= '</div>';
244  }
245  $outputShowOutputFields.= '<script>
246  jQuery(function($) {
247  $("#extrafield-key-to-update").on(\'change\',function(){
248  let selectedExtrtafield = $(this).val();
249  if($(".extrafields-inputs .product_extras_"+selectedExtrtafield) != undefined){
250  $(".mass-action-extrafield").hide();
251  $(".mass-action-extrafield[data-extrafield=" + selectedExtrtafield + "]").show();
252  }
253  });
254  });
255  </script>';
256  $outputShowOutputFields.= '</div>';
257 
258 
259 
260  $formquestion[] = array(
261  'type' => 'other',
262  'value' => $outputShowOutputFields
263  );
264 
265  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmEditExtrafield"), $langs->trans("ConfirmEditExtrafieldQuestion", count($toselect)), "confirm_edit_value_extrafields", $formquestion, 1, 0, 200, 500, 1);
266  } else {
267  setEventMessage($langs->trans("noExtrafields"));
268  }
269 }
270 
271 if ($massaction == 'preenable') {
272  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassEnabling"), $langs->trans("ConfirmMassEnablingQuestion", count($toselect)), "enable", null, 'yes', 0, 200, 500, 1);
273 }
274 if ($massaction == 'predisable') {
275  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDisabling"), $langs->trans("ConfirmMassDisablingQuestion", count($toselect)), "disable", null, '', 0, 200, 500, 1);
276 }
277 if ($massaction == 'presetcommercial') {
278  $formquestion = array();
279  $userlist = $form->select_dolusers('', '', 0, null, 0, '', '', 0, 0, 0, 'AND u.statut = 1', 0, '', '', 0, 1);
280  $formquestion[] = array('type' => 'other',
281  'name' => 'affectedcommercial',
282  'label' => $form->editfieldkey('AllocateCommercial', 'commercial_id', '', $object, 0),
283  'value' => $form->multiselectarray('commercial', $userlist, null, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0, '', '', '', 1));
284  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAllocateCommercial"), $langs->trans("ConfirmAllocateCommercialQuestion", count($toselect)), "affectcommercial", $formquestion, 1, 0, 200, 500, 1);
285 }
286 if ($massaction == 'preapproveleave') {
287  print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassLeaveApproval"), $langs->trans("ConfirmMassLeaveApprovalQuestion", count($toselect)), "approveleave", null, 'yes', 0, 200, 500, 1);
288 }
289 
290 // Allow Pre-Mass-Action hook (eg for confirmation dialog)
291 $parameters = array(
292  'toselect' => $toselect,
293  'uploaddir' => isset($uploaddir) ? $uploaddir : null
294 );
295 
296 $reshook = $hookmanager->executeHooks('doPreMassActions', $parameters, $object, $action);
297 if ($reshook < 0) {
298  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
299 } else {
300  print $hookmanager->resPrint;
301 }
Societe
Class to manage third parties objects (customers, suppliers, prospects...)
Definition: societe.class.php:48
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
img_warning
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
Definition: functions.lib.php:4521
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
Categorie
Class to manage categories.
Definition: categorie.class.php:47
getCommonSubstitutionArray
getCommonSubstitutionArray($outputlangs, $onlykey=0, $exclude=null, $object=null)
Return array of possible common substitutions.
Definition: functions.lib.php:7275
setEventMessage
setEventMessage($mesgs, $style='mesgs')
Set event message in dol_events session object.
Definition: functions.lib.php:8108
Adherent
Class to manage members of a foundation.
Definition: adherent.class.php:46
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
getDolGlobalString
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
Definition: functions.lib.php:80
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
isModEnabled
isModEnabled($module)
Is Dolibarr module enabled.
Definition: functions.lib.php:105
User
Class to manage Dolibarr users.
Definition: user.class.php:44
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
FormMail
Classe permettant la generation du formulaire html d'envoi de mail unitaire Usage: $formail = new For...
Definition: html.formmail.class.php:38
complete_substitutions_array
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...
Definition: functions.lib.php:7961