dcnilas11
11-02-2012, 04:06 PM
Hi all,
I'm editing a website form to a friend, but the js page is a deadzone for me.
I have a html page named:
company_simulation.html
....
<body>
.....
<div id="rendimentos_mensais" class="seccao_form">
<span><b>Proveitos:</b><b class="notas_form"> (1)</b></span><br>
<p><span>Vendas:</span><input name="prov_vendas" id="prov_vendas" class="numeric" type="text" value="0"></p>
<p><span>Prestação de Serviços:</span>
<input name="prov_ps" id="prov_ps" class="numeric" type="text" value="0"></p>
<br>
<p><span>Margem:</span><input name="prov_mrg" id="prov_mrg" class="percent" type="text" value="0"></p>
<br>
<p><span>Valor Compras:<b class="notas_form"> (2)</b></span><input name="prov_comp" id="prov_comp" class="numeric" type="text" value="0"></p>
<p><span><b>MARGEM BRUTA:</b></span><input name="mar_brut_prov" id="mar_brut_prov" type="hidden">
<input id="mar_brut_prov_output" type="text" readonly class="output"></p>
<br>
<b class="notas_form">(1) - Valores Médios Mensais</b>
<br>
<b class="notas_form">(2) - Deve colocar o valor correcto das compras de acordo com a margem</b>
</div>
....
</body>
.....
In the website you can see this:
http://www.clinicafinanceira.net/sample.jpg
Then i have a js file with this:
$(window).load(function(){
$.watermarker.setDefaults({ color: '#737270', left: 0, top:0 });
$(".jq_watermark").watermark();
$('.numeric').numeric(null);
function calcTotal()
{
var total = 0;
total = new Number($("#mar_brut_prov").val()-$("#tot_custo_mensal").val()-($("#tot_end_prestacao").val()/12));
$("#total").val(parseFloat(total));
}
$("#rendimentos_mensais input[type='text']").not(".output").change(function(){
var total = 0;
$("#rendimentos_mensais input[type='text']").not(".output").each(function(){
total += new Number($(this).val().replace(/\s/g,'').replace(',','.'));
});
$("#mar_brut_prov").val(total);
calcTotal();
$("#mar_brut_prov_output").val(number_format(total,2,',',' ')+" €");
});
So the js code is adding all the values of:
prov_vendas + prov_ps + prov_mrg + prov_comp
But that is not what i need. I need adding and subtracting, like this:
prov_vendas + prov_ps - prov_comp
Ignoring the prov_mrg, because is a percentage for another thing.
I'm editing a website form to a friend, but the js page is a deadzone for me.
I have a html page named:
company_simulation.html
....
<body>
.....
<div id="rendimentos_mensais" class="seccao_form">
<span><b>Proveitos:</b><b class="notas_form"> (1)</b></span><br>
<p><span>Vendas:</span><input name="prov_vendas" id="prov_vendas" class="numeric" type="text" value="0"></p>
<p><span>Prestação de Serviços:</span>
<input name="prov_ps" id="prov_ps" class="numeric" type="text" value="0"></p>
<br>
<p><span>Margem:</span><input name="prov_mrg" id="prov_mrg" class="percent" type="text" value="0"></p>
<br>
<p><span>Valor Compras:<b class="notas_form"> (2)</b></span><input name="prov_comp" id="prov_comp" class="numeric" type="text" value="0"></p>
<p><span><b>MARGEM BRUTA:</b></span><input name="mar_brut_prov" id="mar_brut_prov" type="hidden">
<input id="mar_brut_prov_output" type="text" readonly class="output"></p>
<br>
<b class="notas_form">(1) - Valores Médios Mensais</b>
<br>
<b class="notas_form">(2) - Deve colocar o valor correcto das compras de acordo com a margem</b>
</div>
....
</body>
.....
In the website you can see this:
http://www.clinicafinanceira.net/sample.jpg
Then i have a js file with this:
$(window).load(function(){
$.watermarker.setDefaults({ color: '#737270', left: 0, top:0 });
$(".jq_watermark").watermark();
$('.numeric').numeric(null);
function calcTotal()
{
var total = 0;
total = new Number($("#mar_brut_prov").val()-$("#tot_custo_mensal").val()-($("#tot_end_prestacao").val()/12));
$("#total").val(parseFloat(total));
}
$("#rendimentos_mensais input[type='text']").not(".output").change(function(){
var total = 0;
$("#rendimentos_mensais input[type='text']").not(".output").each(function(){
total += new Number($(this).val().replace(/\s/g,'').replace(',','.'));
});
$("#mar_brut_prov").val(total);
calcTotal();
$("#mar_brut_prov_output").val(number_format(total,2,',',' ')+" €");
});
So the js code is adding all the values of:
prov_vendas + prov_ps + prov_mrg + prov_comp
But that is not what i need. I need adding and subtracting, like this:
prov_vendas + prov_ps - prov_comp
Ignoring the prov_mrg, because is a percentage for another thing.