casesStartpage splitted. Different js NewCase, Documents and Plugins. Plugins only appear if there is any registered plugin
This commit is contained in:
@@ -22,51 +22,53 @@
|
||||
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
|
||||
*
|
||||
*/
|
||||
global $RBAC;
|
||||
global $G_TMP_MENU;
|
||||
global $RBAC;
|
||||
global $G_TMP_MENU;
|
||||
|
||||
$G_TMP_MENU->AddIdRawOption('FOLDERS', '', G::LoadTranslation('ID_CASES_MENU_FOLDERS'), '', '', 'blockHeader');
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_START_CASE', 'casesStartPage?action=startCase', G::LoadTranslation('ID_NEW_CASE'), '' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_INBOX', 'casesListExtJs?action=todo', G::LoadTranslation('ID_INBOX'), 'icon-cases-inbox.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_DRAFT', 'casesListExtJs?action=draft', G::LoadTranslation('ID_DRAFT'), 'mail-mark-task.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_SENT', 'casesListExtJs?action=sent', G::LoadTranslation('ID_SENT'), 'icon-cases-outbox.png');
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_SELFSERVICE', 'casesListExtJs?action=selfservice',G::LoadTranslation('ID_UNASSIGNED'), 'rotate_cw.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_PAUSED', 'casesListExtJs?action=paused', G::LoadTranslation('ID_PAUSED'), 'mail-queue.png' );
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_CANCELLED', 'casesListExtJs?action=cancelled', G::LoadTranslation('ID_CANCELLED'), 'edit-clear-list.png' );
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_FOLDERS1', '../appFolder/appFolderList', G::LoadTranslation('ID_FOLDERS'), 'folderV2.gif' );
|
||||
$G_TMP_MENU->AddIdRawOption('FOLDERS', '', G::LoadTranslation('ID_CASES_MENU_FOLDERS'), '', '', 'blockHeader');
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_START_CASE', 'casesStartPage?action=startCase', G::LoadTranslation('ID_NEW_CASE'), '' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_INBOX', 'casesListExtJs?action=todo', G::LoadTranslation('ID_INBOX'), 'icon-cases-inbox.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_DRAFT', 'casesListExtJs?action=draft', G::LoadTranslation('ID_DRAFT'), 'mail-mark-task.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_SENT', 'casesListExtJs?action=sent', G::LoadTranslation('ID_SENT'), 'icon-cases-outbox.png');
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_SELFSERVICE', 'casesListExtJs?action=selfservice',G::LoadTranslation('ID_UNASSIGNED'), 'rotate_cw.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_PAUSED', 'casesListExtJs?action=paused', G::LoadTranslation('ID_PAUSED'), 'mail-queue.png' );
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_CANCELLED', 'casesListExtJs?action=cancelled', G::LoadTranslation('ID_CANCELLED'), 'edit-clear-list.png' );
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_FOLDERS1', '../appFolder/appFolderList', G::LoadTranslation('ID_FOLDERS'), 'folderV2.gif' );
|
||||
|
||||
if ( $RBAC->userCanAccess('PM_ALLCASES') == 1 ) {
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_GRAL', 'casesListExtJs?action=gral', G::LoadTranslation('ID_GENERAL'));
|
||||
}
|
||||
if ( $RBAC->userCanAccess('PM_ALLCASES') == 1 ) {
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_GRAL', 'casesListExtJs?action=gral', G::LoadTranslation('ID_GENERAL'));
|
||||
}
|
||||
|
||||
$G_TMP_MENU->AddIdRawOption('SEARCHS', '', G::LoadTranslation('ID_CASES_MENU_SEARCH'), '', '', 'blockHeader');
|
||||
$G_TMP_MENU->AddIdRawOption('SEARCHS', '', G::LoadTranslation('ID_CASES_MENU_SEARCH'), '', '', 'blockHeader');
|
||||
|
||||
if ( $RBAC->userCanAccess('PM_ALLCASES') == 1 ) {
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_SEARCH', 'casesListExtJs?action=search', G::LoadTranslation('ID_ADVANCEDSEARCH'), 'system-search.png' );
|
||||
}
|
||||
if ( $RBAC->userCanAccess('PM_ALLCASES') == 1 ) {
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_SEARCH', 'casesListExtJs?action=search', G::LoadTranslation('ID_ADVANCEDSEARCH'), 'system-search.png' );
|
||||
}
|
||||
|
||||
$G_TMP_MENU->AddIdRawOption('ADMIN', '', G::LoadTranslation('ID_CASES_MENU_ADMIN'), '', '', 'blockHeader');
|
||||
if ( $RBAC->userCanAccess('PM_SUPERVISOR') == 1 ) {
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_TO_REVISE_NORMAL', 'cases_List?l=to_revise', G::LoadTranslation('ID_TO_REVISE'), 'document-review.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_TO_REVISE', 'casesListExtJs?action=to_revise', G::LoadTranslation('ID_TO_REVISE'), 'document-review.png' );
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_SCHEDULER', 'cases_Scheduler_List', G::LoadTranslation('ID_SCHEDULER_LIST' ));
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_SCHEDULER_LOG', 'cases_Scheduler_Log', G::LoadTranslation('ID_SCHEDULER_LOG' ));
|
||||
}
|
||||
$G_TMP_MENU->AddIdRawOption('ADMIN', '', G::LoadTranslation('ID_CASES_MENU_ADMIN'), '', '', 'blockHeader');
|
||||
if ( $RBAC->userCanAccess('PM_SUPERVISOR') == 1 ) {
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_TO_REVISE_NORMAL', 'cases_List?l=to_revise', G::LoadTranslation('ID_TO_REVISE'), 'document-review.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_TO_REVISE', 'casesListExtJs?action=to_revise', G::LoadTranslation('ID_TO_REVISE'), 'document-review.png' );
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_SCHEDULER', 'cases_Scheduler_List', G::LoadTranslation('ID_SCHEDULER_LIST' ));
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_SCHEDULER_LOG', 'cases_Scheduler_Log', G::LoadTranslation('ID_SCHEDULER_LOG' ));
|
||||
}
|
||||
|
||||
if ( $RBAC->userCanAccess('PM_REASSIGNCASE') == 1 ) {
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_TO_REASSIGN_NORMAL', 'cases_List?l=to_reassign', G::LoadTranslation('ID_TO_REASSIGN'), 'reassing.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_TO_REASSIGN', 'casesListExtJs?action=to_reassign', G::LoadTranslation('ID_TO_REASSIGN'), 'reassing.png' );
|
||||
}
|
||||
if ( $RBAC->userCanAccess('PM_REASSIGNCASE') == 1 ) {
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_TO_REASSIGN_NORMAL', 'cases_List?l=to_reassign', G::LoadTranslation('ID_TO_REASSIGN'), 'reassing.png' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_TO_REASSIGN', 'casesListExtJs?action=to_reassign', G::LoadTranslation('ID_TO_REASSIGN'), 'reassing.png' );
|
||||
}
|
||||
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_FOLDERS', 'casesStartPage?action=documents', G::LoadTranslation('ID_FOLDERS'), 'folderV2.gif','','blockHeaderNoChild' );
|
||||
$G_TMP_MENU->AddIdRawOption('CASES_FOLDERS', 'casesStartPage?action=documents', G::LoadTranslation('ID_FOLDERS'), 'folderV2.gif','','blockHeaderNoChild' );
|
||||
|
||||
|
||||
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_START_PAGE', 'casesStartPage?action=mainDashboard', ucwords(strtolower(G::LoadTranslation('ID_DASHBOARD'))), '' );
|
||||
|
||||
//Load Other registered Dashboards (From plugins)
|
||||
$oPluginRegistry = & PMPluginRegistry::getSingleton ();
|
||||
$dashBoardPages = $oPluginRegistry->getDashboardPages ();
|
||||
if(count($dashBoardPages)>0){
|
||||
$G_TMP_MENU->AddIdRawOption('PLUGINS', '', G::LoadTranslation('ID_PLUGINS'), '', '', 'blockHeader');
|
||||
|
||||
|
||||
//$G_TMP_MENU->AddIdRawOption('CASES_START_PAGE', 'casesStartPage?action=mainDashboard', ucwords(strtolower(G::LoadTranslation('ID_DASHBOARD'))), '' );
|
||||
|
||||
//Load Other registered Dashboards (From plugins)
|
||||
$oPluginRegistry = & PMPluginRegistry::getSingleton ();
|
||||
$dashBoardPages = $oPluginRegistry->getDashboardPages ();
|
||||
foreach($dashBoardPages as $key => $tabInfo) {
|
||||
$tabNameSpace=$tabInfo->sNamespace;
|
||||
$tabName=$tabInfo->sName;
|
||||
@@ -75,5 +77,6 @@
|
||||
$G_TMP_MENU->AddIdRawOption($tabIcon, 'casesStartPage?action='.$tabNameSpace.'-'.$tabName, ucwords(strtolower($tabName)), '' );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
<?php
|
||||
unset($_SESSION['__currentTabDashboard']);
|
||||
if(isset($_GET['t'])){
|
||||
$_SESSION['__currentTabDashboard']=$_GET['t'];
|
||||
if(isset($_GET['action'])){
|
||||
$_SESSION['__currentTabDashboard']=$_GET['action'];
|
||||
}
|
||||
$page="";
|
||||
if(isset($_GET['action'])){
|
||||
$page=$_GET['action'];
|
||||
}
|
||||
|
||||
$oHeadPublisher =& headPublisher::getSingleton();
|
||||
@@ -9,11 +13,31 @@
|
||||
//$oHeadPublisher->usingExtJs('ux/TabCloseMenu');
|
||||
|
||||
|
||||
$oHeadPublisher->usingExtJs('ux.treefilterx/Ext.ux.tree.TreeFilterX');
|
||||
$oHeadPublisher->usingExtJs('ux.locationbar/Ext.ux.LocationBar');
|
||||
$oHeadPublisher->usingExtJs('ux.statusbar/ext-statusbar');
|
||||
|
||||
//$oHeadPublisher->usingExtJs('ux/ColumnHeaderGroup');
|
||||
$oHeadPublisher->addExtJsScript('cases/casesStartPage', false); //adding a javascript file .js
|
||||
$oHeadPublisher->addContent( 'cases/casesStartPage'); //adding a html file .html.
|
||||
switch($page){
|
||||
case "startCase":
|
||||
$oHeadPublisher->usingExtJs('ux.treefilterx/Ext.ux.tree.TreeFilterX');
|
||||
$oHeadPublisher->addExtJsScript('cases/casesStartCase', false); //adding a javascript file .js
|
||||
$oHeadPublisher->addContent( 'cases/casesStartCase'); //adding a html file .html.
|
||||
break;
|
||||
case "documents":
|
||||
$oHeadPublisher->usingExtJs('ux.locationbar/Ext.ux.LocationBar');
|
||||
$oHeadPublisher->usingExtJs('ux.statusbar/ext-statusbar');
|
||||
$oHeadPublisher->addExtJsScript('cases/casesDocuments', false); //adding a javascript file .js
|
||||
$oHeadPublisher->addContent( 'cases/casesDocuments'); //adding a html file .html.
|
||||
break;
|
||||
default:
|
||||
|
||||
$oHeadPublisher->usingExtJs('ux.treefilterx/Ext.ux.tree.TreeFilterX');
|
||||
|
||||
$oHeadPublisher->usingExtJs('ux.locationbar/Ext.ux.LocationBar');
|
||||
$oHeadPublisher->usingExtJs('ux.statusbar/ext-statusbar');
|
||||
$oHeadPublisher->addExtJsScript('cases/casesStartPage', false); //adding a javascript file .js
|
||||
$oHeadPublisher->addContent( 'cases/casesStartPage'); //adding a html file .html.
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
|
||||
G::RenderPage('publish', 'extJs');
|
||||
2
workflow/engine/templates/cases/casesDocuments.html
Normal file
2
workflow/engine/templates/cases/casesDocuments.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<div id="containerStartpage" style=""></div>
|
||||
<div id='msg-div'></div>
|
||||
1498
workflow/engine/templates/cases/casesDocuments.js
Normal file
1498
workflow/engine/templates/cases/casesDocuments.js
Normal file
File diff suppressed because it is too large
Load Diff
2
workflow/engine/templates/cases/casesStartCase.html
Normal file
2
workflow/engine/templates/cases/casesStartCase.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<div id="containerStartpage" style=""></div>
|
||||
<div id='msg-div'></div>
|
||||
460
workflow/engine/templates/cases/casesStartCase.js
Normal file
460
workflow/engine/templates/cases/casesStartCase.js
Normal file
@@ -0,0 +1,460 @@
|
||||
//Ext.BLANK_IMAGE_URL = 'resources/s.gif';
|
||||
|
||||
var startCaseFilter;
|
||||
|
||||
Ext.chart.Chart.CHART_URL = '/images/charts.swf';
|
||||
Ext.FlashComponent.EXPRESS_INSTALL_URL = '/images/expressinstall.swf';
|
||||
// The Quicktips are used for the toolbar and Tree mouseover tooltips!
|
||||
Ext.QuickTips.init();
|
||||
|
||||
var conn = new Ext.data.Connection();
|
||||
|
||||
|
||||
var processNumbers = new Ext.data.ArrayStore({
|
||||
fields: [
|
||||
{name: 'CASES_COUNT_TO_DO', type: 'integer'},
|
||||
{name: 'CASES_COUNT_DRAFT', type: 'integer'},
|
||||
{name: 'CASES_COUNT_COMPLETED', type: 'integer'},
|
||||
{name: 'CASES_COUNT_CANCELLED', type: 'integer'},
|
||||
{name: 'CASES_COUNT', type: 'integer'}
|
||||
]
|
||||
});
|
||||
|
||||
var processNumbersData = [
|
||||
[0,0,0,0,0]
|
||||
];
|
||||
processNumbers.loadData(processNumbersData);
|
||||
|
||||
|
||||
Docs = {};
|
||||
|
||||
var newCaseTree = {
|
||||
xtype : 'treepanel',
|
||||
id : 'processTree',
|
||||
style : {
|
||||
height : '100%',
|
||||
overflow : 'auto'
|
||||
},
|
||||
useArrows : true,
|
||||
border : false,
|
||||
split : true,
|
||||
itemId : 'startCaseTreePanel',
|
||||
id : 'startCaseTreePanel',
|
||||
rootVisible : false,
|
||||
treePanel : this,
|
||||
clearOnReLoad : false,
|
||||
loader : new Ext.tree.TreeLoader({
|
||||
preloadChildren : true,
|
||||
dataUrl : 'casesStartPage_Ajax.php',
|
||||
baseParams : {
|
||||
action : 'getProcessList'
|
||||
}
|
||||
}),
|
||||
listeners : {
|
||||
dblclick : function(n) {
|
||||
//mainPanel.openCase(n);
|
||||
openCaseA(n);
|
||||
|
||||
},
|
||||
click : function(n) {
|
||||
//mainPanel.showDetails(n);
|
||||
showDetailsA(n);
|
||||
}
|
||||
},
|
||||
root : {
|
||||
nodeType : 'async',
|
||||
draggable : false,
|
||||
id : 'root',
|
||||
expanded : true
|
||||
}
|
||||
};
|
||||
|
||||
var startCaseTab = {
|
||||
id : 'startCase',
|
||||
//title : 'Start Case',
|
||||
//iconCls : 'ICON_CASES_START_CASE',
|
||||
layout : 'border',
|
||||
region : 'center',
|
||||
items : [ {
|
||||
id : 'img-chooser-view',
|
||||
region : 'center',
|
||||
style : {
|
||||
width : '50%'
|
||||
},
|
||||
// autoScroll: true,
|
||||
items : [ newCaseTree ]
|
||||
}, {
|
||||
xtype:'form',
|
||||
id : 'process-detail-panel',
|
||||
region : 'east',
|
||||
// autoHeight : true,
|
||||
split : true,
|
||||
style : {
|
||||
width : '50%'
|
||||
|
||||
},
|
||||
|
||||
// minWidth : 150,
|
||||
// frame: true,
|
||||
labelAlign: 'right',
|
||||
labelWidth: 85,
|
||||
// width:340,
|
||||
waitMsgTarget: true,
|
||||
title:'Process Information',
|
||||
layout:'form',
|
||||
defaults: {width: 350},
|
||||
defaultType: 'displayfield',
|
||||
items: [{
|
||||
fieldLabel: 'Process',
|
||||
name: 'processName',
|
||||
allowBlank:false,
|
||||
value: '',
|
||||
labelStyle: 'font-weight:bold;',
|
||||
// disabled: true,
|
||||
// readonly:true,
|
||||
id:"processName"
|
||||
},
|
||||
{
|
||||
xtype: 'compositefield',
|
||||
fieldLabel: 'Task',
|
||||
labelStyle: 'font-weight:bold;',
|
||||
|
||||
items: [
|
||||
|
||||
{
|
||||
xtype : 'displayfield',
|
||||
|
||||
//fieldLabel: 'Task',
|
||||
//labelStyle: 'font-weight:bold;',
|
||||
name: 'taskName',
|
||||
allowBlank:false,
|
||||
value: '',
|
||||
//autoWitdh:true,
|
||||
width:200,
|
||||
// disabled: true,
|
||||
id:"taskName"
|
||||
},
|
||||
{
|
||||
xtype : 'button',
|
||||
id : 'starCaseButton',
|
||||
disabled : true,
|
||||
//cls : 'x-btn-icon',
|
||||
//icon : '/images/refresh.gif',
|
||||
iconCls: "ICON_CASES_START_CASE",
|
||||
text:"Start Case",
|
||||
//margins:"5 5 5 5",
|
||||
autoWidth:true,
|
||||
handler : function() {
|
||||
tree = Ext.getCmp('startCaseTreePanel');
|
||||
var selectedNode = tree.getSelectionModel().getSelectedNode();
|
||||
if(selectedNode){
|
||||
//mainPanel.openCase(selectedNode);
|
||||
openCaseA(selectedNode);
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
|
||||
{
|
||||
xtype:'textarea',
|
||||
fieldLabel: 'Description',
|
||||
name: 'processDescription',
|
||||
value: '',
|
||||
readOnly: true,
|
||||
labelStyle: 'font-weight:bold;',
|
||||
// disabled: true,
|
||||
id:"processDescription"
|
||||
},{
|
||||
fieldLabel: 'Category',
|
||||
name: 'processCategory',
|
||||
value: '',
|
||||
readOnly: true,
|
||||
labelStyle: 'font-weight:bold;',
|
||||
// disabled: true,
|
||||
id:"processCategory"
|
||||
},
|
||||
{
|
||||
xtype: 'grid',
|
||||
|
||||
ds: processNumbers,
|
||||
cm: new Ext.grid.ColumnModel([
|
||||
{id:'inbox',header: "Inbox", width:70, sortable: false, locked:true, dataIndex: 'CASES_COUNT_TO_DO'},
|
||||
{id:'draft',header: "Draft", width:70, sortable: false, locked:true, dataIndex: 'CASES_COUNT_DRAFT'},
|
||||
{id:'completed',header: "Completed", width:70, sortable: false, locked:true, dataIndex: 'CASES_COUNT_COMPLETED'},
|
||||
{id:'canceled',header: "Canceled", width:70, sortable: false, locked:true, dataIndex: 'CASES_COUNT_CANCELLED'},
|
||||
{id:'totalCases',header: "Total Cases", width:70, sortable: false, locked:true , dataIndex: 'CASES_COUNT'}
|
||||
|
||||
])
|
||||
,
|
||||
|
||||
//autoExpandColumn: 'company',
|
||||
//height: 350,
|
||||
width:355,
|
||||
title:'General Process Numbers',
|
||||
border: true,
|
||||
listeners: {
|
||||
viewready: function(g) {
|
||||
//g.getSelectionModel().selectRow(0);
|
||||
} // Allow rows to be rendered.
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
fieldLabel: 'Calendar',
|
||||
name: 'calendarName',
|
||||
labelStyle: 'font-weight:bold;',
|
||||
// disabled: true,
|
||||
id:"calendarName"
|
||||
},{
|
||||
xtype:'textarea',
|
||||
fieldLabel: 'Calendar Description',
|
||||
name: 'calendarDescription',
|
||||
value: '',
|
||||
labelStyle: 'font-weight:bold;',
|
||||
// disabled: true,
|
||||
readOnly: true,
|
||||
id:"calendarDescription"
|
||||
},{
|
||||
xtype:'checkboxgroup',
|
||||
fieldLabel: 'Working days',
|
||||
name: 'calendarWorkDays',
|
||||
// disabled: true,
|
||||
readOnly: true,
|
||||
labelStyle: 'font-weight:bold;',
|
||||
id:"calendarWorkDays",
|
||||
columns: 7,
|
||||
items: [
|
||||
{boxLabel: 'Sun', name: '0'},
|
||||
{boxLabel: 'Mon', name: '1'},
|
||||
{boxLabel: 'Tue', name: '2'},
|
||||
{boxLabel: 'Wen', name: '3'},
|
||||
{boxLabel: 'Thu', name: '4'},
|
||||
{boxLabel: 'Fri', name: '5'},
|
||||
{boxLabel: 'Sat', name: '6'}
|
||||
]
|
||||
}, {
|
||||
xtype:'checkbox',
|
||||
fieldLabel: 'Debug Mode',
|
||||
name: 'processDebug',
|
||||
labelStyle: 'font-weight:bold;',
|
||||
// disabled: true,
|
||||
readOnly: true,
|
||||
id:"processDebug"
|
||||
}]
|
||||
}
|
||||
],
|
||||
|
||||
tbar : [
|
||||
{
|
||||
xtype : 'textfield',
|
||||
name : 'processesFilter',
|
||||
id : 'processesFilter',
|
||||
emptyText : 'Find a Process',
|
||||
enableKeyEvents : true,
|
||||
listeners : {
|
||||
render : function(f) {
|
||||
/*
|
||||
* Ext.getCmp("startCaseTreePanel").filter = new
|
||||
* Ext.tree.TreeFilter( this, { clearBlank : true,
|
||||
* autoClear : true } );
|
||||
*/
|
||||
|
||||
startCaseFilter = new Ext.ux.tree.TreeFilterX(Ext
|
||||
.getCmp('startCaseTreePanel'));
|
||||
}, /*
|
||||
* keydown : function(t, e) { treeFiltered =
|
||||
* Ext.getCmp("startCaseTreePanel");
|
||||
* //console.log(treeFiltered);
|
||||
*
|
||||
* var text = t.getValue();
|
||||
*
|
||||
* //console.log(text); if (!text) {
|
||||
* treeFiltered.filter.clear(); return; }
|
||||
* treeFiltered.expandAll();
|
||||
*
|
||||
* var re = new RegExp('^'+ Ext.escapeRe(text), 'i');
|
||||
* console.log(re);
|
||||
* treeFiltered.filter.filterBy(function(n) { return
|
||||
* !n.attributes.isClass || re.test(n.text); }); },
|
||||
*/
|
||||
specialkey : function(f, e) {
|
||||
if (e.getKey() == e.ENTER) {
|
||||
txt = Ext.getCmp('processesFilter').getValue();
|
||||
startCaseFilter.clear();
|
||||
var re = new RegExp('.*' + txt + '.*', 'i');
|
||||
startCaseFilter.filter(re, 'text');
|
||||
}
|
||||
},
|
||||
scope : this
|
||||
}
|
||||
}, {
|
||||
text : 'X',
|
||||
ctCls : 'pm_search_x_button',
|
||||
handler : function() {
|
||||
Ext.getCmp('processesFilter').setValue('');
|
||||
startCaseFilter.clear();
|
||||
}
|
||||
}, ' ', ' ', {
|
||||
iconCls : 'icon-expand-all',
|
||||
tooltip : 'Expand All',
|
||||
handler : function() {
|
||||
Ext.getCmp("startCaseTreePanel").root.expand(true);
|
||||
},
|
||||
scope : this
|
||||
}, '-', {
|
||||
iconCls : 'icon-collapse-all',
|
||||
tooltip : 'Collapse All',
|
||||
handler : function() {
|
||||
Ext.getCmp("startCaseTreePanel").root.collapse(true);
|
||||
},
|
||||
scope : this
|
||||
}, ' ', ' ', {
|
||||
xtype : 'tbbutton',
|
||||
cls : 'x-btn-icon',
|
||||
icon : '/images/refresh.gif',
|
||||
|
||||
handler : function() {
|
||||
tree = Ext.getCmp('startCaseTreePanel');
|
||||
tree.getLoader().load(tree.root);
|
||||
}
|
||||
} ]
|
||||
};
|
||||
|
||||
|
||||
|
||||
Ext.onReady(function() {
|
||||
|
||||
var viewport = new Ext.Viewport({
|
||||
layout : 'border',
|
||||
items : [
|
||||
startCaseTab ]
|
||||
});
|
||||
|
||||
// console.info("viewport -end");
|
||||
|
||||
viewport.doLayout();
|
||||
|
||||
// routine to hide the debug panel if it is open
|
||||
if (parent.PANEL_EAST_OPEN) {
|
||||
parent.PANEL_EAST_OPEN = false;
|
||||
var debugPanel = parent.Ext.getCmp('debugPanel');
|
||||
debugPanel.hide();
|
||||
debugPanel.ownerCt.doLayout();
|
||||
}
|
||||
|
||||
});
|
||||
function openCaseA(n){
|
||||
if (n.attributes.optionType == "startProcess") {
|
||||
Ext.Msg.show({
|
||||
title : 'Start Case',
|
||||
msg : 'Starting new case<br><br><b>' + n.attributes.text
|
||||
+ '</b>',
|
||||
icon : Ext.MessageBox.INFO,
|
||||
// width:300,
|
||||
wait:true,
|
||||
waitConfig: {interval:500}
|
||||
});
|
||||
Ext.Ajax.request({
|
||||
url : 'casesStartPage_Ajax.php',
|
||||
params : {
|
||||
action : 'startCase',
|
||||
processId : n.attributes.pro_uid,
|
||||
taskId : n.attributes.tas_uid
|
||||
},
|
||||
success : function(response) {
|
||||
|
||||
try{
|
||||
var res = Ext.util.JSON.decode(response.responseText);
|
||||
|
||||
if (res.openCase) {
|
||||
window.location = res.openCase.PAGE;
|
||||
} else {
|
||||
Ext.Msg.show({
|
||||
title : 'Error creating a new Case',
|
||||
msg : '<textarea cols="50" rows="10">'
|
||||
+ res.message + '</textarea>',
|
||||
icon : Ext.MessageBox.ERROR,
|
||||
buttons : Ext.Msg.OK
|
||||
});
|
||||
}
|
||||
} catch(e) {
|
||||
Ext.Msg.show({
|
||||
title : 'Error creating a new Case',
|
||||
msg : 'JSON Decode Error:<br /><textarea cols="50" rows="2">'
|
||||
+ e.message + '</textarea><br />Server Response<br /><textarea cols="50" rows="5">'+response.responseText+'</textarea>',
|
||||
icon : Ext.MessageBox.ERROR,
|
||||
buttons : Ext.Msg.OK
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
failure : function() {
|
||||
// grid.getGridEl().unmask(true);
|
||||
Ext.Msg.alert('Error', 'Unable to start a case');
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
function showDetailsA(selectedNode) {
|
||||
|
||||
// console.log(selectedNode);
|
||||
var detailEl = Ext.getCmp('process-detail-panel').body;
|
||||
if ((selectedNode)&&(selectedNode.attributes.otherAttributes)) {
|
||||
otherAttributes = selectedNode.attributes.otherAttributes;
|
||||
|
||||
calendarDays=(otherAttributes.CALENDAR_WORK_DAYS).split("|");
|
||||
calendarObj={};
|
||||
|
||||
for(i=0;i<calendarDays.length;i++){
|
||||
calendarObj[calendarDays[i]]=true;
|
||||
}
|
||||
//console.log(otherAttributes);
|
||||
//starCaseButton
|
||||
Ext.ComponentMgr.get("starCaseButton").enable();
|
||||
Ext.getCmp('process-detail-panel').getForm().setValues({
|
||||
processName : otherAttributes.PRO_TITLE,
|
||||
taskName : otherAttributes.PRO_TAS_TITLE,
|
||||
calendarName : otherAttributes.CALENDAR_NAME,
|
||||
calendarDescription : otherAttributes.CALENDAR_DESCRIPTION,
|
||||
processCalendar:otherAttributes.CALENDAR_NAME+" "+otherAttributes.CALENDAR_DESCRIPTION,
|
||||
calendarWorkDays : calendarObj,/* (otherAttributes.CALENDAR_WORK_DAYS).split("|"), */
|
||||
processCategory : otherAttributes.PRO_CATEGORY_LABEL,
|
||||
processDebug : otherAttributes.PRO_DEBUG,
|
||||
processDescription : otherAttributes.PRO_DESCRIPTION,
|
||||
myInbox : otherAttributes.myInbox,
|
||||
totalInbox : otherAttributes.totalInbox
|
||||
|
||||
});
|
||||
|
||||
processNumbersData = [
|
||||
[otherAttributes.CASES_COUNT_TO_DO,otherAttributes.CASES_COUNT_DRAFT,otherAttributes.CASES_COUNT_COMPLETED,otherAttributes.CASES_COUNT_CANCELLED,otherAttributes.CASES_COUNT]
|
||||
];
|
||||
processNumbers.loadData(processNumbersData);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//this.detailsTemplate.overwrite(detailEl, data);
|
||||
// detailEl.slideIn('t', {stopFx:true,duration:.0});
|
||||
/*
|
||||
detailEl.highlight('#c3daf9', {
|
||||
block : true
|
||||
});*/
|
||||
} else {
|
||||
//detailEl.update('');
|
||||
}
|
||||
|
||||
return;
|
||||
// var selNode = this.getSelectedNodes();
|
||||
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user