Correccion de CONSOLIDATED
This commit is contained in:
@@ -2,286 +2,173 @@
|
||||
G::LoadClass("pmFunctions");
|
||||
G::LoadClass("reportTables");
|
||||
|
||||
|
||||
class ConsolidatedCases
|
||||
{
|
||||
function cochalo ($data)
|
||||
function saveConsolidated ($data)
|
||||
{
|
||||
$sTasUid = $data['tas_uid'];
|
||||
$sDynUid = $data['dyn_uid'];
|
||||
$sStatus = $data['status'];
|
||||
$sProUid = $data['pro_uid'];
|
||||
$sRepTabUid = $data['rep_uid'];
|
||||
$tableName = $data['table_name'];
|
||||
$title = $data['title'];
|
||||
$swOverwrite = $data['overwrite'];
|
||||
$isBPMN = $data['isBPMN'];
|
||||
|
||||
if ($sStatus == "1" && $sDynUid != "") {
|
||||
switch ($swOverwrite) {
|
||||
case 1:
|
||||
//Delete report table
|
||||
$criteria = new Criteria();
|
||||
|
||||
$criteria->addSelectColumn(ReportTablePeer::REP_TAB_UID);
|
||||
$criteria->add(ReportTablePeer::REP_TAB_NAME, $tableName);
|
||||
|
||||
$rsCriteria = ReportTablePeer::doSelectRS($criteria);
|
||||
|
||||
$rptUid = null;
|
||||
|
||||
if ($rsCriteria->next()) {
|
||||
$row = $rsCriteria->getRow();
|
||||
|
||||
$rptUid = $row[0];
|
||||
}
|
||||
|
||||
$rpts = new ReportTables();
|
||||
|
||||
if ($rptUid != null) {
|
||||
$rpts->deleteReportTable($rptUid);
|
||||
}
|
||||
|
||||
$sRepTabUid = "";
|
||||
break;
|
||||
case 2:
|
||||
//Delete table
|
||||
$rpts = new ReportTables();
|
||||
$rpts->dropTable($tableName, "wf");
|
||||
|
||||
$sRepTabUid = "";
|
||||
break;
|
||||
}
|
||||
|
||||
if ($sRepTabUid != '') {
|
||||
$rptUid = null;
|
||||
$criteria = new Criteria();
|
||||
|
||||
$criteria->addSelectColumn(ReportTablePeer::REP_TAB_UID);
|
||||
//$criteria->add(ReportTablePeer::PRO_UID, $sProUid);
|
||||
$criteria->add(ReportTablePeer::REP_TAB_NAME, $tableName);
|
||||
$rsCriteria = ReportTablePeer::doSelectRS($criteria);
|
||||
|
||||
$result = ReportTablePeer::doSelectRS($criteria);
|
||||
$result->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||
if ($result->next()) {
|
||||
$dataRes = $result->getRow();
|
||||
|
||||
if ($dataRes["REP_TAB_UID"] != $sRepTabUid) {
|
||||
return 1;
|
||||
}
|
||||
} else {
|
||||
//check if table $tableName exists
|
||||
$con = Propel::getConnection("workflow");
|
||||
$stmt = $con->createStatement();
|
||||
|
||||
$sql="SHOW TABLES";
|
||||
$rs1 = $stmt->executeQuery($sql, ResultSet::FETCHMODE_NUM);
|
||||
$rs1->next();
|
||||
while ( is_array($row = $rs1->getRow() )) {
|
||||
if ( $row[0] == $tableName ) {
|
||||
return 2;
|
||||
}
|
||||
$rs1->next();
|
||||
}
|
||||
if ($rsCriteria->next()) {
|
||||
$row = $rsCriteria->getRow();
|
||||
$rptUid = $row[0];
|
||||
}
|
||||
|
||||
if ($isBPMN) {
|
||||
$_POST['form']['PRO_UID'] = $sProUid;
|
||||
$_POST['form']['REP_TAB_UID'] = $sRepTabUid;
|
||||
$_POST['form']['REP_TAB_NAME'] = $tableName;
|
||||
$_POST['form']['REP_TAB_TYPE'] = "NORMAL";
|
||||
$_POST['form']['REP_TAB_GRID'] = '';
|
||||
$_POST['form']['REP_TAB_CONNECTION'] = 'wf';
|
||||
$_POST['form']['REP_TAB_CREATE_DATE'] = date("Y-m-d H:i:s");
|
||||
$_POST['form']['REP_TAB_STATUS'] = 'ACTIVE';
|
||||
$_POST['form']['REP_TAB_TITLE'] = $title;
|
||||
} else {
|
||||
$_POST['form']['PRO_UID'] = $sProUid;
|
||||
$_POST['form']['REP_TAB_UID'] = $sRepTabUid;
|
||||
$_POST['form']['REP_TAB_NAME'] = $tableName;
|
||||
$_POST['form']['REP_TAB_TYPE'] = "GRID";
|
||||
$_POST['form']['REP_TAB_GRID'] = $sProUid . "-" . $sDynUid;
|
||||
$_POST['form']['REP_TAB_CONNECTION'] = 'wf';
|
||||
$_POST['form']['REP_TAB_CREATE_DATE'] = date("Y-m-d H:i:s");
|
||||
$_POST['form']['REP_TAB_STATUS'] = 'ACTIVE';
|
||||
$_POST['form']['REP_TAB_TITLE'] = $title;
|
||||
$rpts = new ReportTables();
|
||||
if ($rptUid != null) {
|
||||
$rpts->deleteReportTable($rptUid);
|
||||
}
|
||||
|
||||
$_POST['form']['FIELDS'] = array();
|
||||
|
||||
G::LoadClass("reportTables");
|
||||
|
||||
$oReportTable = new ReportTable();
|
||||
//if (!isset($_POST['form']['REP_TAB_CONNECTION'])) {
|
||||
// $_POST['form']['REP_TAB_CONNECTION'] = 'report';
|
||||
//}
|
||||
if ($_POST['form']['REP_TAB_UID'] != "") {
|
||||
$aReportTable = $oReportTable->load($_POST['form']['REP_TAB_UID']);
|
||||
$sOldTableName = $aReportTable['REP_TAB_NAME'];
|
||||
$sOldConnection = $aReportTable['REP_TAB_CONNECTION'];
|
||||
} else {
|
||||
|
||||
$sOldTableName = $_POST['form']['REP_TAB_NAME'];
|
||||
$sOldConnection = $_POST['form']['REP_TAB_CONNECTION'];
|
||||
$_POST['form']['REP_TAB_TYPE'] = 'NORMAL';
|
||||
$oReportTable->create($_POST['form']);
|
||||
$_POST['form']['REP_TAB_UID'] = $oReportTable->getRepTabUid();
|
||||
}
|
||||
|
||||
$_POST['form']['REP_TAB_TYPE'] = 'NORMAL';
|
||||
$oReportTable->update($_POST['form']);
|
||||
|
||||
$oReportVar = new ReportVar();
|
||||
$oReportTables = new ReportTables();
|
||||
$oReportTables->deleteAllReportVars($_POST['form']['REP_TAB_UID']);
|
||||
|
||||
$aFields = array();
|
||||
|
||||
if ($isBPMN) {
|
||||
G::LoadClass("pmDynaform");
|
||||
$pmDyna = new pmDynaform(array());
|
||||
$pmDyna->fields["CURRENT_DYNAFORM"] = $sDynUid;
|
||||
$dataDyna = $pmDyna->getDynaform();
|
||||
$json = G::json_decode($dataDyna["DYN_CONTENT"]);
|
||||
$fieldsDyna = $json->items[0]->items;
|
||||
foreach ($fieldsDyna as $value) {
|
||||
$_POST['form']['FIELDS'][] = $value[0]->name . '-' . $value[0]->type;
|
||||
}
|
||||
} else {
|
||||
$aAux = explode('-', $_POST['form']['REP_TAB_GRID']);
|
||||
global $G_FORM;
|
||||
|
||||
require_once "classes/class.formBatchRouting.php";
|
||||
|
||||
$G_FORM = new FormBatchRouting($_POST["form"]["PRO_UID"] . PATH_SEP . $aAux[1], PATH_DYNAFORM, SYS_LANG, false);
|
||||
$aAux = $G_FORM->getVars(false);
|
||||
|
||||
foreach ($aAux as $aField) {
|
||||
$_POST['form']['FIELDS'][] = $aField['sName'] . '-' . $aField['sType'];
|
||||
}
|
||||
}
|
||||
|
||||
$aFieldsClases = array();
|
||||
$i = 1;
|
||||
$aFieldsClases[$i]['FLD_NAME'] = 'APP_UID';
|
||||
$aFieldsClases[$i]['FLD_NULL'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_KEY'] = 'on';
|
||||
$aFieldsClases[$i]['FLD_AUTO_INCREMENT'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_DESCRIPTION'] = '';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 32;
|
||||
$i++;
|
||||
$aFieldsClases[$i]['FLD_NAME'] = 'APP_NUMBER';
|
||||
$aFieldsClases[$i]['FLD_NULL'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_KEY'] = 'on';
|
||||
$aFieldsClases[$i]['FLD_AUTO_INCREMENT'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_DESCRIPTION'] = '';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
|
||||
foreach ($_POST['form']['FIELDS'] as $sField) {
|
||||
$aField = explode('-', $sField);
|
||||
$i++;
|
||||
$aFieldsClases[$i]['FLD_NAME'] = $aField[0];
|
||||
$aFieldsClases[$i]['FLD_NULL'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_KEY'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_AUTO_INCREMENT'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_DESCRIPTION'] = '';
|
||||
|
||||
switch ($aField[1]) {
|
||||
case 'currency':
|
||||
case 'percentage':
|
||||
$sType = 'number';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'FLOAT' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
break;
|
||||
case 'text':
|
||||
case 'password':
|
||||
case 'dropdown':
|
||||
case 'yesno':
|
||||
case 'checkbox':
|
||||
case 'radiogroup':
|
||||
case 'hidden':
|
||||
case "link":
|
||||
$sType = 'char';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
break;
|
||||
case 'textarea':
|
||||
$sType = 'text';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'TEXT' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = '';
|
||||
break;
|
||||
case 'date':
|
||||
$sType = 'date';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'DATE' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = '';
|
||||
break;
|
||||
default:
|
||||
$sType = 'char';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
break;
|
||||
}
|
||||
|
||||
$oReportVar->create(array('REP_TAB_UID' => $_POST['form']['REP_TAB_UID'],
|
||||
'PRO_UID' => $_POST['form']['PRO_UID'],
|
||||
'REP_VAR_NAME' => $aField[0],
|
||||
'REP_VAR_TYPE' => $sType));
|
||||
$aFields[] = array('sFieldName' => $aField[0], 'sType' => $sType);
|
||||
}
|
||||
|
||||
$_POST['form']['REP_TAB_TYPE'] = "NORMAL";
|
||||
$oReportTables->dropTable($sOldTableName, $sOldConnection);
|
||||
$oReportTables->createTable($_POST['form']['REP_TAB_NAME'], $_POST['form']['REP_TAB_CONNECTION'], $_POST['form']['REP_TAB_TYPE'], $aFields);
|
||||
$oReportTables->populateTable($_POST['form']['REP_TAB_NAME'], $_POST['form']['REP_TAB_CONNECTION'], $_POST['form']['REP_TAB_TYPE'], $aFields, $_POST['form']['PRO_UID'], '');
|
||||
|
||||
$sRepTabUid = $_POST['form']['REP_TAB_UID'];
|
||||
|
||||
//clases
|
||||
} else {
|
||||
$oReportTables = new ReportTables();
|
||||
if ($sRepTabUid != "") {
|
||||
$oReportTables->deleteReportTable($sRepTabUid);
|
||||
}
|
||||
$sRepTabUid = "";
|
||||
}
|
||||
|
||||
require_once ("classes/model/CaseConsolidatedPeer.php");
|
||||
require_once ("classes/model/CaseConsolidated.php");
|
||||
|
||||
$oCaseConsolidated = CaseConsolidatedPeer::retrieveByPK($sTasUid);
|
||||
|
||||
if (!(is_object($oCaseConsolidated)) || get_class($oCaseConsolidated) != 'CaseConsolidated') {
|
||||
$oCaseConsolidated = new CaseConsolidated();
|
||||
$oCaseConsolidated->setTasUid($sTasUid);
|
||||
}
|
||||
|
||||
if ($sStatus == '1') {
|
||||
$oCaseConsolidated->setConStatus('ACTIVE');
|
||||
} else {
|
||||
$oCaseConsolidated->setConStatus('INACTIVE');
|
||||
}
|
||||
|
||||
$oCaseConsolidated->setDynUid($sDynUid);
|
||||
$oCaseConsolidated->setRepTabUid($sRepTabUid);
|
||||
$oCaseConsolidated->save();
|
||||
|
||||
$sClassName = $tableName;//'__' . $sTasUid;
|
||||
|
||||
if ($sStatus == '1') {
|
||||
//$oAdditionalTables->createPropelClasses($sTableName, $sClassName, $aFields, $sAddTabUid)
|
||||
//require_once 'classes/model/AdditionalTables.php';
|
||||
//$oAdditionalTables = new AdditionalTables();
|
||||
$oAdditionalTables = new AdditionalTables();//AdditionalTablesConsolidated
|
||||
|
||||
$oAdditionalTables->createPropelClasses($tableName, $sClassName, $aFieldsClases, $sTasUid);
|
||||
} else {
|
||||
$sClassName = $tableName;
|
||||
$sPath = PATH_DB . SYS_SYS . PATH_SEP . 'classes' . PATH_SEP;
|
||||
|
||||
@unlink($sPath . $sClassName . '.php');
|
||||
@unlink($sPath . $sClassName . 'Peer.php');
|
||||
@unlink($sPath . PATH_SEP . 'map' . PATH_SEP . $sClassName . 'MapBuilder.php');
|
||||
@unlink($sPath . PATH_SEP . 'om' . PATH_SEP . 'Base' . $sClassName . '.php');
|
||||
@unlink($sPath . PATH_SEP . 'om' . PATH_SEP . 'Base' . $sClassName . 'Peer.php');
|
||||
$sRepTabUid = '';
|
||||
}
|
||||
|
||||
$_POST['form']['PRO_UID'] = $sProUid;
|
||||
$_POST['form']['REP_TAB_UID'] = $sRepTabUid;
|
||||
$_POST['form']['REP_TAB_NAME'] = $tableName;
|
||||
$_POST['form']['REP_TAB_TYPE'] = "NORMAL";
|
||||
$_POST['form']['REP_TAB_GRID'] = '';
|
||||
$_POST['form']['REP_TAB_CONNECTION'] = 'wf';
|
||||
$_POST['form']['REP_TAB_CREATE_DATE'] = date("Y-m-d H:i:s");
|
||||
$_POST['form']['REP_TAB_STATUS'] = 'ACTIVE';
|
||||
$_POST['form']['REP_TAB_TITLE'] = $title;
|
||||
$_POST['form']['FIELDS'] = array();
|
||||
|
||||
G::LoadClass("reportTables");
|
||||
$oReportTable = new ReportTable();
|
||||
|
||||
$sOldTableName = $_POST['form']['REP_TAB_NAME'];
|
||||
$sOldConnection = $_POST['form']['REP_TAB_CONNECTION'];
|
||||
$oReportTable->create($_POST['form']);
|
||||
|
||||
$_POST['form']['REP_TAB_UID'] = $oReportTable->getRepTabUid();
|
||||
|
||||
$oReportVar = new ReportVar();
|
||||
$oReportTables = new ReportTables();
|
||||
$oReportTables->deleteAllReportVars($_POST['form']['REP_TAB_UID']);
|
||||
|
||||
$aFields = array();
|
||||
G::LoadClass("pmDynaform");
|
||||
$pmDyna = new pmDynaform(array());
|
||||
$pmDyna->fields["CURRENT_DYNAFORM"] = $sDynUid;
|
||||
$dataDyna = $pmDyna->getDynaform();
|
||||
$json = G::json_decode($dataDyna["DYN_CONTENT"]);
|
||||
$fieldsDyna = $json->items[0]->items;
|
||||
foreach ($fieldsDyna as $value) {
|
||||
$_POST['form']['FIELDS'][] = $value[0]->name . '-' . $value[0]->type;
|
||||
}
|
||||
|
||||
$aFieldsClases = array();
|
||||
$i = 1;
|
||||
$aFieldsClases[$i]['FLD_NAME'] = 'APP_UID';
|
||||
$aFieldsClases[$i]['FLD_NULL'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_KEY'] = 'on';
|
||||
$aFieldsClases[$i]['FLD_AUTO_INCREMENT'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_DESCRIPTION'] = '';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 32;
|
||||
$i++;
|
||||
$aFieldsClases[$i]['FLD_NAME'] = 'APP_NUMBER';
|
||||
$aFieldsClases[$i]['FLD_NULL'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_KEY'] = 'on';
|
||||
$aFieldsClases[$i]['FLD_AUTO_INCREMENT'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_DESCRIPTION'] = '';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
|
||||
foreach ($_POST['form']['FIELDS'] as $sField) {
|
||||
$aField = explode('-', $sField);
|
||||
if ($aField[1] == 'title' || $aField[1] == 'submit') {
|
||||
continue;
|
||||
}
|
||||
$i++;
|
||||
$aFieldsClases[$i]['FLD_NAME'] = $aField[0];
|
||||
$aFieldsClases[$i]['FLD_NULL'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_KEY'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_AUTO_INCREMENT'] = 'off';
|
||||
$aFieldsClases[$i]['FLD_DESCRIPTION'] = '';
|
||||
|
||||
switch ($aField[1]) {
|
||||
case 'currency':
|
||||
case 'percentage':
|
||||
$sType = 'number';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'FLOAT' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
break;
|
||||
case 'text':
|
||||
case 'password':
|
||||
case 'dropdown':
|
||||
case 'yesno':
|
||||
case 'checkbox':
|
||||
case 'radiogroup':
|
||||
case 'hidden':
|
||||
case "link":
|
||||
$sType = 'char';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
break;
|
||||
case 'textarea':
|
||||
$sType = 'text';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'TEXT' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = '';
|
||||
break;
|
||||
case 'date':
|
||||
$sType = 'date';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'DATE' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = '';
|
||||
break;
|
||||
default:
|
||||
$sType = 'char';
|
||||
$aFieldsClases[$i]['FLD_TYPE'] = 'VARCHAR' ;
|
||||
$aFieldsClases[$i]['FLD_SIZE'] = 255;
|
||||
break;
|
||||
}
|
||||
|
||||
$oReportVar->create(array('REP_TAB_UID' => $_POST['form']['REP_TAB_UID'],
|
||||
'PRO_UID' => $_POST['form']['PRO_UID'],
|
||||
'REP_VAR_NAME' => $aField[0],
|
||||
'REP_VAR_TYPE' => $sType));
|
||||
$aFields[] = array('sFieldName' => $aField[0], 'sType' => $sType);
|
||||
}
|
||||
|
||||
$_POST['form']['REP_TAB_TYPE'] = "NORMAL";
|
||||
$oReportTables->dropTable($sOldTableName, $sOldConnection);
|
||||
$oReportTables->createTable($_POST['form']['REP_TAB_NAME'], $_POST['form']['REP_TAB_CONNECTION'], $_POST['form']['REP_TAB_TYPE'], $aFields);
|
||||
$oReportTables->populateTable($_POST['form']['REP_TAB_NAME'], $_POST['form']['REP_TAB_CONNECTION'], $_POST['form']['REP_TAB_TYPE'], $aFields, $_POST['form']['PRO_UID'], '');
|
||||
$sRepTabUid = $_POST['form']['REP_TAB_UID'];
|
||||
|
||||
$oCaseConsolidated = CaseConsolidatedPeer::retrieveByPK($sTasUid);
|
||||
if (!(is_object($oCaseConsolidated)) || get_class($oCaseConsolidated) != 'CaseConsolidated') {
|
||||
$oCaseConsolidated = new CaseConsolidated();
|
||||
$oCaseConsolidated->setTasUid($sTasUid);
|
||||
}
|
||||
|
||||
$oCaseConsolidated->setConStatus('ACTIVE');
|
||||
$oCaseConsolidated->setDynUid($sDynUid);
|
||||
$oCaseConsolidated->setRepTabUid($sRepTabUid);
|
||||
$oCaseConsolidated->save();
|
||||
|
||||
$sClassName = $tableName;
|
||||
$oAdditionalTables = new AdditionalTables();
|
||||
$oAdditionalTables->createPropelClasses($tableName, $sClassName, $aFieldsClases, $sTasUid);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1464,6 +1464,9 @@ class processMap
|
||||
case 7:
|
||||
$sFilename = 'tasks/tasks_Notifications.xml';
|
||||
break;
|
||||
case 8:
|
||||
$sFilename = 'tasks/tasks_Consolidated.xml';
|
||||
break;
|
||||
default:
|
||||
//if the $iForm is not one of the defaults then search under Plugins for an extended property. By JHL Jan 18, 2011
|
||||
$oPluginRegistry = & PMPluginRegistry::getSingleton();
|
||||
@@ -1541,6 +1544,55 @@ class processMap
|
||||
}
|
||||
}
|
||||
|
||||
if ($iForm == 8) {
|
||||
$oCaseConsolidated = CaseConsolidatedPeer::retrieveByPK($_SESSION["cDhTajE2T2lxSkhqMzZUTXVacWYyNcKwV3A4eWYybDdyb1p3"]["TAS_UID"]);
|
||||
if ((is_object($oCaseConsolidated)) && get_class($oCaseConsolidated) == "CaseConsolidated") {
|
||||
require_once ("classes/model/ReportTable.php");
|
||||
|
||||
$aFields["CON_STATUS"] = $oCaseConsolidated->getConStatus();
|
||||
$aFields["DYN_UID"] = $oCaseConsolidated->getDynUid();
|
||||
$aFields["REP_TAB_UID"] = $oCaseConsolidated->getRepTabUid();
|
||||
|
||||
$oReportTables = new ReportTable();
|
||||
$oReportTables = $oReportTables->load($aFields["REP_TAB_UID"]);
|
||||
if (count($oReportTables)>0) {
|
||||
if ($oReportTables['REP_TAB_STATUS'] == 'ACTIVE') {
|
||||
$aFields["TABLE_NAME"] = $oReportTables['REP_TAB_NAME'];
|
||||
$aFields["TITLE"] = $oReportTables['REP_TAB_TITLE'];
|
||||
}
|
||||
}
|
||||
}
|
||||
$aFields["PRO_UID"] = $_SESSION["PROCESS"];
|
||||
$aFields["TAS_UID"] = $_SESSION["cDhTajE2T2lxSkhqMzZUTXVacWYyNcKwV3A4eWYybDdyb1p3"]["TAS_UID"];
|
||||
$aFields["SYS_LANG"] = SYS_LANG;
|
||||
$aFields['INDEX'] = 0;
|
||||
$aFields["TABLE_NAME_DEFAULT"] = "__" . $aFields["TAS_UID"];
|
||||
|
||||
$oCriteria = new Criteria("workflow");
|
||||
$del = DBAdapter::getStringDelimiter();
|
||||
|
||||
$oCriteria->setDistinct();
|
||||
$oCriteria->addSelectColumn(DynaformPeer::DYN_UID);
|
||||
$oCriteria->addSelectColumn(ContentPeer::CON_VALUE);
|
||||
|
||||
$aConditions = array();
|
||||
$aConditions[] = array(DynaformPeer::DYN_UID, ContentPeer::CON_ID);
|
||||
$aConditions[] = array(ContentPeer::CON_CATEGORY, $del . "DYN_TITLE" . $del);
|
||||
$aConditions[] = array(ContentPeer::CON_LANG, $del . "en" . $del);
|
||||
$oCriteria->addJoinMC($aConditions, Criteria::LEFT_JOIN);
|
||||
|
||||
$oCriteria->add(DynaformPeer::PRO_UID, $_SESSION["PROCESS"]);
|
||||
$oCriteria->add(DynaformPeer::DYN_TYPE, "grid");
|
||||
|
||||
$oCriteria->addAscendingOrderByColumn(ContentPeer::CON_VALUE);
|
||||
|
||||
$numRows = DynaformPeer::doCount($oCriteria);
|
||||
if ($numRows == 0) {
|
||||
echo "<div style=\"margin:1em;\"><strong>".G::LoadTranslation('ID_ALERT')."</strong><br />".G::LoadTranslation('ID_CONSOLIDATED_DYNAFORM_REQUIRED')."</div>";
|
||||
die;
|
||||
}
|
||||
}
|
||||
|
||||
global $G_PUBLISH;
|
||||
G::LoadClass('xmlfield_InputPM');
|
||||
$G_PUBLISH = new Publisher();
|
||||
|
||||
@@ -54,8 +54,15 @@ class Designer extends Controller
|
||||
$clientToken["client_id"] = $client['CLIENT_ID'];
|
||||
$clientToken["client_secret"] = $client['CLIENT_SECRET'];
|
||||
|
||||
$consolidated = 0;
|
||||
$licensedFeatures = & PMLicensedFeatures::getSingleton();
|
||||
if ($licensedFeatures->verifyfeature('7TTeDBQeWRoZTZKYjh4eFpYUlRDUUEyVERPU3FxellWank=')) {
|
||||
$consolidated = 1;
|
||||
}
|
||||
|
||||
$this->setVar('prj_uid', $proUid);
|
||||
$this->setVar('app_uid', $appUid);
|
||||
$this->setVar('consolidated', $consolidated);
|
||||
$this->setVar('prj_readonly', $proReadOnly);
|
||||
$this->setVar('credentials', base64_encode(json_encode($clientToken)));
|
||||
$this->setVar('isDebugMode', $debug);
|
||||
|
||||
@@ -1698,6 +1698,13 @@ var processmap=function(){
|
||||
noClear : true
|
||||
}]
|
||||
};
|
||||
if (this.options.consolidated == '1') {
|
||||
panel.tab.options.push({
|
||||
title : _('ID_CONSOLIDATED_CASE_LIST'),
|
||||
content : this.parent.closure({instance:this,method:iForm,args:[panel,index,8]}),
|
||||
noClear : true
|
||||
});
|
||||
}
|
||||
var taskOptions = this.data.db.taskOptions;
|
||||
this.loadExtendedProperties = function(){
|
||||
for(i=0;i<taskOptions.length;i++){
|
||||
|
||||
@@ -79,6 +79,14 @@ $G_ID_SUB_MENU_SELECTED = '_';
|
||||
$G_PUBLISH = new Publisher();
|
||||
$G_PUBLISH->AddContent( 'template', '', '', '', $oTemplatePower );
|
||||
|
||||
$consolidated = 1;
|
||||
/*----------------------------------********---------------------------------*/
|
||||
$licensedFeatures = & PMLicensedFeatures::getSingleton();
|
||||
if ($licensedFeatures->verifyfeature('7TTeDBQeWRoZTZKYjh4eFpYUlRDUUEyVERPU3FxellWank=')) {
|
||||
$consolidated = 1;
|
||||
}
|
||||
/*----------------------------------********---------------------------------*/
|
||||
|
||||
$oHeadPublisher = & headPublisher::getSingleton();
|
||||
$oHeadPublisher->addScriptFile( '/jscore/dbConnections/main.js' );
|
||||
$oHeadPublisher->addScriptCode( '
|
||||
@@ -99,6 +107,7 @@ $oHeadPublisher->addScriptCode( '
|
||||
dataServer :"processes_Ajax.php",
|
||||
uid :"' . $processUID . '",
|
||||
lang :"' . SYS_LANG . '",
|
||||
consolidated :"' . $consolidated . '",
|
||||
theme :"processmaker",
|
||||
size :{w:pb.offsetWidth-10,h:pb.offsetHeight},
|
||||
images_dir :"/jscore/processmap/core/images/"
|
||||
|
||||
@@ -31,6 +31,7 @@ class Consolidated
|
||||
$criteria = new Criteria();
|
||||
$criteria->addSelectColumn(CaseConsolidatedPeer::DYN_UID);
|
||||
$criteria->addSelectColumn(\ReportTablePeer::REP_TAB_NAME);
|
||||
$criteria->addSelectColumn(\ReportTablePeer::REP_TAB_UID);
|
||||
$criteria->addSelectColumn(ContentPeer::CON_VALUE);
|
||||
$criteria->addSelectColumn(CaseConsolidatedPeer::CON_STATUS);
|
||||
|
||||
@@ -48,8 +49,9 @@ class Consolidated
|
||||
$response = $dataset->getRow();
|
||||
} else {
|
||||
$response = array(
|
||||
'REP_TAB_NAME' => '__' . $tas_uid,
|
||||
'CON_VALUE' => '__' . $tas_uid,
|
||||
'REP_TAB_UID' => '',
|
||||
'REP_TAB_NAME' => '__' . $tas_uid,
|
||||
'CON_VALUE' => '__' . $tas_uid,
|
||||
);
|
||||
}
|
||||
return array_change_key_case($response, CASE_LOWER);;
|
||||
@@ -445,22 +447,26 @@ class Consolidated
|
||||
$xmlfrm = new \stdclass();
|
||||
$xmlfrm->fields = array();
|
||||
foreach ($fieldsDyna as $key => $value) {
|
||||
//$temp = $value[0];
|
||||
if ($value[0]->type == 'title' || $value[0]->type == 'submit') {
|
||||
continue;
|
||||
}
|
||||
$temp = new \stdclass();
|
||||
$temp->type = $value[0]->type;
|
||||
$temp->label = $value[0]->label;
|
||||
$temp->name = $value[0]->name;
|
||||
$temp->required = $value[0]->required;
|
||||
$temp->mode = $value[0]->mode;
|
||||
$temp->required = (isset($value[0]->required)) ? $value[0]->required : 0;
|
||||
$temp->mode = (isset($value[0]->mode)) ? $value[0]->mode : 'edit';
|
||||
|
||||
$temp->storeData = '[';
|
||||
foreach ($value[0]->options as $valueOption) {
|
||||
$temp->storeData .= '{"value":"' . $valueOption['value'] . '", "text":"' . $valueOption['value'] . '"},';
|
||||
if (!empty($value[0]->options)) {
|
||||
$temp->storeData = '[';
|
||||
foreach ($value[0]->options as $valueOption) {
|
||||
$temp->storeData .= '["' . $valueOption['value'] . '", "' . $valueOption['label'] . '"],';
|
||||
}
|
||||
$temp->storeData = substr($temp->storeData,0,-1);
|
||||
$temp->storeData .= ']';
|
||||
}
|
||||
$temp->storeData = substr($temp->storeData,0,-1);
|
||||
$temp->storeData .= ']';
|
||||
|
||||
$temp->readOnly = ($value[0]->mode == 'view') ? "0" : "1";
|
||||
$temp->readOnly = ($temp->mode == 'view') ? "1" : "0";
|
||||
$temp->colWidth = 200;
|
||||
$xmlfrm->fields[] = $temp;
|
||||
}
|
||||
@@ -515,31 +521,66 @@ class Consolidated
|
||||
case "dropdown":
|
||||
$dropList[] = $field->name;
|
||||
$align = "left";
|
||||
$editor = "* new Ext.form.ComboBox({
|
||||
|
||||
if (empty($field->storeData)) {
|
||||
$editor = "* new Ext.form.ComboBox({
|
||||
id: \"cbo" . $field->name . "_" . $pro_uid . "\",
|
||||
|
||||
valueField: 'value',
|
||||
displayField: 'text',
|
||||
|
||||
/*store: comboStore,*/
|
||||
store: new Ext.data.JsonStore({
|
||||
storeId: \"store" . $field->name . "_" . $pro_uid . "\",
|
||||
proxy: new Ext.data.HttpProxy({
|
||||
url: 'proxyDataCombobox'
|
||||
}),
|
||||
root: 'records',
|
||||
fields: [{name: 'value'},
|
||||
{name: 'text'}
|
||||
]
|
||||
}),
|
||||
|
||||
triggerAction: 'all',
|
||||
mode: 'local',
|
||||
editable: false,
|
||||
disabled: $fieldDisabled,
|
||||
lazyRender: false,
|
||||
|
||||
$fieldReadOnly
|
||||
$fieldRequired
|
||||
$fieldValidate
|
||||
cls: \"\"
|
||||
}) *";
|
||||
} else {
|
||||
$editor = "* new Ext.form.ComboBox({
|
||||
id: \"cbo" . $field->name . "_" . $pro_uid . "\",
|
||||
|
||||
typeAhead: true,
|
||||
autocomplete:true,
|
||||
editable:false,
|
||||
lazyRender:true,
|
||||
mode:'local',
|
||||
triggerAction:'all',
|
||||
forceSelection:true,
|
||||
|
||||
valueField: 'value',
|
||||
displayField: 'text',
|
||||
|
||||
/*store: comboStore,*/
|
||||
store: new Ext.data.JsonStore({
|
||||
data: " . htmlspecialchars_decode($field->storeData) . ",
|
||||
fields: [{name: 'value'},
|
||||
{name: 'text'}
|
||||
]
|
||||
}),
|
||||
|
||||
|
||||
queryMode: 'local',
|
||||
editable: false,
|
||||
disabled: $fieldDisabled,
|
||||
lazyRender: false,
|
||||
store:new Ext.data.SimpleStore({
|
||||
fields: [{name: 'value'},
|
||||
{name: 'text'}],
|
||||
data: " . htmlspecialchars_decode($field->storeData) . ",
|
||||
sortInfo:{field:'text',direction:'ASC'}
|
||||
}),
|
||||
|
||||
$fieldReadOnly
|
||||
$fieldRequired
|
||||
$fieldValidate
|
||||
cls: \"\"
|
||||
}) *";
|
||||
}
|
||||
|
||||
|
||||
$editor = eregi_replace("[\n|\r|\n\r]", ' ', $editor);
|
||||
$width = $field->colWidth;
|
||||
|
||||
@@ -789,7 +830,7 @@ class Consolidated
|
||||
$width = $size;
|
||||
$editor = "* new Ext.form.TextField({ $fieldReadOnly $fieldRequired $fieldValidate cls: \"\"}) *";
|
||||
|
||||
if ($field->mode != "edit") {
|
||||
if ($field->mode != "edit" && $field->mode != "parent") {
|
||||
$editor = null;
|
||||
}
|
||||
|
||||
@@ -930,11 +971,9 @@ class Consolidated
|
||||
|
||||
$array = array();
|
||||
$array["form"] = $dataUpdate;
|
||||
|
||||
$appUid = $array["form"]["APP_UID"];
|
||||
|
||||
$fields = $oCase->loadCase($appUid);
|
||||
|
||||
if (!isset($fields["DEL_INIT_DATE"])) {
|
||||
$oCase->setDelInitDate($appUid, $delIndex);
|
||||
//$aFields = $oCase->loadCase($appUid, $delIndex);
|
||||
@@ -949,6 +988,7 @@ class Consolidated
|
||||
foreach ($array["form"] as $key => $value) {
|
||||
$array["form"][$key] = (string)$array["form"][$key];
|
||||
}
|
||||
/*
|
||||
$_POST['form'] = $array["form"];
|
||||
if (!class_exists('Smarty')) {
|
||||
require_once(PATH_THIRDPARTY . 'smarty' . PATH_SEP . 'libs' . PATH_SEP . 'Smarty.class.php');
|
||||
@@ -956,6 +996,7 @@ class Consolidated
|
||||
$oForm = new \Form( $auxAppDataProcess . "/" . $dynaformUid , PATH_DYNAFORM );
|
||||
$oForm->validatePost();
|
||||
$array["form"] = $_POST['form'];
|
||||
*/
|
||||
|
||||
$fields["APP_DATA"] = array_merge($fields["APP_DATA"], G::getSystemConstants());
|
||||
$fields["APP_DATA"] = array_merge($fields["APP_DATA"], $array["form"]);
|
||||
|
||||
@@ -389,15 +389,12 @@ class Task
|
||||
$dataConso = array(
|
||||
'tas_uid' => $arrayProperty['TAS_UID'],
|
||||
'dyn_uid' => $arrayProperty['CONSOLIDATE_DATA']['consolidated_dynaform'],
|
||||
'status' => true,
|
||||
'pro_uid' => $arrayProperty['PRO_UID'],
|
||||
'rep_uid' => '',
|
||||
'rep_uid' => $arrayProperty['CONSOLIDATE_DATA']['consolidated_report_table'],
|
||||
'table_name' => $arrayProperty['CONSOLIDATE_DATA']['consolidated_table'],
|
||||
'title' => $arrayProperty['CONSOLIDATE_DATA']['consolidated_title'],
|
||||
'overwrite' => true,
|
||||
'isBPMN' => true
|
||||
'title' => $arrayProperty['CONSOLIDATE_DATA']['consolidated_title']
|
||||
);
|
||||
$consolidated->cochalo($dataConso);
|
||||
$consolidated->saveConsolidated($dataConso);
|
||||
|
||||
}
|
||||
$arrayResult["status"] = "OK";
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
<script type="text/javascript">
|
||||
var prj_uid = "{$prj_uid}";
|
||||
var app_uid = "{$app_uid}";
|
||||
var consolidated = "{$consolidated}";
|
||||
var prj_readonly = "{$prj_readonly}";
|
||||
var credentials = "{$credentials}";
|
||||
</script>
|
||||
@@ -66,6 +67,7 @@
|
||||
<script type="text/javascript">
|
||||
var prj_uid = "{$prj_uid}";
|
||||
var app_uid = "{$app_uid}";
|
||||
var consolidated = "{$consolidated}";
|
||||
var prj_readonly = "{$prj_readonly}";
|
||||
var credentials = "{$credentials}";
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user