* Copyright (C) 2001-2002 Jean-Louis Bergamo * Copyright (C) 2006-2013 Laurent Destailleur * Copyright (C) 2012 Regis Houssin * Copyright (C) 2012 J. Fernando Lagrange * Copyright (C) 2018-2025 Frédéric France * Copyright (C) 2018 Alexandre Spangaro * Copyright (C) 2021 Waël Almoman * Copyright (C) 2022 Udo Tamm * Copyright (C) 2024-2025 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/invoice/new.php * \ingroup invoice * \brief Example of form to add a new invoice * * Note that you can add following constant to change behaviour of page * DONATION_INVOICE_MIN_AMOUNT Minimum amount * PRODUCT_ID_FOR_FREE_AMOUNT_INVOICE Product ID used for free amount invoice line */ 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('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)) { // $entity is casted to int 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.'/compta/facture/class/facture.class.php'; require_once DOL_DOCUMENT_ROOT.'/don/class/don.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/cunits.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php'; if (isModEnabled('project') || isModEnabled('eventorganization')) { require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php'; } // Init vars $backtopage = GETPOST('backtopage', 'alpha'); $action = GETPOST('action', 'aZ09'); $ws = GETPOST('ws', 'aZ09'); // Website reference where the this public page is embedded or from where is called $paymentmethod = GETPOST('paymentmethod', 'aZ09'); // Payment method to use $errmsg = ''; $num = 0; $error = 0; /** * @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", "donations", "companies", "install", "other", "errors")); // Security check if (!isModEnabled('invoice')) { httponly_accessforbidden('Module invoice not enabled'); } if (!getDolGlobalString('PRODUCT_ID_FOR_FREE_AMOUNT_INVOICE')) { httponly_accessforbidden('PRODUCT_ID_FOR_FREE_AMOUNT_INVOICE is not defined'); } if (!getDolGlobalString('DONATION_INVOICE_MIN_AMOUNT')) { httponly_accessforbidden('DONATION_INVOICE_MIN_AMOUNT is not defined'); } // Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context //$hookmanager->initHooks(array( 'globalcard')); $extrafields = new ExtraFields($db); $object = new Facture($db); $user->loadDefaultValues(); /** * Show header for new donation * * Note: also called by functions.lib:recordNotFound * * @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 string[]|string $arrayofjs Array of complementary js files * @param string[]|string $arrayofcss Array of complementary css files * @param string $ws Website ref if we are called from a website * @return void */ function llxHeaderVierge($title, $head = "", $disablejs = 0, $disablehead = 0, $arrayofjs = [], $arrayofcss = [], $ws = '') // @phan-suppress-current-line PhanRedefineFunction { global $conf, $langs, $mysoc; top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); // Show html headers print ''; if (!$ws) { include_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; htmlPrintOnlineHeader($mysoc, $langs, 1); } print '
'; } /** * Show footer for new donation * * Note: also called by functions.lib:recordNotFound * * @return void */ function llxFooterVierge() // @phan-suppress-current-line PhanRedefineFunction { global $conf, $langs; print '
'; printCommonFooter('public'); if (!empty($conf->use_javascript_ajax)) { print "\n".''."\n"; print ''."\n"; } print "\n"; print "\n"; } /* * Actions */ $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') { // Test on permission not required here. This is an anonymous form. Check is done on constant to enable and mitigation. $error = 0; $urlback = ''; $email = GETPOST("email", "aZ09arobase"); $firstname = GETPOST("firstname", "aZ09"); $lastname = GETPOST("lastname", "aZ09"); $societe = GETPOST("societe", "aZ09"); $idprof2 = GETPOST("idprof2", "aZ09"); $tva_intra = GETPOST("tva_intra", "aZ09"); $address = GETPOST("address"); $zipcode = GETPOST("zipcode", "aZ09"); $town = GETPOST("town", "aZ09"); $country_id = GETPOSTINT("country_id"); $amount = (float) GETPOST("amount", "int"); $companyId = 0; $productIdForFreeAmountInvoice = (int) getDolGlobalString('PRODUCT_ID_FOR_FREE_AMOUNT_INVOICE'); if (!$email || !isValidEmail($email)) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("ErrorBadEMail", $email)."
\n"; } if ($firstname && !preg_match('/^[a-zA-Z0-9À-ÖØ-öø-ÿ \'\-]*$/u', $firstname)) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("firstnameContainsLettersOnly")."
\n"; } if ($lastname && !preg_match('/^[a-zA-Z0-9À-ÖØ-öø-ÿ \'\-]*$/u', $lastname)) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("lastnameContainsLettersOnly")."
\n"; } if (!$idprof2) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentities("companyBusinessNumber"))."
\n"; } if (!$address) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentities("Address"))."
\n"; } if (!$zipcode) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentities("Zip"))."
\n"; } if (!$town) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentities("Town"))."
\n"; } if (!$country_id) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentities("Country"))."
\n"; } if (!$societe) { $langs->load('errors'); $error++; $errmsg .= $langs->trans("ErrorFieldRequired", $langs->transnoentities("Company"))."
\n"; } else { // Check if company exists $company = new Societe($db); $result = $company->findNearest(0, '', '', '', '', $idprof2, '', '', '', '', $email); if ($result > 0) { $companyId = $result; } elseif ($result < 0) { $error++; $errmsg .= $langs->trans("donationErrorMessageContactEmail", $mysoc->email)."
\n"; } } if (!$amount || $amount <= (float) getDolGlobalString("DONATION_INVOICE_MIN_AMOUNT")) { $error++; $errmsg .= $langs->trans("ErrorFieldMinimumAmount", (float) getDolGlobalString("DONATION_INVOICE_MIN_AMOUNT"))."
\n"; } // Check Captcha code if is enabled $sessionkey = 'dol_antispam_value'; $ok = (array_key_exists($sessionkey, $_SESSION) && (strtolower($_SESSION[$sessionkey]) == strtolower(GETPOST('code')))); if (!$ok) { $error++; $langs->load("errors"); $errmsg .= $langs->trans("ErrorBadValueForCode")."
\n"; $action = ''; } // Start of transaction $db->begin(); // Create invoice for this donation $invoice = new Facture($db); if (!$error && $companyId <= 0) { // create company $company = new Societe($db); if (!empty($societe)) { $company->name = $societe; } else { $company->name = dolGetFirstLastname($firstname, $lastname); } $company->name_alias = ""; $company->idprof2 = $idprof2; $company->address = $address; $company->zip = $zipcode; $company->town = $town; $company->country_id = $country_id; $company->email = $email; $company->client = 1; $company->code_client = 'auto'; $company->status = 1; // client $company->tva_intra = $tva_intra; $company->ip = getUserRemoteIP(); $result = $company->create($user); if ($result < 0) { $langs->load('errors'); $error++; $errmsg .= implode('
', $company->errors)."
\n"; } else { $companyId = $result; } } if (!$error && $companyId > 0) { $invoice->socid = $companyId; $invoice->type = Facture::TYPE_STANDARD; $invoice->cond_reglement_id = 1; $invoice->date = dol_now(); $invoice->module_source = 'donation'; if (!empty($ws)) { $invoice->module_source .= '@' . $ws; } $invoice->status = Facture::STATUS_DRAFT; $invoice->ip = getUserRemoteIP(); $nb_post_max = getDolGlobalInt("MAIN_SECURITY_MAX_POST_ON_PUBLIC_PAGES_BY_IP_ADDRESS", 1); $now = dol_now(); $minmonthpost = dol_time_plus_duree($now, -1, "m"); // Calculate nb of post for IP $nb_post_ip = 0; if ($nb_post_max > 0) { // Calculate only if there is a limit to check $sql = "SELECT COUNT(rowid) as nb_invoice"; $sql .= " FROM ".MAIN_DB_PREFIX."facture"; $sql .= " WHERE ip = '".$db->escape($invoice->ip)."'"; $sql .= " AND datec > '".$db->idate($minmonthpost)."'"; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; while ($i < $num) { $i++; $obj = $db->fetch_object($resql); $nb_post_ip = $obj->nb_invoice; } } } if ($nb_post_max > 0 && $nb_post_ip >= $nb_post_max) { $error++; $errmsg .= $langs->trans("AlreadyTooMuchPostOnThisIPAdress"); array_push($invoice->errors, $langs->trans("AlreadyTooMuchPostOnThisIPAdress")); } if (!$error) { $result = $invoice->create($user); if ($result <= 0) { $error++; $errmsg .= $invoice->error."
\n"; } } // Issuer Company $issuerCompany = new Societe($db); $result = $issuerCompany->fetch($companyId); if ($result < 0) { $error++; $errmsg .= $issuerCompany->error."
\n"; } $tva_tx = get_default_tva($mysoc, $issuerCompany, $productIdForFreeAmountInvoice); // Get product for free amount invoice line $product = new Product($db); $result = $product->fetch($productIdForFreeAmountInvoice); if ($result < 0) { $error++; $errmsg .= $product->error."
\n"; } else { $desc = $product->label; $productId = $product->id; // Add line for the invoice $result = $invoice->addline($desc, $amount, 1, $tva_tx, 0, 0, $productId, 0, "", "", 0, 0, 0, 'TTC', $amount); if ($result <= 0) { $error++; $errmsg .= $invoice->error."
\n"; } } // Fill array 'array_options' with data from add form /*$extrafields->fetch_name_optionals_label($donation->table_element); $ret = $extrafields->setOptionalsFromPost(null, $donation); if ($ret < 0) { $error++; $errmsg .= $donation->error; }*/ } if (!$error) { $urlback = getOnlinePaymentUrl(0, 'invoice', (string) $invoice->ref, 0, ''); if ($ws) { $urlback .= (strpos($urlback, '?') ? '&' : '?').'ws='.urlencode($ws); } if ($paymentmethod) { $urlback .= (strpos($urlback, '?') ? '&' : '?').'paymentmethod='.urlencode($paymentmethod); } $db->commit(); header("Location: ".$urlback); exit; } else { $db->rollback(); $action = "create"; } } // Action called after a submitted was send and donation created successfully // If we ask to redirect to the payment page, we never go here because a redirect was done to the payment url. // backtopage parameter with an url was set on donation submit page, we never go here because a redirect was done to this url. if (empty($reshook) && $action == 'added') { // Test on permission not required here llxHeaderVierge($langs->trans("NewDonationForm")); // If we have not been redirected print '

'; print '
'; print $langs->trans("NewDonationbyWeb").'
'; print '
'; llxFooterVierge(); exit; } /* * View */ $form = new Form($db); $formcompany = new FormCompany($db); $extrafields->fetch_name_optionals_label($object->table_element); // fetch optionals attributes and labels llxHeaderVierge($langs->trans("NewDonation"), '', 0, 0, array(), array(), $ws); if (!$ws) { print '
'; print load_fiche_titre(img_picto('', '', 'class="pictofixedwidth"').'   '.$langs->trans("NewDonation"), '', '', 0, '', 'center'); print '
'; print '
'; print '
'; print $langs->trans("NewDonationDesc", getDolGlobalString("MAIN_INFO_SOCIETE_MAIL"))."
\n"; print '
'; } dol_htmloutput_errors($errmsg); dol_htmloutput_events(); // Print form print '
'."\n"; print ''; print ''; print ''; if (!$action || $action == 'create') { print ''; print ''; print ''; print '
'; $messagemandatory = ''.$langs->trans("FieldsWithAreMandatory", '*').''; //print '
'.$langs->trans("FieldsWithAreMandatory", '*').'
'; //print $langs->trans("FieldsWithIsForPublic",'**').'
'; print dol_get_fiche_head(); print ''."\n"; // Add a specific style or table head for the project row if ((isModEnabled('project') || isModEnabled('eventorganization')) && !empty($projectTitle)) { print ''; print ''; print ''; print ''; } // EMail print ''."\n"; // Company print ''."\n"; // Firstname print ''."\n"; // Lastname print ''."\n"; // Address print ''."\n"; // Zip / Town print ''; // Country print ''; //Idprof2 (siret...) print ''."\n"; //Tva_intra print ''."\n"; print ''; // Amount $amount = (float) (GETPOST('amount') ? price2num(GETPOST('amount', 'alpha'), 'MT', 2) : ''); // - If a min is set, we take it into account $amount = max(0, (float) $amount, (float) getDolGlobalInt("DONATION_INVOICE_MIN_AMOUNT")); // Clean the amount $amount = price2num($amount); $showedamount = $amount > 0 ? $amount : 5; print ''; // Display Captcha code if is enabled require_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php'; print ''; print "
' . $langs->trans("project") . '' . dol_escape_htmltag($projectTitle) . '
'.$langs->trans("Email").''; print '
'.$langs->trans("Company").''; print img_picto('', 'company', 'class="pictofixedwidth paddingright"'); print '
'.$langs->trans("Firstname").'
'.$langs->trans("Lastname").'
'.$langs->trans("Address").''."\n"; print '
'.$langs->trans('Zip').' / '.$langs->trans('Town').''; print $formcompany->select_ziptown(GETPOST('zipcode'), 'zipcode', array('town', 'selectcountry_id', 'state_id'), 0, 1, '', 'width75'); print ' / '; print $formcompany->select_ziptown(GETPOST('town'), 'town', array('zipcode', 'selectcountry_id', 'state_id'), 0, 1); print '
'.$langs->trans('Country').''; print img_picto('', 'country', 'class="pictofixedwidth paddingright"'); $country_id = GETPOSTINT('country_id'); 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 '
'.$langs->trans("companyBusinessNumber").'
'.$langs->trans("companyTIN").'

'.$langs->trans("donationAmount"); print ''; print ''; print ' '.$langs->trans("Currency".getDolCurrency()).' - '; print $langs->trans("AnyAmountForDonation"); print ''; print '
'; print ''; print ''; print ''; print ''; print ''; print ''.img_picto($langs->trans("Refresh"), 'refresh', 'id="captcha_refresh_img"').''; print ''; print '
\n"; print dol_get_fiche_end(); // Save / Submit print '
'; print ''; if (!empty($backtopage)) { print '     '; } print '
'; print "
\n"; print "
"; print '
'; } //htmlPrintOnlineFooter($mysoc, $langs); llxFooterVierge(); $db->close();