modified process options grid view as per Dynaform gird and added trigger form

This commit is contained in:
safan
2011-02-17 15:31:16 +00:00
parent 36074bdf5b
commit 2e49c3c5ae
5 changed files with 722 additions and 439 deletions

View File

@@ -55,8 +55,13 @@ try {
$oMap = new processMap();
$oCriteria = $oMap->getOutputDocumentsCriteria($fields['PRO_UID'] );
$result->success = true;
$result->msg = G::LoadTranslation('ID_OUTPUTDOCUMENT_REMOVED');
}
catch (Exception $oException) {
die($oException->getMessage());
catch (Exception $e) {
$result->success = false;
$result->msg = $e->getMessage();
//die($oException->getMessage());
}
print G::json_encode($result);
?>