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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1886 - (hide annotations)
Fri May 17 14:48:11 2013 UTC (11 years, 8 months ago) by fmichon
File size: 2961 byte(s)
Correction du nom de la méthode incohérent dans la méthode de log

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 fmichon 1520 include "../app/commission_manage.php";
19 vpihour 1389 }
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 vpihour 1401 //Cache le champ code en ajout
27     if ( $maj == 0 ){
28    
29     $form->setType('code', 'hidden');
30     }
31    
32 vpihour 1389 if ( $maj > 0 ) {
33 vpihour 1390 $form->setType('commission_type', 'selecthiddenstatic');
34 vpihour 1401 $form->setType('code', 'hiddenstatic');
35 vpihour 1389 }
36     }
37 fmichon 1332
38 vpihour 1389 //Action javascript au changement du type de la commission
39     function setOnchange(&$form,$maj){
40     parent::setOnchange($form,$maj);
41    
42     $form->setOnchange("commission_type","chargeDonneesCommissionType(this.value);");
43     }
44    
45     // Date du jour par défaut
46     function setVal(&$form, $maj, $validation, &$db) {
47    
48     if( $maj == 0 ) {
49    
50     $form->setVal("date_commission",date('d/m/Y'));
51     }
52     }
53 vpihour 1401
54     // Génération automatique du code de la commission
55 vpihour 1453 function setvalF($val) {
56     parent::setValF($val);
57 vpihour 1772
58 vpihour 1401 // Récupération du code du type de la commission
59 vpihour 1772 $codeTypeCommission = "";
60     if ( isset($val['commission_type']) && is_numeric($val['commission_type']))
61     $codeTypeCommission = $this->getCodeTypeCommission($val['commission_type']);
62 vpihour 1401
63     //Formatte la date
64     $dateFormatee = $this->formatDate($val['date_commission']);
65    
66     $this->valF['code'] = $codeTypeCommission.$dateFormatee;
67     }
68    
69     //Retourne le code du type de la commission passée en paramètre
70     function getCodeTypeCommission($typeCommission){
71    
72     $codeTypeCommission = "";
73    
74     $sql = "SELECT
75     code
76     FROM
77     ".DB_PREFIXE."commission_type
78     WHERE
79     commission_type = ".$typeCommission;
80     $codeTypeCommission = $this->db->getOne($sql);
81 fmichon 1886 $this->f->addToLog("getCodeTypeCommission(): db->getone(\"".$sql."\")", VERBOSE_MODE);
82 vpihour 1773 if ( database::isError($codeTypeCommission) ){
83     die();
84     }
85 vpihour 1401
86     return $codeTypeCommission;
87     }
88    
89     // Prend une date au format JJ/MM/AAAA et retourne AAAAMMJJ
90     function formatDate($date){
91    
92     $dateFormatee = explode('/',$date);
93     $dateFormatee = $dateFormatee[2].$dateFormatee[1].$dateFormatee[0];
94    
95     return $dateFormatee;
96     }
97 fmichon 1022 }// fin classe
98     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26