106 lines
3.6 KiB
PHP
106 lines
3.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* class.pmDynaform.php
|
|
* Implementing pmDynaform library in the running case.
|
|
*
|
|
* @author Roly Rudy Gutierrez Pinto
|
|
* @package engine.classes
|
|
*/
|
|
class pmDynaform
|
|
{
|
|
|
|
public static $instance = null;
|
|
public $dyn_uid = null;
|
|
public $record = null;
|
|
public $app_data = null;
|
|
|
|
public function __construct($dyn_uid, $app_data)
|
|
{
|
|
$this->dyn_uid = $dyn_uid;
|
|
$this->app_data = $app_data;
|
|
|
|
$this->getDynaform();
|
|
}
|
|
|
|
public function getDynaform()
|
|
{
|
|
if ($this->record != null) {
|
|
return $this->record;
|
|
}
|
|
$a = new Criteria("workflow");
|
|
$a->addSelectColumn(DynaformPeer::DYN_VERSION);
|
|
$a->addSelectColumn(DynaformPeer::DYN_CONTENT);
|
|
$a->addSelectColumn(DynaformPeer::PRO_UID);
|
|
$a->addSelectColumn(DynaformPeer::DYN_UID);
|
|
$a->add(DynaformPeer::DYN_UID, $this->dyn_uid, Criteria::EQUAL);
|
|
$ds = ProcessPeer::doSelectRS($a);
|
|
$ds->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
$ds->next();
|
|
$row = $ds->getRow();
|
|
$this->record = isset($row) ? $row : null;
|
|
|
|
return $this->record;
|
|
}
|
|
|
|
public function getMergeValues()
|
|
{
|
|
$dataJSON = G::json_decode($this->record["DYN_CONTENT"]);
|
|
$dt = $dataJSON->items[0]->items;
|
|
$n = count($dt);
|
|
for ($i = 0; $i < $n; $i++) {
|
|
$dr = $dt[$i];
|
|
$n2 = count($dr);
|
|
for ($j = 0; $j < $n2; $j++) {
|
|
if ($dr[$j]->name) {
|
|
$valueField = isset($this->app_data[$dr[$j]->name]) ? $this->app_data[$dr[$j]->name] : "";
|
|
$dataJSON->items[0]->items[$i][$j]->defaultValue = $valueField;
|
|
}
|
|
}
|
|
}
|
|
return G::json_encode($dataJSON);
|
|
}
|
|
|
|
public function mergeValues()
|
|
{
|
|
$this->record["DYN_CONTENT"] = $this->getMergeValues();
|
|
}
|
|
|
|
public function isResponsive()
|
|
{
|
|
return $this->record != null && $this->record["DYN_VERSION"] == 2 ? true : false;
|
|
}
|
|
|
|
public function printView($pm_run_outside_main_app, $application)
|
|
{
|
|
ob_clean();
|
|
$file = file_get_contents(PATH_HOME . 'public_html/lib/pmdynaform/build/cases_Step_Pmdynaform_View.html');
|
|
$file = str_replace("{JSON_DATA}", $this->record["DYN_CONTENT"], $file);
|
|
$file = str_replace("{PM_RUN_OUTSIDE_MAIN_APP}", $pm_run_outside_main_app, $file);
|
|
$file = str_replace("{DYN_UID}", $this->dyn_uid, $file);
|
|
$file = str_replace("{DYNAFORMNAME}", $this->record["PRO_UID"] . "_" . $this->record["DYN_UID"], $file);
|
|
$file = str_replace("{APP_UID}", $application, $file);
|
|
echo $file;
|
|
exit();
|
|
}
|
|
|
|
public function printEdit($pm_run_outside_main_app, $application, $headData)
|
|
{
|
|
ob_clean();
|
|
$file = file_get_contents(PATH_HOME . 'public_html/lib/pmdynaform/build/cases_Step_Pmdynaform.html');
|
|
$file = str_replace("{JSON_DATA}", $this->record["DYN_CONTENT"], $file);
|
|
$file = str_replace("{CASE}", $headData["CASE"], $file);
|
|
$file = str_replace("{APP_NUMBER}", $headData["APP_NUMBER"], $file);
|
|
$file = str_replace("{TITLE}", $headData["TITLE"], $file);
|
|
$file = str_replace("{APP_TITLE}", $headData["APP_TITLE"], $file);
|
|
$file = str_replace("{PM_RUN_OUTSIDE_MAIN_APP}", $pm_run_outside_main_app, $file);
|
|
$file = str_replace("{DYN_UID}", $this->dyn_uid, $file);
|
|
$file = str_replace("{DYNAFORMNAME}", $this->record["PRO_UID"] . "_" . $this->record["DYN_UID"], $file);
|
|
$file = str_replace("{APP_UID}", $application, $file);
|
|
echo $file;
|
|
exit();
|
|
}
|
|
|
|
}
|
|
|