HOR-2762
This commit is contained in:
@@ -216,7 +216,20 @@ class ListInbox extends BaseListInbox
|
||||
}
|
||||
}
|
||||
|
||||
public function newRow ($data, $delPreviusUsrUid, $isInitSubprocess = false, $dataPreviusApplication = array(), $isSelfService = false)
|
||||
/**
|
||||
* Define the variables before created the row
|
||||
*
|
||||
* This method is used before create the new data
|
||||
* we completed the information about some variables
|
||||
* for create the record
|
||||
*
|
||||
* @param array $data
|
||||
* @param string $delPreviusUsrUid Uid from the user previous
|
||||
* @param boolean $isSelfService this value define if the case is Unassigned
|
||||
* @return void
|
||||
*
|
||||
*/
|
||||
public function newRow ($data, $delPreviusUsrUid, $isSelfService = false)
|
||||
{
|
||||
$removeList = true;
|
||||
if (isset($data['REMOVED_LIST'])) {
|
||||
|
||||
@@ -99,7 +99,7 @@ class ListUnassigned extends BaseListUnassigned
|
||||
public function newRow ($data, $delPreviusUsrUid)
|
||||
{
|
||||
$data['DEL_PREVIOUS_USR_UID'] = $delPreviusUsrUid;
|
||||
$data['DEL_DUE_DATE'] = $data['DEL_TASK_DUE_DATE'];
|
||||
$data['DEL_DUE_DATE'] = isset($data['DEL_TASK_DUE_DATE']) ? $data['DEL_TASK_DUE_DATE'] : '';
|
||||
|
||||
$criteria = new Criteria();
|
||||
$criteria->addSelectColumn( ApplicationPeer::APP_NUMBER );
|
||||
|
||||
Reference in New Issue
Block a user