mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-14 21:41:23 +01:00
359 lines
10 KiB
PHP
359 lines
10 KiB
PHP
<?php
|
|
/* Copyright (C) 2007-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/adherents/fiche_subscription.php
|
|
\ingroup adherent
|
|
\brief Page d'ajout, edition, suppression d'une fiche adhésion
|
|
\version $Id$
|
|
*/
|
|
|
|
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");
|
|
|
|
$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)
|
|
{
|
|
$db->begin();
|
|
|
|
$errmsg='';
|
|
|
|
if ($subscription->fk_bank)
|
|
{
|
|
$accountline=new AccountLine($db);
|
|
$result=$accountline->fetch($subscription->fk_bank);
|
|
|
|
// If transaction consolidated
|
|
if ($accountline->rappro)
|
|
{
|
|
$errmsg=$langs->trans("SubscriptionLinkedToConciliatedTrnasaction");
|
|
}
|
|
else
|
|
{
|
|
$accountline->datev=dolibarr_mktime($_POST['datesubhour'], $_POST['datesubmin'], 0, $_POST['datesubmonth'], $_POST['datesubday'], $_POST['datesubyear']);
|
|
$accountline->dateo=dolibarr_mktime($_POST['datesubhour'], $_POST['datesubmin'], 0, $_POST['datesubmonth'], $_POST['datesubday'], $_POST['datesubyear']);
|
|
$accountline->amount=$_POST["amount"];
|
|
$result=$accountline->update($user);
|
|
if ($result < 0)
|
|
{
|
|
$errmsg=$accountline->error;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (! $errmsg)
|
|
{
|
|
// Modifie valeures
|
|
$subscription->dateh=dolibarr_mktime($_POST['datesubhour'], $_POST['datesubmin'], 0, $_POST['datesubmonth'], $_POST['datesubday'], $_POST['datesubyear']);
|
|
$subscription->datef=dolibarr_mktime($_POST['datesubendhour'], $_POST['datesubendmin'], 0, $_POST['datesubendmonth'], $_POST['datesubendday'], $_POST['datesubendyear']);
|
|
$subscription->amount=$_POST["amount"];
|
|
//print 'datef='.$subscription->datef.' '.$_POST['datesubendday'];
|
|
|
|
$result=$subscription->update($user);
|
|
if ($result >= 0 && ! sizeof($subscription->errors))
|
|
{
|
|
$db->commit();
|
|
|
|
header("Location: fiche_subscription.php?rowid=".$subscription->id);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$db->rollback();
|
|
|
|
if ($subscription->error)
|
|
{
|
|
$errmsg=$subscription->error;
|
|
}
|
|
else
|
|
{
|
|
foreach($subscription->errors as $error)
|
|
{
|
|
if ($errmsg) $errmsg.='<br>';
|
|
$errmsg.=$error;
|
|
}
|
|
}
|
|
$action='';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$db->rollback();
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($user->rights->adherent->cotisation->creer && $_POST["action"] == 'confirm_delete' && $_POST["confirm"] == 'yes')
|
|
{
|
|
$result=$subscription->fetch($rowid);
|
|
$result=$subscription->delete();
|
|
if ($result > 0)
|
|
{
|
|
Header("Location: card_subscriptions.php?rowid=".$subscription->fk_adherent);
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$mesg=$adh->error;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
*
|
|
*/
|
|
|
|
llxHeader();
|
|
|
|
$form = new Form($db);
|
|
|
|
|
|
|
|
if ($errmsg)
|
|
{
|
|
print '<div class="error">'.$errmsg.'</div>';
|
|
print "\n";
|
|
}
|
|
|
|
|
|
if ($user->rights->adherent->cotisation->creer && $action == 'edit')
|
|
{
|
|
/********************************************
|
|
*
|
|
* Fiche en mode edition
|
|
*
|
|
********************************************/
|
|
|
|
$subscription->fetch($rowid);
|
|
|
|
/*
|
|
* Affichage onglets
|
|
*/
|
|
$h = 0;
|
|
$head = array();
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/fiche_subscription.php?rowid='.$subscription->id;
|
|
$head[$h][1] = $langs->trans("SubscriptionCard");
|
|
$head[$h][2] = 'general';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/info_subscription.php?rowid='.$subscription->id;
|
|
$head[$h][1] = $langs->trans("Info");
|
|
$head[$h][2] = 'info';
|
|
$h++;
|
|
|
|
dolibarr_fiche_head($head, 'general', $langs->trans("Subscription"));
|
|
|
|
print "\n";
|
|
print '<form name="update" action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
|
print "<input type=\"hidden\" name=\"action\" value=\"update\">";
|
|
print "<input type=\"hidden\" name=\"rowid\" value=\"$rowid\">";
|
|
print "<input type=\"hidden\" name=\"fk_bank\" value=\"".$subscription->fk_bank."\">";
|
|
print '<table class="border" width="100%">';
|
|
|
|
// Ref
|
|
print '<tr><td width="20%">'.$langs->trans("Ref").'</td><td class="valeur" colspan="2">'.$subscription->ref.' </td></tr>';
|
|
|
|
// Date start subscription
|
|
print '<tr><td>'.$langs->trans("DateSubscription").'</td><td class="valeur" colspan="2">';
|
|
$form->select_date($subscription->dateh,'datesub',1,1,0,'update',1);
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
// Date end subscription
|
|
print '<tr><td>'.$langs->trans("DateEndSubscription").'</td><td class="valeur" colspan="2">';
|
|
$form->select_date($subscription->datef,'datesubend',0,0,0,'update',1);
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
// Amount
|
|
print '<tr><td>'.$langs->trans("Amount").'</td><td class="valeur" colspan="2">';
|
|
print '<input type="text" class="flat" size="10" name="amount" value="'.price($subscription->amount).'"></td></tr>';
|
|
|
|
print '<tr><td colspan="3" align="center">';
|
|
print '<input type="submit" class="button" name="submit" value="'.$langs->trans("Save").'">';
|
|
print ' ';
|
|
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'">';
|
|
print '</td></tr>';
|
|
|
|
print '</table>';
|
|
print '</form>';
|
|
print "\n";
|
|
|
|
print '</div>';
|
|
print "\n";
|
|
}
|
|
|
|
if ($rowid && $action != 'edit')
|
|
{
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Mode affichage */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
$result=$subscription->fetch($rowid);
|
|
$result=$adh->fetch($subscription->fk_adherent);
|
|
|
|
/*
|
|
* Affichage onglets
|
|
*/
|
|
$h = 0;
|
|
$head = array();
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/fiche_subscription.php?rowid='.$subscription->id;
|
|
$head[$h][1] = $langs->trans("SubscriptionCard");
|
|
$head[$h][2] = 'general';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/info_subscription.php?rowid='.$subscription->id;
|
|
$head[$h][1] = $langs->trans("Info");
|
|
$head[$h][2] = 'info';
|
|
$h++;
|
|
|
|
dolibarr_fiche_head($head, 'general', $langs->trans("Subscription"));
|
|
|
|
if ($msg) print '<div class="error">'.$msg.'</div>';
|
|
|
|
// Confirmation de la suppression de l'adhérent
|
|
if ($action == 'delete')
|
|
{
|
|
//$formquestion=array();
|
|
//$formquestion['text']='<b>'.$langs->trans("ThisWillAlsoDeleteBankRecord").'</b>';
|
|
$text=$langs->trans("ConfirmDeleteSubscription");
|
|
if ($conf->banque->enabled && $conf->global->ADHERENT_BANK_USE) $text.='<br>'.img_warning().' '.$langs->trans("ThisWillAlsoDeleteBankRecord");
|
|
$form->form_confirm($_SERVER["PHP_SELF"]."?rowid=".$subscription->id,$langs->trans("DeleteSubscription"),$text,"confirm_delete",$formquestion);
|
|
print '<br>';
|
|
}
|
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
|
print '<table class="border" width="100%">';
|
|
|
|
// Ref
|
|
print '<tr><td width="20%">'.$langs->trans("Ref").'</td>';
|
|
print '<td class="valeur" colspan="3">';
|
|
print $form->showrefnav($subscription,'rowid','',1);
|
|
print '</td></tr>';
|
|
|
|
// Member
|
|
$adh->ref=$adh->fullname;
|
|
print '<tr>';
|
|
print '<td>'.$langs->trans("Member").'</td><td class="valeur" colspan="3">'.$adh->getNomUrl(1,0,'subscription').'</td>';
|
|
print '</tr>';
|
|
|
|
// Date subscription
|
|
print '<tr>';
|
|
print '<td>'.$langs->trans("DateSubscription").'</td><td class="valeur" colspan="3">'.dolibarr_print_date($subscription->dateh,'dayhour').'</td>';
|
|
print '</tr>';
|
|
|
|
// Date end subscription
|
|
print '<tr>';
|
|
print '<td>'.$langs->trans("DateEndSubscription").'</td><td class="valeur" colspan="3">'.dolibarr_print_date($subscription->datef,'day').'</td>';
|
|
print '</tr>';
|
|
|
|
// Amount
|
|
print '<tr><td>'.$langs->trans("Amount").'</td><td class="valeur" colspan="3">'.price($subscription->amount).'</td></tr>';
|
|
|
|
// Bank account
|
|
if ($conf->banque->enabled)
|
|
{
|
|
if ($subscription->fk_bank)
|
|
{
|
|
$bankline=new AccountLine($db);
|
|
$result=$bankline->fetch($subscription->fk_bank);
|
|
|
|
$bank=new Account($db);
|
|
$result=$bank->fetch($bankline->fk_account);
|
|
|
|
print '<tr>';
|
|
print '<td valign="top" width="140">'.$langs->trans('BankAccount').'</td>';
|
|
print '<td>'.$bank->getNomUrl(1).'</td>';
|
|
print '<td>'.$langs->trans("BankLineConciliated").'</td><td>'.yn($bankline->rappro).'</td>';
|
|
print '</tr>';
|
|
}
|
|
}
|
|
|
|
print "</table>\n";
|
|
print '</form>';
|
|
|
|
print "</div>\n";
|
|
|
|
|
|
/*
|
|
* Barre d'actions
|
|
*
|
|
*/
|
|
print '<div class="tabsAction">';
|
|
|
|
if ($user->rights->adherent->cotisation->creer)
|
|
{
|
|
if (! $bankline->rappro)
|
|
{
|
|
print "<a class=\"butAction\" href=\"".$_SERVER["PHP_SELF"]."?rowid=".$subscription->id."&action=edit\">".$langs->trans("Modify")."</a>";
|
|
}
|
|
else
|
|
{
|
|
print "<a class=\"butActionRefused\" title=\"".$langs->trans("BankLineConciliated")."\" href=\"#\">".$langs->trans("Modify")."</a>";
|
|
}
|
|
}
|
|
|
|
// Supprimer
|
|
if ($user->rights->adherent->cotisation->creer)
|
|
{
|
|
print "<a class=\"butActionDelete\" href=\"".$_SERVER["PHP_SELF"]."?rowid=".$subscription->id."&action=delete\">".$langs->trans("Delete")."</a>\n";
|
|
}
|
|
|
|
print '</div>';
|
|
print "<br>\n";
|
|
|
|
}
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|