* Copyright (C) 2006-2017 Laurent Destailleur * Copyright (C) 2009-2012 Regis Houssin * Copyright (C) 2023 anthony Berton * Copyright (C) 2024 Frédéric France * Copyright (C) 2024 MDW * * 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 . */ /** * \file htdocs/public/onlinesign/newonlinesign.php * \ingroup core * \brief File to offer a way to make an online signature for a particular Dolibarr entity * Example of URL: https://localhost/public/onlinesign/newonlinesign.php?ref=PR... * * The signature is added by calling the file /htdocs/core/ajax/onlinSign.php */ if (!defined('NOLOGIN')) { define("NOLOGIN", 1); // This means this output page does not require to be logged. } if (!defined('NOCSRFCHECK')) { define("NOCSRFCHECK", 1); // We accept to go on this page from external web site. } if (!defined('NOIPCHECK')) { define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip } if (!defined('NOBROWSERNOTIF')) { define('NOBROWSERNOTIF', '1'); } // For MultiCompany module. // Do not use GETPOST here, function is not defined and define must be done before including main.inc.php // Because 2 entities can have the same ref. $entity = (!empty($_GET['entity']) ? (int) $_GET['entity'] : (!empty($_POST['entity']) ? (int) $_POST['entity'] : 1)); if (is_numeric($entity)) { define("DOLENTITY", $entity); } // Load Dolibarr environment require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php'; require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php'; /** * @var Conf $conf * @var DoliDB $db * @var HookManager $hookmanager * @var Societe $mysoc * @var Translate $langs * @var User $user */ // Load translation files $langs->loadLangs(array("main", "other", "dict", "bills", "companies", "errors", "members", "paybox", "stripe", "propal", "commercial")); // Security check // No check on module enabled. Done later according to $validpaymentmethod // Get parameters $action = GETPOST('action', 'aZ09'); $cancel = GETPOST('cancel', 'alpha'); $confirm = GETPOST('confirm', 'alpha'); $refusepropal = GETPOST('refusepropal', 'alpha'); $message = GETPOST('message', 'aZ09'); // Input are: // type ('invoice','order','contractline'), // id (object id), // amount (required if id is empty), // tag (a free text, required if type is empty) // currency (iso code) $suffix = GETPOST("suffix", 'aZ09'); $source = GETPOST("source", 'alpha'); $ref = $REF = GETPOST("ref", 'alpha'); $urlok = ''; $urlko = ''; if (empty($source)) { $source = 'proposal'; } if (!empty($refusepropal)) { $action = "refusepropal"; } // Define $urlwithroot //$urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',trim($dolibarr_main_url_root)); //$urlwithroot=$urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file $urlwithroot = DOL_MAIN_URL_ROOT; // This is to use same domain name than current. For Paypal payment, we can use internal URL like localhost. // Complete urls for post treatment $SECUREKEY = GETPOST("securekey"); // Secure key if (!empty($source)) { $urlok .= 'source='.urlencode($source).'&'; $urlko .= 'source='.urlencode($source).'&'; } if (!empty($REF)) { $urlok .= 'ref='.urlencode($REF).'&'; $urlko .= 'ref='.urlencode($REF).'&'; } if (!empty($SECUREKEY)) { $urlok .= 'securekey='.urlencode($SECUREKEY).'&'; $urlko .= 'securekey='.urlencode($SECUREKEY).'&'; } if (!empty($entity)) { $urlok .= 'entity='.urlencode((string) ($entity)).'&'; $urlko .= 'entity='.urlencode((string) ($entity)).'&'; } $urlok = preg_replace('/&$/', '', $urlok); // Remove last & $urlko = preg_replace('/&$/', '', $urlko); // Remove last & $creditor = $mysoc->name; $type = $source; if (!$action) { if ($source && !$ref) { httponly_accessforbidden($langs->trans('ErrorBadParameters')." - ref missing", 400, 1); } } // Check securitykey $securekeyseed = ''; if ($source == 'proposal') { $securekeyseed = getDolGlobalString('PROPOSAL_ONLINE_SIGNATURE_SECURITY_TOKEN'); } elseif ($source == 'contract') { $securekeyseed = getDolGlobalString('CONTRACT_ONLINE_SIGNATURE_SECURITY_TOKEN'); } elseif ($source == 'fichinter') { $securekeyseed = getDolGlobalString('FICHINTER_ONLINE_SIGNATURE_SECURITY_TOKEN'); } elseif ($source == 'societe_rib') { $securekeyseed = getDolGlobalString('SOCIETE_RIB_ONLINE_SIGNATURE_SECURITY_TOKEN'); } if (!dol_verifyHash($securekeyseed.$type.$ref.(isModEnabled('multicompany') ? $entity : ''), $SECUREKEY, '0')) { httponly_accessforbidden('Bad value for securitykey. Value provided '.dol_escape_htmltag($SECUREKEY).' does not match expected value for ref='.dol_escape_htmltag($ref), 403, 1); } if ($source == 'proposal') { require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; $object = new Propal($db); $result = $object->fetch(0, $ref, '', $entity); } elseif ($source == 'contract') { require_once DOL_DOCUMENT_ROOT.'/contrat/class/contrat.class.php'; $object = new Contrat($db); $result = $object->fetch(0, $ref); } elseif ($source == 'fichinter') { require_once DOL_DOCUMENT_ROOT.'/fichinter/class/fichinter.class.php'; $object = new Fichinter($db); $result = $object->fetch(0, $ref); } elseif ($source == 'societe_rib') { require_once DOL_DOCUMENT_ROOT.'/societe/class/companybankaccount.class.php'; $object = new CompanyBankAccount($db); $result = $object->fetch(0, $ref); } elseif ($source == 'expedition') { require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php'; $object = new Expedition($db); $result = $object->fetch(0, $ref); } else { httponly_accessforbidden($langs->trans('ErrorBadParameters')." - Bad value for source. Value not supported.", 400, 1); } // Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context $hookmanager->initHooks(array('onlinesign')); $error = 0; /* * Actions */ if ($action == 'confirm_refusepropal' && $confirm == 'yes') { // Test on pemrission not required here. Public form. Security checked on the securekey and on mitigation $db->begin(); $sql = "UPDATE ".MAIN_DB_PREFIX."propal"; $sql .= " SET fk_statut = ".((int) $object::STATUS_NOTSIGNED).", note_private = '".$db->escape($object->note_private)."', date_signature = '".$db->idate(dol_now())."'"; $sql .= " WHERE rowid = ".((int) $object->id); dol_syslog(__FILE__, LOG_DEBUG); $resql = $db->query($sql); if (!$resql) { $error++; } if (!$error) { $db->commit(); $message = 'refused'; setEventMessages("PropalRefused", null, 'warnings'); if (method_exists($object, 'call_trigger')) { // Online customer is not a user, so we use the use that validates the documents $user = new User($db); $user->fetch($object->user_validation_id); $object->context = array('closedfromonlinesignature' => 'closedfromonlinesignature'); $result = $object->call_trigger('PROPAL_CLOSE_REFUSED', $user); if ($result < 0) { $error++; } } } else { $db->rollback(); } $object->fetch(0, $ref); } // $action == "dosign" is handled later... /* * View */ $form = new Form($db); $head = ''; if (getDolGlobalString('MAIN_SIGN_CSS_URL')) { $head = ''."\n"; } $conf->dol_hide_topmenu = 1; $conf->dol_hide_leftmenu = 1; $replacemainarea = (empty($conf->dol_hide_leftmenu) ? '
' : '').'
'; llxHeader($head, $langs->trans("OnlineSignature"), '', '', 0, 0, '', '', '', 'onlinepaymentbody', $replacemainarea, 1); if ($action == 'refusepropal') { print $form->formconfirm($_SERVER["PHP_SELF"].'?ref='.urlencode($ref).'&securekey='.urlencode($SECUREKEY).(isModEnabled('multicompany') ? '&entity='.$entity : ''), $langs->trans('RefusePropal'), $langs->trans('ConfirmRefusePropal', $object->ref), 'confirm_refusepropal', '', '', 1); } // Check link validity for param 'source' to avoid use of the examples as value if (!empty($source) && in_array($ref, array('member_ref', 'contractline_ref', 'invoice_ref', 'order_ref', 'proposal_ref', ''))) { $langs->load("errors"); dol_print_error_email('BADREFINONLINESIGNFORM', $langs->trans("ErrorBadLinkSourceSetButBadValueForRef", $source, $ref)); // End of page llxFooter(); $db->close(); exit; } print ''."\n"; print '
'."\n"; print '
'."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''; print ''; print ''; print ''; print "\n"; print ''."\n"; print ''."\n"; // Show logo (search order: logo defined by ONLINE_SIGN_LOGO_suffix, then ONLINE_SIGN_LOGO_, then small company logo, large company logo, theme logo, common logo) // Define logo and logosmall $logosmall = $mysoc->logo_small; $logo = $mysoc->logo; $paramlogo = 'ONLINE_SIGN_LOGO_'.$suffix; if (getDolGlobalString($paramlogo)) { $logosmall = getDolGlobalString($paramlogo); } elseif (getDolGlobalString('ONLINE_SIGN_LOGO')) { $logosmall = getDolGlobalString('ONLINE_SIGN_LOGO'); } //print ''."\n"; // Define urllogo $urllogo = ''; $urllogofull = ''; if (!empty($logosmall) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$logosmall)) { $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall); $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall); } elseif (!empty($logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$logo)) { $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo); $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo); } // Output html code for logo if ($urllogo) { print '
'; print '
'; print ''; print '
'; if (!getDolGlobalString('MAIN_HIDE_POWERED_BY')) { print ''; } print '
'; } if ($source == 'proposal' && getDolGlobalString('PROPOSAL_IMAGE_PUBLIC_SIGN')) { print '
'; print ''; print '
'; } // Output introduction text $text = ''; if (getDolGlobalString('ONLINE_SIGN_NEWFORM_TEXT')) { $reg = array(); if (preg_match('/^\((.*)\)$/', $conf->global->ONLINE_SIGN_NEWFORM_TEXT, $reg)) { $text .= $langs->trans($reg[1])."
\n"; } else { $text .= getDolGlobalString('ONLINE_SIGN_NEWFORM_TEXT') . "
\n"; } $text = ''."\n"; } if (empty($text)) { if ($source == 'proposal') { $text .= ''."\n"; $text .= ''."\n"; } elseif ($source == 'contract') { $text .= ''."\n"; $text .= ''."\n"; } elseif ($source == 'fichinter') { $text .= ''."\n"; $text .= ''."\n"; } elseif ($source == 'expedition') { $text .= ''."\n"; $text .= ''."\n"; } else { $text .= ''."\n"; $text .= ''."\n"; } } print $text; // Output payment summary form print ''."\n"; print ''."\n"; print '

'.$text.'

'.$langs->trans("WelcomeOnOnlineSignaturePageProposal", $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFromProposal", $creditor).'


'.$langs->trans("WelcomeOnOnlineSignaturePageContract", $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFromContract", $creditor).'


'.$langs->trans("WelcomeOnOnlineSignaturePageFichinter", $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFromFichinter", $creditor).'


'.$langs->trans("WelcomeOnOnlineSignaturePageExpedition", $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFromExpedition", $creditor).'


'.$langs->trans("WelcomeOnOnlineSignaturePage".dol_ucfirst($source), $mysoc->name).'
'.$langs->trans("ThisScreenAllowsYouToSignDocFrom".dol_ucfirst($source), $creditor).'

'; print ''; if ($source == 'proposal') { print ''."\n"; } elseif ($source == 'contract') { print ''."\n"; } elseif ($source == 'fichinter') { print ''."\n"; } elseif ($source == 'expedition') { print ''."\n"; } else { print ''."\n"; } $found = false; $error = 0; // Signature on commercial proposal if ($source == 'proposal') { $found = true; $langs->load("proposal"); $result = $object->fetch_thirdparty($object->socid); // Creditor print ''."\n"; // Debitor print ''."\n"; // Amount $amount = ''."\n"; // Call Hook amountPropalSign $parameters = array('source' => $source); $reshook = $hookmanager->executeHooks('amountPropalSign', $parameters, $object, $action); // Note that $action and $object may have been modified by hook if (empty($reshook)) { $amount .= $hookmanager->resPrint; } elseif ($reshook > 0) { $amount = $hookmanager->resPrint; } print $amount; // Object $text = ''.$langs->trans("SignatureProposalRef", $object->ref).''; print ''."\n"; } elseif ($source == 'contract') { // Signature on contract $found = true; $langs->load("contract"); $result = $object->fetch_thirdparty($object->socid); // Proposer print ''."\n"; // Target print ''."\n"; // Object $text = ''.$langs->trans("SignatureContractRef", $object->ref).''; print ''."\n"; } elseif ($source == 'fichinter') { // Signature on fichinter $found = true; $langs->load("interventions"); $result = $object->fetch_thirdparty($object->socid); // Proposer print ''."\n"; // Target print ''."\n"; // Object $text = ''.$langs->trans("SignatureFichinterRef", $object->ref).''; print ''."\n"; } elseif ($source == 'societe_rib') { $found = true; $langs->loadLangs(array("companies", "commercial", "withdrawals")); $result = $object->fetch_thirdparty(); // Proposer print '' . "\n"; // Target print '' . "\n"; // Object $text = '' . $langs->trans("Signature" . dol_ucfirst($source) . "Ref", $object->ref) . ''; print ''."\n"; // Target print ''."\n"; // Object $text = ''.$langs->trans("SignatureFichinterRef", $object->ref).''; print ''."\n"; } else { $found = true; $langs->load('companies'); if (!empty($object->socid) || !empty($object->fk_soc)) { $result = $object->fetch_thirdparty(); } // Proposer print ''."\n"; // Target print ''."\n"; // Object $text = ''.$langs->trans("Signature".dol_ucfirst($source)."Ref", $object->ref).''; print ''."\n"; } print '
'.$langs->trans("ThisIsInformationOnDocumentToSignProposal").' :
'.$langs->trans("ThisIsInformationOnDocumentToSignContract").' :
'.$langs->trans("ThisIsInformationOnDocumentToSignFichinter").' :
'.$langs->trans("ThisIsInformationOnDocumentToSignExpedition").' :
'.$langs->trans("ThisIsInformationOnDocumentToSign".dol_ucfirst($source)).' :
'.$langs->trans("Creditor"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Amount"); $amount .= ''; $amount .= ''.price($object->total_ttc, 0, $langs, 1, -1, -1, $conf->currency).''; if ($object->multicurrency_code != $conf->currency) { $amount .= ' ('.price($object->multicurrency_total_ttc, 0, $langs, 1, -1, -1, $object->multicurrency_code).')'; } $amount .= '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if ($object->status == $object::STATUS_VALIDATED) { if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink('proposal'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); print $langs->trans("DownloadDocument").''; } } else { if ($object->status == $object::STATUS_NOTSIGNED) { $directdownloadlink = $object->getLastMainDocLink('proposal'); if ($directdownloadlink) { print '
'; print img_mime($last_main_doc_file, ''); print $langs->trans("DownloadDocument").''; } } elseif ($object->status == $object::STATUS_SIGNED || $object->status == $object::STATUS_BILLED) { if (preg_match('/_signed-(\d+)/', $last_main_doc_file)) { // If the last main doc has been signed $last_main_doc_file_not_signed = preg_replace('/_signed-(\d+)/', '', $last_main_doc_file); $datefilesigned = dol_filemtime($last_main_doc_file); $datefilenotsigned = dol_filemtime($last_main_doc_file_not_signed); if (empty($datefilenotsigned) || $datefilesigned > $datefilenotsigned) { $directdownloadlink = $object->getLastMainDocLink('proposal'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); print $langs->trans("DownloadDocument").''; } } } } } print ''; print ''; print '
'.$langs->trans("Proposer"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink('contract'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); if ($message == "signed") { print $langs->trans("DownloadSignedDocument").''; } else { print $langs->trans("DownloadDocument").''; } } print ''; print ''; print '
'.$langs->trans("Proposer"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink('fichinter'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); if ($message == "signed") { print $langs->trans("DownloadSignedDocument").''; } else { print $langs->trans("DownloadDocument").''; } } print ''; print ''; print '
' . $langs->trans("Proposer"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print '' . $creditor . ''; print ''; print '
' . $langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print '' . $object->thirdparty->name . ''; print '
' . $langs->trans("Designation"); print '' . $text; $last_main_doc_file = $object->last_main_doc; $diroutput = $conf->societe->multidir_output[$object->thirdparty->entity].'/' .dol_sanitizeFileName((string) $object->thirdparty->id).'/'; if ((empty($last_main_doc_file) || !dol_is_file($diroutput .$langs->transnoentitiesnoconv("SepaMandateShort").' '.$object->id."-".dol_sanitizeFileName($object->rum).".pdf")) && $message != "signed") { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. //$defaulttemplate = 'sepamandate'; $defaulttemplate = getDolGlobalString("BANKADDON_PDF"); $object->setDocModel($user, $defaulttemplate); $moreparams = array( 'use_companybankid' => $object->id, 'force_dir_output' => $diroutput ); $result = $object->thirdparty->generateDocument($defaulttemplate, $langs, 0, 0, 0, $moreparams); $object->last_main_doc = $object->thirdparty->last_main_doc; } $directdownloadlink = $object->getLastMainDocLink('company'); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); if ($message == "signed") { print $langs->trans("DownloadSignedDocument").''; } else { print $langs->trans("DownloadDocument").''; } } } elseif ($source == 'expedition') { // Signature on expedition $found = true; $langs->load("interventions"); $result = $object->fetch_thirdparty($object->socid); // Proposer print '
'.$langs->trans("Proposer"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink('', 0, 0); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); if ($message == "signed") { print $langs->trans("DownloadSignedDocument").''; } else { print $langs->trans("DownloadDocument").''; } } print ''; print ''; print '
'.$langs->trans("Proposer"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''; print img_picto('', 'company', 'class="pictofixedwidth"'); print ''.$object->thirdparty->name.''; print '
'.$langs->trans("Designation"); print ''.$text; $last_main_doc_file = $object->last_main_doc; if (empty($last_main_doc_file) || !dol_is_file(DOL_DATA_ROOT.'/'.$object->last_main_doc)) { // It seems document has never been generated, or was generated and then deleted. // So we try to regenerate it with its default template. $defaulttemplate = ''; // We force the use an empty string instead of $object->model_pdf to be sure to use a "main" default template and not the last one used. $object->generateDocument($defaulttemplate, $langs); } $directdownloadlink = $object->getLastMainDocLink($source); if ($directdownloadlink) { print '
'; print img_mime($object->last_main_doc, ''); if ($message == "signed") { print $langs->trans("DownloadSignedDocument").''; } else { print $langs->trans("DownloadDocument").''; } } } // Call Hook addFormSign $parameters = array('source' => $source); $reshook = $hookmanager->executeHooks('addFormSign', $parameters, $object, $action); // Note that $action and $object may have been modified by hook if (!$found && !$mesg) { $mesg = $langs->transnoentitiesnoconv("ErrorBadParameters"); } if ($mesg) { print '

'.dol_escape_htmltag($mesg).'
'."\n"; print "\n"; if ($action != 'dosign') { if ($found && !$error) { // We are in a management option and no error } else { dol_print_error_email('ERRORNEWONLINESIGN'); } } else { // Print } print '
'; if ($action == "dosign" && empty($cancel)) { // Show the field to sign print '
'; print ''; print '
'; print '
'; print ''; // Do not use class="reposition" here: It breaks the submit and there is a message on top to say it's ok, so going back top is better. print '
'; print ''; print ''; print '
'; // Add js code managed into the div #signature $urltogo = $_SERVER["PHP_SELF"].'?ref='.urlencode($ref).'&source='.urlencode($source).'&message=signed&securekey='.urlencode($SECUREKEY).(isModEnabled('multicompany') ? '&entity='.(int) $entity : ''); print ' '; } else { if ($source == 'proposal') { if ($object->status == $object::STATUS_SIGNED) { print '
'; if ($message == 'signed') { print img_picto('', 'check', '', 0, 0, 0, '', 'size2x').'
'; print ''.$langs->trans("PropalSigned").''; } else { print img_picto('', 'check', '', 0, 0, 0, '', 'size2x').'
'; print ''.$langs->trans("PropalAlreadySigned").''; } } elseif ($object->status == $object::STATUS_NOTSIGNED) { print '
'; if ($message == 'refused') { print img_picto('', 'cross', '', 0, 0, 0, '', 'size2x').'
'; print ''.$langs->trans("PropalRefused").''; } else { print img_picto('', 'cross', '', 0, 0, 0, '', 'size2x').'
'; print ''.$langs->trans("PropalAlreadyRefused").''; } } else { print ''; print ''; } } elseif ($source == 'contract') { if ($message == 'signed') { print ''.$langs->trans("ContractSigned").''; } else { print ''; } } elseif ($source == 'fichinter') { if ($message == 'signed') { print ''.$langs->trans("FichinterSigned").''; } else { print ''; } } elseif ($source == 'expedition') { if ($message == 'signed' || $object->signed_status == Expedition::$SIGNED_STATUSES['STATUS_SIGNED_SENDER']) { print ''.$langs->trans("ExpeditionSigned").''; } else { print ''; } } else { if ($message == 'signed') { print ''.$langs->trans(dol_ucfirst($source)."Signed").''; } else { print ''; } } } print '
'."\n"; print '
'."\n"; print '
'."\n"; print '
'; htmlPrintOnlineFooter($mysoc, $langs); llxFooter('', 'public'); $db->close();