26require
'../../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/lib/member.lib.php';
28require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent_type.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/adherents/class/subscription.class.php';
31if (isModEnabled(
"banque")) {
32 require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
36$langs->loadLangs(array(
"companies",
"members",
"bills",
"users",
"banks"));
43$action =
GETPOST(
"action",
'alpha');
45$typeid =
GETPOST(
"typeid",
"int");
46$cancel =
GETPOST(
'cancel',
'alpha');
48$note =
GETPOST(
'note',
'alpha');
49$typeid = (int)
GETPOST(
'typeid',
'int');
52if (!$user->hasRight(
'adherent',
'cotisation',
'lire')) {
56$permissionnote = $user->hasRight(
'adherent',
'cotisation',
'creer');
57$permissiondellink = $user->hasRight(
'adherent',
'cotisation',
'creer');
58$permissiontoedit = $user->hasRight(
'adherent',
'cotisation',
'creer');
60$hookmanager->initHooks(array(
'subscriptioncard',
'globalcard'));
76include DOL_DOCUMENT_ROOT.
'/core/actions_dellink.inc.php';
81if ($user->hasRight(
'adherent',
'cotisation',
'creer') && $action ==
'update' && !$cancel) {
83 $result = $object->fetch($rowid);
89 $newdatestart =
dol_mktime(
GETPOST(
'datesubhour',
'int'),
GETPOST(
'datesubmin',
'int'), 0,
GETPOST(
'datesubmonth',
'int'),
GETPOST(
'datesubday',
'int'),
GETPOST(
'datesubyear',
'int'));
90 $newdateend =
dol_mktime(
GETPOST(
'datesubendhour',
'int'),
GETPOST(
'datesubendmin',
'int'), 0,
GETPOST(
'datesubendmonth',
'int'),
GETPOST(
'datesubendday',
'int'),
GETPOST(
'datesubendyear',
'int'));
92 if ($object->fk_bank > 0) {
94 $result = $accountline->fetch($object->fk_bank);
97 if ($accountline->rappro) {
98 $errmsg = $langs->trans(
"SubscriptionLinkedToConciliatedTransaction");
100 $accountline->datev = $newdatestart;
101 $accountline->dateo = $newdatestart;
102 $accountline->amount = $amount;
104 $result = $accountline->update($user);
106 $errmsg = $accountline->error;
113 $object->dateh = $newdatestart;
114 $object->datef = $newdateend;
115 $object->fk_type = $typeid;
116 $object->note_public = $note;
117 $object->note_private = $note;
119 $object->amount = $amount;
121 $result = $object->update($user);
122 if ($result >= 0 && !count($object->errors)) {
125 header(
"Location: card.php?rowid=".$object->id);
130 if ($object->error) {
131 $errmsg = $object->error;
133 foreach ($object->errors as $error) {
148if ($action ==
'confirm_delete' && $confirm ==
'yes' && $user->hasRight(
'adherent',
'cotisation',
'creer')) {
149 $result = $object->fetch($rowid);
150 $result = $object->delete($user);
152 header(
"Location: ".DOL_URL_ROOT.
"/adherents/card.php?rowid=".$object->fk_adherent);
155 $errmesg = $adh->error;
165$form =
new Form($db);
167$help_url =
'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros|DE:Modul_Mitglieder';
168llxHeader(
'', $langs->trans(
"SubscriptionCard"), $help_url);
174if ($user->hasRight(
'adherent',
'cotisation',
'creer') && $action ==
'edit') {
181 $object->fetch($rowid);
182 $result = $adh->fetch($object->fk_adherent);
186 print
'<form name="update" action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
187 print
'<input type="hidden" name="token" value="'.newToken().
'">';
188 print
"<input type=\"hidden\" name=\"action\" value=\"update\">";
189 print
"<input type=\"hidden\" name=\"rowid\" value=\"$rowid\">";
190 print
"<input type=\"hidden\" name=\"fk_bank\" value=\"".$object->fk_bank.
"\">";
192 print
dol_get_fiche_head($head,
'general', $langs->trans(
"Subscription"), 0,
'payment');
194 $linkback =
'<a href="'.DOL_URL_ROOT.
'/adherents/subscription/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
197 print
'<table class="border centpercent">';
200 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"Ref").
'</td>';
201 print
'<td class="valeur">';
202 print $form->showrefnav($object,
'rowid', $linkback, 1);
206 $adh->ref = $adh->getFullName($langs);
208 print
'<td>'.$langs->trans(
"Member").
'</td>';
209 print
'<td class="valeur">'.$adh->getNomUrl(-1, 0,
'subscription').
'</td>';
214 print
'<td>'.$langs->trans(
"Type").
'</td>';
215 print
'<td class="valeur">';
216 print $form->selectarray(
"typeid", $adht->liste_array(), (GETPOSTISSET(
"typeid") ?
GETPOST(
"typeid") : $object->fk_type));
220 print
'<tr><td>'.$langs->trans(
"DateSubscription").
'</td>';
221 print
'<td class="valeur">';
222 print $form->selectDate($object->dateh,
'datesub', 1, 1, 0,
'update', 1);
227 print
'<tr><td>'.$langs->trans(
"DateEndSubscription").
'</td>';
228 print
'<td class="valeur">';
229 print $form->selectDate($object->datef,
'datesubend', 0, 0, 0,
'update', 1);
234 print
'<tr><td>'.$langs->trans(
"Amount").
'</td>';
235 print
'<td class="valeur">';
236 print
'<input type="text" class="flat width200" name="amount" value="'.price($object->amount).
'"></td></tr>';
239 print
'<tr><td>'.$langs->trans(
"Label").
'</td>';
240 print
'<td class="valeur">';
241 print
'<input type="text" class="flat" name="note" value="'.$object->note_public.
'"></td></tr>';
244 if (isModEnabled(
"banque") && (
getDolGlobalString(
'ADHERENT_BANK_USE') || $object->fk_bank)) {
245 print
'<tr><td>'.$langs->trans(
"BankTransactionLine").
'</td><td class="valeur">';
246 if ($object->fk_bank) {
248 $result = $bankline->fetch($object->fk_bank);
249 print $bankline->getNomUrl(1, 0,
'showall');
251 print $langs->trans(
"NoneF");
260 print $form->buttonsSaveCancel();
266if ($rowid && $action !=
'edit') {
273 $result = $object->fetch($rowid);
274 $result = $adh->fetch($object->fk_adherent);
278 print
dol_get_fiche_head($head,
'general', $langs->trans(
"Subscription"), -1,
'payment');
281 if ($action ==
'delete') {
282 $formquestion=array();
284 $text = $langs->trans(
"ConfirmDeleteSubscription");
286 $text .=
'<br>'.img_warning().
' '.$langs->trans(
"ThisWillAlsoDeleteBankRecord");
288 print $form->formconfirm($_SERVER[
"PHP_SELF"].
"?rowid=".$object->id, $langs->trans(
"DeleteSubscription"), $text,
"confirm_delete", $formquestion, 0, 1);
291 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
292 print
'<input type="hidden" name="token" value="'.newToken().
'">';
294 $linkback =
'<a href="'.DOL_URL_ROOT.
'/adherents/subscription/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
298 print
'<div class="fichecenter">';
300 print
'<div class="underbanner clearboth"></div>';
302 print
'<table class="border centpercent tableforfield">';
305 $adh->ref = $adh->getFullName($langs);
307 print
'<td class="titlefield">'.$langs->trans(
"Member").
'</td><td class="valeur">'.$adh->getNomUrl(-1, 0,
'subscription').
'</td>';
312 print
'<td class="titlefield">'.$langs->trans(
"Type").
'</td>';
313 print
'<td class="valeur">';
314 if ($object->fk_type > 0 || $adh->typeid > 0) {
315 $typeid = ($object->fk_type > 0 ? $object->fk_type : $adh->typeid);
316 $adht->fetch($typeid);
317 print $adht->getNomUrl(1);
319 print $langs->trans(
"NoType");
325 print
'<td>'.$langs->trans(
"DateSubscription").
'</td><td class="valeur">'.
dol_print_date($object->dateh,
'day').
'</td>';
330 print
'<td>'.$langs->trans(
"DateEndSubscription").
'</td><td class="valeur">'.
dol_print_date($object->datef,
'day').
'</td>';
334 print
'<tr><td>'.$langs->trans(
"Amount").
'</td><td class="valeur"><span class="amount">'.
price($object->amount).
'</span></td></tr>';
340 if (isModEnabled(
"banque") && (
getDolGlobalString(
'ADHERENT_BANK_USE') || $object->fk_bank)) {
341 print
'<tr><td>'.$langs->trans(
"BankTransactionLine").
'</td><td class="valeur">';
342 if ($object->fk_bank > 0) {
344 $result = $bankline->fetch($object->fk_bank);
345 print $bankline->getNomUrl(1, 0,
'showall');
347 print $langs->trans(
"NoneF");
362 print
'<div class="tabsAction">';
364 if ($user->hasRight(
'adherent',
'cotisation',
'creer')) {
365 if (empty($bankline->rappro) || empty($bankline)) {
366 print
'<div class="inline-block divButAction"><a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
"?rowid=".((int) $object->id).
'&action=edit&token='.newToken().
'">'.$langs->trans(
"Modify").
"</a></div>";
368 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" title="'.$langs->trans(
"BankLineConciliated").
'" href="#">'.$langs->trans(
"Modify").
"</a></div>";
373 if ($user->hasRight(
'adherent',
'cotisation',
'creer')) {
374 print
'<div class="inline-block divButAction"><a class="butActionDelete" href="'.$_SERVER[
"PHP_SELF"].
"?rowid=".((int) $object->id).
'&action=delete&token='.newToken().
'">'.$langs->trans(
"Delete").
"</a></div>\n";
380 print
'<div class="fichecenter"><div class="fichehalfleft">';
381 print
'<a name="builddoc"></a>';
396 $somethingshown = $form->showLinkedObjectBlock($object,
'');
403 print
'</div><div class="fichehalfright">';
412 print
'</div></div>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage bank transaction lines.
Class to manage members of a foundation.
Class to manage members type.
Class to manage subscriptions of foundation members.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_string_onlythesehtmltags($stringtoclean, $cleanalsosomestyles=1, $removeclassattribute=1, $cleanalsojavascript=0, $allowiframe=0, $allowed_tags=array(), $allowlink=0)
Clean a string to keep only desirable HTML tags.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_htmloutput_errors($mesgstring='', $mesgarray=array(), $keepembedded=0)
Print formated error messages to output (Used to show messages on html output).
subscription_prepare_head(Subscription $object)
Return array head with list of tabs to view object informations.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.