123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?php
- /* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
- * Copyright (C) 2013-2014 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- * or see https://www.gnu.org/
- */
- // Following var must be set:
- // $arrayofselected = array of id selected
- // $object
- // $objecttmp=new Propal($db);
- // $topicmail="SendSupplierProposalRef";
- // $modelmail="supplier_proposal_send";
- // $trackid='ord'.$object->id;
- if ($massaction == 'predeletedraft') {
- print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDraftDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
- }
- if ($massaction == 'predelete') {
- print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
- }
- if ($massaction == 'preaffecttag') {
- require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
- $categ = new Categorie($db);
- $categ_types=array();
- $categ_type_array=$categ->getMapList();
- foreach ($categ_type_array as $categdef) {
- if (isset($object) && $categdef['obj_table']==$object->table_element) {
- if (!array_key_exists($categdef['code'], $categ_types)) {
- $categ_types[$categdef['code']] = array('code'=>$categdef['code'],'label'=>$langs->trans($categdef['obj_class']));
- }
- }
- if (isset($objecttmp) && $categdef['obj_table']==$objecttmp->table_element) {
- if (!array_key_exists($categdef['code'], $categ_types)) {
- $categ_types[$categdef['code']] = array('code'=>$categdef['code'],'label'=>$langs->trans($categdef['obj_class']));
- }
- }
- }
- $formquestion = array();
- if (!empty($categ_types)) {
- foreach ($categ_types as $categ_type) {
- $cate_arbo = $form->select_all_categories($categ_type['code'], null, 'parent', null, null, 1);
- $formquestion[]=array('type' => 'other',
- 'name' => 'affecttag_'.$categ_type['code'],
- 'label' => $langs->trans("Tag").' '.$categ_type['label'],
- 'value' => $form->multiselectarray('contcats_'.$categ_type['code'], $cate_arbo, GETPOST('contcats_'.$categ_type['code'], 'array'), null, null, null, null, '60%'));
- }
- $formquestion[]=array('type' => 'other',
- 'name' => 'affecttag_type',
- 'label' => '',
- 'value' => '<input type="hidden" name="affecttag_type" id="affecttag_type" value="'.implode(",", array_keys($categ_types)).'"/>');
- print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAffectTag"), $langs->trans("ConfirmAffectTagQuestion", count($toselect)), "affecttag", $formquestion, 1, 0, 200, 500, 1);
- } else {
- setEventMessage('CategTypeNotFound');
- }
- }
- if ($massaction == 'presend') {
- $langs->load("mails");
- $listofselectedid = array();
- $listofselectedthirdparties = array();
- $listofselectedref = array();
- if (!GETPOST('cancel', 'alpha')) {
- foreach ($arrayofselected as $toselectid) {
- $result = $objecttmp->fetch($toselectid);
- if ($result > 0) {
- $listofselectedid[$toselectid] = $toselectid;
- $thirdpartyid = ($objecttmp->fk_soc ? $objecttmp->fk_soc : $objecttmp->socid);
- if ($objecttmp->element == 'societe') {
- $thirdpartyid = $objecttmp->id;
- }
- if ($objecttmp->element == 'expensereport') {
- $thirdpartyid = $objecttmp->fk_user_author;
- }
- $listofselectedthirdparties[$thirdpartyid] = $thirdpartyid;
- $listofselectedref[$thirdpartyid][$toselectid] = $objecttmp->ref;
- }
- }
- }
- print '<input type="hidden" name="massaction" value="confirm_presend">';
- print dol_get_fiche_head(null, '', '');
- // Create mail form
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- $formmail->withform = -1;
- $formmail->fromtype = (GETPOST('fromtype') ? GETPOST('fromtype') : (!empty($conf->global->MAIN_MAIL_DEFAULT_FROMTYPE) ? $conf->global->MAIN_MAIL_DEFAULT_FROMTYPE : 'user'));
- if ($formmail->fromtype === 'user') {
- $formmail->fromid = $user->id;
- }
- $formmail->trackid = $trackid;
- $formmail->withfrom = 1;
- $liste = $langs->trans("AllRecipientSelected", count($arrayofselected));
- if (count($listofselectedthirdparties) == 1) { // Only 1 different recipient selected, we can suggest contacts
- $liste = array();
- $thirdpartyid = array_shift($listofselectedthirdparties);
- if ($objecttmp->element == 'expensereport') {
- $fuser = new User($db);
- $fuser->fetch($thirdpartyid);
- $liste['thirdparty'] = $fuser->getFullName($langs)." <".$fuser->email.">";
- } elseif ($objecttmp->element == 'partnership' && $conf->global->PARTNERSHIP_IS_MANAGED_FOR == 'member') {
- $fadherent = new Adherent($db);
- $fadherent->fetch($objecttmp->fk_member);
- $liste['member'] = $fadherent->getFullName($langs)." <".$fadherent->email.">";
- } else {
- $soc = new Societe($db);
- $soc->fetch($thirdpartyid);
- foreach ($soc->thirdparty_and_contact_email_array(1) as $key => $value) {
- $liste[$key] = $value;
- }
- }
- $formmail->withtoreadonly = 0;
- } else {
- $formmail->withtoreadonly = 1;
- }
- $formmail->withoptiononeemailperrecipient = ((count($listofselectedref) == 1 && count(reset($listofselectedref)) == 1) || empty($liste)) ? 0 : ((GETPOST('oneemailperrecipient') == 'on') ? 1 : -1);
- $formmail->withto = empty($liste) ? (GETPOST('sendto', 'alpha') ?GETPOST('sendto', 'alpha') : array()) : $liste;
- $formmail->withtofree = empty($liste) ? 1 : 0;
- $formmail->withtocc = 1;
- $formmail->withtoccc = $conf->global->MAIN_EMAIL_USECCC;
- $formmail->withtopic = $langs->transnoentities($topicmail, '__REF__', '__REF_CLIENT__');
- $formmail->withfile = 1;
- // $formmail->withfile = 2; Not yet supported in mass action
- $formmail->withmaindocfile = 1; // Add a checkbox "Attach also main document"
- if ($objecttmp->element != 'societe') {
- $formmail->withfile = '<span class="hideonsmartphone">'.$langs->trans("OnlyPDFattachmentSupported").'</span>';
- $formmail->withmaindocfile = - 1; // Add a checkbox "Attach also main document" but not checked by default
- }
- $formmail->withbody = 1;
- $formmail->withdeliveryreceipt = 1;
- $formmail->withcancel = 1;
- // Make substitution in email content
- $substitutionarray = getCommonSubstitutionArray($langs, 0, null, $object);
- $substitutionarray['__EMAIL__'] = $sendto;
- $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"/>' : '';
- $substitutionarray['__PERSONALIZED__'] = ''; // deprecated
- $substitutionarray['__CONTACTCIVNAME__'] = '';
- $parameters = array(
- 'mode' => 'formemail'
- );
- complete_substitutions_array($substitutionarray, $langs, $object, $parameters);
- // Tableau des substitutions
- $formmail->substit = $substitutionarray;
- // Tableau des parametres complementaires du post
- $formmail->param['action'] = $action;
- $formmail->param['models'] = $modelmail;
- $formmail->param['models_id'] = GETPOST('modelmailselected', 'int');
- $formmail->param['id'] = join(',', $arrayofselected);
- // $formmail->param['returnurl']=$_SERVER["PHP_SELF"].'?id='.$object->id;
- if (!empty($conf->global->MAILING_LIMIT_SENDBYWEB) && count($listofselectedthirdparties) > $conf->global->MAILING_LIMIT_SENDBYWEB) {
- $langs->load("errors");
- print img_warning().' '.$langs->trans('WarningNumberOfRecipientIsRestrictedInMassAction', $conf->global->MAILING_LIMIT_SENDBYWEB);
- print ' - <a href="javascript: window.history.go(-1)">'.$langs->trans("GoBack").'</a>';
- $arrayofmassactions = array();
- } else {
- print $formmail->get_form();
- }
- print dol_get_fiche_end();
- }
- if ($massaction == 'preenable') {
- print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassEnabling"), $langs->trans("ConfirmMassEnablingQuestion", count($toselect)), "enable", null, '', 0, 200, 500, 1);
- }
- if ($massaction == 'predisable') {
- print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDisabling"), $langs->trans("ConfirmMassDisablingQuestion", count($toselect)), "disable", null, '', 0, 200, 500, 1);
- }
- if ($massaction == 'preapproveleave') {
- print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassLeaveApproval"), $langs->trans("ConfirmMassLeaveApprovalQuestion", count($toselect)), "approveleave", null, '', 0, 200, 500, 1);
- }
- // Allow Pre-Mass-Action hook (eg for confirmation dialog)
- $parameters = array(
- 'toselect' => $toselect,
- 'uploaddir' => isset($uploaddir) ? $uploaddir : null
- );
- $reshook = $hookmanager->executeHooks('doPreMassActions', $parameters, $object, $action);
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- } else {
- print $hookmanager->resPrint;
- }
|