-
Notifications
You must be signed in to change notification settings - Fork 0
/
spesa.php
341 lines (290 loc) · 9.25 KB
/
spesa.php
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>LdP spesa calculator 0.1</title>
<style type='text/css'>
body {
font: 10pt Verdana sans-serif;
}
a {
cursor: pointer;
cursor: hand;
text-decoration: underline;
}
a:hover {
color: red;
}
input {
text-align: right;
}
.odd{
background: #dedede;
}
.prezzo, .desc {
/* float: left;*/
}
</style>
<script language='javascript' type='text/javascript' src='jquery-1.2.6.js'></script>
<script language='javascript' type='text/javascript' src='jquery.validation.js'></script>
<script language='javascript' type='text/javascript'>
var lcolors = ['#BFFFBF','#FFEABF','#C6CAFF','#FFBFBF','#E4BFFF','#FFFDBF','#E6C273'];
var dcolors = ['#80FF80','#FFD680','#8D95FF','#FF8080','#CA80FF','#FFFB80','#BF9330'];
function ldpLength( a )
{
c = 0;
for( var i in a )
c++;
return c;
}
function delElmByIndex( arr, idx )
{
var ret = new Array();
for( var i in arr )
if( i != idx )
ret[i] = arr[i];
return ret;
}
function fixAtTwo(anynum)
{
var numStr=anynum.toString();
var decPos = numStr.indexOf(".");
if ( decPos == -1 )
return numStr + ".00";
else
{
// add two zeros to get at least two digits at the
// end of the string in case it ends at the decimal
numStr += "00";
return numStr.substr(0,decPos+3);
}
}
// people è un array associativo nome_persona:prezzo_da_pagare, inizializzato a 0.
var people = new Array(), rows = 0;
function addLine( d, pr )
{
d = !d ? '' : d;
pr = !pr ? '' : pr;
var cl = '';
if( !(rows % 2 ) )
cl = ' odd';
var row = "<div class='riga"+cl+"' id='_"+rows+"'><div id='"+rows+"'><input type='text' class='desc' id='desc_"+rows+"' value='"+d+"' /> <input type='text' class='prezzo' size='4' id='price_"+rows+"' onkeyup='ricalcola()' value='"+pr+"' /> ";
var idx = 0;
for( var i in people )
{
row += getPersonBox( rows, i, idx );
idx++;
}
row += "</div></div>";
$( '#center' ).append( row );
$( '#desc_'+rows ).validation({ add: " _-", onError: function(){ this.value = ''; } });
$( '#price_'+rows ).validation({ type: "int", add: ".", onError: function(){ this.value = 0; } });
rows++;
}
function delLine( id )
{
// TODO ma serve?
//rows--;
}
function getPersonBox( r, p, idx )
{
var colors = !(r % 2) ? dcolors : lcolors;
return "<span id='sp_"+r+"_"+p+"' style='padding:2px;background: "+colors[idx%colors.length]+";'>"+p+" <input type='checkbox' class='check' id='"+r+"_"+p+"' value='"+r+"_"+p+"' onclick='ricalcola()' /> </span>";
}
function delPerson( p )
{
var row;
$( '#hstr_'+p ).remove();
$( '.prezzo' ).each( function( i ){
for( var k in people )
if( k == p )
{
row = this.id.split( '_' );
$( '#sp_'+row[1]+'_'+k ).remove();
}
});
people = delElmByIndex( people, p );
if( ldpLength( people ) == 0 )
{
$( '.riga' ).remove();
$( '#addl' ).hide();
}
ricalcola();
}
function addPerson()
{
var p = prompt( 'Nome persona?' );
if( !p )
return;
addP( p );
}
// p è il nome della persona, h sono quanti soldi ha messo
function addP( p, h )
{
people[p] = 0;
h = !h ? '' : h;
// per ogni linea aggiungi una persona
$( '#addl' ).show();
for( i = 0; i < rows; i++ )
$( '#'+i ).append( getPersonBox( i, p ) );
$( '#people' ).append( "<span id='hstr_"+p+"'><input type='text' id='hamesso_"+p+"' size='4' value='"+h+"' onkeyup='ricalcola()' /> euro messi da <b>"+p+"</b> <a style='font-size: 80%;color:red;' onclick='delPerson(\""+p+"\")'><img src='del.gif' alt='[elimina]' border='0' /></a><br /></span>" );
$( '#hamesso_'+p ).validation({ type: "int", add: ".", onError: function(){ this.value = 0; } });
}
// la funzione principale che calcola tutto.
// ogni valore della riga viene diviso per il numero di persone assegnate
// il valore ottenuto viene sommato ai subtotali di ogni persona.
// dai subtotali di ogni persona viene sottratta la cifra iniziale messa dalla persona stessa.
// se per una riga non è selezionata alcuna persona, questa non viene presa in considerazione nel conteggio.
function ricalcola()
{
var res = '';
var tot = 0;
for( var j in people )
people[j] = 0;
// scorriamo i prezzi
$( '.prezzo' ).each( function( i ){
var cnt = 0, val = 0;
var pers = new Array();
if( this.value )
{
row = this.id.split( '_' );
for( k in people )
{
var tmp = $( '#'+row[1]+'_'+k );
if( tmp[0].checked )
{
pers.push( k );
cnt++;
}
}
val = parseFloat( this.value ) / cnt;
for( l in pers )
people[pers[l]] += val;
tot += parseFloat( this.value );
}
});
// al totale sottraiamo i soldi messi all'inizio
for( i in people )
{
val = parseFloat( $( '#hamesso_'+i ).val() );
if( val )
people[i] -= val;
res += '<b>'+i+'</b>: '+fixAtTwo( people[i] )+'<br />';
}
res = '<b>Totale:</b> '+fixAtTwo( tot )+' euro.<br /><br />' + res;
$( '#results' ).html( res );
}
// serve a esportare in un formato furbo (che l'utente si salva su file di testo da solo..
// avremo 2 oggetti:
// 1) persone e soldi messi all'inizio {'pippo':3.50,'pluto':4}
// 2) persone-prezzi {'pippo':1,'pluto':0},1_5.25:{'pippo':1,'pluto':1}
// 3) prezzi e descrizioni {'0_10.50':'prodotto1,'1_5.25_':'prodotto2'}
function exprt()
{
var res = '{';
var res2 = '@@@@{';
var tmp = '';
// salviamo le persone
for( var i in people )
{
tmp = $('#hamesso_'+i).val() != '' ? $('#hamesso_'+i).val() : 0;
res += "'"+i+"':"+tmp+",";
}
if( ldpLength( people ) > 0 )
res = res.substring( 0, res.length - 1 );
res += '}@@@@[';
var cnt = 0;
$( '.prezzo' ).each( function( i ){
row = this.id.split( '_' );
res2 += "'"+row[1]+'_'+this.value+"':'"+$('#desc_'+row[1]).val()+"',";
res += '{';
for( k in people )
{
var tmp = row[1]+'_'+k;
if( $( '#'+tmp )[0].checked )
res += "'"+tmp+"':1,";
else
res += "'"+tmp+"':0,";
}
res = res.substring( 0, res.length - 1 );
res += '},';
cnt++;
});
if( cnt > 0 )
{
res = res.substring( 0, res.length - 1 );
res2 = res2.substring( 0, res2.length - 1 );
}
res2 += '}';
res += ']';
$( '#imex' ).val( res+res2 );
}
// serve a importare dal file di testo.
// per semplicità, eliminiamo gli upload e facciamo incollare direttamente in un textarea.
function imprt()
{
// qui dovremmo mettere un controllo affinché non vengano messe variabili 'corrotte'
// alert stai per perdere tutti i dati
if( ldpLength( people ) > 0 )
if( !confirm( 'Attenzione: importando i dati verranno persi quelli attuali. Continuare?' ) )
return;
emptyEverything();
var data = $( '#imex' ).val().split( '@@@@' );
// "zucchero sintattico"..
people = eval( '('+data[0]+')' ); // var globale!
var chks = eval( '('+data[1]+')' );
var prices = eval( '('+data[2]+')' );
// aggiungiamo le righe delle persone
for( var i in people )
addP( i, people[i] );
var tmp;
for( i in prices ) // TODO CHECKME dovrebbero essere in ordine..
{
tmp = i.split( '_' );
addLine( prices[i], tmp[1] );
}
// settiamo i giusti check
for( i in chks )
for( var j in chks[i] )
if( chks[i][j] == 1 )
$( '#'+j )[0].checked = true;
ricalcola();
}
// restart.
function emptyEverything()
{
people = new Array();
rows = 0;
$( '#center' ).html( '' );
$( '#people' ).html( '' );
$( '#results' ).html( '' );
$( '#addl' ).hide();
}
</script>
</head>
<body>
LdP spesa calculator 0.3 (31 Jul 2008) <a style='font-size: 80%; color: blue;text-decoration:none;border-bottom:1px dotted blue;' onclick='$("#todo").toggle()'>[TODO]</a><br />
<div id='impexp' style='display: none; position: absolute; top: 10px; right: 10px; text-align: center;'>* incolla qui sotto *<br /><textarea id='imex' rows='5' cols='40'></textarea><br />
<input type='button' value='importa' onclick='imprt()' /> <input type='button' value='esporta' onclick='exprt()' /></div>
<div id='todo' style='font-size: 80%;display: none;'><br />
* verificare che non vengano inseriti caratteri strani nella descrizione e nei nomi di persona (ovvero caratteri che facciano casino con import/export)<br />
* fare i nomi colorati così si capiscono meglio ed è tutto più colorato e carino<br />
* check di sicurezza tipo: nuova persona con nome già esistente, ecc. <br />
<br />
* <u>nota</u>: probabilmente non funziona _niente_ con explorer.
</div><br />
<b>STEP 1:</b> <a nohref onclick='addPerson()'>aggiungi persona</a> o <a nohref onclick='$("#impexp").toggle()'>importa / esporta dati</a><br />
<span id='addl' style='display: none;'><b>STEP 2:</b> <a nohref onclick='addLine()'>aggiungi prodotto</a><br />
<br />
<input type='button' value='ricomincia da zero!' onclick='if(confirm("Verranno persi i dati attuali. Continuare?"))emptyEverything();' />
<!--<input type='button' value='ricalcola' onclick='ricalcola()' />-->
</span>
<br />
<br />
<br />
<div id='people'></div><br />
<div id='center'></div>
<hr style='width: 500px; position: absolute; left: 10px;' />
<br />
<div id='results'></div>
</body>
</html>