This commit is contained in:
darthsandmann
2016-10-16 21:53:15 +02:00
parent 0d10f8b9dc
commit c9f3117da1
412 changed files with 137942 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
function viewChargenubersicht(){
clearInterval(interval_id);
$.ajax({
dataType: "json",
url: '/manager',
type: 'LIST'
})
.done(function(liste){
markup = TPL.engine.execute_px('chargenubersicht.tpl', liste);
$("#content").html(markup);
$('#content').append('<p><button class = "bigbutton" onclick = viewAuktionen()>zurück</button><button class = "wizardButtonNeu"onclick = wizardStart()>NEU</button></p>');
})
.fail(function(){
alert("Chargenliste konnte nicht geladen werden");
});
}
function viewLosData(chargenNr, losNr){
}