dolibarr  20.0.0-beta
payout.php
1 <?php
2 /* Copyright (C) 2018-2023 Thibault FOUCART <support@ptibogxiv.net>
3  * Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
19 // Put here all includes required by your class file
20 
21 // Load Dolibarr environment
22 require '../main.inc.php';
23 require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
24 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
25 require_once DOL_DOCUMENT_ROOT.'/stripe/class/stripe.class.php';
26 //require_once DOL_DOCUMENT_ROOT.'/core/lib/stripe.lib.php';
27 require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
28 require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
29 require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
30 if (isModEnabled('accounting')) {
31  require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingjournal.class.php';
32 }
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array('compta', 'salaries', 'bills', 'hrm', 'stripe'));
36 
37 // Security check
38 $socid = GETPOSTINT("socid");
39 if ($user->socid) {
40  $socid = $user->socid;
41 }
42 //$result = restrictedArea($user, 'salaries', '', '', '');
43 
44 $limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
45 $rowid = GETPOST("rowid", 'alpha');
46 $sortfield = GETPOST('sortfield', 'aZ09comma');
47 $sortorder = GETPOST('sortorder', 'aZ09comma');
48 $page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
49 if (empty($page) || $page == -1) {
50  $page = 0;
51 } // If $page is not defined, or '' or -1
52 $offset = $limit * $page;
53 $pageprev = $page - 1;
54 $pagenext = $page + 1;
55 $optioncss = GETPOST('optioncss', 'alpha');
56 $param = "";
57 $num = 0;
58 
59 $result = restrictedArea($user, 'banque');
60 
61 
62 /*
63  * View
64  */
65 
66 $form = new Form($db);
67 $acc = new Account($db);
68 $stripe = new Stripe($db);
69 
70 llxHeader('', $langs->trans("StripePayoutList"));
71 
72 if (isModEnabled('stripe') && (!getDolGlobalString('STRIPE_LIVE') || GETPOST('forcesandbox', 'alpha'))) {
73  $service = 'StripeTest';
74  $servicestatus = '0';
75  dol_htmloutput_mesg($langs->trans('YouAreCurrentlyInSandboxMode', 'Stripe'), '', 'warning');
76 } else {
77  $service = 'StripeLive';
78  $servicestatus = '1';
79 }
80 
81 $stripeacc = $stripe->getStripeAccount($service);
82 /*if (empty($stripeaccount))
83 {
84  print $langs->trans('ErrorStripeAccountNotDefined');
85 }*/
86 
87 $moreforfilter = '';
88 $totalnboflines = -1;
89 
90 if (!$rowid) {
91  print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
92  if ($optioncss != '') {
93  print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
94  }
95  print '<input type="hidden" name="token" value="'.newToken().'">';
96  print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
97  print '<input type="hidden" name="action" value="list">';
98  print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
99  print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
100  print '<input type="hidden" name="page" value="'.$page.'">';
101 
102  $title = $langs->trans("StripePayoutList");
103  $title .= ($stripeacc ? ' (Stripe connection with Stripe OAuth Connect account '.$stripeacc.')' : ' (Stripe connection with keys from Stripe module setup)');
104 
105  print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $totalnboflines, 'title_accountancy.png', 0, '', '', $limit);
106 
107  print '<div class="div-table-responsive">';
108  print '<table class="tagtable liste'.(!empty($moreforfilter) ? " listwithfilterbefore" : "").'">'."\n";
109 
110  print '<tr class="liste_titre">';
111  print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "", "", "", "", $sortfield, $sortorder);
112  print_liste_field_titre("DatePayment", $_SERVER["PHP_SELF"], "", "", "", '', $sortfield, $sortorder, 'center ');
113  print_liste_field_titre("DateOperation", $_SERVER["PHP_SELF"], "", "", "", '', $sortfield, $sortorder, 'center ');
114  print_liste_field_titre("Description", $_SERVER["PHP_SELF"], "", "", "", '', $sortfield, $sortorder, 'left ');
115  print_liste_field_titre("Paid", $_SERVER["PHP_SELF"], "", "", "", '', $sortfield, $sortorder, 'right ');
116  print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "", "", "", '', '', '', 'right ');
117  print "</tr>\n";
118 
119  print "</tr>\n";
120 
121  try {
122  if ($stripeacc) {
123  $payout = \Stripe\Payout::all(array("limit" => $limit), array("stripe_account" => $stripeacc));
124  } else {
125  $payout = \Stripe\Payout::all(array("limit" => $limit));
126  }
127 
128  foreach ($payout->data as $payout) {
129  print '<tr class="oddeven">';
130 
131  // Ref
132  if (!empty($stripeacc)) {
133  $connect = $stripeacc.'/';
134  } else {
135  $connect = null;
136  }
137 
138  $url = 'https://dashboard.stripe.com/'.$connect.'test/payouts/'.$payout->id;
139  if ($servicestatus) {
140  $url = 'https://dashboard.stripe.com/'.$connect.'payouts/'.$payout->id;
141  }
142 
143  print "<td><a href='".$url."' target='_stripe'>".img_picto($langs->trans('ShowInStripe'), 'globe')." ".$payout->id."</a></td>\n";
144 
145  // Date payment
146  print '<td class="center">'.dol_print_date($payout->created, 'dayhour')."</td>\n";
147  // Date payment
148  print '<td class="center">'.dol_print_date($payout->arrival_date, 'dayhour')."</td>\n";
149  // Type
150  print '<td>'.$payout->description.'</td>';
151  // Amount
152  print '<td class="right"><span class="amount">'.price(($payout->amount) / 100, 0, '', 1, -1, -1, strtoupper($payout->currency))."</span></td>";
153  // Status
154  print "<td class='right'>";
155  if ($payout->status == 'paid') {
156  print img_picto($langs->trans($payout->status), 'statut4');
157  } elseif ($payout->status == 'pending') {
158  print img_picto($langs->trans($payout->status), 'statut7');
159  } elseif ($payout->status == 'in_transit') {
160  print img_picto($langs->trans($payout->status), 'statut7');
161  } elseif ($payout->status == 'failed') {
162  print img_picto($langs->trans($payout->status), 'statut7');
163  } elseif ($payout->status == 'canceled') {
164  print img_picto($langs->trans($payout->status), 'statut8');
165  }
166  print '</td>';
167  print "</tr>\n";
168  }
169  } catch (Exception $e) {
170  print '<tr><td colspan="6">'.$e->getMessage().'</td></td>';
171  }
172  print "</table>";
173  print '</div>';
174  print '</form>';
175 }
176 
177 // End of page
178 llxFooter();
179 $db->close();
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:55
llxFooter()
Empty footer.
Definition: wrapper.php:69
Class to manage bank accounts.
Class to manage generation of HTML components Only common components must be here.
Stripe class @TODO No reason to extends CommonObject.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
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.
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $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, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
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).
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
getDolGlobalString($key, $default='')
Return 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.