[grisbiwebcommit] [14] ADD pr?\195?\169paration du formulaire de recherche pour masquer/ afficher les op?\195?\169rations rapproch?\195?\169es |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/grisbiwebcommit Archives
]
Revision: 14
Author: nicosomb
Date: 2009-02-03 22:20:08 +0100 (Tue, 03 Feb 2009)
Log Message:
-----------
ADD pr?\195?\169paration du formulaire de recherche pour masquer/afficher les op?\195?\169rations rapproch?\195?\169es
ADD pr?\195?\169paration du formulaire de recherche pour afficher le type de l'op?\195?\169ration (ch?\195?\168que, virement, CB, ...)
Modified Paths:
--------------
trunk/functions.php
trunk/grisbi.php
Modified: trunk/functions.php
===================================================================
--- trunk/functions.php 2009-02-03 21:04:13 UTC (rev 13)
+++ trunk/functions.php 2009-02-03 21:20:08 UTC (rev 14)
@@ -64,6 +64,8 @@
<input type="text" id="nbOperations" name="nbOperations" value="'.(isset($_POST['nbOperations']) && $_POST['nbOperations'] != '' ? $_POST['nbOperations'] : '').'" /><br />
<label for="afficherDetails">'._("Afficher details operations").' : </label>
<input type="checkbox" id="afficherDetails" name="afficherDetails" '.(isset($_POST['afficherDetails']) && $_POST['afficherDetails'] != '' ? 'checked = "checked"' : '').' value="1" /><br />
+ <label for="afficherOperationsRapp">'._("Afficher operations rapprochees").' : </label>
+ <input type="checkbox" id="afficherOperationsRapp" name="afficherOperationsRapp" '.(isset($_POST['afficherOperationsRapp']) && $_POST['afficherOperationsRapp'] != '' ? 'checked = "checked"' : '').' value="1" /><br />
<input type="submit" value="'._("Filtrer").'" />
</fieldset>
';
@@ -118,6 +120,11 @@
if (isset($_POST['afficherDetails']) && $_POST['afficherDetails'] == '1') {
$params['afficherDetails'] = $_POST['afficherDetails'];
}
+
+ // Afficher les op\xE9rations rapproch\xE9es
+ //if (isset($_POST['afficherOperationsRapp']) && $_POST['afficherOperationsRapp'] == '1') {
+ // $params['afficherOperationsRapp'] = $_POST['afficherOperationsRapp'];
+ //}
// date de d\xE9but
if (isset($_POST['dateDebut']) && $_POST['dateDebut'] != '' && $_POST['dateDebut'] != 'JJ/MM/AAAA') {
Modified: trunk/grisbi.php
===================================================================
--- trunk/grisbi.php 2009-02-03 21:04:13 UTC (rev 13)
+++ trunk/grisbi.php 2009-02-03 21:20:08 UTC (rev 14)
@@ -337,5 +337,25 @@
}
return $sousCategories;
}
+
+ /**
+ * Retourne le type de l'op\xE9ration (virement, ch\xE8que, CB, ...)
+ * @param $idOperation identifiant de l'op\xE9ration concern\xE9e
+ * @return string type de l'op\xE9ration
+ */
+ public function getTypeOperation($idOperation)
+ {
+
+ }
+
+ /**
+ * Retourne vrai si une op\xE9ration est rapproch\xE9e
+ * @param $idOperation identifiant de l'op\xE9ration concern\xE9e
+ * @return boolean vrai si l'op\xE9ration est rapproch\xE9e, faux sinon
+ */
+ public function isRapprochee($idOperation)
+ {
+
+ }
}
?>