diff --git a/htdocs/adherents/fiche_subscription.php b/htdocs/adherents/fiche_subscription.php
new file mode 100644
index 00000000000..92e016e1d93
--- /dev/null
+++ b/htdocs/adherents/fiche_subscription.php
@@ -0,0 +1,335 @@
+
+ *
+ * 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 2 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.
+ *
+ * $Id$
+ * $Source$
+ */
+
+/**
+ \file htdocs/adherents/fiche_subscription.php
+ \ingroup adherent
+ \brief Page d'ajout, edition, suppression d'une fiche adhésion
+ \version $Revision$
+*/
+
+require("./pre.inc.php");
+require_once(DOL_DOCUMENT_ROOT."/lib/member.lib.php");
+require_once(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
+require_once(DOL_DOCUMENT_ROOT."/adherents/cotisation.class.php");
+require_once(DOL_DOCUMENT_ROOT."/compta/bank/account.class.php");
+
+$langs->load("companies");
+$langs->load("bills");
+$langs->load("members");
+$langs->load("users");
+
+$user->getrights('adherent');
+
+$adh = new Adherent($db);
+$subscription = new Cotisation($db);
+$errmsg='';
+
+$action=isset($_GET["action"])?$_GET["action"]:$_POST["action"];
+$rowid=isset($_GET["rowid"])?$_GET["rowid"]:$_POST["rowid"];
+$typeid=isset($_GET["typeid"])?$_GET["typeid"]:$_POST["typeid"];
+
+if (! $user->rights->adherent->cotisation->lire)
+ accessforbidden();
+
+/*
+ * Actions
+ */
+
+if ($user->rights->adherent->cotisation->creer && $_REQUEST["action"] == 'update' && ! $_POST["cancel"])
+{
+ // Charge objet actuel
+ $result=$subscription->fetch($_POST["rowid"]);
+ if ($result > 0)
+ {
+ // Modifie valeures
+
+
+ $result=$subscription->update($user,0);
+ if ($result >= 0 && ! sizeof($subscription->errors))
+ {
+ Header("Location: fiche_subscription.php?rowid=".$subscription->id);
+ exit;
+ }
+ else
+ {
+ if ($adh->error)
+ {
+ $errmsg=$adh->error;
+ }
+ else
+ {
+ foreach($adh->errors as $error)
+ {
+ if ($errmsg) $errmsg.='
';
+ $errmsg.=$error;
+ }
+ }
+ $action='';
+ }
+ }
+}
+
+if ($user->rights->adherent->cotisation->creer && $_POST["action"] == 'confirm_delete' && $_POST["confirm"] == 'yes')
+{
+ $result=$subscription->fetch($rowid);
+ $result=$subscription->delete($rowid);
+ if ($result > 0)
+ {
+ Header("Location: card_subscriptions.php?rowid=".$subscription->fk_adherent);
+ exit;
+ }
+ else
+ {
+ $mesg=$adh->error;
+ }
+}
+
+
+
+/*
+ *
+ */
+
+llxHeader();
+
+
+if ($errmsg)
+{
+ print '