/[openfoncier]/trunk/obj/commission.class.php
ViewVC logotype

Annotation of /trunk/obj/commission.class.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1390 - (hide annotations)
Wed Mar 13 14:55:15 2013 UTC (11 years, 10 months ago) by vpihour
File size: 1283 byte(s)
Correction d'un champ au mauvais format

1 fmichon 1022 <?php
2     //$Id$
3     //gen openMairie le 07/12/2012 17:33
4    
5     require_once ("../gen/obj/commission.class.php");
6    
7     class commission extends commission_gen {
8    
9     function commission($id,&$db,$debug) {
10     $this->constructeur($id,$db,$debug);
11     }// fin constructeur
12    
13 fmichon 1332 function afterFormSpecificContent() {
14 vpihour 1389
15     //Le sous-formulaire spécifique ne s'affiche qu'en consultation
16     if ( $this->parameters['maj'] == 3 ){
17     $f = $this->f;
18     include "../app/manage_commission.php";
19     }
20 fmichon 1332 }
21 vpihour 1389
22     //Le type de commission n'est pas modifiable une fois la commission ajoutée
23     function setType(&$form,$maj) {
24     parent::setType($form,$maj);
25    
26     if ( $maj > 0 ) {
27 vpihour 1390 $form->setType('commission_type', 'selecthiddenstatic');
28 vpihour 1389 }
29     }
30 fmichon 1332
31 vpihour 1389 //Action javascript au changement du type de la commission
32     function setOnchange(&$form,$maj){
33     parent::setOnchange($form,$maj);
34    
35     $form->setOnchange("commission_type","chargeDonneesCommissionType(this.value);");
36     }
37    
38     // Date du jour par défaut
39     function setVal(&$form, $maj, $validation, &$db) {
40    
41     if( $maj == 0 ) {
42    
43     $form->setVal("date_commission",date('d/m/Y'));
44     }
45     }
46 fmichon 1022 }// fin classe
47     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26