|
|
|
@ -191,9 +191,9 @@ function addTableRow(){
|
|
|
|
|
e += `<td>${a_description}
|
|
|
|
|
<input type="hidden" name="description[${currentRowId}]" value="${a_description}" /></td>`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// add column for num
|
|
|
|
|
e += `<td>${a_amount} EUR
|
|
|
|
|
e += `<td>${a_amount} ${a_currency}
|
|
|
|
|
<input type="hidden" name="amount[${currentRowId}]" value="${a_amount}" /></td>`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -225,10 +225,10 @@ function addTableRow(){
|
|
|
|
|
</span></td>`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$node.append(element);
|
|
|
|
|
element.innerHTML=(e);
|
|
|
|
|
renumberTableRows();
|
|
|
|
|
currentRowId++;
|
|
|
|
|
$node.append(element);
|
|
|
|
|
element.innerHTML=(e);
|
|
|
|
|
renumberTableRows();
|
|
|
|
|
currentRowId++;
|
|
|
|
|
reset2();
|
|
|
|
|
disableCurrency();
|
|
|
|
|
|
|
|
|
@ -385,7 +385,6 @@ function downloadDocument(mail)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
document.getElementById('banktype').value=banktype;
|
|
|
|
|
document.getElementById("theform").submit();
|
|
|
|
|
|
|
|
|
|
if (!document.getElementById("agree").checked){
|
|
|
|
|
document.getElementById("agree").focus();
|
|
|
|
@ -394,6 +393,8 @@ function downloadDocument(mail)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
document.getElementById("theform").submit();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|