diff --git a/scripts/bank/export-bank-receipts.php b/scripts/bank/export-bank-receipts.php
new file mode 100755
index 00000000000..15f1e53d767
--- /dev/null
+++ b/scripts/bank/export-bank-receipts.php
@@ -0,0 +1,301 @@
+#!/usr/bin/php
+
+ *
+ * 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 scripts/bank/export-bank-receipts.php
+ * \ingroup bank
+ * \brief Script file to export bank receipts into Excel files
+ */
+
+$sapi_type = php_sapi_name();
+$script_file = basename(__FILE__);
+$path=dirname(__FILE__).'/';
+
+// Test if batch mode
+if (substr($sapi_type, 0, 3) == 'cgi') {
+ echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
+ exit;
+}
+
+if (! isset($argv[2]) || ! $argv[2]) {
+ print "Usage: $script_file bank_receipt_number (csv|tsv|excel|excel2007)\n";
+ exit;
+}
+$num=$argv[1];
+$model=$argv[2];
+
+// Recupere env dolibarr
+$version='1.10';
+
+require_once($path."../../htdocs/master.inc.php");
+require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
+require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
+require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
+require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
+require_once DOL_DOCUMENT_ROOT.'/compta/sociales/class/chargesociales.class.php';
+require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
+require_once DOL_DOCUMENT_ROOT.'/compta/tva/class/tva.class.php';
+require_once DOL_DOCUMENT_ROOT.'/fourn/class/paiementfourn.class.php';
+require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
+
+
+
+$societestatic=new Societe($db);
+$chargestatic=new ChargeSociales($db);
+$memberstatic=new Adherent($db);
+$paymentstatic=new Paiement($db);
+$paymentsupplierstatic=new PaiementFourn($db);
+$paymentvatstatic=new TVA($db);
+$bankstatic=new Account($db);
+$banklinestatic=new AccountLine($db);
+
+
+$dirname = $conf->banque->dir_temp;
+$filename = 'export-bank-receipts-'.$num.'.xls';
+
+
+// Creation de la classe d'export du model ExportXXX
+$dir = DOL_DOCUMENT_ROOT . "/core/modules/export/";
+$file = "export_".$model.".modules.php";
+$classname = "Export".$model;
+if (! dol_is_file($dir.$file))
+{
+ print "No driver to export with format ".$model."\n";
+ exit;
+}
+require_once $dir.$file;
+$objmodel = new $classname($db);
+
+
+// Open file
+print 'Create file '.$filename.' into directory '.$dirname."\n";
+dol_mkdir($dirname);
+$result=$objmodel->open_file($dirname."/".$filename, $langs);
+
+if ($result >= 0)
+{
+ // Genere en-tete
+ $objmodel->write_header($outputlangs);
+
+ // Genere ligne de titre
+ $objmodel->write_title($this->array_export_fields[$indice],$array_selected,$outputlangs);
+
+
+ // Recherche les ecritures pour le releve
+ $sql = "SELECT b.rowid, b.dateo as do, b.datev as dv,";
+ $sql.= " b.amount, b.label, b.rappro, b.num_releve, b.num_chq, b.fk_type,";
+ $sql.= " ba.rowid as bankid, ba.ref as bankref, ba.label as banklabel";
+ $sql.= " FROM ".MAIN_DB_PREFIX."bank_account as ba";
+ $sql.= ", ".MAIN_DB_PREFIX."bank as b";
+ $sql.= " WHERE b.num_releve='".$db->escape($num)."'";
+ if (!isset($num)) $sql.= " OR b.num_releve is null";
+ $sql.= " AND b.fk_account = ".$acct->id;
+ $sql.= " AND b.fk_account = ba.rowid";
+ $sql.= $db->order("b.datev, b.datec", "ASC"); // We add date of creation to have correct order when everything is done the same day
+
+ $resql=$db->query($sql);
+ if ($resql)
+ {
+ $num = $db->num_rows($resql);
+
+ print "Lines ".$num."\n";
+
+ while ($i < $numrows)
+ {
+ $objp = $db->fetch_object($result);
+ $total = $total + $objp->amount;
+
+ $var=!$var;
+ print "
";
+
+ // Date operation
+ print '| '.dol_print_date($db->jdate($objp->do),"day").' | ';
+
+ // Date de valeur
+ print '';
+ print '';
+ print img_previous().' ';
+ print dol_print_date($db->jdate($objp->dv),"day") .' ';
+ print '';
+ print img_next().'';
+ print " | \n";
+
+ // Num cheque
+ print ''.$objp->fk_type.' '.($objp->num_chq?$objp->num_chq:'').' | ';
+
+ // Libelle
+ print '';
+ $reg=array();
+ preg_match('/\((.+)\)/i',$objp->label,$reg); // Si texte entoure de parenthese on tente recherche de traduction
+ if ($reg[1] && $langs->trans($reg[1])!=$reg[1]) print $langs->trans($reg[1]);
+ else print $objp->label;
+ print '';
+
+ /*
+ * Ajout les liens (societe, company...)
+ */
+ $newline=1;
+ $links = $acct->get_url($objp->rowid);
+ foreach($links as $key=>$val)
+ {
+ if (! $newline) print ' - ';
+ else print ' ';
+ if ($links[$key]['type']=='payment')
+ {
+ $paymentstatic->id=$links[$key]['url_id'];
+ $paymentstatic->ref=$langs->trans("Payment");
+ print ' '.$paymentstatic->getNomUrl(1);
+ $newline=0;
+ }
+ elseif ($links[$key]['type']=='payment_supplier')
+ {
+ $paymentsupplierstatic->id=$links[$key]['url_id'];
+ $paymentsupplierstatic->ref=$langs->trans("Payment");;
+ print ' '.$paymentsupplierstatic->getNomUrl(1);
+ $newline=0;
+ }
+ elseif ($links[$key]['type']=='payment_sc')
+ {
+ print '';
+ print ' '.img_object($langs->trans('ShowPayment'),'payment').' ';
+ print $langs->trans("SocialContributionPayment");
+ print '';
+ $newline=0;
+ }
+ elseif ($links[$key]['type']=='payment_vat')
+ {
+ $paymentvatstatic->id=$links[$key]['url_id'];
+ $paymentvatstatic->ref=$langs->trans("Payment");
+ print ' '.$paymentvatstatic->getNomUrl(2);
+ }
+ elseif ($links[$key]['type']=='banktransfert') {
+ // Do not show link to transfer since there is no transfer card (avoid confusion). Can already be accessed from transaction detail.
+ if ($objp->amount > 0)
+ {
+ $banklinestatic->fetch($links[$key]['url_id']);
+ $bankstatic->id=$banklinestatic->fk_account;
+ $bankstatic->label=$banklinestatic->bank_account_label;
+ print ' ('.$langs->trans("from").' ';
+ print $bankstatic->getNomUrl(1,'transactions');
+ print ' '.$langs->trans("toward").' ';
+ $bankstatic->id=$objp->bankid;
+ $bankstatic->label=$objp->bankref;
+ print $bankstatic->getNomUrl(1,'');
+ print ')';
+ }
+ else
+ {
+ $bankstatic->id=$objp->bankid;
+ $bankstatic->label=$objp->bankref;
+ print ' ('.$langs->trans("from").' ';
+ print $bankstatic->getNomUrl(1,'');
+ print ' '.$langs->trans("toward").' ';
+ $banklinestatic->fetch($links[$key]['url_id']);
+ $bankstatic->id=$banklinestatic->fk_account;
+ $bankstatic->label=$banklinestatic->bank_account_label;
+ print $bankstatic->getNomUrl(1,'transactions');
+ print ')';
+ }
+ }
+ elseif ($links[$key]['type']=='company') {
+ print '';
+ print img_object($langs->trans('ShowCustomer'),'company').' ';
+ print dol_trunc($links[$key]['label'],24);
+ print '';
+ $newline=0;
+ }
+ elseif ($links[$key]['type']=='member') {
+ print '';
+ print img_object($langs->trans('ShowMember'),'user').' ';
+ print $links[$key]['label'];
+ print '';
+ $newline=0;
+ }
+ elseif ($links[$key]['type']=='sc') {
+ print '';
+ print img_object($langs->trans('ShowBill'),'bill').' ';
+ print $langs->trans("SocialContribution");
+ print '';
+ $newline=0;
+ }
+ else {
+ print '';
+ print $links[$key]['label'];
+ print '';
+ $newline=0;
+ }
+ }
+
+
+ if ($objp->amount < 0)
+ {
+ $totald = $totald + abs($objp->amount);
+ print ' | '.price($objp->amount * -1)." | | \n";
+ }
+ else
+ {
+ $totalc = $totalc + abs($objp->amount);
+ print " | ".price($objp->amount)." | \n";
+ }
+
+ print "".price($total)." | \n";
+
+ if ($user->rights->banque->modifier || $user->rights->banque->consolidate)
+ {
+ print "rowid&account=".$acct->id."\">";
+ print img_edit();
+ print " | ";
+ }
+ else
+ {
+ print " | ";
+ }
+ print "
";
+ $i++;
+
+ // end of special operation processing
+ $objmodel->write_record($array_selected,$objp,$outputlangs,$this->array_export_TypeFields[$indice]);
+ }
+
+ }
+
+
+ // Genere en-tete
+ $objmodel->write_footer($outputlangs);
+
+ // Close file
+ $objmodel->close_file();
+
+ print 'File '.$filename.' was generated into dir '.$dirname.'.'."\n";
+
+ $ret=0;
+}
+else
+{
+ print 'Failed to create file '.$filename.' into dir '.$dirname.'.'."\n";
+
+ $ret=-1;
+}
+
+
+
+$db->close();
+
+return $ret;
+?>
\ No newline at end of file