PMCORE-548
This commit is contained in:
@@ -76,7 +76,7 @@ switch ($actionAjax) {
|
||||
&&
|
||||
(
|
||||
$appMessageArray[$index]['DEL_INDEX'] == 0
|
||||
|| in_array($appMessageArray[$index]['DEL_INDEX'], $delIndex)
|
||||
|| in_array($appMessageArray[$index]['DEL_INDEX'], $delIndex) || empty($respMess)
|
||||
)
|
||||
) {
|
||||
//Define the label with translation
|
||||
|
||||
12
workflow/engine/src/ProcessMaker/Model/ObjectPermission.php
Normal file
12
workflow/engine/src/ProcessMaker/Model/ObjectPermission.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace ProcessMaker\Model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ObjectPermission extends Model
|
||||
{
|
||||
protected $table = "OBJECT_PERMISSION";
|
||||
protected $primaryKey = 'OP_UID';
|
||||
public $timestamps = false;
|
||||
}
|
||||
Reference in New Issue
Block a user