* Copyright (C) 2003 Jean-Louis Bergamo * Copyright (C) 2004-2018 Laurent Destailleur * Copyright (C) 2005-2009 Regis Houssin * Copyright (C) 2013 Peter Fontaine * Copyright (C) 2015-2016 Marcos García * Copyright (C) 2017 Ferran Marcet * Copyright (C) 2018 ptibogxiv * * 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/societe/paymentmodes.php * \ingroup societe * \brief Tab of payment modes for the customer */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php'; require_once DOL_DOCUMENT_ROOT.'/societe/class/companybankaccount.class.php'; require_once DOL_DOCUMENT_ROOT.'/societe/class/companypaymentmode.class.php'; require_once DOL_DOCUMENT_ROOT.'/societe/class/societeaccount.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/prelevement/class/bonprelevement.class.php'; require_once DOL_DOCUMENT_ROOT.'/stripe/class/stripe.class.php'; $langs->loadLangs(array("companies","commercial","banks","bills",'paypal','stripe','withdrawals')); // Security check $socid = GETPOST("socid","int"); if ($user->societe_id) $socid=$user->societe_id; $result = restrictedArea($user, 'societe','',''); $id=GETPOST("id","int"); $source=GETPOST("source","alpha"); $ribid=GETPOST("ribid","int"); $action=GETPOST("action", 'alpha', 3); $cancel=GETPOST('cancel', 'alpha'); $object = new Societe($db); $object->fetch($socid); $companybankaccount = new CompanyBankAccount($db); $companypaymentmode = new CompanyPaymentMode($db); $prelevement = new BonPrelevement($db); $extrafields = new ExtraFields($db); // fetch optionals attributes and labels $extralabels=$extrafields->fetch_name_optionals_label($object->table_element); // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context $hookmanager->initHooks(array('thirdpartybancard','globalcard')); if (! empty($conf->stripe->enabled)) { $service = 'StripeTest'; $servicestatus = 0; if (! empty($conf->global->STRIPE_LIVE) && ! GETPOST('forcesandbox','alpha')) { $service = 'StripeLive'; $servicestatus = 1; } $stripe = new Stripe($db); $stripeacc = $stripe->getStripeAccount($service); // Get Stripe OAuth connect account (no network access here) $stripecu = $stripe->getStripeCustomerAccount($object->id, $servicestatus); // Get remote Stripe customer 'cus_...' (no network access here) } /* * Actions */ if ($cancel) { $action=''; } $parameters=array('id'=>$socid, 'objcanvas'=>$objcanvas); $reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); if (empty($reshook)) { if ($cancel) { $action=''; if (! empty($backtopage)) { header("Location: ".$backtopage); exit; } } if ($action == 'update') { // Modification if (! GETPOST('label','alpha') || ! GETPOST('bank','alpha')) { if (! GETPOST('label','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Label")), null, 'errors'); if (! GETPOST('bank','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("BankName")), null, 'errors'); $action='edit'; $error++; } if ($companybankaccount->needIBAN() == 1) { if (! GETPOST('iban')) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("IBAN")), null, 'errors'); $action='edit'; $error++; } if (! GETPOST('bic')) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("BIC")), null, 'errors'); $action='edit'; $error++; } } $companybankaccount->fetch($id); if (! $error) { $companybankaccount->socid = $object->id; $companybankaccount->bank = GETPOST('bank','alpha'); $companybankaccount->label = GETPOST('label','alpha'); $companybankaccount->courant = GETPOST('courant','alpha'); $companybankaccount->clos = GETPOST('clos','alpha'); $companybankaccount->code_banque = GETPOST('code_banque','alpha'); $companybankaccount->code_guichet = GETPOST('code_guichet','alpha'); $companybankaccount->number = GETPOST('number','alpha'); $companybankaccount->cle_rib = GETPOST('cle_rib','alpha'); $companybankaccount->bic = GETPOST('bic','alpha'); $companybankaccount->iban = GETPOST('iban','alpha'); $companybankaccount->domiciliation = GETPOST('domiciliation','alpha'); $companybankaccount->proprio = GETPOST('proprio','alpha'); $companybankaccount->owner_address = GETPOST('owner_address','alpha'); $companybankaccount->frstrecur = GETPOST('frstrecur','alpha'); $companybankaccount->rum = GETPOST('rum','alpha'); if (empty($companybankaccount->rum)) { $companybankaccount->rum = $prelevement->buildRumNumber($object->code_client, $companybankaccount->datec, $companybankaccount->id); $companybankaccount->date_rum = dol_now(); } $result = $companybankaccount->update($user); if (! $result) { setEventMessages($companybankaccount->error, $companybankaccount->errors, 'errors'); } else { // If this account is the default bank account, we disable others if ($companybankaccount->default_rib) { $companybankaccount->setAsDefault($id); // This will make sure there is only one default rib } $url=$_SERVER["PHP_SELF"].'?socid='.$object->id; header('Location: '.$url); exit; } } } if ($action == 'updatecard') { // Modification if (! GETPOST('label','alpha') || ! GETPOST('proprio','alpha') || ! GETPOST('cardnumber','alpha') || ! GETPOST('exp_date_month','alpha') || ! GETPOST('exp_date_year','alpha') || ! GETPOST('cvn','alpha')) { if (! GETPOST('label','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Label")), null, 'errors'); if (! GETPOST('proprio','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("NameOnCard")), null, 'errors'); if (! GETPOST('cardnumber','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CardNumber")), null, 'errors'); if (! (GETPOST('exp_date_month','alpha') > 0) || ! (GETPOST('exp_date_year','alpha') > 0)) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("ExpiryDate")), null, 'errors'); if (! GETPOST('cvn','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CVN")), null, 'errors'); $action='createcard'; $error++; } $companypaymentmode->fetch($id); if (! $error) { $companypaymentmode->fk_soc = $object->id; $companypaymentmode->bank = GETPOST('bank','alpha'); $companypaymentmode->label = GETPOST('label','alpha'); $companypaymentmode->number = GETPOST('cardnumber','alpha'); $companypaymentmode->last_four = substr(GETPOST('cardnumber','alpha'), -4); $companypaymentmode->proprio = GETPOST('proprio','alpha'); $companypaymentmode->exp_date_month = GETPOST('exp_date_month','int'); $companypaymentmode->exp_date_year = GETPOST('exp_date_year','int'); $companypaymentmode->cvn = GETPOST('cvn','alpha'); $companypaymentmode->country_code = $object->country_code; $companypaymentmode->stripe_card_ref = GETPOST('stripe_card_ref','alpha'); $result = $companypaymentmode->update($user); if (! $result) { setEventMessages($companypaymentmode->error, $companypaymentmode->errors, 'errors'); } else { // If this account is the default bank account, we disable others if ($companypaymentmode->default_rib) { $companypaymentmode->setAsDefault($id); // This will make sure there is only one default rib } $url=$_SERVER["PHP_SELF"].'?socid='.$object->id; header('Location: '.$url); exit; } } } if ($action == 'add') { $error=0; if (! GETPOST('label','alpha') || ! GETPOST('bank','alpha')) { if (! GETPOST('label','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Label")), null, 'errors'); if (! GETPOST('bank','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("BankName")), null, 'errors'); $action='create'; $error++; } if (! $error) { // Ajout $companybankaccount = new CompanyBankAccount($db); $companybankaccount->socid = $object->id; $companybankaccount->bank = GETPOST('bank','alpha'); $companybankaccount->label = GETPOST('label','alpha'); $companybankaccount->courant = GETPOST('courant','alpha'); $companybankaccount->clos = GETPOST('clos','alpha'); $companybankaccount->code_banque = GETPOST('code_banque','alpha'); $companybankaccount->code_guichet = GETPOST('code_guichet','alpha'); $companybankaccount->number = GETPOST('number','alpha'); $companybankaccount->cle_rib = GETPOST('cle_rib','alpha'); $companybankaccount->bic = GETPOST('bic','alpha'); $companybankaccount->iban = GETPOST('iban','alpha'); $companybankaccount->domiciliation = GETPOST('domiciliation','alpha'); $companybankaccount->proprio = GETPOST('proprio','alpha'); $companybankaccount->owner_address = GETPOST('owner_address','alpha'); $companybankaccount->frstrecur = GETPOST('frstrecur'); $companybankaccount->rum = GETPOST('rum','alpha'); $companybankaccount->datec = dol_now(); $companybankaccount->status = 1; $db->begin(); // This test can be done only once properties were set if ($companybankaccount->needIBAN() == 1) { if (! GETPOST('iban')) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("IBAN")), null, 'errors'); $action='create'; $error++; } if (! GETPOST('bic')) { setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("BIC")), null, 'errors'); $action='create'; $error++; } } if (! $error) { $result = $companybankaccount->create($user); if ($result < 0) { $error++; setEventMessages($companybankaccount->error, $companybankaccount->errors, 'errors'); $action='create'; // Force chargement page création } if (empty($companybankaccount->rum)) { $companybankaccount->rum = $prelevement->buildRumNumber($object->code_client, $companybankaccount->datec, $companybankaccount->id); $companybankaccount->date_rum = dol_now(); } } if (! $error) { $result = $companybankaccount->update($user); // This will set the UMR number. if ($result < 0) { $error++; setEventMessages($companybankaccount->error, $companybankaccount->errors, 'errors'); $action='create'; } } if (! $error) { $db->commit(); $url=$_SERVER["PHP_SELF"].'?socid='.$object->id; header('Location: '.$url); exit; } else { $db->rollback(); } } } if ($action == 'addcard') { $error=0; if (! GETPOST('label','alpha') || ! GETPOST('proprio','alpha') || ! GETPOST('cardnumber','alpha') || ! GETPOST('exp_date_month','alpha') || ! GETPOST('exp_date_year','alpha') || ! GETPOST('cvn','alpha')) { if (! GETPOST('label','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Label")), null, 'errors'); if (! GETPOST('proprio','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("NameOnCard")), null, 'errors'); if (! GETPOST('cardnumber','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CardNumber")), null, 'errors'); if (! (GETPOST('exp_date_month','alpha') > 0) || ! (GETPOST('exp_date_year','alpha') > 0)) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("ExpiryDate")), null, 'errors'); if (! GETPOST('cvn','alpha')) setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("CVN")), null, 'errors'); $action='createcard'; $error++; } if (! $error) { // Ajout $companypaymentmode = new CompanyPaymentMode($db); $companypaymentmode->fk_soc = $object->id; $companypaymentmode->bank = GETPOST('bank','alpha'); $companypaymentmode->label = GETPOST('label','alpha'); $companypaymentmode->number = GETPOST('cardnumber','alpha'); $companypaymentmode->last_four = substr(GETPOST('cardnumber','alpha'), -4); $companypaymentmode->proprio = GETPOST('proprio','alpha'); $companypaymentmode->exp_date_month = GETPOST('exp_date_month','int'); $companypaymentmode->exp_date_year = GETPOST('exp_date_year','int'); $companypaymentmode->cvn = GETPOST('cvn','alpha'); $companypaymentmode->datec = dol_now(); $companypaymentmode->default_rib = 0; $companypaymentmode->type = 'card'; $companypaymentmode->country_code = $object->country_code; $companypaymentmode->status = $servicestatus; $companypaymentmode->stripe_card_ref = GETPOST('stripe_card_ref','alpha'); $db->begin(); if (! $error) { $result = $companypaymentmode->create($user); if ($result < 0) { $error++; setEventMessages($companypaymentmode->error, $companypaymentmode->errors, 'errors'); $action='createcard'; // Force chargement page création } } if (! $error) { $db->commit(); $url=$_SERVER["PHP_SELF"].'?socid='.$object->id; header('Location: '.$url); exit; } else { $db->rollback(); } } } if ($action == 'setasbankdefault' && GETPOST('ribid','int') > 0) { $companybankaccount = new CompanyBankAccount($db); $res = $companybankaccount->setAsDefault(GETPOST('ribid','int')); if ($res) { $url=DOL_URL_ROOT.'/societe/paymentmodes.php?socid='.$object->id; header('Location: '.$url); exit; } else { setEventMessages($db->lasterror, null, 'errors'); } } if ($action == 'confirm_deletecard' && GETPOST('confirm','alpha') == 'yes') { $companypaymentmode = new CompanyPaymentMode($db); if ($companypaymentmode->fetch($ribid?$ribid:$id)) { $result = $companypaymentmode->delete($user); if ($result > 0) { $url = $_SERVER['PHP_SELF']."?socid=".$object->id; header('Location: '.$url); exit; } else { setEventMessages($companypaymentmode->error, $companypaymentmode->errors, 'errors'); } } else { setEventMessages($companypaymentmode->error, $companypaymentmode->errors, 'errors'); } } if ($action == 'confirm_delete' && GETPOST('confirm','alpha') == 'yes') { $companybankaccount = new CompanyBankAccount($db); if ($companybankaccount->fetch($ribid?$ribid:$id)) { $result = $companybankaccount->delete($user); if ($result > 0) { $url = $_SERVER['PHP_SELF']."?socid=".$object->id; header('Location: '.$url); exit; } else { setEventMessages($companybankaccount->error, $companybankaccount->errors, 'errors'); } } else { setEventMessages($companybankaccount->error, $companybankaccount->errors, 'errors'); } } $savid=$id; // Actions to build doc if ($action == 'builddocrib') { $action = 'builddoc'; $moreparams = array( 'use_companybankid'=>GETPOST('companybankid'), 'force_dir_output'=>$conf->societe->multidir_output[$object->entity].'/'.dol_sanitizeFileName($object->id) ); $_POST['lang_id'] = GETPOST('lang_idrib'.GETPOST('companybankid','int'), 'alpha'); $_POST['model'] = GETPOST('modelrib'.GETPOST('companybankid','int'), 'alpha'); } $id = $socid; $upload_dir = $conf->societe->multidir_output[$object->entity]; $permissioncreate=$user->rights->societe->creer; include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php'; $id = $savid; // Action for stripe if (! empty($conf->stripe->enabled) && class_exists('Stripe')) { if ($action == 'synccustomertostripe') { if ($object->client == 0) { $error++; setEventMessages('ThisThirdpartyIsNotACustomer', null, 'errors'); } else { // Creation of Stripe customer + update of societe_account $cu = $stripe->customerStripe($object, $stripeacc, $servicestatus, 1); if (! $cu) { $error++; setEventMessages($stripe->error, $stripe->errors, 'errors'); } else { $stripecu = $cu->id; } } } if ($action == 'synccardtostripe') { $companypaymentmode = new CompanyPaymentMode($db); $companypaymentmode->fetch($id); if ($companypaymentmode->type != 'card') { $error++; setEventMessages('ThisPaymentModeIsNotACard', null, 'errors'); } else { // Get the Stripe customer $cu = $stripe->customerStripe($object, $stripeacc, $servicestatus); if (! $cu) { $error++; setEventMessages($stripe->error, $stripe->errors, 'errors'); } if (! $error) { // Creation of Stripe card + update of societe_account $card = $stripe->cardStripe($cu, $companypaymentmode, $stripeacc, $servicestatus, 1); if (! $card) { $error++; setEventMessages($stripe->error, $stripe->errors, 'errors'); } else { $stripecard = $card->id; } } } } if ($action == 'setkey_account') { $error = 0; $newcu = GETPOST('key_account', 'alpha'); $db->begin(); if (empty($newcu)) { $sql = "DELETE FROM ".MAIN_DB_PREFIX."societe_account WHERE site = 'stripe' AND fk_soc = ".$object->id." AND status = ".$servicestatus." AND entity = ".$conf->entity; } else { $sql = 'UPDATE '.MAIN_DB_PREFIX."societe_account"; $sql.= " SET key_account = '".$db->escape(GETPOST('key_account', 'alpha'))."'"; $sql.= " WHERE site = 'stripe' AND fk_soc = ".$object->id." AND status = ".$servicestatus." AND entity = ".$conf->entity; // Keep = here for entity. Only 1 record must be modified ! } $resql = $db->query($sql); $num = $db->num_rows($resql); if (empty($num) && !empty($newcu)) { $societeaccount = new SocieteAccount($db); $societeaccount->fk_soc = $object->id; $societeaccount->login = ''; $societeaccount->pass_encoding = ''; $societeaccount->site = 'stripe'; $societeaccount->status = $servicestatus; $societeaccount->key_account = $newcu; $result = $societeaccount->create($user); if ($result < 0) { $error++; } } if (! $error) { $stripecu = $newcu; $db->commit(); } else { $db->rollback(); } } if ($action == 'setlocalassourcedefault') { try { $companypaymentmode->setAsDefault($id); $url=DOL_URL_ROOT.'/societe/paymentmodes.php?socid='.$object->id; header('Location: '.$url); exit; } catch(Exception $e) { $error++; setEventMessages($e->getMessage(), null, 'errors'); } } elseif ($action == 'setassourcedefault') { try { $cu=$stripe->customerStripe($object, $stripeacc, $servicestatus); $cu->default_source = (string) $source; $result = $cu->save(); $url=DOL_URL_ROOT.'/societe/paymentmodes.php?socid='.$object->id; header('Location: '.$url); exit; } catch(Exception $e) { $error++; setEventMessages($e->getMessage(), null, 'errors'); } } elseif ($action == 'deletecard' && $source) { try { $cu=$stripe->customerStripe($object, $stripeacc, $servicestatus); $card=$cu->sources->retrieve("$source"); if ($card) { // $card->detach(); Does not work with card_, only with src_ if (method_exists($card, 'detach')) $card->detach(); else $card->delete(); } $url=DOL_URL_ROOT.'/societe/paymentmodes.php?socid='.$object->id; header('Location: '.$url); exit; } catch(Exception $e) { $error++; setEventMessages($e->getMessage(), null, 'errors'); } } } } /* * View */ $form = new Form($db); $formother = new FormOther($db); $formfile = new FormFile($db); llxHeader(); $head=societe_prepare_head($object); // Show sandbox warning /*if (! empty($conf->paypal->enabled) && (! empty($conf->global->PAYPAL_API_SANDBOX) || GETPOST('forcesandbox','alpha'))) // We can force sand box with param 'forcesandbox' { dol_htmloutput_mesg($langs->trans('YouAreCurrentlyInSandboxMode','Paypal'),'','warning'); }*/ if (! empty($conf->stripe->enabled) && (empty($conf->global->STRIPE_LIVE) || GETPOST('forcesandbox','alpha'))) { dol_htmloutput_mesg($langs->trans('YouAreCurrentlyInSandboxMode','Stripe'),'','warning'); } // Load Bank account if (! $id) { $companybankaccount->fetch(0, $object->id); $companypaymentmode->fetch(0, null, $object->id, 'card'); } else { $companybankaccount->fetch($id); $companypaymentmode->fetch($id); } if (empty($companybankaccount->socid)) $companybankaccount->socid=$object->id; if ($socid && ($action == 'edit' || $action == 'editcard') && $user->rights->societe->creer) { print '
'; print ''; $actionforadd='update'; if ($action == 'editcard') $actionforadd='updatecard'; print ''; print ''; } if ($socid && ($action == 'create' || $action == 'createcard') && $user->rights->societe->creer) { print ''; print ''; $actionforadd='add'; if ($action == 'createcard') $actionforadd='addcard'; print ''; } // View if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard' && $action != 'createcard') { dol_fiche_head($head, 'rib', $langs->trans("ThirdParty"), -1, 'company'); // Confirm delete ban if ($action == 'delete') { print $form->formconfirm($_SERVER["PHP_SELF"]."?socid=".$object->id."&ribid=".($ribid?$ribid:$id), $langs->trans("DeleteARib"), $langs->trans("ConfirmDeleteRib", $companybankaccount->getRibLabel()), "confirm_delete", '', 0, 1); } // Confirm delete card if ($action == 'deletecard') { print $form->formconfirm($_SERVER["PHP_SELF"]."?socid=".$object->id."&ribid=".($ribid?$ribid:$id), $langs->trans("DeleteACard"), $langs->trans("ConfirmDeleteCard", $companybankaccount->getRibLabel()), "confirm_deletecard", '', 0, 1); } $linkback = ''.$langs->trans("BackToList").''; dol_banner_tab($object, 'socid', $linkback, ($user->societe_id?0:1), 'rowid', 'nom'); if (! empty($conf->global->SOCIETE_USEPREFIX)) // Old not used prefix field { print ''.$langs->trans('Prefix').''.$object->prefix_comm.''; } //if ($conf->agenda->enabled && $user->rights->agenda->myactions->read) $elementTypeArray['action']=$langs->transnoentitiesnoconv('Events'); print '
'; print '
'; print ''; if ($object->client) { print ''; $sql = "SELECT count(*) as nb from ".MAIN_DB_PREFIX."facture where fk_soc = ".$socid; $resql=$db->query($sql); if (!$resql) dol_print_error($db); $obj = $db->fetch_object($resql); $nbFactsClient = $obj->nb; $thirdTypeArray['customer']=$langs->trans("customer"); if ($conf->propal->enabled && $user->rights->propal->lire) $elementTypeArray['propal']=$langs->transnoentitiesnoconv('Proposals'); if ($conf->commande->enabled && $user->rights->commande->lire) $elementTypeArray['order']=$langs->transnoentitiesnoconv('Orders'); if ($conf->facture->enabled && $user->rights->facture->lire) $elementTypeArray['invoice']=$langs->transnoentitiesnoconv('Invoices'); if ($conf->contrat->enabled && $user->rights->contrat->lire) $elementTypeArray['contract']=$langs->transnoentitiesnoconv('Contracts'); } if (! empty($conf->stripe->enabled)) { $permissiontowrite = $user->rights->societe->creer; // Stripe customer key 'cu_....' stored into llx_societe_account print ''; } print '
'; print $langs->trans('CustomerCode').''; print $object->code_client; if ($object->check_codeclient() <> 0) print ' ('.$langs->trans("WrongCustomerCode").')'; print '
'; //print $langs->trans('StripeCustomerId'); print $form->editfieldkey("StripeCustomerId", 'key_account', $stripecu, $object, $permissiontowrite, 'string', '', 0, 2, 'socid'); print ''; //print $stripecu; print $form->editfieldval("StripeCustomerId", 'key_account', $stripecu, $object, $permissiontowrite, 'string', '', null, null, '', 2, '', 'socid'); if ($stripecu && $action != 'editkey_account') { $url='https://dashboard.stripe.com/test/customers/'.$stripecu; if ($servicestatus) { $url='https://dashboard.stripe.com/customers/'.$stripecu; } print ' '.img_picto($langs->trans('ShowInStripe'), 'object_globe').''; } print ''; if (empty($stripecu)) { print ''; print ''; print ''; print ''; print ''; print ''; print ''; } print '
'; print '
'; dol_fiche_end(); print '
'; // List of Stripe payment modes if (! (empty($conf->stripe->enabled))) { $morehtmlright=''; if (! empty($conf->global->STRIPE_ALLOW_LOCAL_CARD)) { $morehtmlright=''.$langs->trans("Add").' '; } print load_fiche_titre($langs->trans('StripePaymentModes').($stripeacc?' (Stripe connection with StripeConnect account '.$stripeacc.')':' (Stripe connection with keys from Stripe module setup)'), $morehtmlright, ''); $listofsources = array(); if (is_object($stripe)) { try { $customerstripe=$stripe->customerStripe($object, $stripeacc, $servicestatus); if ($customerstripe->id) { $listofsources=$customerstripe->sources->data; } } catch(Exception $e) { dol_syslog("Error when searching/loading Stripe customer for thirdparty id =".$object->id); } } print '
'; // You can use div-table-responsive-no-min if you dont need reserved height for your table print ''."\n"; print ''; if (! empty($conf->global->STRIPE_ALLOW_LOCAL_CARD)) { print ''; } print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; $nbremote = 0; $nblocal = 0; $arrayofstripecard = array(); // Show local sources if (! empty($conf->global->STRIPE_ALLOW_LOCAL_CARD)) { //$societeaccount = new SocieteAccount($db); $companypaymentmodetemp = new CompanyPaymentMode($db); $sql='SELECT rowid FROM '.MAIN_DB_PREFIX."societe_rib"; $sql.=" WHERE type in ('card', 'paypal')"; $sql.=" AND fk_soc = ".$object->id; $sql.=" AND status = ".$servicestatus; $resql = $db->query($sql); if ($resql) { $num_rows = $db->num_rows($resql); if ($num_rows) { $i=0; while ($i < $num_rows) { $nblocal++; $obj = $db->fetch_object($resql); if ($obj) { $companypaymentmodetemp->fetch($obj->rowid); $arrayofstripecard[$companypaymentmodetemp->stripe_card_ref]=$companypaymentmodetemp->stripe_card_ref; print ''; print ''; print ''; print ''; print ''; // Default print ''; print ''; print ''; print ''; } $i++; } } } else dol_print_error($db); } // Show remote sources (not already shown as local source) if (is_array($listofsources) && count($listofsources)) { foreach ($listofsources as $src) { if (! empty($arrayofstripecard[$src->id])) continue; // Already in previous list $nbremote++; print ''; // Local ID if (! empty($conf->global->STRIPE_ALLOW_LOCAL_CARD)) { print ''; } print ''; print ''; // Default print ''; print ''; print ''; print ''; } } if ($nbremote == 0 && $nblocal == 0) { print ''; } print "
'.$langs->trans('LocalID').''.$langs->trans('StripeID').''.$langs->trans('Type').''.$langs->trans('Informations').''.$langs->trans('Default').''.$langs->trans('Note').'
'; print $companypaymentmodetemp->id; print ''; print $companypaymentmodetemp->stripe_card_ref; /*if ($companypaymentmodetemp->stripe_card_ref) { $url='https://dashboard.stripe.com/test/card/'.$companypaymentmodetemp->stripe_card_ref; if ($servicestatus) { $url='https://dashboard.stripe.com/card/'.$companypaymentmodetemp->stripe_card_ref; } print ' '.img_picto($langs->trans('ShowInStripe'), 'object_globe').''; }*/ print ''; print img_credit_card($companypaymentmodetemp->type); print ''; if ($companypaymentmodetemp->last_four) print '....'.$companypaymentmodetemp->last_four; if ($companypaymentmodetemp->exp_date_month || $companypaymentmodetemp->exp_date_year) print ' - '.sprintf("%02d", $companypaymentmodetemp->exp_date_month).'/'.$companypaymentmodetemp->exp_date_year.''; print ''; if ($companypaymentmodetemp->country_code) { $img=picto_from_langcode($companypaymentmodetemp->country_code); print $img?$img.' ':''; print getCountry($companypaymentmodetemp->country_code,1); } else print img_warning().' '.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).''; print ''; if (empty($companypaymentmodetemp->default_rib)) { print ''; print img_picto($langs->trans("Default"),'off'); print ''; } else { print img_picto($langs->trans("Default"),'on'); } print ''; if (empty($companypaymentmodetemp->stripe_card_ref)) print $langs->trans("Local"); else print $langs->trans("LocalAndRemote"); print ''; if ($user->rights->societe->creer) { if ($stripecu && empty($companypaymentmodetemp->stripe_card_ref)) { print ''.$langs->trans("CreateCardOnStripe").''; } print ''; print img_picto($langs->trans("Modify"),'edit'); print ''; print ' '; print ''; // source='.$companypaymentmodetemp->stripe_card_ref.'& print img_picto($langs->trans("Delete"), 'delete'); print ''; } print '
'; print ''; print $src->id; print ''; if ($src->object=='card') { print img_credit_card($src->brand); } elseif ($src->object=='source' && $src->type=='card') { print img_credit_card($src->card->brand); } elseif ($src->object=='source' && $src->type=='sepa_debit') { print ''; } print''; if ($src->object=='card') { print '....'.$src->last4.' - '.$src->exp_month.'/'.$src->exp_year.''; print ''; if ($src->country) { $img=picto_from_langcode($src->country); print $img?$img.' ':''; print getCountry($src->country,1); } else print img_warning().' '.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).''; } elseif ($src->object=='source' && $src->type=='card') { print $src->owner->name.'
....'.$src->card->last4.' - '.$src->card->exp_month.'/'.$src->card->exp_year.''; print '
'; if ($src->card->country) { $img=picto_from_langcode($src->card->country); print $img?$img.' ':''; print getCountry($src->card->country,1); } else print img_warning().' '.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).''; } elseif ($src->object=='source' && $src->type=='sepa_debit') { print 'info sepa'; print ''; if ($src->sepa_debit->country) { $img=picto_from_langcode($src->sepa_debit->country); print $img?$img.' ':''; print getCountry($src->sepa_debit->country,1); } else print img_warning().' '.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("CompanyCountry")).''; } print ''; if (($customerstripe->default_source != $src->id)) { print ''; print img_picto($langs->trans("Default"),'off'); print ''; } else { print img_picto($langs->trans("Default"),'on'); } print ''; print $langs->trans("Remote"); print ''; if ($user->rights->societe->creer) { print ''; print img_picto($langs->trans("Delete"), 'delete'); print ''; } print '
'.$langs->trans("None").'
"; print "
"; } // List of bank accounts print '
'; $morehtmlright=''.$langs->trans("Add").' '; print load_fiche_titre($langs->trans("BankAccounts"), $morehtmlright, ''); $rib_list = $object->get_all_rib(); if (is_array($rib_list)) { print '
'; // You can use div-table-responsive-no-min if you dont need reserved height for your table print ''; print ''; print_liste_field_titre("LabelRIB"); print_liste_field_titre("Bank"); print_liste_field_titre("RIB"); print_liste_field_titre("IBAN"); print_liste_field_titre("BIC"); if (! empty($conf->prelevement->enabled)) { print print_liste_field_titre("RUM"); print print_liste_field_titre("WithdrawMode"); } print_liste_field_titre("DefaultRIB", '', '', '', '', 'align="center"'); print_liste_field_titre('', '', '', '', '', 'align="center"'); print_liste_field_titre('',$_SERVER["PHP_SELF"],"",'','','',$sortfield,$sortorder,'maxwidthsearch '); print "\n"; foreach ($rib_list as $rib) { print ''; // Label print ''; // Bank name print ''; // Account number print ''; // IBAN print ''; // BIC print ''; if (! empty($conf->prelevement->enabled)) { // RUM //print ''; print ''; // FRSTRECUR print ''; } // Default print ''; // Generate doc print ''; // Edit/Delete print ''; print ''; } if (count($rib_list) == 0) { $colspan=8; if (! empty($conf->prelevement->enabled)) $colspan+=2; print ''; } print '
'.$rib->label.''.$rib->bank.''; $string=''; foreach ($rib->getFieldsToShow() as $val) { if ($val == 'BankCode') { $string .= $rib->code_banque.' '; } elseif ($val == 'BankAccountNumber') { $string .= $rib->number.' '; } elseif ($val == 'DeskCode') { $string .= $rib->code_guichet.' '; } elseif ($val == 'BankAccountNumberKey') { $string .= $rib->cle_rib.' '; /* Already output after }elseif ($val == 'BIC') { $string .= $rib->bic.' '; }elseif ($val == 'IBAN') { $string .= $rib->iban.' ';*/ } } if (! empty($rib->label) && $rib->number) { if (! checkBanForAccount($rib)) { $string.= ' '.img_picto($langs->trans("ValueIsNotValid"),'warning'); } else { $string.= ' '.img_picto($langs->trans("ValueIsValid"),'info'); } } print $string; print ''.$rib->iban; if (! empty($rib->iban)) { if (! checkIbanForAccount($rib)) { print ' '.img_picto($langs->trans("IbanNotValid"),'warning'); } else { print ' '.img_picto($langs->trans("IbanValid"),'info'); } } print ''.$rib->bic; if (! empty($rib->bic)) { if (! checkSwiftForAccount($rib)) { print ' '.img_picto($langs->trans("SwiftNotValid"),'warning'); } else { print ' '.img_picto($langs->trans("SwiftValid"),'info'); } } print ''.$prelevement->buildRumNumber($object->code_client, $rib->datec, $rib->id).''.$rib->rum.''.$rib->frstrecur.''; if (!$rib->default_rib) { print ''; print img_picto($langs->trans("Disabled"),'off'); print ''; } else { print img_picto($langs->trans("Enabled"),'on'); } print ''; $buttonlabel = $langs->trans("BuildDoc"); $forname='builddocrib'.$rib->id; include_once DOL_DOCUMENT_ROOT.'/core/modules/bank/modules_bank.php'; $modellist=ModeleBankAccountDoc::liste_modeles($db); $out = ''; if (is_array($modellist) && count($modellist)) { $out.= '
'; $out.= ''; $out.= ''; $out.= ''; $out.= ''; if (is_array($modellist) && count($modellist) == 1) // If there is only one element { $arraykeys=array_keys($modellist); $modelselected=$arraykeys[0]; } if (! empty($conf->global->BANKADDON_PDF)) $modelselected = $conf->global->BANKADDON_PDF; $out.= $form->selectarray('modelrib'.$rib->id, $modellist, $modelselected, $showempty, 0, 0, '', 0, 0, 0, '', 'minwidth100'); $out.= ajax_combobox('modelrib'.$rib->id); // Language code (if multilang) if ($conf->global->MAIN_MULTILANGS) { include_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php'; $formadmin=new FormAdmin($db); $defaultlang=$codelang?$codelang:$langs->getDefaultLang(); $morecss='maxwidth150'; if (! empty($conf->browser->phone)) $morecss='maxwidth100'; $out.= $formadmin->select_language($defaultlang, 'lang_idrib'.$rib->id, 0, 0, 0, 0, 0, $morecss); } // Button $genbutton = 'dol_no_mouse_hover) && $modulepart != 'unpaid') { $langs->load("errors"); $genbutton.= ' '.img_warning($langs->transnoentitiesnoconv("WarningNoDocumentModelActivated")); } if (! $allowgenifempty && ! is_array($modellist) && empty($modellist) && empty($conf->dol_no_mouse_hover) && $modulepart != 'unpaid') $genbutton=''; if (empty($modellist) && ! $showempty && $modulepart != 'unpaid') $genbutton=''; $out.= $genbutton; $out.= '
'; } print $out; print '
'; if ($user->rights->societe->creer) { print ''; print img_picto($langs->trans("Modify"),'edit'); print ''; print ' '; print ''; print img_picto($langs->trans("Delete"),'delete'); print ''; } print '
'.$langs->trans("NoBANRecord").'
'; print '
'; } else { dol_print_error($db); } if (empty($conf->global->SOCIETE_DISABLE_BUILDDOC)) { print '
'; print '
'; print ''; // ancre /* * Documents generes */ $filedir=$conf->societe->multidir_output[$object->entity].'/'.$object->id; $urlsource=$_SERVER["PHP_SELF"]."?socid=".$object->id; $genallowed=$user->rights->societe->lire; $delallowed=$user->rights->societe->creer; print $formfile->showdocuments('company', $object->id, $filedir, $urlsource, $genallowed, $delallowed, $object->modelpdf, 0, 0, 0, 28, 0, 'entity='.$object->entity, 0, '', $object->default_lang); // Show direct download link if (! empty($conf->global->BANK_ACCOUNT_ALLOW_EXTERNAL_DOWNLOAD)) { $companybankaccounttemp = new CompanyBankAccount($db); $companypaymentmodetemp = new CompanyPaymentMode($db); $result = $companypaymentmodetemp->fetch(0, null, $object->id, 'ban'); include_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmfiles.class.php'; $ecmfile = new EcmFiles($db); $result = $ecmfile->fetch(0, '', '', '', '', $companybankaccounttemp->table_element, $companypaymentmodetemp->id); if ($result > 0) { $companybankaccounttemp->last_main_doc = $ecmfile->filepath.'/'.$ecmfile->filename; print '
'."\n"; print showDirectDownloadLink($companybankaccounttemp).'
'; } } print '
'; print '
'; print '
'; } /* include_once DOL_DOCUMENT_ROOT.'/core/modules/bank/modules_bank.php'; $modellist=ModeleBankAccountDoc::liste_modeles($db); //print ''; if (is_array($modellist) && count($modellist) == 1) // If there is only one element { $arraykeys=array_keys($modellist); $modelselected=$arraykeys[0]; } $out.= $form->selectarray('model', $modellist, $modelselected, 0, 0, 0, '', 0, 0, 0, '', 'minwidth100'); $out.= ajax_combobox('model'); //print $out; $buttonlabel=$langs->trans("Generate"); $genbutton = ''; // TODO Add link to generate doc */ } // Edit BAN if ($socid && $action == 'edit' && $user->rights->societe->creer) { dol_fiche_head($head, 'rib', $langs->trans("ThirdParty"),0,'company'); $linkback = ''.$langs->trans("BackToList").''; dol_banner_tab($object, 'socid', $linkback, ($user->societe_id?0:1), 'rowid', 'nom'); print '
'; print '
'; print ''; print ''; print ''; print ''; print ''; // Show fields of bank account foreach ($companybankaccount->getFieldsToShow(1) as $val) { $require=false; if ($val == 'BankCode') { $name = 'code_banque'; $size = 8; $content = $companybankaccount->code_banque; } elseif ($val == 'DeskCode') { $name = 'code_guichet'; $size = 8; $content = $companybankaccount->code_guichet; } elseif ($val == 'BankAccountNumber') { $name = 'number'; $size = 18; $content = $companybankaccount->number; } elseif ($val == 'BankAccountNumberKey') { $name = 'cle_rib'; $size = 3; $content = $companybankaccount->cle_rib; } elseif ($val == 'IBAN') { $name = 'iban'; $size = 30; $content = $companybankaccount->iban; if ($companybankaccount->needIBAN()) $require=true; } elseif ($val == 'BIC') { $name = 'bic'; $size = 12; $content = $companybankaccount->bic; if ($companybankaccount->needIBAN()) $require=true; } print ''.$langs->trans($val).''; print ''; print ''; } print '"; print ''; print ''; print "\n"; print '"; print '
'.$langs->trans("LabelRIB").'
'.$langs->trans("BankName").'
'.$langs->trans("BankAccountDomiciliation").''; print '
'.$langs->trans("BankAccountOwner").'
'.$langs->trans("BankAccountOwnerAddress").''; print '
'; if ($conf->prelevement->enabled) { print '
'; print ''; if (empty($companybankaccount->rum)) $companybankaccount->rum = $prelevement->buildRumNumber($object->code_client, $companybankaccount->datec, $companybankaccount->id); // RUM print ''; print ''; print ''; print '
'.$langs->trans("RUM").'
'.$langs->trans("WithdrawMode").''; $tblArraychoice = array("FRST" => $langs->trans("FRST"), "RECUR" => $langs->trans("RECUR")); print $form->selectarray("frstrecur", $tblArraychoice, dol_escape_htmltag(GETPOST('frstrecur','alpha')?GETPOST('frstrecur','alpha'):$companybankaccount->frstrecur), 0); print '
'; } print '
'; dol_fiche_end(); print '
'; print ''; print '     '; print ''; print '
'; } // Edit Card if ($socid && $action == 'editcard' && $user->rights->societe->creer) { dol_fiche_head($head, 'rib', $langs->trans("ThirdParty"),0,'company'); $linkback = ''.$langs->trans("BackToList").''; dol_banner_tab($object, 'socid', $linkback, ($user->societe_id?0:1), 'rowid', 'nom'); print '
'; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print '"; print ''; print '
'.$langs->trans("Label").'
'.$langs->trans("NameOnCard").'
'.$langs->trans("CardNumber").'
'.$langs->trans("ExpiryDate").''; print $formother->select_month($companypaymentmode->exp_date_month, 'exp_date_month', 1); print $formother->select_year($companypaymentmode->exp_date_year, 'exp_date_year', 1, 5, 10, 0, 0, '', 'marginleftonly'); print '
'.$langs->trans("CVN").'
'.$langs->trans("StripeID")." ('card_....')
'; print '
'; dol_fiche_end(); print '
'; print ''; print '     '; print ''; print '
'; } // Create BAN if ($socid && $action == 'create' && $user->rights->societe->creer) { dol_fiche_head($head, 'rib', $langs->trans("ThirdParty"),0,'company'); $linkback = ''.$langs->trans("BackToList").''; dol_banner_tab($object, 'socid', $linkback, ($user->societe_id?0:1), 'rowid', 'nom'); print '
'; print '
'; print ''; print ''; print ''; print ''; print ''; // Show fields of bank account foreach ($companybankaccount->getFieldsToShow(1) as $val) { $require=false; if ($val == 'BankCode') { $name = 'code_banque'; $size = 8; } elseif ($val == 'DeskCode') { $name = 'code_guichet'; $size = 8; } elseif ($val == 'BankAccountNumber') { $name = 'number'; $size = 18; } elseif ($val == 'BankAccountNumberKey') { $name = 'cle_rib'; $size = 3; } elseif ($val == 'IBAN') { $name = 'iban'; $size = 30; if ($companybankaccount->needIBAN()) $require=true; } elseif ($val == 'BIC') { $name = 'bic'; $size = 12; if ($companybankaccount->needIBAN()) $require=true; } print ''.$langs->trans($val).''; print ''; print ''; } print '"; print ''; print ''; print "\n"; print '"; print '
'.$langs->trans("LabelRIB").'
'.$langs->trans("Bank").'
'.$langs->trans("BankAccountDomiciliation").''; print '
'.$langs->trans("BankAccountOwner").'
'.$langs->trans("BankAccountOwnerAddress").''; print '
'; if ($conf->prelevement->enabled) { print '
'; print ''; // RUM print ''; print ''; print ''; print '
'.$langs->trans("RUM").'
'.$langs->trans("RUMWillBeGenerated").'
'.$langs->trans("WithdrawMode").''; $tblArraychoice = array("FRST" => $langs->trans("FRST"), "RECUR" => $langs->trans("RECUR")); print $form->selectarray("frstrecur", $tblArraychoice, (isset($_POST['frstrecur'])?GETPOST('frstrecur'):'FRST'), 0); print '
'; } print '
'; dol_fiche_end(); dol_set_focus('#label'); print '
'; print ''; print '     '; print ''; print '
'; } // Create Card if ($socid && $action == 'createcard' && $user->rights->societe->creer) { dol_fiche_head($head, 'rib', $langs->trans("ThirdParty"),0,'company'); $linkback = ''.$langs->trans("BackToList").''; dol_banner_tab($object, 'socid', $linkback, ($user->societe_id?0:1), 'rowid', 'nom'); print '
'; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print '"; print ''; print '
'.$langs->trans("Label").'
'.$langs->trans("NameOnCard").'
'.$langs->trans("CardNumber").'
'.$langs->trans("ExpiryDate").''; print $formother->select_month(GETPOST('exp_date_month','int'), 'exp_date_month', 1); print $formother->select_year(GETPOST('exp_date_year','int'), 'exp_date_year', 1, 5, 10, 0, 0, '', 'marginleftonly'); print '
'.$langs->trans("CVN").'
'.$langs->trans("StripeID")." ('card_....')
'; print '
'; dol_fiche_end(); dol_set_focus('#label'); print '
'; print ''; print '     '; print ''; print '
'; } if ($socid && ($action == 'edit' || $action == 'editcard') && $user->rights->societe->creer) { print ''; } if ($socid && ($action == 'create' || $action == 'createcard') && $user->rights->societe->creer) { print ''; } llxFooter(); $db->close();