mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-24 22:42:33 +01:00
Fix visualizzazione dettagli movimenti articoli
This commit is contained in:
parent
a7bdbbc2b0
commit
7c62459b7a
@ -60,6 +60,8 @@ $_SESSION['superselect']['idsede_destinazione'] = 0;
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<div id="messages"></div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$('#bs-popup').on('shown.bs.modal', function(){
|
$('#bs-popup').on('shown.bs.modal', function(){
|
||||||
$('#direzione').on('change', function(){
|
$('#direzione').on('change', function(){
|
||||||
@ -98,9 +100,7 @@ $_SESSION['superselect']['idsede_destinazione'] = 0;
|
|||||||
|
|
||||||
// Articolo non trovato
|
// Articolo non trovato
|
||||||
else {
|
else {
|
||||||
$('#buttons').next('hr').remove();
|
$('#messages').html( '<hr><div class="alert alert-danger text-center"><big>Articolo <b>' + search + '</b> non trovato!</big></div>' );
|
||||||
$('#buttons').next('div.alert').remove();
|
|
||||||
$('#buttons').after( '<hr><div class="alert alert-danger text-center"><big>Articolo <b>' + search + '</b> non trovato!</big></div>' );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -126,8 +126,7 @@ $_SESSION['superselect']['idsede_destinazione'] = 0;
|
|||||||
function(){}
|
function(){}
|
||||||
);
|
);
|
||||||
|
|
||||||
$('#buttons').next('hr').remove();
|
$('#messages').html('');
|
||||||
$('#buttons').next('div.alert').remove();
|
|
||||||
|
|
||||||
var prezzo_acquisto = parseFloat(articolo.prezzo_acquisto);
|
var prezzo_acquisto = parseFloat(articolo.prezzo_acquisto);
|
||||||
var prezzo_vendita = parseFloat(articolo.prezzo_vendita);
|
var prezzo_vendita = parseFloat(articolo.prezzo_vendita);
|
||||||
@ -152,7 +151,7 @@ $_SESSION['superselect']['idsede_destinazione'] = 0;
|
|||||||
}
|
}
|
||||||
|
|
||||||
if( articolo.descrizione != '' ){
|
if( articolo.descrizione != '' ){
|
||||||
$('#buttons').after(
|
$('#messages').html(
|
||||||
'<hr>'+
|
'<hr>'+
|
||||||
'<div class="row">'+
|
'<div class="row">'+
|
||||||
'<div class="col-md-6">'+
|
'<div class="col-md-6">'+
|
||||||
|
Loading…
Reference in New Issue
Block a user