mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-10 03:28:18 +01:00
658 lines
26 KiB
PHP
658 lines
26 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2006-2017 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2009-2012 Regis Houssin <regis.houssin@inodbox.com>
|
|
* Copyright (C) 2023 anthony Berton <anthony.berton@bb2a.fr>
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/**
|
|
* \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...
|
|
*/
|
|
|
|
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';
|
|
|
|
// Load translation files
|
|
$langs->loadLangs(array("main", "other", "dict", "bills", "companies", "errors", "members", "paybox", "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($entity).'&';
|
|
$urlko .= 'entity='.urlencode($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');
|
|
}
|
|
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);
|
|
} else {
|
|
httponly_accessforbidden($langs->trans('ErrorBadParameters')." - Bad value for source", 400, 1);
|
|
}
|
|
|
|
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
|
|
$hookmanager->initHooks(array('onlinesign'));
|
|
|
|
$error = 0;
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if ($action == 'confirm_refusepropal' && $confirm == 'yes') {
|
|
$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(__METHOD__, 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_valid_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);
|
|
}
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$form = new Form($db);
|
|
$head = '';
|
|
if (!empty($conf->global->MAIN_SIGN_CSS_URL)) {
|
|
$head = '<link rel="stylesheet" type="text/css" href="'.$conf->global->MAIN_SIGN_CSS_URL.'?lang='.$langs->defaultlang.'">'."\n";
|
|
}
|
|
|
|
$conf->dol_hide_topmenu = 1;
|
|
$conf->dol_hide_leftmenu = 1;
|
|
|
|
$replacemainarea = (empty($conf->dol_hide_leftmenu) ? '<div>' : '').'<div>';
|
|
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 '<span id="dolpaymentspan"></span>'."\n";
|
|
print '<div class="center">'."\n";
|
|
print '<form id="dolpaymentform" class="center" name="paymentform" action="'.$_SERVER["PHP_SELF"].'" method="POST">'."\n";
|
|
print '<input type="hidden" name="token" value="'.newToken().'">'."\n";
|
|
print '<input type="hidden" name="action" value="dosign">'."\n";
|
|
print '<input type="hidden" name="tag" value="'.GETPOST("tag", 'alpha').'">'."\n";
|
|
print '<input type="hidden" name="suffix" value="'.GETPOST("suffix", 'alpha').'">'."\n";
|
|
print '<input type="hidden" name="securekey" value="'.$SECUREKEY.'">'."\n";
|
|
print '<input type="hidden" name="entity" value="'.$entity.'" />';
|
|
print '<input type="hidden" name="page_y" value="" />';
|
|
print "\n";
|
|
print '<!-- Form to sign -->'."\n";
|
|
|
|
print '<table id="dolpublictable" summary="Payment form" class="center">'."\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 (!empty($conf->global->$paramlogo)) {
|
|
$logosmall = $conf->global->$paramlogo;
|
|
} elseif (!empty($conf->global->ONLINE_SIGN_LOGO)) {
|
|
$logosmall = $conf->global->ONLINE_SIGN_LOGO;
|
|
}
|
|
//print '<!-- Show logo (logosmall='.$logosmall.' logo='.$logo.') -->'."\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 '<div class="backgreypublicpayment">';
|
|
print '<div class="logopublicpayment">';
|
|
print '<img id="dolpaymentlogo" src="'.$urllogo.'"';
|
|
print '>';
|
|
print '</div>';
|
|
if (empty($conf->global->MAIN_HIDE_POWERED_BY)) {
|
|
print '<div class="poweredbypublicpayment opacitymedium right"><a class="poweredbyhref" href="https://www.dolibarr.org?utm_medium=website&utm_source=poweredby" target="dolibarr" rel="noopener">'.$langs->trans("PoweredBy").'<br><img class="poweredbyimg" src="'.DOL_URL_ROOT.'/theme/dolibarr_logo.svg" width="80px"></a></div>';
|
|
}
|
|
print '</div>';
|
|
}
|
|
if ($source == 'proposal' && !empty($conf->global->PROPOSAL_IMAGE_PUBLIC_SIGN)) {
|
|
print '<div class="backimagepublicproposalsign">';
|
|
print '<img id="idPROPOSAL_IMAGE_PUBLIC_INTERFACE" src="'.$conf->global->PROPOSAL_IMAGE_PUBLIC_SIGN.'">';
|
|
print '</div>';
|
|
}
|
|
|
|
// Output introduction text
|
|
$text = '';
|
|
if (!empty($conf->global->ONLINE_SIGN_NEWFORM_TEXT)) {
|
|
$reg = array();
|
|
if (preg_match('/^\((.*)\)$/', $conf->global->ONLINE_SIGN_NEWFORM_TEXT, $reg)) {
|
|
$text .= $langs->trans($reg[1])."<br>\n";
|
|
} else {
|
|
$text .= $conf->global->ONLINE_SIGN_NEWFORM_TEXT."<br>\n";
|
|
}
|
|
$text = '<tr><td align="center"><br>'.$text.'<br></td></tr>'."\n";
|
|
}
|
|
if (empty($text)) {
|
|
if ($source == 'proposal') {
|
|
$text .= '<tr><td class="textpublicpayment"><br><strong>'.$langs->trans("WelcomeOnOnlineSignaturePageProposal", $mysoc->name).'</strong></td></tr>'."\n";
|
|
$text .= '<tr><td class="textpublicpayment opacitymedium">'.$langs->trans("ThisScreenAllowsYouToSignDocFromProposal", $creditor).'<br><br></td></tr>'."\n";
|
|
} elseif ($source == 'contract') {
|
|
$text .= '<tr><td class="textpublicpayment"><br><strong>'.$langs->trans("WelcomeOnOnlineSignaturePageContract", $mysoc->name).'</strong></td></tr>'."\n";
|
|
$text .= '<tr><td class="textpublicpayment opacitymedium">'.$langs->trans("ThisScreenAllowsYouToSignDocFromContract", $creditor).'<br><br></td></tr>'."\n";
|
|
} elseif ($source == 'fichinter') {
|
|
$text .= '<tr><td class="textpublicpayment"><br><strong>'.$langs->trans("WelcomeOnOnlineSignaturePageFichinter", $mysoc->name).'</strong></td></tr>'."\n";
|
|
$text .= '<tr><td class="textpublicpayment opacitymedium">'.$langs->trans("ThisScreenAllowsYouToSignDocFromFichinter", $creditor).'<br><br></td></tr>'."\n";
|
|
}
|
|
}
|
|
print $text;
|
|
|
|
// Output payment summary form
|
|
print '<tr><td align="center">';
|
|
print '<table with="100%" id="tablepublicpayment">';
|
|
if ($source == 'proposal') {
|
|
print '<tr><td align="left" colspan="2" class="opacitymedium">'.$langs->trans("ThisIsInformationOnDocumentToSignProposal").' :</td></tr>'."\n";
|
|
} elseif ($source == 'contract') {
|
|
print '<tr><td align="left" colspan="2" class="opacitymedium">'.$langs->trans("ThisIsInformationOnDocumentToSignContract").' :</td></tr>'."\n";
|
|
} elseif ($source == 'fichinter') {
|
|
print '<tr><td align="left" colspan="2" class="opacitymedium">'.$langs->trans("ThisIsInformationOnDocumentToSignFichinter").' :</td></tr>'."\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 '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("Creditor");
|
|
print '</td><td class="CTableRow2">';
|
|
print img_picto('', 'company', 'class="pictofixedwidth"');
|
|
print '<b>'.$creditor.'</b>';
|
|
print '<input type="hidden" name="creditor" value="'.$creditor.'">';
|
|
print '</td></tr>'."\n";
|
|
|
|
// Debitor
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("ThirdParty");
|
|
print '</td><td class="CTableRow2">';
|
|
print img_picto('', 'company', 'class="pictofixedwidth"');
|
|
print '<b>'.$object->thirdparty->name.'</b>';
|
|
print '</td></tr>'."\n";
|
|
|
|
// Amount
|
|
$amount = '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("Amount");
|
|
$amount .= '</td><td class="CTableRow2">';
|
|
$amount .= '<b>'.price($object->total_ttc, 0, $langs, 1, -1, -1, $conf->currency).'</b>';
|
|
$amount .= '</td></tr>'."\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 = '<b>'.$langs->trans("SignatureProposalRef", $object->ref).'</b>';
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("Designation");
|
|
print '</td><td class="CTableRow2">'.$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 '<br><a href="'.$directdownloadlink.'">';
|
|
print img_mime($object->last_main_doc, '');
|
|
print $langs->trans("DownloadDocument").'</a>';
|
|
}
|
|
} else {
|
|
if ($object->status == $object::STATUS_NOTSIGNED) {
|
|
$directdownloadlink = $object->getLastMainDocLink('proposal');
|
|
if ($directdownloadlink) {
|
|
print '<br><a href="'.$directdownloadlink.'">';
|
|
print img_mime($last_main_doc_file, '');
|
|
print $langs->trans("DownloadDocument").'</a>';
|
|
}
|
|
} 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 '<br><a href="'.$directdownloadlink.'">';
|
|
print img_mime($object->last_main_doc, '');
|
|
print $langs->trans("DownloadDocument").'</a>';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
print '<input type="hidden" name="source" value="'.GETPOST("source", 'alpha').'">';
|
|
print '<input type="hidden" name="ref" value="'.$object->ref.'">';
|
|
print '</td></tr>'."\n";
|
|
} elseif ($source == 'contract') { // Signature on contract
|
|
$found = true;
|
|
$langs->load("contract");
|
|
|
|
$result = $object->fetch_thirdparty($object->socid);
|
|
|
|
// Proposer
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("Proposer");
|
|
print '</td><td class="CTableRow2">';
|
|
print img_picto('', 'company', 'class="pictofixedwidth"');
|
|
print '<b>'.$creditor.'</b>';
|
|
print '<input type="hidden" name="creditor" value="'.$creditor.'">';
|
|
print '</td></tr>'."\n";
|
|
|
|
// Target
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("ThirdParty");
|
|
print '</td><td class="CTableRow2">';
|
|
print img_picto('', 'company', 'class="pictofixedwidth"');
|
|
print '<b>'.$object->thirdparty->name.'</b>';
|
|
print '</td></tr>'."\n";
|
|
|
|
// Object
|
|
$text = '<b>'.$langs->trans("SignatureContractRef", $object->ref).'</b>';
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("Designation");
|
|
print '</td><td class="CTableRow2">'.$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 '<br><a href="'.$directdownloadlink.'">';
|
|
print img_mime($object->last_main_doc, '');
|
|
if ($message == "signed") {
|
|
print $langs->trans("DownloadSignedDocument").'</a>';
|
|
} else {
|
|
print $langs->trans("DownloadDocument").'</a>';
|
|
}
|
|
}
|
|
|
|
|
|
print '<input type="hidden" name="source" value="'.GETPOST("source", 'alpha').'">';
|
|
print '<input type="hidden" name="ref" value="'.$object->ref.'">';
|
|
print '</td></tr>'."\n";
|
|
} elseif ($source == 'fichinter') { // Signature on fichinter
|
|
$found = true;
|
|
$langs->load("fichinter");
|
|
|
|
$result = $object->fetch_thirdparty($object->socid);
|
|
|
|
// Proposer
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("Proposer");
|
|
print '</td><td class="CTableRow2">';
|
|
print img_picto('', 'company', 'class="pictofixedwidth"');
|
|
print '<b>'.$creditor.'</b>';
|
|
print '<input type="hidden" name="creditor" value="'.$creditor.'">';
|
|
print '</td></tr>'."\n";
|
|
|
|
// Target
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("ThirdParty");
|
|
print '</td><td class="CTableRow2">';
|
|
print img_picto('', 'company', 'class="pictofixedwidth"');
|
|
print '<b>'.$object->thirdparty->name.'</b>';
|
|
print '</td></tr>'."\n";
|
|
|
|
// Object
|
|
$text = '<b>'.$langs->trans("SignatureFichinterRef", $object->ref).'</b>';
|
|
print '<tr class="CTableRow2"><td class="CTableRow2">'.$langs->trans("Designation");
|
|
print '</td><td class="CTableRow2">'.$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 '<br><a href="'.$directdownloadlink.'">';
|
|
print img_mime($object->last_main_doc, '');
|
|
if ($message == "signed") {
|
|
print $langs->trans("DownloadSignedDocument").'</a>';
|
|
} else {
|
|
print $langs->trans("DownloadDocument").'</a>';
|
|
}
|
|
}
|
|
print '<input type="hidden" name="source" value="'.GETPOST("source", 'alpha').'">';
|
|
print '<input type="hidden" name="ref" value="'.$object->ref.'">';
|
|
print '</td></tr>'."\n";
|
|
}
|
|
|
|
// 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 '<tr><td class="center" colspan="2"><br><div class="warning">'.dol_escape_htmltag($mesg).'</div></td></tr>'."\n";
|
|
}
|
|
|
|
print '</table>'."\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 '</td></tr>'."\n";
|
|
print '<tr><td class="center">';
|
|
|
|
|
|
if ($action == "dosign" && empty($cancel)) {
|
|
print '<div class="tablepublicpayment">';
|
|
print '<input type="button" class="buttonDelete small" id="clearsignature" value="'.$langs->trans("ClearSignature").'">';
|
|
print '<input type="text" class="paddingleftonly marginleftonly paddingrightonly marginrightonly" id="name" placeholder="'.$langs->trans("Lastname").'">';
|
|
print '<div id="signature" style="border:solid;"></div>';
|
|
print '</div>';
|
|
// 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 '<input type="button" class="button" id="signbutton" value="'.$langs->trans("Sign").'">';
|
|
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
|
|
|
|
// Add js code managed into the div #signature
|
|
print '<script language="JavaScript" type="text/javascript" src="'.DOL_URL_ROOT.'/includes/jquery/plugins/jSignature/jSignature.js"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$("#signature").jSignature({ color:"#000", lineWidth:0, '.(empty($conf->dol_optimize_smallscreen) ? '' : 'width: 280, ' ).'height: 180});
|
|
|
|
$("#signature").on("change",function(){
|
|
$("#clearsignature").css("display","");
|
|
$("#signbutton").attr("disabled",false);
|
|
if(!$._data($("#signbutton")[0], "events")){
|
|
$("#signbutton").on("click",function(){
|
|
console.log("We click on button sign");
|
|
$("#signbutton").val(\''.dol_escape_js($langs->transnoentities('PleaseBePatient')).'\');
|
|
var signature = $("#signature").jSignature("getData", "image");
|
|
var name = document.getElementById("name").value;
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "'.DOL_URL_ROOT.'/core/ajax/onlineSign.php",
|
|
dataType: "text",
|
|
data: {
|
|
"action" : "importSignature",
|
|
"token" : \''.newToken().'\',
|
|
"signaturebase64" : signature,
|
|
"onlinesignname" : name,
|
|
"ref" : \''.dol_escape_js($REF).'\',
|
|
"securekey" : \''.dol_escape_js($SECUREKEY).'\',
|
|
"mode" : \''.dol_escape_htmltag($source).'\',
|
|
"entity" : \''.dol_escape_htmltag($entity).'\',
|
|
},
|
|
success: function(response) {
|
|
if(response == "success"){
|
|
console.log("Success on saving signature");
|
|
window.location.replace("'.$_SERVER["PHP_SELF"].'?ref='.urlencode($ref).'&source='.urlencode($source).'&message=signed&securekey='.urlencode($SECUREKEY).(isModEnabled('multicompany')?'&entity='.$entity:'').'");
|
|
}else{
|
|
console.error(response);
|
|
}
|
|
},
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
$("#clearsignature").on("click",function(){
|
|
$("#signature").jSignature("clear");
|
|
$("#signbutton").attr("disabled",true);
|
|
// document.getElementById("onlinesignname").value = "";
|
|
});
|
|
|
|
$("#signbutton").attr("disabled",true);
|
|
});
|
|
</script>';
|
|
} else {
|
|
if ($source == 'proposal') {
|
|
if ($object->status == $object::STATUS_SIGNED) {
|
|
print '<br>';
|
|
if ($message == 'signed') {
|
|
print img_picto('', 'check', '', false, 0, 0, '', 'size2x').'<br>';
|
|
print '<span class="ok">'.$langs->trans("PropalSigned").'</span>';
|
|
} else {
|
|
print img_picto('', 'check', '', false, 0, 0, '', 'size2x').'<br>';
|
|
print '<span class="ok">'.$langs->trans("PropalAlreadySigned").'</span>';
|
|
}
|
|
} elseif ($object->status == $object::STATUS_NOTSIGNED) {
|
|
print '<br>';
|
|
if ($message == 'refused') {
|
|
print img_picto('', 'cross', '', false, 0, 0, '', 'size2x').'<br>';
|
|
print '<span class="ok">'.$langs->trans("PropalRefused").'</span>';
|
|
} else {
|
|
print img_picto('', 'cross', '', false, 0, 0, '', 'size2x').'<br>';
|
|
print '<span class="warning">'.$langs->trans("PropalAlreadyRefused").'</span>';
|
|
}
|
|
} else {
|
|
print '<input type="submit" class="butAction small wraponsmartphone marginbottomonly marginleftonly marginrightonly reposition" value="'.$langs->trans("SignPropal").'">';
|
|
print '<input name="refusepropal" type="submit" class="butActionDelete small wraponsmartphone marginbottomonly marginleftonly marginrightonly reposition" value="'.$langs->trans("RefusePropal").'">';
|
|
}
|
|
} elseif ($source == 'contract') {
|
|
if ($message == 'signed') {
|
|
print '<span class="ok">'.$langs->trans("ContractSigned").'</span>';
|
|
} else {
|
|
print '<input type="submit" class="butAction small wraponsmartphone marginbottomonly marginleftonly marginrightonly reposition" value="'.$langs->trans("SignContract").'">';
|
|
}
|
|
} elseif ($source == 'fichinter') {
|
|
if ($message == 'signed') {
|
|
print '<span class="ok">'.$langs->trans("FichinterSigned").'</span>';
|
|
} else {
|
|
print '<input type="submit" class="butAction small wraponsmartphone marginbottomonly marginleftonly marginrightonly reposition" value="'.$langs->trans("SignFichinter").'">';
|
|
}
|
|
}
|
|
}
|
|
print '</td></tr>'."\n";
|
|
print '</table>'."\n";
|
|
print '</form>'."\n";
|
|
print '</div>'."\n";
|
|
print '<br>';
|
|
|
|
|
|
htmlPrintOnlineFooter($mysoc, $langs);
|
|
|
|
llxFooter('', 'public');
|
|
|
|
$db->close();
|