index suggestion page form added, needs to be improved to show only necessary fields
This commit is contained in:
parent
1b7854e698
commit
45531d0f1a
@ -1,10 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2006-2017 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2001-2002 Jean-Louis Bergamo <jlb@j1b.org>
|
||||||
* Copyright (C) 2009-2012 Regis Houssin <regis.houssin@inodbox.com>
|
* Copyright (C) 2006-2013 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2018 Juanjo Menent <jmenent@2byte.es>
|
* Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
|
||||||
* Copyright (C) 2018-2019 Thibault FOUCART <support@ptibogxiv.net>
|
* Copyright (C) 2012 J. Fernando Lagrange <fernando@demo-tic.org>
|
||||||
* Copyright (C) 2021 Waël Almoman <info@almoman.com>
|
* Copyright (C) 2018-2019 Frédéric France <frederic.france@netlogic.fr>
|
||||||
|
* Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -18,21 +19,22 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
|
||||||
* For Paypal test: https://developer.paypal.com/
|
|
||||||
* For Paybox test: ???
|
|
||||||
* For Stripe test: Use credit card 4242424242424242 .More example on https://stripe.com/docs/testing
|
|
||||||
*
|
|
||||||
* Variants:
|
|
||||||
* - When option STRIPE_USE_INTENT_WITH_AUTOMATIC_CONFIRMATION is on, we use the new PaymentIntent API
|
|
||||||
* - When option STRIPE_USE_NEW_CHECKOUT is on, we use the new checkout API
|
|
||||||
* - If no option set, we use old APIS (charge)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file htdocs/public/payment/newpayment.php
|
* \file htdocs/public/members/new.php
|
||||||
* \ingroup core
|
* \ingroup member
|
||||||
* \brief File to offer a way to make a payment for a particular Dolibarr object
|
* \brief Example of form to add a new member
|
||||||
|
*
|
||||||
|
* Note that you can add following constant to change behaviour of page
|
||||||
|
* MEMBER_NEWFORM_AMOUNT Default amount for auto-subscribe form
|
||||||
|
* MEMBER_NEWFORM_EDITAMOUNT 0 or 1 = Amount can be edited
|
||||||
|
* MEMBER_NEWFORM_PAYONLINE Suggest payment with paypal, paybox or stripe
|
||||||
|
* MEMBER_NEWFORM_DOLIBARRTURNOVER Show field turnover (specific for dolibarr foundation)
|
||||||
|
* MEMBER_URL_REDIRECT_SUBSCRIPTION Url to redirect once subscribe submitted
|
||||||
|
* MEMBER_NEWFORM_FORCETYPE Force type of member
|
||||||
|
* MEMBER_NEWFORM_FORCEMORPHY Force nature of member (mor/phy)
|
||||||
|
* MEMBER_NEWFORM_FORCECOUNTRYCODE Force country
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('NOLOGIN')) {
|
if (!defined('NOLOGIN')) {
|
||||||
@ -47,41 +49,52 @@ if (!defined('NOIPCHECK')) {
|
|||||||
if (!defined('NOBROWSERNOTIF')) {
|
if (!defined('NOBROWSERNOTIF')) {
|
||||||
define('NOBROWSERNOTIF', '1');
|
define('NOBROWSERNOTIF', '1');
|
||||||
}
|
}
|
||||||
|
if (!defined('NOIPCHECK')) {
|
||||||
|
define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
|
||||||
|
}
|
||||||
|
|
||||||
// For MultiCompany module.
|
// For MultiCompany module.
|
||||||
// Do not use GETPOST here, function is not defined and get of entity must be done before including main.inc.php
|
// Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
|
||||||
$entity = (!empty($_GET['entity']) ? (int) $_GET['entity'] : (!empty($_POST['entity']) ? (int) $_POST['entity'] : (!empty($_GET['e']) ? (int) $_GET['e'] : (!empty($_POST['e']) ? (int) $_POST['e'] : 1))));
|
// TODO This should be useless. Because entity must be retrieve 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)) {
|
if (is_numeric($entity)) {
|
||||||
define("DOLENTITY", $entity);
|
define("DOLENTITY", $entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
require '../../main.inc.php';
|
require '../../main.inc.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.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/class/extrafields.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/eventorganization/class/conferenceorbooth.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/eventorganization/class/conferenceorboothattendee.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/societe/class/societeaccount.class.php';
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
|
||||||
// Hook to be used by external payment modules (ie Payzen, ...)
|
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
|
||||||
include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/paymentterm.class.php';
|
||||||
$hookmanager = new HookManager($db);
|
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
|
||||||
$hookmanager->initHooks(array('newpayment'));
|
|
||||||
|
|
||||||
// For encryption
|
|
||||||
global $dolibarr_main_instance_unique_id;
|
global $dolibarr_main_instance_unique_id;
|
||||||
|
global $dolibarr_main_url_root;
|
||||||
|
|
||||||
// Load translation files
|
// Init vars
|
||||||
$langs->loadLangs(array("main", "other", "dict", "bills", "companies", "errors", "paybox", "paypal", "stripe")); // File with generic data
|
$errmsg = '';
|
||||||
|
$num = 0;
|
||||||
// Security check
|
$error = 0;
|
||||||
// No check on module enabled. Done later according to $validpaymentmethod
|
$backtopage = GETPOST('backtopage', 'alpha');
|
||||||
|
|
||||||
$action = GETPOST('action', 'aZ09');
|
$action = GETPOST('action', 'aZ09');
|
||||||
|
|
||||||
|
$email = GETPOST("email");
|
||||||
|
$societe = GETPOST("societe");
|
||||||
|
|
||||||
|
// Getting id from Post and decoding it
|
||||||
$encodedid = GETPOST('id');
|
$encodedid = GETPOST('id');
|
||||||
$id = dol_decode($encodedid, $dolibarr_main_instance_unique_id);
|
$id = dol_decode($encodedid, $dolibarr_main_instance_unique_id);
|
||||||
|
|
||||||
|
$project = new Project($db);
|
||||||
|
$resultproject = $project->fetch($id);
|
||||||
|
if ($resultproject < 0) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $project->error;
|
||||||
|
}
|
||||||
|
|
||||||
// Getting 'securekey'.'id' from Post and decoding it
|
// Getting 'securekey'.'id' from Post and decoding it
|
||||||
$encodedsecurekeyandid = GETPOST('securekey', 'alpha');
|
$encodedsecurekeyandid = GETPOST('securekey', 'alpha');
|
||||||
$securekeyandid = dol_decode($encodedsecurekeyandid, $dolibarr_main_instance_unique_id);
|
$securekeyandid = dol_decode($encodedsecurekeyandid, $dolibarr_main_instance_unique_id);
|
||||||
@ -96,76 +109,50 @@ if ($securekey != $conf->global->EVENTORGANIZATION_SECUREKEY || $idgotfromsecure
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Define $urlwithroot
|
// Load translation files
|
||||||
//$urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',trim($dolibarr_main_url_root));
|
$langs->loadLangs(array("main", "companies", "install", "other", "eventorganization"));
|
||||||
//$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.
|
|
||||||
|
|
||||||
$project = new Project($db);
|
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
|
||||||
$resultproject = $project->fetch($id);
|
$hookmanager->initHooks(array('publicnewmembercard', 'globalcard'));
|
||||||
if ($resultproject < 0) {
|
|
||||||
$error++;
|
|
||||||
$errmsg .= $project->error;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
$extrafields = new ExtraFields($db);
|
||||||
* Actions
|
|
||||||
|
$user->loadDefaultValues();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show header for new member
|
||||||
|
*
|
||||||
|
* @param string $title Title
|
||||||
|
* @param string $head Head array
|
||||||
|
* @param int $disablejs More content into html header
|
||||||
|
* @param int $disablehead More content into html header
|
||||||
|
* @param array $arrayofjs Array of complementary js files
|
||||||
|
* @param array $arrayofcss Array of complementary css files
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
function llxHeaderVierge($title, $head = "", $disablejs = 0, $disablehead = 0, $arrayofjs = '', $arrayofcss = '')
|
||||||
|
{
|
||||||
|
global $user, $conf, $langs, $mysoc;
|
||||||
|
|
||||||
|
top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); // Show html headers
|
||||||
|
|
||||||
/*
|
print '<body id="mainbody" class="publicnewmemberform">';
|
||||||
* View
|
|
||||||
*/
|
|
||||||
|
|
||||||
$head = '';
|
// Define urllogo
|
||||||
if (!empty($conf->global->ONLINE_PAYMENT_CSS_URL)) {
|
$urllogo = DOL_URL_ROOT.'/theme/common/login_logo.png';
|
||||||
$head = '<link rel="stylesheet" type="text/css" href="'.$conf->global->ONLINE_PAYMENT_CSS_URL.'?lang='.$langs->defaultlang.'">'."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
$conf->dol_hide_topmenu = 1;
|
if (!empty($mysoc->logo_small) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$mysoc->logo_small)) {
|
||||||
$conf->dol_hide_leftmenu = 1;
|
$urllogo = DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode('logos/thumbs/'.$mysoc->logo_small);
|
||||||
|
} elseif (!empty($mysoc->logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$mysoc->logo)) {
|
||||||
|
$urllogo = DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode('logos/'.$mysoc->logo);
|
||||||
|
} elseif (is_readable(DOL_DOCUMENT_ROOT.'/theme/dolibarr_logo.svg')) {
|
||||||
|
$urllogo = DOL_URL_ROOT.'/theme/dolibarr_logo.svg';
|
||||||
|
}
|
||||||
|
|
||||||
$replacemainarea = (empty($conf->dol_hide_leftmenu) ? '<div>' : '').'<div>';
|
print '<div class="center">';
|
||||||
llxHeader($head, $langs->trans("PaymentForm"), '', '', 0, 0, '', '', '', 'onlinepaymentbody', $replacemainarea);
|
// Output html code for logo
|
||||||
|
if ($urllogo) {
|
||||||
|
|
||||||
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="dopayment">'."\n";
|
|
||||||
print '<input type="hidden" name="tag" value="'.GETPOST("tag", 'alpha').'">'."\n";
|
|
||||||
print '<input type="hidden" name="suffix" value="'.dol_escape_htmltag($suffix).'">'."\n";
|
|
||||||
print '<input type="hidden" name="securekey" value="'.dol_escape_htmltag($SECUREKEY).'">'."\n";
|
|
||||||
print '<input type="hidden" name="e" value="'.$entity.'" />';
|
|
||||||
print '<input type="hidden" name="forcesandbox" value="'.GETPOST('forcesandbox', 'int').'" />';
|
|
||||||
print "\n";
|
|
||||||
|
|
||||||
|
|
||||||
// Show logo (search order: logo defined by PAYMENT_LOGO_suffix, then PAYMENT_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_PAYMENT_LOGO_'.$suffix;
|
|
||||||
if (!empty($conf->global->$paramlogo)) {
|
|
||||||
$logosmall = $conf->global->$paramlogo;
|
|
||||||
} elseif (!empty($conf->global->ONLINE_PAYMENT_LOGO)) {
|
|
||||||
$logosmall = $conf->global->ONLINE_PAYMENT_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="backgreypublicpayment">';
|
||||||
print '<div class="logopublicpayment">';
|
print '<div class="logopublicpayment">';
|
||||||
print '<img id="dolpaymentlogo" src="'.$urllogo.'"';
|
print '<img id="dolpaymentlogo" src="'.$urllogo.'"';
|
||||||
@ -175,29 +162,394 @@ if ($urllogo) {
|
|||||||
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 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>';
|
print '</div>';
|
||||||
|
}
|
||||||
|
print '</div>';
|
||||||
|
|
||||||
|
print '<div class="divmainbodylarge">';
|
||||||
}
|
}
|
||||||
|
|
||||||
print '<table id="dolpaymenttable" summary="Payment form" class="center">'."\n";
|
/**
|
||||||
|
* Show footer for new member
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function llxFooterVierge()
|
||||||
|
{
|
||||||
|
print '</div>';
|
||||||
|
|
||||||
$text = '<tr><td class="textpublicpayment"><br><strong>'.$langs->trans("EvntOrgRegistrationWelcomeMessage").'</strong></td></tr>'."\n";
|
printCommonFooter('public');
|
||||||
|
|
||||||
|
print "</body>\n";
|
||||||
|
print "</html>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Actions
|
||||||
|
*/
|
||||||
|
global $mysoc;
|
||||||
|
$parameters = array();
|
||||||
|
// Note that $action and $object may have been modified by some hooks
|
||||||
|
$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action);
|
||||||
|
if ($reshook < 0) {
|
||||||
|
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Action called when page is submitted
|
||||||
|
if (empty($reshook) && $action == 'add') {
|
||||||
|
$error = 0;
|
||||||
|
|
||||||
|
$urlback = '';
|
||||||
|
|
||||||
|
$db->begin();
|
||||||
|
|
||||||
|
if (!GETPOST("email")) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Email"))."<br>\n";
|
||||||
|
}
|
||||||
|
// If the price has been set, name is required for the invoice
|
||||||
|
if (!GETPOST("societe") && !empty(floatval($project->price_registration))) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Societe"))."<br>\n";
|
||||||
|
}
|
||||||
|
if (GETPOST("email") && !isValidEmail(GETPOST("email"))) {
|
||||||
|
$error++;
|
||||||
|
$langs->load("errors");
|
||||||
|
$errmsg .= $langs->trans("ErrorBadEMail", GETPOST("email"))."<br>\n";
|
||||||
|
}
|
||||||
|
if (!GETPOST("country_id")) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Country"))."<br>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$error) {
|
||||||
|
// Check if attendee already exists (by email and for this event)
|
||||||
|
$confattendee = new ConferenceOrBoothAttendee($db);
|
||||||
|
$resultfetchconfattendee = $confattendee->fetchAll('', '', 0, 0, array('t.fk_actioncomm'=>$id, 'customsql'=>'t.email="'.$email.'"'));
|
||||||
|
if ($resultfetchconfattendee > 0 && count($resultfetchconfattendee)>0) {
|
||||||
|
// Found confattendee
|
||||||
|
$confattendee = array_shift($resultfetchconfattendee);
|
||||||
|
} else {
|
||||||
|
// Need to create a confattendee
|
||||||
|
$confattendee->date_subscription = dol_now();
|
||||||
|
$confattendee->email = $email;
|
||||||
|
$confattendee->fk_actioncomm = $id;
|
||||||
|
$resultconfattendee = $confattendee->create($user);
|
||||||
|
if ($resultconfattendee < 0) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $confattendee->error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// At this point, we have an attendee. It may not be linked to a thirdparty if we just created it
|
||||||
|
|
||||||
|
// If the attendee has already paid
|
||||||
|
if ($confattendee->status == 1) {
|
||||||
|
$redirection = $dolibarr_main_url_root.'/public/eventorganization/subscriptionok.php?securekey='.dol_encode($conf->global->EVENTORGANIZATION_SECUREKEY, $dolibarr_main_instance_unique_id);
|
||||||
|
Header("Location: ".$redirection);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
// Getting the thirdparty or creating it
|
||||||
|
$thirdparty = new Societe($db);
|
||||||
|
// Fetch using fk_soc if the attendee was already existing
|
||||||
|
if (!empty($confattendee->fk_soc)) {
|
||||||
|
$resultfetchthirdparty = $thirdparty->fetch($confattendee->fk_soc);
|
||||||
|
} else {
|
||||||
|
// Fetch using the input field by user if we just created the attendee
|
||||||
|
if (!empty($societe)) {
|
||||||
|
$resultfetchthirdparty = $thirdparty->fetch('', $societe);
|
||||||
|
if ($resultfetchthirdparty<=0) {
|
||||||
|
// Need to create a new one (not found or multiple with the same name)
|
||||||
|
$resultfetchthirdparty = 0;
|
||||||
|
} else {
|
||||||
|
// We found an unique result with that name, so we put in in fk_soc of attendee
|
||||||
|
$confattendee->fk_soc = $thirdparty->id;
|
||||||
|
$confattendee->update($user);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Need to create a thirdparty (put number>0 if we do not want to create a thirdparty for free-conferences)
|
||||||
|
$resultfetchthirdparty = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($resultfetchthirdparty<0) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $thirdparty->error;
|
||||||
|
} elseif ($resultfetchthirdparty==0) {
|
||||||
|
// creation of a new thirdparty
|
||||||
|
if (!empty($societe)) {
|
||||||
|
$thirdparty->name = $societe;
|
||||||
|
} else {
|
||||||
|
$thirdparty->name = $email;
|
||||||
|
}
|
||||||
|
$thirdparty->address = GETPOST("address");
|
||||||
|
$thirdparty->zip = GETPOST("zipcode");
|
||||||
|
$thirdparty->town = GETPOST("town");
|
||||||
|
$thirdparty->client = 2;
|
||||||
|
$thirdparty->fournisseur = 0;
|
||||||
|
$thirdparty->country_id = GETPOST("country_id", 'int');
|
||||||
|
$thirdparty->state_id = GETPOST("state_id", 'int');
|
||||||
|
$thirdparty->email = $email;
|
||||||
|
|
||||||
|
// Load object modCodeTiers
|
||||||
|
$module = (!empty($conf->global->SOCIETE_CODECLIENT_ADDON) ? $conf->global->SOCIETE_CODECLIENT_ADDON : 'mod_codeclient_leopard');
|
||||||
|
if (substr($module, 0, 15) == 'mod_codeclient_' && substr($module, -3) == 'php') {
|
||||||
|
$module = substr($module, 0, dol_strlen($module) - 4);
|
||||||
|
}
|
||||||
|
$dirsociete = array_merge(array('/core/modules/societe/'), $conf->modules_parts['societe']);
|
||||||
|
foreach ($dirsociete as $dirroot) {
|
||||||
|
$res = dol_include_once($dirroot.$module.'.php');
|
||||||
|
if ($res) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$modCodeClient = new $module($db);
|
||||||
|
|
||||||
|
if (empty($tmpcode) && !empty($modCodeClient->code_auto)) {
|
||||||
|
$tmpcode = $modCodeClient->getNextValue($thirdparty, 0);
|
||||||
|
}
|
||||||
|
$thirdparty->code_client = $tmpcode;
|
||||||
|
$readythirdparty = $thirdparty->create($user);
|
||||||
|
if ($readythirdparty <0) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $thirdparty->error;
|
||||||
|
} else {
|
||||||
|
$thirdparty->country_code = getCountry($thirdparty->country_id, 2, $db, $langs);
|
||||||
|
$thirdparty->country = getCountry($thirdparty->country_code, 0, $db, $langs);
|
||||||
|
$confattendee->fk_soc = $thirdparty->id;
|
||||||
|
$confattendee->update($user);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$error) {
|
||||||
|
$db->commit();
|
||||||
|
if (!empty(floatval($project->price_registration))) {
|
||||||
|
$productforinvoicerow = new Product($db);
|
||||||
|
$resultprod = $productforinvoicerow->fetch($conf->global->SERVICE_CONFERENCE_ATTENDEE_SUBSCRIPTION);
|
||||||
|
if ($resultprod < 0) {
|
||||||
|
$error++;
|
||||||
|
$errmsg .= $productforinvoicerow->error;
|
||||||
|
} else {
|
||||||
|
$facture = new Facture($db);
|
||||||
|
$facture->type = Facture::TYPE_STANDARD;
|
||||||
|
$facture->socid = $thirdparty->id;
|
||||||
|
$facture->paye = 0;
|
||||||
|
$facture->date = dol_now();
|
||||||
|
$facture->cond_reglement_id = $confattendee->cond_reglement_id;
|
||||||
|
|
||||||
|
if (empty($facture->cond_reglement_id)) {
|
||||||
|
$paymenttermstatic = new PaymentTerm($confattendee->db);
|
||||||
|
$facture->cond_reglement_id = $paymenttermstatic->getDefaultId();
|
||||||
|
if (empty($facture->cond_reglement_id)) {
|
||||||
|
$error++;
|
||||||
|
$confattendee->error = 'ErrorNoPaymentTermRECEPFound';
|
||||||
|
$confattendee->errors[] = $confattendee->error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$resultfacture = $facture->create($user);
|
||||||
|
if ($resultfacture <= 0) {
|
||||||
|
$confattendee->error = $facture->error;
|
||||||
|
$confattendee->errors = $facture->errors;
|
||||||
|
$error++;
|
||||||
|
} else {
|
||||||
|
$facture->add_object_linked($confattendee->element, $confattendee->id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$error) {
|
||||||
|
// Add line to draft invoice
|
||||||
|
$vattouse = get_default_tva($mysoc, $thirdparty, $productforinvoicerow->id);
|
||||||
|
$result = $facture->addline($langs->trans("ConferenceAttendeeFee", $conference->label, dol_print_date($conference->datep, '%d/%m/%y %H:%M:%S'), dol_print_date($conference->datep2, '%d/%m/%y %H:%M:%S')), floatval($project->price_registration), 1, $vattouse, 0, 0, $productforinvoicerow->id, 0, dol_now(), '', 0, 0, '', 'HT', 0, 1);
|
||||||
|
if ($result <= 0) {
|
||||||
|
$confattendee->error = $facture->error;
|
||||||
|
$confattendee->errors = $facture->errors;
|
||||||
|
$error++;
|
||||||
|
}
|
||||||
|
if (!$error) {
|
||||||
|
$valid = true;
|
||||||
|
$sourcetouse = 'conferencesubscription';
|
||||||
|
$reftouse = $facture->id;
|
||||||
|
$redirection = $dolibarr_main_url_root.'/public/payment/newpayment.php?source='.$sourcetouse.'&ref='.$reftouse;
|
||||||
|
if (!empty($conf->global->PAYMENT_SECURITY_TOKEN)) {
|
||||||
|
if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) {
|
||||||
|
$redirection .= '&securekey='.dol_hash($conf->global->PAYMENT_SECURITY_TOKEN . $sourcetouse . $reftouse, 2); // Use the source in the hash to avoid duplicates if the references are identical
|
||||||
|
} else {
|
||||||
|
$redirection .= '&securekey='.$conf->global->PAYMENT_SECURITY_TOKEN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Header("Location: ".$redirection);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// No price has been set
|
||||||
|
// Validating the subscription
|
||||||
|
$confattendee->setStatut(1);
|
||||||
|
|
||||||
|
// Sending mail
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
|
||||||
|
include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
|
||||||
|
$formmail = new FormMail($db);
|
||||||
|
// Set output language
|
||||||
|
$outputlangs = new Translate('', $conf);
|
||||||
|
$outputlangs->setDefaultLang(empty($thirdparty->default_lang) ? $mysoc->default_lang : $thirdparty->default_lang);
|
||||||
|
// Load traductions files required by page
|
||||||
|
$outputlangs->loadLangs(array("main", "members"));
|
||||||
|
// Get email content from template
|
||||||
|
$arraydefaultmessage = null;
|
||||||
|
|
||||||
|
$labeltouse = $conf->global->EVENTORGANIZATION_TEMPLATE_EMAIL_AFT_SUBS_EVENT;
|
||||||
|
if (!empty($labeltouse)) {
|
||||||
|
$arraydefaultmessage = $formmail->getEMailTemplate($db, 'eventorganization_send', $user, $outputlangs, $labeltouse, 1, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($labeltouse) && is_object($arraydefaultmessage) && $arraydefaultmessage->id > 0) {
|
||||||
|
$subject = $arraydefaultmessage->topic;
|
||||||
|
$msg = $arraydefaultmessage->content;
|
||||||
|
}
|
||||||
|
|
||||||
|
$substitutionarray = getCommonSubstitutionArray($outputlangs, 0, null, $thirdparty);
|
||||||
|
complete_substitutions_array($substitutionarray, $outputlangs, $object);
|
||||||
|
|
||||||
|
$subjecttosend = make_substitutions($subject, $substitutionarray, $outputlangs);
|
||||||
|
$texttosend = make_substitutions($msg, $substitutionarray, $outputlangs);
|
||||||
|
|
||||||
|
$sendto = $thirdparty->email;
|
||||||
|
$from = $conf->global->MAILING_EMAIL_FROM;
|
||||||
|
$urlback = $_SERVER["REQUEST_URI"];
|
||||||
|
|
||||||
|
$ishtml = dol_textishtml($texttosend); // May contain urls
|
||||||
|
|
||||||
|
$mailfile = new CMailFile($subjecttosend, $sendto, $from, $texttosend, array(), array(), array(), '', '', 0, $ishtml);
|
||||||
|
|
||||||
|
$result = $mailfile->sendfile();
|
||||||
|
if ($result) {
|
||||||
|
dol_syslog("EMail sent to ".$sendto, LOG_DEBUG, 0, '_payment');
|
||||||
|
} else {
|
||||||
|
dol_syslog("Failed to send EMail to ".$sendto, LOG_ERR, 0, '_payment');
|
||||||
|
}
|
||||||
|
|
||||||
|
$redirection = $dolibarr_main_url_root.'/public/eventorganization/subscriptionok.php?securekey='.dol_encode($conf->global->EVENTORGANIZATION_SECUREKEY, $dolibarr_main_instance_unique_id);
|
||||||
|
Header("Location: ".$redirection);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
//Header("Location: ".$urlback);
|
||||||
|
//exit;
|
||||||
|
} else {
|
||||||
|
$db->rollback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* View
|
||||||
|
*/
|
||||||
|
|
||||||
|
$form = new Form($db);
|
||||||
|
$formcompany = new FormCompany($db);
|
||||||
|
|
||||||
|
llxHeaderVierge($langs->trans("NewSuggestion"));
|
||||||
|
|
||||||
|
|
||||||
|
print load_fiche_titre($langs->trans("NewSuggestion"), '', '', 0, 0, 'center');
|
||||||
|
|
||||||
|
|
||||||
|
print '<div align="center">';
|
||||||
|
print '<div id="divsubscribe">';
|
||||||
|
print '<div class="center subscriptionformhelptext justify">';
|
||||||
|
|
||||||
|
// Welcome message
|
||||||
|
$text = '<tr><td class="textpublicpayment"><strong>'.$langs->trans("EvntOrgRegistrationWelcomeMessage").'</strong></td></tr></br>';
|
||||||
$text .= '<tr><td class="textpublicpayment">'.$langs->trans("EvntOrgRegistrationHelpMessage").' '.$id.'.<br><br></td></tr>'."\n";
|
$text .= '<tr><td class="textpublicpayment">'.$langs->trans("EvntOrgRegistrationHelpMessage").' '.$id.'.<br><br></td></tr>'."\n";
|
||||||
$text .= '<tr><td class="textpublicpayment">'.$project->note_public.'<br><br></td></tr>'."\n";;
|
$text .= '<tr><td class="textpublicpayment">'.$project->note_public.'</td></tr>'."\n";;
|
||||||
|
|
||||||
print $text;
|
print $text;
|
||||||
|
print '</div>';
|
||||||
|
|
||||||
// Output payment summary form
|
dol_htmloutput_errors($errmsg);
|
||||||
print '<tr><td align="center">';
|
|
||||||
|
|
||||||
$found = false;
|
// Print form
|
||||||
$error = 0;
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST" name="newmember">'."\n";
|
||||||
$var = false;
|
print '<input type="hidden" name="token" value="'.newToken().'" / >';
|
||||||
|
print '<input type="hidden" name="entity" value="'.$entity.'" />';
|
||||||
|
print '<input type="hidden" name="action" value="add" />';
|
||||||
|
print '<input type="hidden" name="id" value="'.$encodedid.'" />';
|
||||||
|
print '<input type="hidden" name="securekey" value="'.$encodedsecurekeyandid.'" />';
|
||||||
|
|
||||||
$object = null;
|
print '<br>';
|
||||||
|
|
||||||
print "\n";
|
print '<br><span class="opacitymedium">'.$langs->trans("FieldsWithAreMandatory", '*').'</span><br>';
|
||||||
|
//print $langs->trans("FieldsWithIsForPublic",'**').'<br>';
|
||||||
|
|
||||||
|
print dol_get_fiche_head('');
|
||||||
|
|
||||||
|
print '<script type="text/javascript">
|
||||||
|
jQuery(document).ready(function () {
|
||||||
|
jQuery(document).ready(function () {
|
||||||
|
jQuery("#selectcountry_id").change(function() {
|
||||||
|
document.newmember.action.value="create";
|
||||||
|
document.newmember.submit();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>';
|
||||||
|
|
||||||
|
print '<table class="border" summary="form to subscribe" id="tablesubscribe">'."\n";
|
||||||
|
|
||||||
|
// Email
|
||||||
|
print '<tr><td>'.$langs->trans("Email").'<FONT COLOR="red">*</FONT></td><td><input type="text" name="email" maxlength="255" class="minwidth150" value="'.dol_escape_htmltag(GETPOST('email')).'"></td></tr>'."\n";
|
||||||
|
// Company
|
||||||
|
print '<tr id="trcompany" class="trcompany"><td>'.$langs->trans("Company");
|
||||||
|
if (!empty(floatval($project->price_registration))) {
|
||||||
|
print '<FONT COLOR="red">*</FONT>';
|
||||||
|
}
|
||||||
|
print ' </td><td><input type="text" name="societe" class="minwidth150" value="'.dol_escape_htmltag(GETPOST('societe')).'"></td></tr>'."\n";
|
||||||
|
// Address
|
||||||
|
print '<tr><td>'.$langs->trans("Address").'</td><td>'."\n";
|
||||||
|
print '<textarea name="address" id="address" wrap="soft" class="quatrevingtpercent" rows="'.ROWS_3.'">'.dol_escape_htmltag(GETPOST('address', 'restricthtml'), 0, 1).'</textarea></td></tr>'."\n";
|
||||||
|
// Zip / Town
|
||||||
|
print '<tr><td>'.$langs->trans('Zip').' / '.$langs->trans('Town').'</td><td>';
|
||||||
|
print $formcompany->select_ziptown(GETPOST('zipcode'), 'zipcode', array('town', 'selectcountry_id', 'state_id'), 6, 1);
|
||||||
|
print ' / ';
|
||||||
|
print $formcompany->select_ziptown(GETPOST('town'), 'town', array('zipcode', 'selectcountry_id', 'state_id'), 0, 1);
|
||||||
|
print '</td></tr>';
|
||||||
|
// Country
|
||||||
|
print '<tr><td>'.$langs->trans('Country').'<FONT COLOR="red">*</FONT></td><td>';
|
||||||
|
$country_id = GETPOST('country_id');
|
||||||
|
if (!$country_id && !empty($conf->global->MEMBER_NEWFORM_FORCECOUNTRYCODE)) {
|
||||||
|
$country_id = getCountry($conf->global->MEMBER_NEWFORM_FORCECOUNTRYCODE, 2, $db, $langs);
|
||||||
|
}
|
||||||
|
if (!$country_id && !empty($conf->geoipmaxmind->enabled)) {
|
||||||
|
$country_code = dol_user_country();
|
||||||
|
//print $country_code;
|
||||||
|
if ($country_code) {
|
||||||
|
$new_country_id = getCountry($country_code, 3, $db, $langs);
|
||||||
|
//print 'xxx'.$country_code.' - '.$new_country_id;
|
||||||
|
if ($new_country_id) {
|
||||||
|
$country_id = $new_country_id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$country_code = getCountry($country_id, 2, $db, $langs);
|
||||||
|
print $form->select_country($country_id, 'country_id');
|
||||||
|
print '</td></tr>';
|
||||||
|
// State
|
||||||
|
if (empty($conf->global->SOCIETE_DISABLE_STATE)) {
|
||||||
|
print '<tr><td>'.$langs->trans('State').'</td><td>';
|
||||||
|
if ($country_code) {
|
||||||
|
print $formcompany->select_state(GETPOST("state_id"), $country_code);
|
||||||
|
} else {
|
||||||
|
print '';
|
||||||
|
}
|
||||||
|
print '</td></tr>';
|
||||||
|
}
|
||||||
|
|
||||||
|
print "</table>\n";
|
||||||
|
|
||||||
|
print dol_get_fiche_end();
|
||||||
|
|
||||||
|
|
||||||
// Show all action buttons
|
// Show all action buttons
|
||||||
|
print '<div class="center">';
|
||||||
print '<br>';
|
print '<br>';
|
||||||
// Output introduction text
|
// Output introduction text
|
||||||
if ($project->accept_conference_suggestions) {
|
if ($project->accept_conference_suggestions) {
|
||||||
@ -209,20 +561,24 @@ print '<br><br>';
|
|||||||
if ($project->accept_booth_suggestions) {
|
if ($project->accept_booth_suggestions) {
|
||||||
print '<input type="submit" value="'.$langs->trans("SuggestBooth").'" id="suggestbooth" class="button">';
|
print '<input type="submit" value="'.$langs->trans("SuggestBooth").'" id="suggestbooth" class="button">';
|
||||||
}
|
}
|
||||||
|
print '</div>';
|
||||||
|
|
||||||
|
print '<br><br>';
|
||||||
|
|
||||||
|
// Save
|
||||||
|
print '<div class="center">';
|
||||||
|
print '<input type="submit" value="'.$langs->trans("Submit").'" id="submitsave" class="button">';
|
||||||
|
if (!empty($backtopage)) {
|
||||||
|
print ' <input type="submit" value="'.$langs->trans("Cancel").'" id="submitcancel" class="button button-cancel">';
|
||||||
|
}
|
||||||
|
print '</div>';
|
||||||
|
|
||||||
|
|
||||||
|
print "</form>\n";
|
||||||
print '</td></tr>'."\n";
|
print "<br>";
|
||||||
|
print '</div></div>';
|
||||||
print '</table>'."\n";
|
|
||||||
|
|
||||||
print '</form>'."\n";
|
|
||||||
print '</div>'."\n";
|
|
||||||
print '<br>';
|
|
||||||
|
|
||||||
|
|
||||||
htmlPrintOnlinePaymentFooter($mysoc, $langs, 1, $suffix, $object);
|
llxFooterVierge();
|
||||||
|
|
||||||
llxFooter('', 'public');
|
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user