forked from tohe/wmdeit_kaform
Some refactoring and cleaning
This commit is contained in:
parent
cf2b7f75e1
commit
65427097ba
173
kaform.js
173
kaform.js
|
@ -37,16 +37,12 @@ function checkAllRows(){
|
||||||
|
|
||||||
f=3;
|
f=3;
|
||||||
v =row.cells[f].firstElementChild.value;
|
v =row.cells[f].firstElementChild.value;
|
||||||
if ( !v ){ // Datum
|
if ( !isFloat(v) ){ // Amount
|
||||||
row.cells[f].firstElementChild.focus();
|
row.cells[f].firstElementChild.focus();
|
||||||
showAlert("Bitte gib einen gültigen Betrag ein!");
|
showAlert("Bitte gib einen gültigen Betrag ein!");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -120,8 +116,6 @@ function deleteTableRow(rowId){
|
||||||
|
|
||||||
element.parentNode.removeChild(element);
|
element.parentNode.removeChild(element);
|
||||||
renumberTableRows();
|
renumberTableRows();
|
||||||
// alert(rowId);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -133,22 +127,10 @@ function countRows(){
|
||||||
|
|
||||||
|
|
||||||
function showAlert(text) {
|
function showAlert(text) {
|
||||||
|
|
||||||
$K.app.message.show( { message: `${text}`, position: 'centered', type: 'is-error' });
|
$K.app.message.show( { message: `${text}`, position: 'centered', type: 'is-error' });
|
||||||
return;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function reset2()
|
|
||||||
{
|
|
||||||
// document.getElementById("a_type").value="";
|
|
||||||
document.getElementById("a_description").value="";
|
|
||||||
document.getElementById("a_amount").value="";
|
|
||||||
setUploadField();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function setTableRow(id)
|
function setTableRow(id)
|
||||||
{
|
{
|
||||||
|
@ -221,7 +203,6 @@ function getRow(rid,num) {
|
||||||
class="close is-large">
|
class="close is-large">
|
||||||
</span></td>`;
|
</span></td>`;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -238,144 +219,8 @@ function addRow() {
|
||||||
nextRid++;
|
nextRid++;
|
||||||
}
|
}
|
||||||
|
|
||||||
function xaddTableRow(){
|
|
||||||
|
|
||||||
var $node = $K.dom('#tabbody');
|
|
||||||
// create a new table row with id
|
|
||||||
var element = document.createElement('tr');
|
|
||||||
element.setAttribute("id", "trow"+currentRowId);
|
|
||||||
|
|
||||||
|
|
||||||
/* var a_type = document.getElementById("a_type").value;
|
|
||||||
if (!a_type.trim().length ) {
|
|
||||||
document.getElementById("a_type").focus();
|
|
||||||
showAlert("Bitte gib eine Auslagenart an!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
var a_date = document.getElementById("a_date").value;
|
|
||||||
if (!a_date.trim().length){
|
|
||||||
document.getElementById("a_date").focus();
|
|
||||||
showAlert("Bitte gib ein gültiges Datum an!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
var a_description = document.getElementById("a_description").value;
|
|
||||||
if (!a_description.trim().length){
|
|
||||||
document.getElementById("a_description").focus();
|
|
||||||
showAlert("Bitte gib eine Beschreibung ein!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var a_amount = document.getElementById("a_amount").value;
|
|
||||||
if (!isFloat(a_amount)){
|
|
||||||
document.getElementById("a_amount").focus();
|
|
||||||
showAlert("Bitte gib einen gültigen Betrag ein!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
a_amount = parseFloat(a_amount).toFixed(2);
|
|
||||||
|
|
||||||
|
|
||||||
var a_currency = document.getElementById("a_currency").value;
|
|
||||||
/* if (!a_currency.trim().length){
|
|
||||||
document.getElementById("a_currency").focus();
|
|
||||||
showAlert("Bitte gib eine Währung an!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
var target = document.getElementById("upload-target"+currentRowId);
|
|
||||||
var children = target.children;
|
|
||||||
|
|
||||||
if (!children.length){
|
|
||||||
// showAlert("Bitte lade mindestens einen Beleg hoch!");
|
|
||||||
// return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* a_type = "Hello";*/
|
|
||||||
|
|
||||||
var e="<td></td>";
|
|
||||||
|
|
||||||
// add column for position no
|
|
||||||
// e += `<td>${a_type}
|
|
||||||
// <input type="hidden" name="type[${currentRowId}]" value="${a_type}" /></td>`;
|
|
||||||
|
|
||||||
// add coluemn for a_type (Auslagenart)
|
|
||||||
// e += `<td><textarea name="desc[${nextRowId}]" rows="2"></textarea> </td>`;
|
|
||||||
e += `<td>${a_date}
|
|
||||||
<input type="hidden" name="date[${currentRowId}]" value="${a_date}" /></td>`;
|
|
||||||
|
|
||||||
|
|
||||||
// add column for date
|
|
||||||
// e += `<td><input name="date[${nextRowId}]" type="date"/></td>`;
|
|
||||||
e += `<td>${a_description}
|
|
||||||
<input type="hidden" name="description[${currentRowId}]" value="${a_description}" /></td>`;
|
|
||||||
|
|
||||||
|
|
||||||
// add column for num
|
|
||||||
e += `<td>${a_amount} EUR
|
|
||||||
<input type="hidden" name="amount[${currentRowId}]" value="${a_amount}" /></td>`;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// add column for file upload
|
|
||||||
/* e+= `
|
|
||||||
<td data-kube="">
|
|
||||||
<div class="form-item">
|
|
||||||
<div class="upload"
|
|
||||||
data-kube="upload"
|
|
||||||
data-type="file" data-multiple="true"
|
|
||||||
data-target="#upload-target${nextRowId}"
|
|
||||||
data-url="upload.php?row=${nextRowId}" data-url-remove="delete.php"
|
|
||||||
data-progress="true">
|
|
||||||
</div>
|
|
||||||
<div id="upload-target${nextRowId}" class="upload-target"></div>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
*/
|
|
||||||
var ulfiles = children.length;
|
|
||||||
e += `<td>${ulfiles}</td>`;
|
|
||||||
|
|
||||||
// `;
|
|
||||||
// add delete bnutton
|
|
||||||
e +=
|
|
||||||
`<td><span
|
|
||||||
onclick="deleteTableRow(${currentRowId})"
|
|
||||||
class="close is-large">
|
|
||||||
</span></td>`;
|
|
||||||
|
|
||||||
|
|
||||||
$node.append(element);
|
|
||||||
element.innerHTML=(e);
|
|
||||||
renumberTableRows();
|
|
||||||
currentRowId++;
|
|
||||||
reset2();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function setUploadField()
|
|
||||||
{
|
|
||||||
var e = $K.dom('#uploadfield');
|
|
||||||
var uf =`<div class="upload"
|
|
||||||
data-kube="upload"
|
|
||||||
data-type="file" data-multiple="true"
|
|
||||||
data-target="#upload-target${currentRowId}"
|
|
||||||
data-url="upload.php?row=${currentRowId}" data-url-remove="delete.php"
|
|
||||||
data-progress="true">Beleg(e) hochladen
|
|
||||||
</div>
|
|
||||||
<div id="upload-target${currentRowId}" class="upload-target small"></div>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
document.getElementById("uploadfield").innerHTML=uf;
|
|
||||||
}
|
|
||||||
|
|
||||||
$K.add('module', 'kaform', {
|
$K.add('module', 'kaform', {
|
||||||
init: function(app, context)
|
init: function(app, context)
|
||||||
|
@ -394,8 +239,6 @@ $K.add('module', 'kaform', {
|
||||||
|
|
||||||
console.log(banktype);
|
console.log(banktype);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// console.log(sender);
|
// console.log(sender);
|
||||||
// this.message.show({ message: 'My message' });
|
// this.message.show({ message: 'My message' });
|
||||||
}
|
}
|
||||||
|
@ -423,8 +266,6 @@ $K.ajax.get({
|
||||||
error: function(response) {}
|
error: function(response) {}
|
||||||
});
|
});
|
||||||
|
|
||||||
setUploadField();
|
|
||||||
|
|
||||||
|
|
||||||
function check_field(fieldid,message){
|
function check_field(fieldid,message){
|
||||||
var f = document.getElementById(fieldid).value;
|
var f = document.getElementById(fieldid).value;
|
||||||
|
@ -500,6 +341,12 @@ function downloadDocument(mail)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!document.getElementById("agree").checked){
|
||||||
|
document.getElementById("agree").focus();
|
||||||
|
showAlert("Bitte bestätige, dass du alle Angaben nach bestem Wissen und Gewissen gemacht hast!");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
if (mail){
|
if (mail){
|
||||||
if (!isMailable()){
|
if (!isMailable()){
|
||||||
|
@ -519,12 +366,6 @@ function downloadDocument(mail)
|
||||||
document.getElementById('banktype').value=banktype;
|
document.getElementById('banktype').value=banktype;
|
||||||
document.getElementById("theform").submit();
|
document.getElementById("theform").submit();
|
||||||
|
|
||||||
if (!document.getElementById("agree").checked){
|
|
||||||
document.getElementById("agree").focus();
|
|
||||||
showAlert("Bitte bestätige, dass du alle Angaben nach bestem Wissen und Gewissen gemacht hast!");
|
|
||||||
return;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
39
submit.php
39
submit.php
|
@ -13,30 +13,30 @@ require "PHPMailer/Exception.php";
|
||||||
require_once('TCPDF/tcpdf.php');
|
require_once('TCPDF/tcpdf.php');
|
||||||
|
|
||||||
class kaformPDF extends TCPDF {
|
class kaformPDF extends TCPDF {
|
||||||
//Page header
|
//Page header
|
||||||
public function Header() {
|
public function Header() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// // Logo
|
// Logo
|
||||||
// $image_file = K_PATH_IMAGES.'logo_example.jpg';
|
// $image_file = K_PATH_IMAGES.'logo_example.jpg';
|
||||||
// $this->Image($image_file, 10, 10, 15, '', 'JPG', '', 'T', false, 300, '', false, false, 0, false, false, false);
|
// $this->Image($image_file, 10, 10, 15, '', 'JPG', '', 'T', false, 300, '', false, false, 0, false, false, false);
|
||||||
// // Set font
|
// // Set font
|
||||||
// $this->SetFont('helvetica', 'B', 20);
|
// $this->SetFont('helvetica', 'B', 20);
|
||||||
// // Title
|
// // Title
|
||||||
// $this->Cell(0, 15, '<< TCPDF Example 003 >>', 0, false, 'C', 0, '', 0, false, 'M', 'M');
|
// $this->Cell(0, 15, '<< TCPDF Example 003 >>', 0, false, 'C', 0, '', 0, false, 'M', 'M');
|
||||||
// }
|
// }
|
||||||
//
|
|
||||||
// // Page footer
|
// Page footer
|
||||||
public function Footer() {
|
public function Footer() {
|
||||||
}
|
}
|
||||||
// // Position at 15 mm from bottom
|
// Position at 15 mm from bottom
|
||||||
// $this->SetY(-15);
|
// $this->SetY(-15);
|
||||||
// // Set font
|
// Set font
|
||||||
// $this->SetFont('helvetica', 'I', 8);
|
// $this->SetFont('helvetica', 'I', 8);
|
||||||
// // Page number
|
// Page number
|
||||||
// $this->Cell(0, 10, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
|
// $this->Cell(0, 10, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -296,7 +296,6 @@ function calcSum(){
|
||||||
}
|
}
|
||||||
$sum -= get_adv();
|
$sum -= get_adv();
|
||||||
return str_replace(".",",",sprintf("%0.2f",$sum));
|
return str_replace(".",",",sprintf("%0.2f",$sum));
|
||||||
// return sprintf("%.2f",$sum);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue