Subversion Repositories Applications.annuaire

Rev

Rev 296 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
296 aurelien 1
<form id="modification_cotisation" method="post" action="<?= $url_modification_cotisation ?>">
514 aurelien 2
 
3
	<div>Cotisations pour <?= $infos_utilisateur['prenom'].' '.$infos_utilisateur['nom']; ?> </div>
4
 
296 aurelien 5
	<table class="liste">
6
		<tr>
7
			<th>Date</th>
8
			<th>Montant</th>
9
			<th>Mode</th>
10
			<th>Modifier</th>
11
			<th>Supprimer</th>
12
			<th>Voir le re&ccedil;u</th>
13
			<th>Envoyer le re&ccedil;u</th>
14
			<th>Date d'envoi du re&ccedil;u</th>
15
		</tr>
16
 
17
		<?php foreach ($cotisations as $cotisation) : ?>
18
			<?php if($cotisation['id_cotisation'] == $id_cotisation_a_modifer) { ?>
19
				<tr>
20
					<td> <input size="10" type=text class="calendrier" id="date_cotisation" name="date_cotisation" value="<?= $cotisation['date_cotisation'] ?>" /> </td>
21
					<td> <input size="10" type=text id="montant_cotisation" name="montant_cotisation" value="<?= $cotisation['montant_cotisation'] ?>" /> &euro;</td>
22
					<td> <select name="mode_cotisation" id="mode_cotisation">
23
							<?php foreach($modes_cotisation as $id_mode_cotisation => $mode_cotisation) : ?>
24
								<?php $selection = ''; if($cotisation['mode_cotisation'] == $id_mode_cotisation) $selection='selected="selected"';  ?>
25
								<option value="<?= $id_mode_cotisation; ?>" id="mode_cotisation_<?= $id_mode_cotisation; ?>" <?= $selection; ?>> <?= $mode_cotisation; ?> </option>
26
							<?php endforeach; ?>
27
						</select></td>
28
					<td></td>
29
					<td></td>
30
					<td></td>
31
					<td><input type="submit" value="OK" /></td>
32
					<td><a href="<?= $url_liste_cotisations; ?>" > Annuler </a></td>
33
				</tr>
34
			<?php } else { ?>
35
				<tr>
36
					<td> <?= $cotisation['date_cotisation'] ?> </td>
37
					<td> <?= $cotisation['montant_cotisation'] ?> &euro;</td>
38
					<td> <?= $cotisation['mode_cotisation'] ?> </td>
39
					<td><a href="<?= $cotisation['url_formulaire_modification']; ?>">Modifer </a></td>
40
					<td><a href="<?= $cotisation['url_suppression']; ?>"> Supprimer</a></td>
41
					<td><a href="<?= $cotisation['url_voir_recu']; ?>">Voir le re&ccedil;u</a></td>
42
					<td><a href="<?= $cotisation['url_envoyer_recu']; ?>">Envoyer le re&ccedil;u</a></td>
43
					<?php if($cotisation['date_envoi_recu'] != 0) { ?>
44
					<td><?= $cotisation['date_envoi_recu'] ?></td>
45
					<?php } else { ?>
46
						<td class="recu_non_envoye" style="background-color:red;">Recu non envoy&eacute;</td>
47
					<?php } ?>
48
				</tr>
49
			<?php } ?>
50
		<?php endforeach; ?>
51
	</table>
52
 
53
	<input type="hidden" id="url_retour" name="url_retour" value="<?= $url_retour ?>">
54
	<input type="hidden" id="id_cotisation" name="id_cotisation" value="<?= $id_cotisation_a_modifer ?>">
55
	<input type="hidden" id="id_cotisant" name="id_cotisant" value="<?= $id_utilisateur ?>">
56
</form>