Integrated the portal with the module to dispatch incidents or user requests -reintegrated from trunk

SVN:2.0.2[3126]
This commit is contained in:
Romain Quetiez
2014-04-11 14:55:56 +00:00
parent 093c8a8506
commit 6cf3758788

View File

@@ -915,6 +915,8 @@ function ShowDetailsRequest(WebPage $oP, $oObj)
case 'assigned':
case 'frozen':
case 'pending':
case 'dispatched':
case 'redispatched':
$aEditAtt = array(
$sLogAttCode => '????'
);
@@ -1176,6 +1178,11 @@ function RunStimulusDialog(sStimulusCode, sTitle, sOkButtonLabel)
} },
],
});
// Start the validation
CheckFields(sStimulusCode+'_form', false);
$('#'+sStimulusCode+'_form').submit( function() {
return OnSubmit(sStimulusCode+'_form');
});
}
EOF
);