23require
'../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/stripe/class/stripe.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/commande/class/commande.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
39 require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingjournal.class.php';
43$langs->loadLangs(array(
'compta',
'salaries',
'bills',
'hrm',
'stripe'));
48 $socid = $user->socid;
53$rowid =
GETPOST(
"rowid",
'alpha');
54$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
55$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
57if (empty($page) || $page == -1) {
60$offset = $limit * $page;
65$optioncss =
GETPOST(
'optioncss',
'alpha');
78llxHeader(
'', $langs->trans(
"StripeChargeList"));
81 $service =
'StripeTest';
83 dol_htmloutput_mesg($langs->trans(
'YouAreCurrentlyInSandboxMode',
'Stripe'), [],
'warning');
85 $service =
'StripeLive';
89$stripeacc = $stripe->getStripeAccount($service);
96 $option = array(
'limit' => $limit + 1);
100 $totalnboflines =
'';
103 if (GETPOSTISSET(
'starting_after_'.$page)) {
104 $option[
'starting_after'] =
GETPOST(
'starting_after_'.$page,
'alphanohtml');
106 print
'<form method="POST" action="'.dolBuildUrl($_SERVER[
"PHP_SELF"]).
'">';
107 if ($optioncss !=
'') {
108 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
111 print
'<input type="hidden" name="token" value="'.newToken().
'">';
112 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
113 print
'<input type="hidden" name="action" value="list">';
114 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
115 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
116 print
'<input type="hidden" name="page" value="'.$page.
'">';
118 $title = $langs->trans(
"StripeChargeList");
119 $title .= $form->textwithpicto(
'', $stripeacc ?
' (Stripe connection with Stripe OAuth Connect account '.$stripeacc.
')' :
' (Stripe connection with keys from Stripe module setup)');
121 print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder,
'', $num, $totalnboflines,
'title_accountancy.png', 0,
'',
'hidepaginationprevious', $limit);
123 print
'<div class="div-table-responsive">';
124 print
'<table class="tagtable liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
126 print
'<tr class="liste_titre">';
131 print_liste_field_titre(
"DatePayment", $_SERVER[
"PHP_SELF"],
"",
"",
"",
'', $sortfield, $sortorder,
'center ');
139 $list = \Stripe\Charge::all($option, array(
"stripe_account" => $stripeacc));
141 $list = \Stripe\Charge::all($option);
144 '@phan-var-force \Stripe\Charge $list';
145 $num = count($list->data);
149 if ($limit > 0 && $limit !=
$conf->liste_limit) {
150 $param .=
'&limit='.((int) $limit);
152 $param .=
'&starting_after_'.($page + 1).
'='.$list->data[($limit - 1)]->id;
155 print
'<tr><td colspan="8">'.$e->getMessage().
'</td></td>';
161 foreach ($list->data as $charge) {
162 '@phan-var-force \Stripe\Charge $charge';
168 if ($charge->refunded ==
'1') {
169 $status =
img_picto($langs->trans(
"refunded"),
'statut6');
170 } elseif ($charge->paid ==
'1') {
171 $status =
img_picto($langs->trans((
string) $charge->status),
'statut4');
172 } elseif (empty($charge->failure_message)) {
173 $label .= $langs->trans(
"Network").
": ".$charge->outcome->network_status.
"<br>";
174 $label .= $langs->trans(
"Status").
": ".$langs->trans((
string) $charge->outcome->seller_message);
175 $status = $form->textwithpicto(
img_picto($langs->trans((
string) $charge->status),
'statut4'), $label, 1);
177 $label .= $langs->trans(
"Error").
": ".$charge->failure_message.
"<br>";
178 $label .= $langs->trans(
"Network").
": ".$charge->outcome->network_status.
"<br>";
179 $label .= $langs->trans(
"Status").
": ".$langs->trans((
string) $charge->outcome->seller_message);
180 $status = $form->textwithpicto(
img_picto($langs->trans((
string) $charge->status),
'statut8'), $label, 1);
183 if (isset($charge->payment_method_details->type) && $charge->payment_method_details->type ==
'card') {
184 $type = $langs->trans(
"card");
185 } elseif (isset($charge->source->type) && $charge->source->type ==
'card') {
186 $type = $langs->trans(
"card");
187 } elseif (isset($charge->payment_method_details->type) && $charge->payment_method_details->type ==
'three_d_secure') {
188 $type = $langs->trans(
"card3DS");
189 } elseif (isset($charge->payment_method_details->type) && $charge->payment_method_details->type ==
'sepa_debit') {
190 $type = $langs->trans(
"sepadebit");
191 } elseif (isset($charge->payment_method_details->type) && $charge->payment_method_details->type ==
'ideal') {
192 $type = $langs->trans(
"iDEAL");
207 $FULLTAG = $charge->metadata->FULLTAG;
212 if (!empty($tmparray[
'CUS']) && (
int) $tmparray[
'CUS'] > 0) {
213 $societestatic->fetch((
int) $tmparray[
'CUS']);
214 } elseif (!empty($charge->metadata->dol_thirdparty_id) && $charge->metadata->dol_thirdparty_id > 0) {
215 $societestatic->fetch($charge->metadata->dol_thirdparty_id);
217 $societestatic->id = 0;
219 if (!empty($tmparray[
'MEM']) && (
int) $tmparray[
'MEM'] > 0) {
220 $memberstatic->fetch((
int) $tmparray[
'MEM']);
222 $memberstatic->id = 0;
225 print
'<tr class="oddeven">';
227 if (!empty($stripeacc)) {
228 $connect = $stripeacc.
'/';
234 $url =
'https://dashboard.stripe.com/'.$connect.
'test/payments/'.$charge->id;
235 if ($servicestatus) {
236 $url =
'https://dashboard.stripe.com/'.$connect.
'payments/'.$charge->id;
238 print
'<td class="tdoverflowmax150">';
239 print
"<a href='".$url.
"' target='_stripe'>".
img_picto($langs->trans(
'ShowInStripe'),
'globe').
" ".$charge->id.
"</a>";
240 if ($charge->payment_intent) {
241 print
'<br><span class="opacitymedium">'.$charge->payment_intent.
'</span>';
246 print
'<td class="tdoverflowmax150">';
248 $connect = $stripeacc.
'/';
250 $url =
'https://dashboard.stripe.com/'.$connect.
'test/customers/'.$charge->customer;
251 if ($servicestatus) {
252 $url =
'https://dashboard.stripe.com/'.$connect.
'customers/'.$charge->customer;
254 if (!empty($charge->customer)) {
255 print
'<a href="'.$url.
'" target="_stripe">'.
img_picto($langs->trans(
'ShowInStripe'),
'globe').
' '.$charge->customer.
'</a>';
260 print
'<td class="tdoverflowmax200">';
261 if ($societestatic->id > 0) {
262 print $societestatic->getNomUrl(1);
263 } elseif ($memberstatic->id > 0) {
264 print $memberstatic->getNomUrl(1);
269 print
'<td class="nowraponall">';
270 if ($charge->metadata->dol_type ==
"order" || $charge->metadata->dol_type ==
"commande") {
272 $object->fetch($charge->metadata->dol_id);
274 print
"<a href='".DOL_URL_ROOT.
"/commande/card.php?id=".
$object->id.
"'>".
img_picto(
'',
'order').
" ".
$object->ref.
"</a>";
278 } elseif ($charge->metadata->dol_type ==
"invoice" || $charge->metadata->dol_type ==
"facture") {
280 $object->fetch($charge->metadata->dol_id);
282 print
"<a href='".DOL_URL_ROOT.
"/compta/facture/card.php?facid=".$charge->metadata->dol_id.
"'>".
img_picto(
'',
'bill').
" ".
$object->ref.
"</a>";
292 print
'<td class="center nowraponall">'.dol_print_date($charge->created,
'dayhour').
"</td>\n";
298 print
'<td class="right"><span class="amount">'.price(($charge->amount - $charge->amount_refunded) / 100, 0,
'', 1, - 1, - 1, strtoupper($charge->currency)).
"</span></td>";
300 print
'<td class="nowraponall center">';
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage bank accounts.
Class to manage members of a foundation.
Class to manage customers orders.
Class to manage invoices.
Class to manage third parties objects (customers, suppliers, prospects...)
Stripe class @TODO No reason to extend CommonObject.
dolExplodeIntoArray($string, $delimiter=';', $kv='=')
Split a string with 2 keys into key array.
print_liste_field_titre($name, $file="", $field="", $begin="", $param="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_htmloutput_mesg($mesgstring='', $mesgarray=array(), $style='ok', $keepembedded=0)
Print formatted messages to output (Used to show messages on html output).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.