* Copyright (C) 2006-2017 Laurent Destailleur * Copyright (C) 2009-2012 Regis Houssin * * 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 . * * For paypal test: https://developer.paypal.com/ * For paybox test: ??? */ /** * \file htdocs/public/onlinesign/newsign.php * \ingroup core * \brief File to offer a way to make an online signature for a particular Dolibarr entity */ define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOCSRFCHECK",1); // We accept to go on this page from external web site. // For MultiCompany module. // Do not use GETPOST here, function is not defined and define must be done before including main.inc.php // TODO This should be useless. Because entity must be retreive from object ref and not from url. $entity=(! empty($_GET['entity']) ? (int) $_GET['entity'] : (! empty($_POST['entity']) ? (int) $_POST['entity'] : 1)); if (is_numeric($entity)) define("DOLENTITY", $entity); 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/functions2.lib.php'; require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php'; // Security check // No check on module enabled. Done later according to $validpaymentmethod $langs->load("main"); $langs->load("other"); $langs->load("dict"); $langs->load("bills"); $langs->load("companies"); $langs->load("errors"); $langs->load("paybox"); // File with generic data $action=GETPOST('action','alpha'); // 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",'alpha'); $source=GETPOST("source",'alpha'); $ref=$REF=GETPOST("ref",'alpha'); if (empty($source)) $source='proposal'; if (! $action) { if ($source && ! $ref) { print $langs->trans('ErrorBadParameters')." - ref missing"; exit; } } $paymentmethod=''; $validpaymentmethod=array(); // 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; /* * Actions */ if ($action == 'dosign') { // TODO } /* * View */ $head=''; if (! empty($conf->global->MAIN_SIGN_CSS_URL)) $head=''."\n"; $conf->dol_hide_topmenu=1; $conf->dol_hide_leftmenu=1; llxHeader($head, $langs->trans("OnlineSignature"), '', '', 0, 0, '', '', '', 'onlinepaymentbody'); // Check link validity if (! empty($source) && in_array($ref, array('member_ref', 'contractline_ref', 'invoice_ref', 'order_ref', ''))) { $langs->load("errors"); dol_print_error_email('BADREFINONLINESIGNFORM', $langs->trans("ErrorBadLinkSourceSetButBadValueForRef", $source, $ref)); llxFooter(); $db->close(); exit; } print ''."\n"; print '
'."\n"; print '
'."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; 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) $width=0; // 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; else if (! empty($conf->global->ONLINE_SIGN_LOGO)) $logosmall=$conf->global->ONLINE_SIGN_LOGO; //print ''."\n"; // Define urllogo $urllogo=''; if (! empty($logosmall) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$logosmall)) { $urllogo=DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&file='.urlencode('thumbs/'.$logosmall); } elseif (! empty($logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$logo)) { $urllogo=DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&file='.urlencode($logo); $width=96; } // Output html code for logo if ($urllogo) { print ''; print ''; print ''."\n"; } // Output introduction text $text=''; if (! empty($conf->global->ONLINE_SIGN_NEWFORM_TEXT)) { $langs->load("members"); if (preg_match('/^\((.*)\)$/',$conf->global->ONLINE_SIGN_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."
\n"; else $text.=$conf->global->ONLINE_SIGN_NEWFORM_TEXT."
\n"; $text=''."\n"; } if (empty($text)) { $text.=''."\n"; $text.=''."\n"; } print $text; // Output payment summary form print ''."\n"; print '

'.$text.'

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

'; print ''; print ''."\n"; $found=false; $error=0; $var=false; // Payment on customer order if ($source == 'proposal') { $found=true; $langs->load("proposal"); require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; $proposal=new Propal($db); $result=$proposal->fetch('',$ref); if ($result <= 0) { $mesg=$proposal->error; $error++; } else { $result=$proposal->fetch_thirdparty($proposal->socid); } // Creditor print ''."\n"; // Debitor print ''."\n"; } if (! $found && ! $mesg) $mesg=$langs->trans("ErrorBadParameters"); if ($mesg) print ''."\n"; print '
'.$langs->trans("ThisIsInformationOnDocumentToSign").' :
'.$langs->trans("Creditor"); print ''.$creditor.''; print ''; print '
'.$langs->trans("ThirdParty"); print ''.$proposal->thirdparty->name.''; // Object $text=''.$langs->trans("SignatureProposalRef",$proposal->ref).''; print '
'.$langs->trans("Designation"); print ''.$text; print ''; print ''; print '

'.$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 '
'."\n"; print '
'."\n"; print '
'."\n"; print '
'; htmlPrintOnlinePaymentFooter($mysoc,$langs); llxFooter('', 'public'); $db->close();