HOR-3620
Fixed class name processMap to ProcessMap
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user