Fixed class name processMap to ProcessMap
This commit is contained in:
davidcallizaya
2017-08-04 16:21:06 -04:00
parent 205fd191cf
commit eb43543daf
38 changed files with 1049 additions and 1049 deletions

View File

@@ -5,7 +5,7 @@ class processOptionsProxy extends HttpProxyController
public function loadInputDocuments ($params)
{
$oProcessMap = new processMap( new DBConnection() );
$oProcessMap = new ProcessMap( new DBConnection() );
$pro_uid = $params->PRO_UID;
$start = isset( $params->start ) ? $params->start : 0;
@@ -24,7 +24,7 @@ class processOptionsProxy extends HttpProxyController
public function canDeleteInputDoc ($params)
{
$oProcessMap = new processMap( new DBConnection() );
$oProcessMap = new ProcessMap( new DBConnection() );
$aRows = $oProcessMap->getAllInputDocsByTask( $params->PRO_UID );
$response = isset( $aRows[$params->IDOC_UID] ) ? false : true;
$this->success = $response;
@@ -54,7 +54,7 @@ class processOptionsProxy extends HttpProxyController
$oOP->removeByObject( 'INPUT', $params->IDOC_UID );
//refresh dbarray with the last change in inputDocument
$oMap = new processMap();
$oMap = new ProcessMap();
$oCriteria = $oMap->getInputDocumentsCriteria( $params->PRO_UID );
$this->success = true;
@@ -90,7 +90,7 @@ class processOptionsProxy extends HttpProxyController
}
//refresh dbarray with the last change in inputDocument
$oMap = new processMap();
$oMap = new ProcessMap();
$oCriteria = $oMap->getInputDocumentsCriteria( $aData['PRO_UID'] );
$this->success = true;
}