Merged in release/3.3.13 (pull request #6946)
Updating branch develop with last changes from release/3.3.13 Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
@@ -1919,14 +1919,19 @@ class Processes
|
||||
|
||||
|
||||
/**
|
||||
* Gets Input Documents Rows from aProcess.
|
||||
* Gets Input Documents Rows from process.
|
||||
*
|
||||
* @param string $proUid
|
||||
* @param boolean $unsetInpDocId
|
||||
*
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*
|
||||
* @see Processes::getWorkflowData()
|
||||
* @see ProcessMaker\BusinessModel\Migrator\InputDocumentsMigrator::export()
|
||||
* @see ProcessMaker\Importer\Importer::saveCurrentProcess()
|
||||
*/
|
||||
public function getInputRows($proUid)
|
||||
public function getInputRows($proUid, $unsetInpDocId = true)
|
||||
{
|
||||
try {
|
||||
$inputList = [];
|
||||
@@ -1938,7 +1943,9 @@ class Processes
|
||||
while ($row = $dataset->getRow()) {
|
||||
$input = new InputDocument();
|
||||
$infoInput = $input->load($row['INP_DOC_UID']);
|
||||
unset($infoInput['INP_DOC_ID']);
|
||||
if ($unsetInpDocId === true) {
|
||||
unset($infoInput['INP_DOC_ID']);
|
||||
}
|
||||
$inputList[] = $infoInput;
|
||||
$dataset->next();
|
||||
}
|
||||
@@ -1956,6 +1963,10 @@ class Processes
|
||||
*
|
||||
* @return void
|
||||
* @throws Exception
|
||||
*
|
||||
* @see Processes::createProcessPropertiesFromData()
|
||||
* @see Processes::updateProcessFromData()
|
||||
* @see ProcessMaker\BusinessModel\Migrator\InputDocumentsMigrator::import()
|
||||
*/
|
||||
public function createInputRows($input)
|
||||
{
|
||||
@@ -1970,11 +1981,15 @@ class Processes
|
||||
//Get the INP_DOC_ID column
|
||||
$dataSet = BasePeer::doSelect($criteria, $con);
|
||||
$dataSet->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||
if ($dataSet->next()) {
|
||||
$inputInfo = $dataSet->getRow();
|
||||
$row['INP_DOC_ID'] = $inputInfo['INP_DOC_ID'];
|
||||
if (isset($row["__INP_DOC_ID_UPDATE__"]) && $row["__INP_DOC_ID_UPDATE__"] === false) {
|
||||
unset($row["__INP_DOC_ID_UPDATE__"]);
|
||||
} else {
|
||||
$row['INP_DOC_ID'] = null;
|
||||
if ($dataSet->next()) {
|
||||
$inputInfo = $dataSet->getRow();
|
||||
$row['INP_DOC_ID'] = $inputInfo['INP_DOC_ID'];
|
||||
} else {
|
||||
$row['INP_DOC_ID'] = null;
|
||||
}
|
||||
}
|
||||
BasePeer::doDelete($criteria, $con);
|
||||
//Prepare the insert
|
||||
@@ -2102,11 +2117,16 @@ class Processes
|
||||
* Gets the Output Documents Rows from a Process.
|
||||
*
|
||||
* @param string $proUid
|
||||
* @param boolean $unsetOutDocId
|
||||
*
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*
|
||||
* @see Processes::getWorkflowData()
|
||||
* @see ProcessMaker\BusinessModel\Migrator\OutputDocumentsMigrator::export()
|
||||
* @see ProcessMaker\Importer\Importer::saveCurrentProcess()
|
||||
*/
|
||||
public function getOutputRows($proUid)
|
||||
public function getOutputRows($proUid, $unsetOutDocId = true)
|
||||
{
|
||||
try {
|
||||
$outputList = [];
|
||||
@@ -2118,7 +2138,9 @@ class Processes
|
||||
while ($row = $dataset->getRow()) {
|
||||
$output = new OutputDocument();
|
||||
$infoOutput = $output->Load($row['OUT_DOC_UID']);
|
||||
unset($infoOutput['OUT_DOC_ID']);
|
||||
if ($unsetOutDocId === true) {
|
||||
unset($infoOutput['OUT_DOC_ID']);
|
||||
}
|
||||
$outputList[] = $infoOutput;
|
||||
$dataset->next();
|
||||
}
|
||||
@@ -2136,6 +2158,10 @@ class Processes
|
||||
*
|
||||
* @return void
|
||||
* @throws Exception
|
||||
*
|
||||
* @see Processes::createProcessPropertiesFromData()
|
||||
* @see Processes::updateProcessFromData()
|
||||
* @see ProcessMaker\BusinessModel\Migrator\OutputDocumentsMigrator::import()
|
||||
*/
|
||||
public function createOutputRows($output)
|
||||
{
|
||||
@@ -2150,11 +2176,15 @@ class Processes
|
||||
//Get the OUT_DOC_ID column
|
||||
$dataSet = BasePeer::doSelect($criteria, $con);
|
||||
$dataSet->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||
if ($dataSet->next()) {
|
||||
$outputInfo = $dataSet->getRow();
|
||||
$row['OUT_DOC_ID'] = $outputInfo['OUT_DOC_ID'];
|
||||
if (isset($row["__OUT_DOC_ID_UPDATE__"]) && $row["__OUT_DOC_ID_UPDATE__"] === false) {
|
||||
unset($row["__OUT_DOC_ID_UPDATE__"]);
|
||||
} else {
|
||||
$row['OUT_DOC_ID'] = null;
|
||||
if ($dataSet->next()) {
|
||||
$outputInfo = $dataSet->getRow();
|
||||
$row['OUT_DOC_ID'] = $outputInfo['OUT_DOC_ID'];
|
||||
} else {
|
||||
$row['OUT_DOC_ID'] = null;
|
||||
}
|
||||
}
|
||||
BasePeer::doDelete($criteria, $con);
|
||||
//Prepare the insert
|
||||
@@ -2931,11 +2961,16 @@ class Processes
|
||||
* Get Dynaform Rows from a Process
|
||||
*
|
||||
* @param string $proUid
|
||||
* @param boolean $unsetDynId
|
||||
*
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*
|
||||
* @see Processes::getWorkflowData()
|
||||
* @see ProcessMaker\BusinessModel\Migrator\DynaformsMigrator::export()
|
||||
* @see ProcessMaker\Importer\Importer::saveCurrentProcess()
|
||||
*/
|
||||
public function getDynaformRows($proUid)
|
||||
public function getDynaformRows($proUid, $unsetDynId = true)
|
||||
{
|
||||
try {
|
||||
$dynaformList = [];
|
||||
@@ -2947,7 +2982,9 @@ class Processes
|
||||
while ($row = $dataset->getRow()) {
|
||||
$dynaform = new Dynaform();
|
||||
$infoDyn = $dynaform->Load($row['DYN_UID']);
|
||||
unset($infoDyn['DYN_ID']);
|
||||
if ($unsetDynId === true) {
|
||||
unset($infoDyn['DYN_ID']);
|
||||
}
|
||||
$dynaformList[] = $infoDyn;
|
||||
$dataset->next();
|
||||
}
|
||||
@@ -3077,12 +3114,16 @@ class Processes
|
||||
}
|
||||
|
||||
/**
|
||||
* Create dynaforms for a process
|
||||
* Create dynaforms for a process.
|
||||
*
|
||||
* @param array $dynaforms
|
||||
*
|
||||
* @return void
|
||||
* @throws Exception
|
||||
*
|
||||
* @see Processes::createProcessPropertiesFromData()
|
||||
* @see Processes::updateProcessFromData()
|
||||
* @see ProcessMaker\BusinessModel\Migrator\DynaformsMigrator::import()
|
||||
*/
|
||||
public function createDynaformRows($dynaforms)
|
||||
{
|
||||
@@ -3097,11 +3138,15 @@ class Processes
|
||||
//Get the DYN_ID column
|
||||
$dataSet = BasePeer::doSelect($criteria, $con);
|
||||
$dataSet->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||
if ($dataSet->next()) {
|
||||
$dynInfo = $dataSet->getRow();
|
||||
$row['DYN_ID'] = $dynInfo['DYN_ID'];
|
||||
if (isset($row["__DYN_ID_UPDATE__"]) && $row["__DYN_ID_UPDATE__"] === false) {
|
||||
unset($row["__DYN_ID_UPDATE__"]);
|
||||
} else {
|
||||
$row['DYN_ID'] = null;
|
||||
if ($dataSet->next()) {
|
||||
$dynInfo = $dataSet->getRow();
|
||||
$row['DYN_ID'] = $dynInfo['DYN_ID'];
|
||||
} else {
|
||||
$row['DYN_ID'] = null;
|
||||
}
|
||||
}
|
||||
BasePeer::doDelete($criteria, $con);
|
||||
//Prepare the insert
|
||||
|
||||
@@ -91,6 +91,16 @@ class SpoolRun
|
||||
$this->appMsgUid = $v;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the fileData property
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getFileData()
|
||||
{
|
||||
return $this->fileData;
|
||||
}
|
||||
|
||||
/**
|
||||
* get all files into spool in a list
|
||||
*
|
||||
@@ -212,32 +222,52 @@ class SpoolRun
|
||||
}
|
||||
|
||||
/**
|
||||
* set email parameters
|
||||
* Set email parameters
|
||||
*
|
||||
* @param string $sAppMsgUid , $sSubject, $sFrom, $sTo, $sBody, $sDate, $sCC, $sBCC, $sTemplate
|
||||
* @return none
|
||||
* @param string $appMsgUid
|
||||
* @param string $subject
|
||||
* @param string $from
|
||||
* @param string $to
|
||||
* @param string $body
|
||||
* @param string $date
|
||||
* @param string $cc
|
||||
* @param string $bcc
|
||||
* @param string $template
|
||||
* @param array $attachments
|
||||
* @param bool $contentTypeIsHtml
|
||||
* @param string $error
|
||||
*
|
||||
* @see SpoolRun->create()
|
||||
* @see SpoolRun->resendEmails()
|
||||
*/
|
||||
public function setData($sAppMsgUid, $sSubject, $sFrom, $sTo, $sBody, $sDate = "", $sCC = "", $sBCC = "", $sTemplate = "", $aAttachment = array(), $bContentTypeIsHtml = true, $sError = "")
|
||||
public function setData($appMsgUid, $subject, $from, $to, $body, $date = '', $cc = '', $bcc = '', $template = '', $attachments = [],
|
||||
$contentTypeIsHtml = true, $error = '')
|
||||
{
|
||||
$this->spoolId = $sAppMsgUid;
|
||||
$this->fileData['subject'] = $sSubject;
|
||||
$this->fileData['from'] = $sFrom;
|
||||
$this->fileData['to'] = $sTo;
|
||||
$this->fileData['body'] = $sBody;
|
||||
$this->fileData['date'] = ($sDate != '' ? $sDate : date('Y-m-d H:i:s'));
|
||||
$this->fileData['cc'] = $sCC;
|
||||
$this->fileData['bcc'] = $sBCC;
|
||||
$this->fileData['template'] = $sTemplate;
|
||||
$this->fileData['attachments'] = $aAttachment;
|
||||
$this->fileData['envelope_to'] = array();
|
||||
$this->fileData["contentTypeIsHtml"] = $bContentTypeIsHtml;
|
||||
$this->fileData["error"] = $sError;
|
||||
// Fill "fileData" property
|
||||
$this->spoolId = $appMsgUid;
|
||||
$this->fileData['subject'] = $subject;
|
||||
$this->fileData['from'] = $from;
|
||||
$this->fileData['to'] = $to;
|
||||
$this->fileData['body'] = $body;
|
||||
$this->fileData['date'] = (!empty($date) ? $date : date('Y-m-d H:i:s'));
|
||||
$this->fileData['cc'] = $cc;
|
||||
$this->fileData['bcc'] = $bcc;
|
||||
$this->fileData['template'] = $template;
|
||||
$this->fileData['attachments'] = $attachments;
|
||||
$this->fileData["contentTypeIsHtml"] = $contentTypeIsHtml;
|
||||
$this->fileData["error"] = $error;
|
||||
|
||||
// Initialize some values used internally
|
||||
$this->fileData['envelope_to'] = [];
|
||||
$this->fileData['envelope_cc'] = [];
|
||||
$this->fileData['envelope_bcc'] = [];
|
||||
|
||||
// Domain validation when the email engine is "OpenMail"
|
||||
if (array_key_exists('MESS_ENGINE', $this->config)) {
|
||||
if ($this->config['MESS_ENGINE'] == 'OPENMAIL') {
|
||||
if ($this->config['MESS_SERVER'] != '') {
|
||||
if (($sAux = @gethostbyaddr($this->config['MESS_SERVER']))) {
|
||||
$this->fileData['domain'] = $sAux;
|
||||
if ($this->config['MESS_ENGINE'] === 'OPENMAIL') {
|
||||
if (!empty($this->config['MESS_SERVER'])) {
|
||||
if (($domain = @gethostbyaddr($this->config['MESS_SERVER']))) {
|
||||
$this->fileData['domain'] = $domain;
|
||||
} else {
|
||||
$this->fileData['domain'] = $this->config['MESS_SERVER'];
|
||||
}
|
||||
@@ -818,4 +848,12 @@ class SpoolRun
|
||||
|
||||
return $appMsgUid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the private method "handleEnvelopeTo", this method was created in order to use in the unit tests
|
||||
*/
|
||||
public function runHandleEnvelopeTo()
|
||||
{
|
||||
$this->handleEnvelopeTo();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23660,8 +23660,8 @@ msgstr "Setting SUPER privilege"
|
||||
# TRANSLATION
|
||||
# LABEL/ID_SETUP
|
||||
#: LABEL/ID_SETUP
|
||||
msgid "ADMIN"
|
||||
msgstr "ADMIN"
|
||||
msgid "Admin"
|
||||
msgstr "Admin"
|
||||
|
||||
# TRANSLATION
|
||||
# LABEL/ID_SETUP_MAILCONF_TITLE
|
||||
|
||||
@@ -60832,7 +60832,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_SETTINGS_HEARTBEAT_TITLE','en','Display Setting','2014-01-15') ,
|
||||
( 'LABEL','ID_SETTING_MESSAGE','en','The Settings tool was clicked','2014-01-15') ,
|
||||
( 'LABEL','ID_SETTING_SUPER','en','Setting SUPER privilege','2014-01-28') ,
|
||||
( 'LABEL','ID_SETUP','en','ADMIN','2014-01-15') ,
|
||||
( 'LABEL','ID_SETUP','en','Admin','2014-01-15') ,
|
||||
( 'LABEL','ID_SETUP_MAILCONF_TITLE','en','Test SMTP Connection','2014-01-15') ,
|
||||
( 'LABEL','ID_SETUP_WEBSERVICES','en','Setup','2014-01-15') ,
|
||||
( 'LABEL','ID_SET_A_TABLE_NAME','en','Set a Table Name','2014-01-15') ,
|
||||
|
||||
@@ -2,32 +2,9 @@
|
||||
/**
|
||||
* processmaker.php
|
||||
*
|
||||
* ProcessMaker Open Source Edition
|
||||
* Copyright (C) 2004 - 2008 Colosa Inc.23
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
|
||||
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
|
||||
*
|
||||
* ProcessMaker main menu
|
||||
*/
|
||||
|
||||
|
||||
/*************************************
|
||||
* ---= Processmaker main menu=---
|
||||
*************************************/
|
||||
|
||||
global $G_TMP_MENU;
|
||||
global $RBAC;
|
||||
|
||||
@@ -57,7 +34,7 @@ if ($RBAC->userCanAccess('PM_DASHBOARD') == 1) {
|
||||
|
||||
// ADMIN MODULE
|
||||
if ($RBAC->userCanAccess('PM_SETUP') == 1 || $RBAC->userCanAccess('PM_USERS') == 1) {
|
||||
$G_TMP_MENU->AddIdRawOption('SETUP', 'setup/main', strtolower(G::LoadTranslation('ID_SETUP')), '', '', '', 'x-pm-setup');
|
||||
$G_TMP_MENU->AddIdRawOption('SETUP', 'setup/main', G::LoadTranslation('ID_SETUP'), '', '', '', 'x-pm-setup');
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -300,6 +300,24 @@ abstract class Importer
|
||||
$this->preserveEmailEventConfiguration($emailEvent);
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($this->importData["tables"]["workflow"]["dynaforms"])) {
|
||||
foreach ($this->importData["tables"]["workflow"]["dynaforms"] as &$dynaform) {
|
||||
$this->preserveDynaformId($dynaform);
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($this->importData["tables"]["workflow"]["inputs"])) {
|
||||
foreach ($this->importData["tables"]["workflow"]["inputs"] as &$input) {
|
||||
$this->preserveInputDocumentId($input);
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($this->importData["tables"]["workflow"]["outputs"])) {
|
||||
foreach ($this->importData["tables"]["workflow"]["outputs"] as &$output) {
|
||||
$this->preserveOutputDocumentId($output);
|
||||
}
|
||||
}
|
||||
|
||||
$objectList = $granularObj->loadObjectsListSelected($this->importData, $newObjectArray);
|
||||
if (sizeof($objectList) > 0 && $processGranulate) {
|
||||
@@ -602,6 +620,18 @@ abstract class Importer
|
||||
foreach ($arrayWorkflowTables["emailEvent"] as &$emailEvent) {
|
||||
$this->preserveEmailEventConfiguration($emailEvent);
|
||||
}
|
||||
|
||||
foreach ($arrayWorkflowTables["dynaforms"] as &$dynaform) {
|
||||
$this->preserveDynaformId($dynaform);
|
||||
}
|
||||
|
||||
foreach ($arrayWorkflowTables["inputs"] as &$input) {
|
||||
$this->preserveInputDocumentId($input);
|
||||
}
|
||||
|
||||
foreach ($arrayWorkflowTables["outputs"] as &$output) {
|
||||
$this->preserveOutputDocumentId($output);
|
||||
}
|
||||
|
||||
$this->importWfTables($arrayWorkflowTables);
|
||||
|
||||
@@ -862,6 +892,8 @@ abstract class Importer
|
||||
* Saves the current objects before import.
|
||||
*
|
||||
* @param string $proUid
|
||||
*
|
||||
* @see ProcessMaker\Importer\Importer::import()
|
||||
*/
|
||||
public function saveCurrentProcess($proUid)
|
||||
{
|
||||
@@ -873,9 +905,9 @@ abstract class Importer
|
||||
$result->tasks = $processes->getTaskRows($proUid);
|
||||
$result->abeConfigurations = $processes->getActionsByEmail($proUid);
|
||||
$result->emailEvents = $processes->getEmailEvent($proUid);
|
||||
$result->dynaforms = $processes->getDynaformRows($proUid);
|
||||
$result->inputs = $processes->getInputRows($proUid);
|
||||
$result->outputs = $processes->getOutputRows($proUid);
|
||||
$result->dynaforms = $processes->getDynaformRows($proUid, false);
|
||||
$result->inputs = $processes->getInputRows($proUid, false);
|
||||
$result->outputs = $processes->getOutputRows($proUid, false);
|
||||
|
||||
$this->setCurrentProcess($result);
|
||||
}
|
||||
@@ -948,4 +980,87 @@ abstract class Importer
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore DYN_ID value for specific dynaform.
|
||||
* The value of __DYN_ID_UPDATE__ only used like a reference.
|
||||
*
|
||||
* @param array $data
|
||||
*
|
||||
* @see ProcessMaker\Importer\Importer::import()
|
||||
* @see ProcessMaker\Importer\Importer::doImport()
|
||||
* @link https://wiki.processmaker.com/3.1/Importing_and_Exporting_Projects#Importing_a_Project
|
||||
*/
|
||||
public function preserveDynaformId(&$data)
|
||||
{
|
||||
$currentProccess = $this->getCurrentProcess();
|
||||
if (!is_object($currentProccess)) {
|
||||
return;
|
||||
}
|
||||
if (!is_array($currentProccess->dynaforms)) {
|
||||
return;
|
||||
}
|
||||
foreach ($currentProccess->dynaforms as $dynaform) {
|
||||
if ($data["DYN_UID"] === $dynaform["DYN_UID"]) {
|
||||
$data["DYN_ID"] = $dynaform["DYN_ID"];
|
||||
$data["__DYN_ID_UPDATE__"] = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore INP_DOC_ID value for specific input document.
|
||||
* The value of __INP_DOC_ID_UPDATE__ only used like a reference.
|
||||
*
|
||||
* @param array $data
|
||||
*
|
||||
* @see ProcessMaker\Importer\Importer::import()
|
||||
* @see ProcessMaker\Importer\Importer::doImport()
|
||||
* @link https://wiki.processmaker.com/3.1/Importing_and_Exporting_Projects#Importing_a_Project
|
||||
*/
|
||||
public function preserveInputDocumentId(&$data)
|
||||
{
|
||||
$currentProccess = $this->getCurrentProcess();
|
||||
if (!is_object($currentProccess)) {
|
||||
return;
|
||||
}
|
||||
if (!is_array($currentProccess->inputs)) {
|
||||
return;
|
||||
}
|
||||
foreach ($currentProccess->inputs as $inputDocument) {
|
||||
if ($data["INP_DOC_UID"] === $inputDocument["INP_DOC_UID"]) {
|
||||
$data["INP_DOC_ID"] = $inputDocument["INP_DOC_ID"];
|
||||
$data["__INP_DOC_ID_UPDATE__"] = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore OUT_DOC_ID value for specific output document.
|
||||
* The value of __OUT_DOC_ID_UPDATE__ only used like a reference.
|
||||
*
|
||||
* @param array $data
|
||||
*
|
||||
* @see ProcessMaker\Importer\Importer::import()
|
||||
* @see ProcessMaker\Importer\Importer::doImport()
|
||||
* @link https://wiki.processmaker.com/3.1/Importing_and_Exporting_Projects#Importing_a_Project
|
||||
*/
|
||||
public function preserveOutputDocumentId(&$data)
|
||||
{
|
||||
$currentProccess = $this->getCurrentProcess();
|
||||
if (!is_object($currentProccess)) {
|
||||
return;
|
||||
}
|
||||
if (!is_array($currentProccess->outputs)) {
|
||||
return;
|
||||
}
|
||||
foreach ($currentProccess->outputs as $outputDocument) {
|
||||
if ($data["OUT_DOC_UID"] === $outputDocument["OUT_DOC_UID"]) {
|
||||
$data["OUT_DOC_ID"] = $outputDocument["OUT_DOC_ID"];
|
||||
$data["__OUT_DOC_ID_UPDATE__"] = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,8 +14,13 @@ use Illuminate\Support\Facades\DB;
|
||||
class Dynaform extends Model
|
||||
{
|
||||
protected $table = 'DYNAFORM';
|
||||
protected $primaryKey = "DYN_ID";
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* Return relation process.
|
||||
* @return object
|
||||
*/
|
||||
public function process()
|
||||
{
|
||||
return $this->belongsTo(Process::class, 'PRO_UID', 'PRO_UID');
|
||||
|
||||
45
workflow/engine/src/ProcessMaker/Model/InputDocument.php
Normal file
45
workflow/engine/src/ProcessMaker/Model/InputDocument.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace ProcessMaker\Model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
/**
|
||||
* Represents a input document object in the system.
|
||||
*/
|
||||
class InputDocument extends Model
|
||||
{
|
||||
protected $table = 'INPUT_DOCUMENT';
|
||||
protected $primaryKey = 'INP_DOC_ID';
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* Return relation process.
|
||||
* @return object
|
||||
*/
|
||||
public function process()
|
||||
{
|
||||
return $this->belongsTo(Process::class, 'PRO_UID', 'PRO_UID');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get input documents by PRO_UID
|
||||
* @param string $proUid
|
||||
* @return \Illuminate\Database\Eloquent\Collection
|
||||
*/
|
||||
public static function getByProUid($proUid)
|
||||
{
|
||||
return InputDocument::where('PRO_UID', '=', $proUid)->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get input document by INP_DOC_UID
|
||||
* @param type $inpDocUid
|
||||
* @return Model
|
||||
*/
|
||||
public static function getByInpDocUid($inpDocUid)
|
||||
{
|
||||
return InputDocument::where('INP_DOC_UID', '=', $inpDocUid)->first();
|
||||
}
|
||||
}
|
||||
45
workflow/engine/src/ProcessMaker/Model/OutputDocument.php
Normal file
45
workflow/engine/src/ProcessMaker/Model/OutputDocument.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace ProcessMaker\Model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
/**
|
||||
* Represents a output document object in the system.
|
||||
*/
|
||||
class OutputDocument extends Model
|
||||
{
|
||||
protected $table = 'OUTPUT_DOCUMENT';
|
||||
protected $primaryKey = 'OUT_DOC_ID';
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* Return relation process.
|
||||
* @return object
|
||||
*/
|
||||
public function process()
|
||||
{
|
||||
return $this->belongsTo(Process::class, 'PRO_UID', 'PRO_UID');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get output documents by PRO_UID.
|
||||
* @param string $proUid
|
||||
* @return \Illuminate\Database\Eloquent\Collection
|
||||
*/
|
||||
public static function getByProUid($proUid)
|
||||
{
|
||||
return OutputDocument::where('PRO_UID', '=', $proUid)->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get output document by OUT_DOC_UID.
|
||||
* @param string $outDocUid
|
||||
* @return Model
|
||||
*/
|
||||
public static function getByOutDocUid($outDocUid)
|
||||
{
|
||||
return OutputDocument::where('OUT_DOC_UID', '=', $outDocUid)->first();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user