Bugfix tempo_standard
This commit is contained in:
parent
e72020197e
commit
ee1f5ae16b
|
@ -409,7 +409,7 @@ if (!empty($id_intervento)) {
|
|||
|
||||
if($(this).val()){
|
||||
//TODO: disattivato perché genera problemi con il change successivo di iditpointervento per il tempo standard*
|
||||
//$('#bs-popup #idtipointervento').selectSetNew($(this).selectData().idtipointervento, $(this).selectData().idtipointervento_descrizione);
|
||||
$('#bs-popup #idtipointervento').selectSetNew($(this).selectData().idtipointervento, $(this).selectData().idtipointervento_descrizione);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -427,11 +427,11 @@ if (!empty($id_intervento)) {
|
|||
$("#bs-popup #componenti").selectReset();
|
||||
});
|
||||
|
||||
// tempo standard*
|
||||
// tempo standard
|
||||
// TODO: tempo_standard da preventivo e contratto attraverso selectData() relativi
|
||||
$('#bs-popup #idtipointervento').change( function(){
|
||||
|
||||
|
||||
if ( (($(this).selectData().tempo_standard)>0) && ('<?php echo filter('orario_fine'); ?>' == '')){
|
||||
if ($(this).selectData() && (($(this).selectData().tempo_standard)>0) && ('<?php echo filter('orario_fine'); ?>' == '')){
|
||||
tempo_standard = $(this).selectData().tempo_standard;
|
||||
|
||||
data = moment($('#bs-popup #orario_inizio').val(), globals.timestampFormat);
|
||||
|
|
Loading…
Reference in New Issue