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

Annotation of /trunk/app/edition_d.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1515 - (hide annotations)
Tue Mar 19 18:53:12 2013 UTC (11 years, 10 months ago) by fmichon
File size: 1615 byte(s)
Mise au carrĂ© des entĂȘtes de fichier

1 fraynaud 88 <?php
2     /**
3 fmichon 1515 *
4     *
5     * @package openfoncier
6     * @version SVN : $Id$
7 fraynaud 88 */
8 fmichon 1515
9     //
10 fraynaud 88 require_once "../obj/utils.class.php";
11 fmichon 1515
12 fraynaud 88 /**
13     * Classe utils ()
14     */
15 fmichon 380 $f = new utils(NULL, "edition_d", _("edition decision"), "ico_edition.png", "edition");
16 fraynaud 88 $f->addHTMLHeadJs(array("../js/script.js"));
17     // FORM
18     echo "<form name='f1' id='f1'>";
19     echo _("Date debut")." "._("decision");
20 jbastide 162 echo "&nbsp;&nbsp;&nbsp;&nbsp;<input type='text' name='datedebut' id=\"datedebut\" value=\"".date('d/m/Y')."";
21     echo "\" size=\"15\" class=\"champFormulaire datepicker\" onchange='fdate(this)' onkeyup=\"\" onclick=\"\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
22 fraynaud 88 echo _("Date fin")." "._("decision");
23 jbastide 162 echo "&nbsp;&nbsp;&nbsp;&nbsp;<input type='text' name='datefin' id=\"datefin\" value=\"".date('d/m/Y')."";
24     echo "\" size=\"15\" class=\"champFormulaire datepicker\" onchange='fdate(this)' onkeyup=\"\" onclick=\"\" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
25 fraynaud 88 // nature
26 jbastide 162 echo _("nature")."&nbsp;&nbsp;&nbsp;&nbsp;";
27 nhaye 1138 $sql="select * from ".DB_PREFIXE."dossier_autorisation_type_detaille";
28 fraynaud 88 $res = $f -> db -> query($sql);
29     echo "<select name='nature' SIZE='1'>";
30     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC))
31 nhaye 1138 if($row["code"] !="T")
32     echo "<option value='".$row["dossier_autorisation_type_detaille"]."'>".$row["libelle"]."</option>";
33 fraynaud 88 echo "</select>";
34 jbastide 162 echo "<br><br>".
35     "&nbsp;&nbsp;&nbsp;&nbsp;<a class='lien' href='javascript:dossierads_d()'><span class=\"om-icon om-icon-16 om-icon-fix pdf-16\" title=\""._("Edition")."\">"._("Edition")."</span>&nbsp;&nbsp;&nbsp;&nbsp;".
36 fraynaud 88 _("registre_ads")."</a><br>";
37     echo "</form>";
38     ?>

Properties

Name Value
svn:keywords Id

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26