Merge pull request #8302 from ptibogxiv/ptibogxiv-stripe
ADD IPN/webhook for stripe
This commit is contained in:
commit
ce13fa56a2
313
htdocs/public/stripe/ipn.php
Normal file
313
htdocs/public/stripe/ipn.php
Normal file
@ -0,0 +1,313 @@
|
||||
<?php
|
||||
|
||||
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
||||
define("NOCSRFCHECK",1); // We accept to go on this page from external web site.
|
||||
|
||||
$entity=(! empty($_GET['entity']) ? (int) $_GET['entity'] : (! empty($_POST['entity']) ? (int) $_POST['entity'] : 1));
|
||||
if (is_numeric($entity)) define("DOLENTITY", $entity);
|
||||
|
||||
$res=0;
|
||||
if (! $res && file_exists("../../main.inc.php")) $res=@include("../../main.inc.php"); // to work if your module directory is into a subdir of root htdocs directory
|
||||
if (! $res) die("Include of main fails");
|
||||
|
||||
if (empty($conf->stripe->enabled)) accessforbidden('',0,0,1);
|
||||
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/includes/stripe/init.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/stripe/class/stripe.class.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/core/class/ccountry.class.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
|
||||
|
||||
// You can find your endpoint's secret in your webhook settings
|
||||
if (isset($_GET['connect'])){
|
||||
if (isset($_GET['test']))
|
||||
{
|
||||
$endpoint_secret = $conf->global->STRIPE_TEST_WEBHOOK_CONNECT_KEY;
|
||||
$service = 'StripeTest';
|
||||
}
|
||||
else
|
||||
{
|
||||
$endpoint_secret = $conf->global->STRIPE_LIVE_WEBHOOK_CONNECT_KEY;
|
||||
$service = 'StripeLive';
|
||||
}
|
||||
}else {
|
||||
if (isset($_GET['test']))
|
||||
{
|
||||
$endpoint_secret = $conf->global->STRIPE_TEST_WEBHOOK_KEY;
|
||||
$service = 'StripeTest';
|
||||
}
|
||||
else
|
||||
{
|
||||
$endpoint_secret = $conf->global->STRIPE_LIVE_WEBHOOK_KEY;
|
||||
$service = 'StripeLive';
|
||||
}
|
||||
}
|
||||
$payload = @file_get_contents("php://input");
|
||||
$sig_header = $_SERVER["HTTP_STRIPE_SIGNATURE"];
|
||||
$event = null;
|
||||
|
||||
$error = 0;
|
||||
|
||||
try {
|
||||
$event = \Stripe\Webhook::constructEvent($payload, $sig_header, $endpoint_secret);
|
||||
}
|
||||
catch(\UnexpectedValueException $e) {
|
||||
// Invalid payload
|
||||
http_response_code(400); // PHP 5.4 or greater
|
||||
exit();
|
||||
} catch(\Stripe\Error\SignatureVerification $e) {
|
||||
// Invalid signature
|
||||
http_response_code(400); // PHP 5.4 or greater
|
||||
exit();
|
||||
}
|
||||
|
||||
// Do something with $event
|
||||
|
||||
http_response_code(200); // PHP 5.4 or greater
|
||||
$langs->load("main");
|
||||
$user = new User($db);
|
||||
$user->fetch(5);
|
||||
$user->getrights();
|
||||
|
||||
if (! empty($conf->multicompany->enabled) && ! empty($conf->stripeconnect->enabled)) {
|
||||
$sql = "SELECT entity";
|
||||
$sql.= " FROM ".MAIN_DB_PREFIX."oauth_token";
|
||||
$sql.= " WHERE service = '$service' and tokenstring = '%".$event->account."%'";
|
||||
|
||||
dol_syslog(get_class($db) . "::fetch", LOG_DEBUG);
|
||||
$result = $db->query($sql);
|
||||
if ($result)
|
||||
{
|
||||
if ($db->num_rows($result))
|
||||
{
|
||||
$obj = $db->fetch_object($result);
|
||||
$key=$obj->entity;
|
||||
}
|
||||
else {$key=1;}
|
||||
}
|
||||
else {$key=1;}
|
||||
$ret=$mc->switchEntity($key);
|
||||
if (! $res && file_exists("../../main.inc.php")) $res=@include("../../main.inc.php");
|
||||
if (! $res) die("Include of main fails");
|
||||
}
|
||||
|
||||
// list of action
|
||||
$stripe=new Stripe($db);
|
||||
if ($event->type == 'payout.created') {
|
||||
$error=0;
|
||||
|
||||
$result=dolibarr_set_const($db, $service."_NEXTPAYOUT",date('Y-m-d H:i:s',$event->data->object->arrival_date),'chaine',0,'',$conf->entity);
|
||||
|
||||
if ($result > 0)
|
||||
{
|
||||
$body = "Un virement de ".price2num($event->data->object->amount/100)." ".$event->data->object->currency." est attendu sur votre compte le ".date('d-m-Y H:i:s',$event->data->object->arrival_date);
|
||||
$subject = '[NOTIFICATION] Virement programmée';
|
||||
$headers = 'From: "'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'" <'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'>'; TODO convert in dolibarr standard
|
||||
mail(''.$conf->global->MAIN_INFO_SOCIETE_MAIL.'', $subject, $body, $headers);
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
$error++;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
elseif ($event->type == 'payout.paid') {
|
||||
global $conf;
|
||||
$error=0;
|
||||
$result=dolibarr_set_const($db, $service."_NEXTPAYOUT",null,'chaine',0,'',$conf->entity);
|
||||
if ($result)
|
||||
{
|
||||
$langs->load("errors");
|
||||
|
||||
$dateo = dol_now();
|
||||
$label = $event->data->object->description;
|
||||
$amount= $event->data->object->amount/100;
|
||||
$amount_to= $event->data->object->amount/100;
|
||||
require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
|
||||
|
||||
$accountfrom=new Account($db);
|
||||
$accountfrom->fetch($conf->global->STRIPE_BANK_ACCOUNT_FOR_PAYMENTS);
|
||||
|
||||
$accountto=new Account($db);
|
||||
$accountto->fetch($conf->global->STRIPE_BANK_ACCOUNT_FOR_BANKTRANFERS);
|
||||
|
||||
if ($accountto->currency_code != $accountfrom->currency_code) {
|
||||
$error++;
|
||||
setEventMessages($langs->trans("ErrorTransferBetweenDifferentCurrencyNotPossible"), null, 'errors');
|
||||
}
|
||||
|
||||
if ($accountto->id != $accountfrom->id)
|
||||
{
|
||||
|
||||
$bank_line_id_from=0;
|
||||
$bank_line_id_to=0;
|
||||
$result=0;
|
||||
|
||||
// By default, electronic transfert from bank to bank
|
||||
$typefrom='PRE';
|
||||
$typeto='VIR';
|
||||
|
||||
if (! $error) $bank_line_id_from = $accountfrom->addline($dateo, $typefrom, $label, -1*price2num($amount), '', '', $user);
|
||||
if (! ($bank_line_id_from > 0)) $error++;
|
||||
if ((! $error) && ($accountto->currency_code == $accountfrom->currency_code)) $bank_line_id_to = $accountto->addline($dateo, $typeto, $label, price2num($amount), '', '', $user);
|
||||
if ((! $error) && ($accountto->currency_code != $accountfrom->currency_code)) $bank_line_id_to = $accountto->addline($dateo, $typeto, $label, price2num($amount_to), '', '', $user);
|
||||
if (! ($bank_line_id_to > 0)) $error++;
|
||||
|
||||
if (! $error) $result=$accountfrom->add_url_line($bank_line_id_from, $bank_line_id_to, DOL_URL_ROOT.'/compta/bank/ligne.php?rowid=', '(banktransfert)', 'banktransfert');
|
||||
if (! ($result > 0)) $error++;
|
||||
if (! $error) $result=$accountto->add_url_line($bank_line_id_to, $bank_line_id_from, DOL_URL_ROOT.'/compta/bank/ligne.php?rowid=', '(banktransfert)', 'banktransfert');
|
||||
if (! ($result > 0)) $error++;
|
||||
}
|
||||
|
||||
$body = "Un virement de ".price2num($event->data->object->amount/100)." ".$event->data->object->currency." a ete effectue sur votre compte le ".date('d-m-Y H:i:s',$event->data->object->arrival_date);
|
||||
$subject = '[NOTIFICATION] Virement effectué';
|
||||
$headers = 'From: "'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'" <'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'>'; TODO convert in dolibarr standard
|
||||
mail(''.$conf->global->MAIN_INFO_SOCIETE_MAIL.'', $subject, $body, $headers);
|
||||
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
$error++;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
elseif ($event->type == 'charge.succeeded') {
|
||||
|
||||
//TODO: create fees
|
||||
|
||||
}
|
||||
elseif ($event->type == 'customer.source.created') {
|
||||
|
||||
//TODO: save customer's source
|
||||
|
||||
}
|
||||
elseif ($event->type == 'customer.source.updated') {
|
||||
|
||||
//TODO: update customer's source
|
||||
|
||||
}
|
||||
elseif ($event->type == 'customer.source.delete') {
|
||||
|
||||
//TODO: delete customer's source
|
||||
|
||||
}
|
||||
elseif ($event->type == 'charge.failed') {
|
||||
|
||||
$subject = 'Your payment has been received: '.$event->data->object->id.'';
|
||||
$headers = 'From: "'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'" <'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'>';
|
||||
//mail('ptibogxiv@msn.com', $subject, 'test', $headers);
|
||||
|
||||
}
|
||||
elseif (($event->type == 'source.chargeable') && ($event->data->object->type == 'three_d_secure') && ($event->data->object->three_d_secure->authenticated==true)) {
|
||||
|
||||
$stripe=new Stripe($db);
|
||||
$charge=$stripe->CreatePaymentStripe($event->data->object->amount/100,$event->data->object->currency,$event->data->object->metadata->source,$event->data->object->metadata->idsource,$event->data->object->id,$event->data->object->metadata->customer,$stripe->getStripeAccount($service));
|
||||
|
||||
if (isset($charge->id) && $charge->statut=='error'){
|
||||
$msg=$charge->message;
|
||||
$code=$charge->code;
|
||||
$error++;
|
||||
}
|
||||
elseif (isset($charge->id) && $charge->statut=='success' && $event->data->object->metadata->source=='order') {
|
||||
$order=new Commande($db);
|
||||
$order->fetch($event->data->object->metadata->idsource);
|
||||
$invoice = new Facture($db);
|
||||
$idinv=$invoice->createFromOrder($order);
|
||||
|
||||
if ($idinv > 0)
|
||||
{
|
||||
$result=$invoice->validate($user);
|
||||
if ($result > 0) {
|
||||
$invoice->fetch($idinv);
|
||||
$paiement = $invoice->getSommePaiement();
|
||||
$creditnotes=$invoice->getSumCreditNotesUsed();
|
||||
$deposits=$invoice->getSumDepositsUsed();
|
||||
$ref=$invoice->ref;
|
||||
$ifverif=$invoice->socid;
|
||||
$currency=$invoice->multicurrency_code;
|
||||
$total=price2num($invoice->total_ttc - $paiement - $creditnotes - $deposits,'MT');
|
||||
}else{
|
||||
$msg=$invoice->error;
|
||||
$error++;
|
||||
}
|
||||
}else{
|
||||
$msg=$invoice->error;
|
||||
$error++;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$error){
|
||||
$datepaye = dol_now();
|
||||
$paiementcode ="CB";
|
||||
$amounts=array();
|
||||
$amounts[$invoice->id] = $total;
|
||||
$multicurrency_amounts=array();
|
||||
//$multicurrency_amounts[$item] = $total;
|
||||
$paiement = new Paiement($db);
|
||||
$paiement->datepaye = $datepaye;
|
||||
$paiement->amounts = $amounts; // Array with all payments dispatching
|
||||
$paiement->multicurrency_amounts = $multicurrency_amounts; // Array with all payments dispatching
|
||||
$paiement->paiementid = dol_getIdFromCode($db,$paiementcode,'c_paiement');
|
||||
$paiement->num_paiement = $charge->message;
|
||||
$paiement->note = '';
|
||||
}
|
||||
|
||||
if (! $error){
|
||||
$paiement_id=$paiement->create($user, 0);
|
||||
|
||||
if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE) && count($invoice->lines)){
|
||||
$outputlangs = $langs;
|
||||
$newlang = '';
|
||||
if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id','aZ09')) $newlang = GETPOST('lang_id','aZ09');
|
||||
if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang = $invoice->thirdparty->default_lang;
|
||||
if (! empty($newlang)) {
|
||||
$outputlangs = new Translate("", $conf);
|
||||
$outputlangs->setDefaultLang($newlang);
|
||||
}
|
||||
$model=$invoice->modelpdf;
|
||||
$ret = $invoice->fetch($invoice->id); // Reload to get new records
|
||||
|
||||
$invoice->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);}
|
||||
if ($paiement_id < 0){
|
||||
$msg=$paiement->errors;
|
||||
$error++;
|
||||
}else{
|
||||
if ($event->data->object->metadata->source=='order') {
|
||||
$order->classifyBilled($user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (! $error){
|
||||
$label='(CustomerInvoicePayment)';
|
||||
if (GETPOST('type') == 2) $label='(CustomerInvoicePaymentBack)';
|
||||
$paiement->addPaymentToBank($user,'payment',$label,$conf->global->STRIPE_BANK_ACCOUNT_FOR_PAYMENTS,'','');
|
||||
if ($result < 0)
|
||||
{
|
||||
$msg=$paiement->errors;
|
||||
$error++;
|
||||
}
|
||||
$invoice->set_paid($user);
|
||||
}
|
||||
|
||||
$body = "";
|
||||
$subject = 'Facture '.$invoice->ref;
|
||||
$headers = 'From: "'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'" <'.$conf->global->MAIN_INFO_SOCIETE_MAIL.'>';
|
||||
//mail('ptibogxiv@msn.com', $subject, $body, $headers); TODO convert in dolibarr standard
|
||||
}
|
||||
elseif ($event->type == 'customer.deleted') {
|
||||
$db->begin();
|
||||
$sql = "DELETE FROM ".MAIN_DB_PREFIX."societe_stripe WHERE fk_key = '".$event->data->object->id."' ";
|
||||
dol_syslog(get_class($this) . "::delete sql=" . $sql, LOG_DEBUG);
|
||||
$db->query($sql);
|
||||
$db->commit();
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
@ -191,11 +191,21 @@ if (empty($conf->stripeconnect->enabled))
|
||||
print ' '.$langs->trans("Example").': whsec_xxxxxxxxxxxxxxxxxxxxxxxx';
|
||||
print '</td></tr>';
|
||||
|
||||
print '<tr class="oddeven"><td>';
|
||||
print '<span class="fieldrequired">'.$langs->trans("STRIPE_LIVE_PUBLISHABLE_KEY").'</span></td><td>';
|
||||
print '<input class="minwidth300" type="text" name="STRIPE_LIVE_PUBLISHABLE_KEY" value="'.$conf->global->STRIPE_LIVE_PUBLISHABLE_KEY.'">';
|
||||
print ' '.$langs->trans("Example").': pk_live_xxxxxxxxxxxxxxxxxxxxxxxx';
|
||||
print '</td></tr>';
|
||||
print '<tr class="oddeven"><td>';
|
||||
print '<span>'.$langs->trans("STRIPE_LIVE_WEBHOOK_KEY").'</span></td><td>';
|
||||
print '<input class="minwidth300" type="text" name="STRIPE_LIVE_WEBHOOK_KEY" value="'.$conf->global->STRIPE_LIVE_WEBHOOK_KEY.'">';
|
||||
print ' '.$langs->trans("Example").': whsec_xxxxxxxxxxxxxxxxxxxxxxxx';
|
||||
print '</td></tr>';
|
||||
} else {
|
||||
print '<tr class="oddeven"><td>'.$langs->trans("StripeConnect").'</td>';
|
||||
print '<td><b>'.$langs->trans("StripeConnect_Mode").'</b><br/>';
|
||||
print $langs->trans("STRIPE_APPLICATION_FEE_PLATFORM").' ';
|
||||
print price($conf->global->STRIPE_APPLICATION_FEE_PERCENT);
|
||||
print '% + ';
|
||||
print price($conf->global->STRIPE_APPLICATION_FEE);
|
||||
print ' '.$langs->getCurrencySymbol($conf->currency).' '.$langs->trans("minimum").' '.price($conf->global->STRIPE_APPLICATION_FEE_MINIMAL).' '.$langs->getCurrencySymbol($conf->currency).' </td></tr>';
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
print '<tr class="oddeven"><td>';
|
||||
print '<span class="fieldrequired">'.$langs->trans("STRIPE_LIVE_SECRET_KEY").'</span></td><td>';
|
||||
|
||||
217
htdocs/stripe/class/actions_stripe.class.php
Normal file
217
htdocs/stripe/class/actions_stripe.class.php
Normal file
@ -0,0 +1,217 @@
|
||||
<?php
|
||||
/* Copyright (C) 2009-2016 Regis Houssin <regis@dolibarr.fr>
|
||||
* Copyright (C) 2011 Herve Prot <herve.prot@symeos.com>
|
||||
* Copyright (C) 2014 Philippe Grand <philippe.grand@atoo-net.com>
|
||||
*
|
||||
* 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, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdocs/multicompany/actions_multicompany.class.php
|
||||
* \ingroup multicompany
|
||||
* \brief File Class multicompany
|
||||
*/
|
||||
require_once DOL_DOCUMENT_ROOT.'/stripe/class/stripe.class.php';;
|
||||
$langs->load("stripe@stripe");
|
||||
|
||||
/**
|
||||
* \class ActionsMulticompany
|
||||
* \brief Class Actions of the module multicompany
|
||||
*/
|
||||
class ActionsStripeconnect
|
||||
{
|
||||
/** @var DoliDB */
|
||||
var $db;
|
||||
|
||||
private $config=array();
|
||||
|
||||
// For Hookmanager return
|
||||
var $resprints;
|
||||
var $results=array();
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param DoliDB $db Database handler
|
||||
*/
|
||||
function __construct($db)
|
||||
{
|
||||
$this->db = $db;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function formObjectOptions($parameters=false, &$object, &$action='')
|
||||
{
|
||||
global $db,$conf,$user,$langs,$form;
|
||||
|
||||
if (! empty($conf->stripe->enabled) && (empty($conf->global->STRIPE_LIVE) || empty($conf->global->STRIPECONNECT_LIVE) || GETPOST('forcesandbox','alpha')))
|
||||
{
|
||||
$service = 'StripeTest';
|
||||
dol_htmloutput_mesg($langs->trans('YouAreCurrentlyInSandboxMode','Stripe'),'','warning');
|
||||
}
|
||||
else
|
||||
{
|
||||
$service = 'StripeLive';
|
||||
}
|
||||
|
||||
if (is_array($parameters) && ! empty($parameters))
|
||||
{
|
||||
foreach($parameters as $key=>$value)
|
||||
{
|
||||
$key=$value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (is_object($object) && $object->element == 'societe')
|
||||
{
|
||||
$this->resprints.= '<tr><td>';
|
||||
$this->resprints.= '<table width="100%" class="nobordernopadding"><tr><td>';
|
||||
$this->resprints.= $langs->trans('StripeCustomer');
|
||||
$this->resprints.= '<td><td align="right">';
|
||||
// $this->resprints.= '<a href="'.$dolibarr_main_url_root.dol_buildpath('/dolipress/card.php?socid='.$object->id, 1).'">'.img_edit().'</a>';
|
||||
$this->resprints.= '</td></tr></table>';
|
||||
$this->resprints.= '</td>';
|
||||
$this->resprints.= '<td colspan="3">';
|
||||
$stripe=new Stripe($db);
|
||||
if ($stripe->getStripeAccount($service)&&$object->client!=0) {
|
||||
$customer=$stripe->customerStripe($object->id,$stripe->getStripeAccount($service));
|
||||
$this->resprints.= $customer->id;
|
||||
}
|
||||
else {
|
||||
$this->resprints.= $langs->trans("NoStripe");
|
||||
}
|
||||
$this->resprints.= '</td></tr>';
|
||||
|
||||
}
|
||||
elseif (is_object($object) && $object->element == 'member'){
|
||||
$this->resprints.= '<tr><td>';
|
||||
$this->resprints.= '<table width="100%" class="nobordernopadding"><tr><td>';
|
||||
$this->resprints.= $langs->trans('StripeCustomer');
|
||||
$this->resprints.= '<td><td align="right">';
|
||||
$this->resprints.= '</td></tr></table>';
|
||||
$this->resprints.= '</td>';
|
||||
$this->resprints.= '<td colspan="3">';
|
||||
$stripe=new Stripe($db);
|
||||
if ($stripe->getStripeAccount($service)&&$object->fk_soc>'0') {
|
||||
$customer=$stripe->customerStripe($object->fk_soc,$stripe->getStripeAccount($service));
|
||||
$this->resprints.= $customer->id;
|
||||
}
|
||||
else {
|
||||
$this->resprints.= $langs->trans("NoStripe");
|
||||
}
|
||||
$this->resprints.= '</td></tr>';
|
||||
|
||||
$this->resprints.= '<tr><td>';
|
||||
$this->resprints.= '<table width="100%" class="nobordernopadding"><tr><td>';
|
||||
$this->resprints.= $langs->trans('SubscriptionStripe');
|
||||
$this->resprints.= '<td><td align="right">';
|
||||
$this->resprints.= '</td></tr></table>';
|
||||
$this->resprints.= '</td>';
|
||||
$this->resprints.= '<td colspan="3">';
|
||||
$stripe=new Stripe($db);
|
||||
if (7==4) {
|
||||
$customer=$stripe->customerStripe($object->id,$stripe->getStripeAccount($service));
|
||||
$this->resprints.= $customer->id;
|
||||
}
|
||||
else {
|
||||
$this->resprints.= $langs->trans("NoStripe");
|
||||
}
|
||||
$this->resprints.= '</td></tr>';
|
||||
}
|
||||
elseif (is_object($object) && $object->element == 'adherent_type'){
|
||||
$this->resprints.= '<tr><td>';
|
||||
$this->resprints.= '<table width="100%" class="nobordernopadding"><tr><td>';
|
||||
$this->resprints.= $langs->trans('PlanStripe');
|
||||
$this->resprints.= '<td><td align="right">';
|
||||
// $this->resprints.= '<a href="'.$dolibarr_main_url_root.dol_buildpath('/dolipress/card.php?socid='.$object->id, 1).'">'.img_edit().'</a>';
|
||||
$this->resprints.= '</td></tr></table>';
|
||||
$this->resprints.= '</td>';
|
||||
$this->resprints.= '<td colspan="3">';
|
||||
$stripe=new Stripe($db);
|
||||
if (7==4) {
|
||||
$customer=$stripe->customerStripe($object->id,$stripe->getStripeAccount($service));
|
||||
$this->resprints.= $customer->id;
|
||||
}
|
||||
else {
|
||||
$this->resprints.= $langs->trans("NoStripe");
|
||||
}
|
||||
$this->resprints.= '</td></tr>';
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
function addMoreActionsButtons($parameters=false, &$object, &$action='')
|
||||
{
|
||||
global $db,$conf,$user,$langs,$form;
|
||||
if (is_object($object) && $object->element == 'facture'){
|
||||
// On verifie si la facture a des paiements
|
||||
$sql = 'SELECT pf.amount';
|
||||
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'paiement_facture as pf';
|
||||
$sql .= ' WHERE pf.fk_facture = ' . $object->id;
|
||||
|
||||
$result = $db->query($sql);
|
||||
if ($result) {
|
||||
$i = 0;
|
||||
$num = $db->num_rows($result);
|
||||
|
||||
while ($i < $num) {
|
||||
$objp = $db->fetch_object($result);
|
||||
$totalpaye += $objp->amount;
|
||||
$i ++;
|
||||
}
|
||||
} else {
|
||||
dol_print_error($db, '');
|
||||
}
|
||||
|
||||
$resteapayer = $object->total_ttc - $totalpaye;
|
||||
// Request a direct debit order
|
||||
if ($object->statut > Facture::STATUS_DRAFT && $object->statut < Facture::STATUS_ABANDONED && $object->paye == 0)
|
||||
{ $stripe=new Stripe($db);
|
||||
if ($resteapayer > 0)
|
||||
{
|
||||
if ($stripe->getStripeAccount($conf->entity)) // a modifier avec droit stripe
|
||||
{
|
||||
$langs->load("withdrawals");
|
||||
print '<a class="butActionDelete" href="'.dol_buildpath('/stripeconnect/payment.php?facid='.$object->id.'&action=create', 1).'" title="'.dol_escape_htmltag($langs->trans("StripeConnectPay")).'">'.$langs->trans("StripeConnectPay").'</a>';
|
||||
}
|
||||
else
|
||||
{
|
||||
print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("StripeConnectPay").'</a>';
|
||||
}
|
||||
}
|
||||
elseif ($resteapayer == 0)
|
||||
{
|
||||
print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("StripeConnectPay").'</a>';
|
||||
}
|
||||
}
|
||||
else {
|
||||
print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->trans("NotEnoughPermissions")).'">'.$langs->trans("StripeConnectPay").'</a>';
|
||||
}
|
||||
}
|
||||
elseif (is_object($object) && $object->element == 'invoice_supplier'){
|
||||
print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->trans("StripeConnectPay")).'">'.$langs->trans("StripeConnectPay").'</a>';
|
||||
}
|
||||
elseif (is_object($object) && $object->element == 'member'){
|
||||
print '<a class="butActionRefused" href="#" title="'.dol_escape_htmltag($langs->trans("StripeAutoSubscription")).'">'.$langs->trans("StripeAutoSubscription").'</a>';
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
@ -65,4 +65,4 @@ require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
|
||||
|
||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
|
||||
|
||||
\Stripe\Stripe::setAppInfo("Stripe", "dolibarr version", "https://www.dolibarr.org"); // add dolibarr version
|
||||
\Stripe\Stripe::setAppInfo("Stripe", DOL_VERSION, "https://www.dolibarr.org"); // add dolibarr version
|
||||
|
||||
Loading…
Reference in New Issue
Block a user