Bug #1838 Souci décimales ventilation CA si automatique
This commit is contained in:
parent
c71a35f437
commit
2b6ad48ee9
1 changed files with 2 additions and 2 deletions
|
|
@ -59,11 +59,11 @@ function add_row(p_table, p_seq)
|
|||
{
|
||||
var cell = row.insertCell(i);
|
||||
var txt = rowToCopy.cells[i].innerHTML;
|
||||
// txt=txt.replace(/row_1/g,"row_"+new_value);
|
||||
cell.innerHTML = txt;
|
||||
}
|
||||
var col = document.getElementsByName("val[" + p_seq + "][]");
|
||||
col[col.length - 1].value = max - amount;
|
||||
let tmp_amount=max - amount;
|
||||
col[col.length - 1].value = Math.round(tmp_amount*100)/100;
|
||||
anc_refresh_remain(p_table, p_seq);
|
||||
}
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue