Audit Log para todas las opciones del menu contextual del PROCESO
This commit is contained in:
marcelo.cuiza
2015-02-13 13:36:33 -04:00
parent 987a8ffbad
commit f03bc50886
11 changed files with 168 additions and 7 deletions

View File

@@ -48,6 +48,11 @@ try {
$aFields = $oCaseTrackerObject->load( $value['CTO_UID'] );
$aFields['CTO_CONDITION'] = $value['CTO_CONDITION'];
$oCaseTrackerObject->update( $aFields );
$infoProcess = new Processes();
$proFields = $infoProcess->serializeProcess($value['PRO_UID']);
$resultProcess = $infoProcess->saveSerializedProcess($proFields);
G::auditLog('CaseTrackers','Save Condition Case Tracker Object ('.$value['CTO_CONDITION'].') in Process "'.$resultProcess['PRO_TITLE'].'"');
} catch (Exception $oException) {
die( $oException->getMessage() );
}