/[openfoncier]/trunk/app/edition_p.php
ViewVC logotype

Annotation of /trunk/app/edition_p.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1184 - (hide annotations)
Wed Jan 9 09:34:50 2013 UTC (12 years ago) by fmichon
File size: 1665 byte(s)
svn propset svn:keywords "Id" app/*.php

1 fraynaud 88 <?php
2 fmichon 1184 // $Id$
3 fraynaud 88 require_once "../obj/utils.class.php";
4     /**
5     * Classe utils ()
6     */
7 fmichon 380 $f = new utils(NULL, "edition_p", _("edition depot"), "ico_edition.png", "edition");
8 fraynaud 88 $f->addHTMLHeadJs(array("../js/script.js"));
9     // FORM
10     echo "<form name='f1' id='f1'>";
11     echo _("Date debut")." "._("depot");
12 jbastide 162 echo "&nbsp;&nbsp;&nbsp;&nbsp;<input type='text' name='datedebut' id=\"datedebut\" value=\"".date('d/m/Y')."";
13     echo "\" size=\"15\" class=\"champFormulaire datepicker\" onchange='fdate(this)' onkeyup=\"\" onclick=\"\" />&nbsp;&nbsp;&nbsp;&nbsp;";
14 fraynaud 88 echo _("Date fin")." "._("depot");
15 jbastide 162 echo "&nbsp;&nbsp;&nbsp;&nbsp;<input type='text' name='datefin' id=\"datefin\" value=\"".date('d/m/Y')."";
16     echo "\" size=\"15\" class=\"champFormulaire datepicker\" onchange='fdate(this)' onkeyup=\"\" onclick=\"\" />&nbsp;&nbsp;&nbsp;&nbsp;";
17 fraynaud 88 // nature
18     echo _("nature");
19 nhaye 1138 $sql="select * from ".DB_PREFIXE."dossier_autorisation_type_detaille";
20 fraynaud 88 $res = $f -> db -> query($sql);
21     echo "<select name='nature' SIZE='1'>";
22     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC))
23     if($row["nature"] !="T")
24 nhaye 1138 echo "<option value='".$row["dossier_autorisation_type_detaille"]."'>".$row["libelle"]."</option>";
25 fraynaud 88 echo "</select>";
26 jbastide 162 echo "<br><br><br><a class='lien' href='javascript:dossierdepot()'><img src='../app/img/ico_rep.png' align='middle' hspace='15' border='0'>&nbsp;&nbsp;&nbsp;&nbsp;"._("repertoire dossier depose")."</a> ("._("choix date et nature").")<br>";
27     echo "<br><a class='lien' href='javascript:dossierads()'><img src='../app/img/ico_dossier.png' align='middle' hspace='15' border='0'>&nbsp;&nbsp;&nbsp;&nbsp;"._("registre des ads")."</a> ("._("choix date").")<br>";
28 fraynaud 88 echo "</form>";
29     ?>

Properties

Name Value
svn:keywords Id

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26