Initial xentral_oss_20.3.c9ffacf

This commit is contained in:
Alex
2021-05-21 08:49:41 +02:00
parent 5406e4a551
commit 34e5ac43d9
18884 changed files with 2109867 additions and 0 deletions
@@ -0,0 +1,6 @@
#pos_article_content div.articles
{
width:250px;
height:250px;
float:left;
}
@@ -0,0 +1,28 @@
$(document).ready(function(){
$('#pos_article_popup').dialog(
{
modal: true,
autoOpen: false,
minWidth: 940,
title:'Artikel',
buttons: {
ABBRECHEN: function() {
$(this).dialog('close');
}
},
close: function(event, ui){
}
});
$('#posarticlespopup').on('click',function(){
$('#pos_article_popup').dialog('open');
});
$('#pos_article_content div.articles').on('click',function(){
$('#pos_article_popup').dialog('close');
$('#artikelnummerprojekt').val($(this).data('nummer'));
$('#loadart').submit();
});
});