Bonjour à tous, je vous présente mon code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
 <form method="post" action="traitement.php" >
    <div id="champs" >
 
 
        <table id="tableau" border="1">
 
<thead>
		<tr>    
                    <th> Journee(s) <button type="button" onclick="addFieldbis('<?= $nbjour ;?>')" >Auto</button></th>
			<th>Hotel</th>
			<th>Dejeuner</th>
			<th>Diner</th>
			<th>Divers</th>
                        <th>Date</th>
			<th>Htl</th>
			<th>Dej</th>
			<th>Din</th>
                        <th>Divr</th>
                        <th>TTL</th>
                        <th>Montant(en &euro;)</th>
		</tr>
	</thead>
	<tbody>
 
       <tr>
 
                    <td><div id="date">
                 <?php   $toto = $debut;
$dateN1 = date('Y-m-d', strtotime("$toto +$i day")); ?>
                     </div>
 
                    </td>
<td> <div id="champsHotel" ></div> </td>
<td><div id="champsDejeuner" ></div></td>
			<td><div id="champsDiner" ></div></td>
			<td><div id="champsDivers" ></div></td>
                        <td></td>
                        <td></td>
                        <td></td>
                        <td></td>
                          <td></td>
                        <td></td>
                        <td></td>
                </tr>
</table>          
                <button type="button" onclick="addField1()" >Ajouter une ligne</button>
<input type="hidden"  name="ded_id"  value="1">
    <input type="submit" />
      <?php
 
 
?>
    </tr>          
 
 
    </div>
    <script type="text/javascript" >
         var divhtl = document.getElementById('champsHotel'); 
        var divdej = document.getElementById('champsDejeuner'); 
        var divdin = document.getElementById('champsDiner');
        var divdiv = document.getElementById('champsDivers');
        var divdate = document.getElementById('date');
 
 
 
        function addInputSelectHtl(name,taille){
 
            var select = document.createElement("select");
            select.name = name;
            select.size=taille;
           // input.size = 10;
           var myOption1 = document.createElement("option");
            myOption1.text = "A payer";
            myOption1.value = "A Payer";
 
            var myOption2 = document.createElement("option");
            myOption2.text = "PEC";
            myOption2.value = "PEC";
 
            var myOption3 = document.createElement("option");
            myOption3.text = "Rien a payer";
            myOption3.value = "Rien a payer";
 
 
        /* add the items to the list */
        select.appendChild(myOption1);
        select.appendChild(myOption2);
        select.appendChild(myOption3);
 
 
 
 
            divhtl.appendChild(select);
        }
        function addInputSelectDej(name,taille){
 
            var select = document.createElement("select");
            select.name = name;
            select.size=taille;
           // input.size = 10;
           var myOption1 = document.createElement("option");
            myOption1.text = "A payer";
            myOption1.value = "A Payer";
 
            var myOption2 = document.createElement("option");
            myOption2.text = "PEC";
            myOption2.value = "PEC";
 
            var myOption3 = document.createElement("option");
            myOption3.text = "Rien a payer";
            myOption3.value = "Rien a payer";
 
 
        /* add the items to the list */
        select.appendChild(myOption1);
        select.appendChild(myOption2);
        select.appendChild(myOption3);
 
 
 
 
            divdej.appendChild(select);
        }
        function addInputSelectDin(name,taille){
 
            var select = document.createElement("select");
            select.name = name;
            select.size=taille;
           // input.size = 10;
           var myOption1 = document.createElement("option");
            myOption1.text = "A payer";
            myOption1.value = "A Payer";
 
            var myOption2 = document.createElement("option");
            myOption2.text = "PEC";
            myOption2.value = "PEC";
 
            var myOption3 = document.createElement("option");
            myOption3.text = "Rien a payer";
            myOption3.value = "Rien a payer";
 
 
        /* add the items to the list */
        select.appendChild(myOption1);
        select.appendChild(myOption2);
        select.appendChild(myOption3);
 
 
 
 
            divdin.appendChild(select);
        }
        function addInputSelectDiv(name,taille){
 
            var select = document.createElement("select");
            select.name = name;
            select.size=taille;
           // input.size = 10;
           var myOption1 = document.createElement("option");
            myOption1.text = "A payer";
            myOption1.value = "A Payer";
 
            var myOption2 = document.createElement("option");
            myOption2.text = "PEC";
            myOption2.value = "PEC";
 
            var myOption3 = document.createElement("option");
            myOption3.text = "Rien a payer";
            myOption3.value = "Rien a payer";
 
 
        /* add the items to the list */
        select.appendChild(myOption1);
        select.appendChild(myOption2);
        select.appendChild(myOption3);
 
 
 
 
            divdiv.appendChild(select);
        }
 
        function addText(name,contenu,taille){
 
            var objtxt = document.createTextNode(contenu);
         objtxt.size = taille;
         objtxt.name =name;
 
          divdate.appendChild(objtxt);
          divdate.appendChild(document.createElement("br"));
        }
        function addField1() {
 
 
 addText("date[]",tomorrow,10);
   tomorrow.setDate(tomorrow.getDate() + 1);
            addInputSelectHtl("Hotel[]",1);
            addInputSelectDej("Dejeuner[]",1);
            addInputSelectDin("Diner[]",1);
            addInputSelectDiv("Divers[]",1);
 
            divhtl.appendChild(document.createElement("br"));
 
            divdej.appendChild(document.createElement("br"));
            divdin.appendChild(document.createElement("br"));
            divdiv.appendChild(document.createElement("br"));
 
 
 
        }
         var date = '<?=$debut;?>';
var tomorrow = new Date(date);
var auto = 0;
        function addFieldbis(nbjour)  
        {
 
            //var date = '<?=$debut;?>';
          //  var tomorrow = new Date(date);
//tomorrow.setDate(tomorrow.getDate() + 1);
            if (auto == 0)
            {
                for(var i=0;i< nbjour;i++)
                    {   
 
                        addField1();
                        //alert(date);
                        // alert(tomorrow);
 
 
                    }
                    auto = 1;
                }
 
    }
 
 
 
 
addField1();
 
    </script>
 
</form>
Ce code me permet de créer un tableau composé des colonnes suivantes : Journées, Hotel, Déjeuner, Diner, Divers, Date, Htl, Dej, Din, Divr, TTL et Montant.
L'utilisateur choisit entre "A payer", "PEC" et "Rien a payer", en fonction de cela je voudrais que les colonnes Htl,Dej,Din,Divr prenne certaines valeurs.
En l’occurrence, je voudrais que lorsque l'utilisateur choisit "A payer" les colonnes Htl,Dej,Din et Divr prennent respectivement les valeurs 0.5,0.2,0.2,0.1, ou 0 sinon ("PEC" ou "Rien à payer").

Voici un petit screen du code : Nom : tabperdiem.png
Affichages : 173
Taille : 9,9 Ko

En guise d'exemple :

Hotel : A payer -> Htl = 0.5
Déjeuner : PEC -> Dej = 0
Diner : Rien à payer -> Din = 0
Divers : A payer -> Divr = 0.1

Merci d'avance