reverting some changes, bad dir path
This commit is contained in:
@@ -1033,7 +1033,7 @@ MyWorkflow.prototype.savePosition= function(oShape)
|
|||||||
}
|
}
|
||||||
if(urlparams != ''){
|
if(urlparams != ''){
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
//Ext.Msg.alert (response.responseText);
|
//Ext.Msg.alert (response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1120,7 +1120,7 @@ MyWorkflow.prototype.saveShape= function(oNewShape)
|
|||||||
|
|
||||||
if(urlparams != ''){
|
if(urlparams != ''){
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
//Ext.Msg.alert (response.responseText);
|
//Ext.Msg.alert (response.responseText);
|
||||||
if(response.responseText != 1 && response.responseText != ""){
|
if(response.responseText != 1 && response.responseText != ""){
|
||||||
@@ -1196,7 +1196,7 @@ MyWorkflow.prototype.saveTask= function(actiontype,xpos,ypos)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
//Ext.Msg.alert (response.responseText);
|
//Ext.Msg.alert (response.responseText);
|
||||||
if(response.responseText != 1 && response.responseText != "") {
|
if(response.responseText != 1 && response.responseText != "") {
|
||||||
@@ -1234,7 +1234,7 @@ MyWorkflow.prototype.deleteSilently= function(oShape)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
//Ext.Msg.alert (response.responseText);
|
//Ext.Msg.alert (response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1341,7 +1341,7 @@ MyWorkflow.prototype.showAjaxDialog = function(btn){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ url,
|
url: "bpmn/processes_Ajax.php"+ url,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.getCommandStack().execute(new CommandDelete(currentObj));
|
workflow.getCommandStack().execute(new CommandDelete(currentObj));
|
||||||
},
|
},
|
||||||
@@ -1490,7 +1490,7 @@ MyWorkflow.prototype.saveGateways = function(oGateway){
|
|||||||
urlparams = '?action=addGateway&data={"pro_uid":"'+ pro_uid +'","tas_from":"'+task_uid+'","tas_to":"'+next_task_uid+'","gat_type":"'+oGateway.type+'","gat_uid":"'+oGateway.id+'","gat_next_type":"'+next_task_type+'","position":'+pos+'}';
|
urlparams = '?action=addGateway&data={"pro_uid":"'+ pro_uid +'","tas_from":"'+task_uid+'","tas_to":"'+next_task_uid+'","gat_type":"'+oGateway.type+'","gat_uid":"'+oGateway.id+'","gat_next_type":"'+next_task_type+'","position":'+pos+'}';
|
||||||
if(urlparams != ''){
|
if(urlparams != ''){
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
if(response.responseText != '')
|
if(response.responseText != '')
|
||||||
{
|
{
|
||||||
@@ -1578,7 +1578,7 @@ MyWorkflow.prototype.saveEvents = function(oEvent,sTaskUID)
|
|||||||
|
|
||||||
if(urlparams != '') {
|
if(urlparams != '') {
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
if(response.responseText != '')
|
if(response.responseText != '')
|
||||||
{
|
{
|
||||||
@@ -1781,7 +1781,7 @@ MyWorkflow.prototype.showEventResult = function(btn){
|
|||||||
if(btn == 'yes')
|
if(btn == 'yes')
|
||||||
{
|
{
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ url,
|
url: "bpmn/processes_Ajax.php"+ url,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.getCommandStack().execute(new CommandDelete(workflow.oConn));
|
workflow.getCommandStack().execute(new CommandDelete(workflow.oConn));
|
||||||
},
|
},
|
||||||
@@ -1804,7 +1804,7 @@ MyWorkflow.prototype.deleteEvent = function(eventObj){
|
|||||||
if(event_uid != '') {
|
if(event_uid != '') {
|
||||||
var urlparams = '?action=deleteEvent&data={"uid":"'+ event_uid +'"}';
|
var urlparams = '?action=deleteEvent&data={"uid":"'+ event_uid +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
},
|
},
|
||||||
failure: function(){
|
failure: function(){
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ ProcessMapContext.prototype.editProcess= function()
|
|||||||
pro_debug = 0;
|
pro_debug = 0;
|
||||||
var urlparams = '?action=saveProcess&data={"PRO_UID":"'+ pro_uid +'","PRO_CALENDAR":"'+ pro_calendar +'","PRO_CATEGORY":"'+ pro_category +'","PRO_DEBUG":"'+ pro_debug +'","PRO_DESCRIPTION":"'+ pro_description +'","PRO_TITLE":"'+ pro_title +'"}';
|
var urlparams = '?action=saveProcess&data={"PRO_UID":"'+ pro_uid +'","PRO_CALENDAR":"'+ pro_calendar +'","PRO_CATEGORY":"'+ pro_category +'","PRO_DEBUG":"'+ pro_debug +'","PRO_DESCRIPTION":"'+ pro_description +'","PRO_TITLE":"'+ pro_title +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
PMExt.notify( _('ID_STATUS') , _('ID_PROCESS_SAVE') );
|
PMExt.notify( _('ID_STATUS') , _('ID_PROCESS_SAVE') );
|
||||||
window.hide();
|
window.hide();
|
||||||
@@ -1044,7 +1044,7 @@ ProcessMapContext.prototype.processSupervisors= function()
|
|||||||
if(r.data.PU_UID != "")
|
if(r.data.PU_UID != "")
|
||||||
{
|
{
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url : 'processes/processes_Ajax.php'+urlparams,
|
url : 'bpmn/processes_Ajax.php'+urlparams,
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
PMExt.notify( _('ID_STATUS') , _('ID_SUPERVISOR_REMOVED') );
|
PMExt.notify( _('ID_STATUS') , _('ID_SUPERVISOR_REMOVED') );
|
||||||
@@ -1174,7 +1174,7 @@ ProcessMapContext.prototype.processSupervisors= function()
|
|||||||
var urlparams = '?action=assignProcessUser&data={"PRO_UID":"'+pro_uid+'","USR_UID":"'+userID+'"}';
|
var urlparams = '?action=assignProcessUser&data={"PRO_UID":"'+pro_uid+'","USR_UID":"'+userID+'"}';
|
||||||
|
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: 'processes/processes_Ajax.php'+urlparams,
|
url: 'bpmn/processes_Ajax.php'+urlparams,
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
success: function (response) { // When saving data success
|
success: function (response) { // When saving data success
|
||||||
PMExt.notify( _('ID_STATUS') , _('ID_SUPERVISOR_ASSIGNED') );
|
PMExt.notify( _('ID_STATUS') , _('ID_SUPERVISOR_ASSIGNED') );
|
||||||
|
|||||||
@@ -2034,7 +2034,7 @@ ProcessOptions.prototype.addOutputDoc= function(_5625)
|
|||||||
window.show();
|
window.show();
|
||||||
|
|
||||||
top.form.load({
|
top.form.load({
|
||||||
url :'processes/processes_Ajax.php?OUT_DOC_UID='+outputDocUID+'&action=getOutputDocsTemplates',
|
url :'bpmn/processes_Ajax.php?OUT_DOC_UID='+outputDocUID+'&action=getOutputDocsTemplates',
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
waitMsg:'Loading',
|
waitMsg:'Loading',
|
||||||
success:function(form, action) {
|
success:function(form, action) {
|
||||||
@@ -3179,7 +3179,7 @@ ProcessOptions.prototype.addTriggers = function()
|
|||||||
if( result.passed ) { //deleting the selected triggers
|
if( result.passed ) { //deleting the selected triggers
|
||||||
PMExt.confirm(_('ID_CONFIRM'), _('ID_DELETE_TRIGGER_CONFIRM'), function(){
|
PMExt.confirm(_('ID_CONFIRM'), _('ID_DELETE_TRIGGER_CONFIRM'), function(){
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url : 'processes/processes_Ajax.php',
|
url : 'bpmn/processes_Ajax.php',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
params: {
|
params: {
|
||||||
action : 'deleteTriggers',
|
action : 'deleteTriggers',
|
||||||
|
|||||||
@@ -515,7 +515,7 @@ TaskContext.prototype.editUsers= function()
|
|||||||
if(r.data.USR_UID != "")
|
if(r.data.USR_UID != "")
|
||||||
{
|
{
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url : 'processes/processes_Ajax.php' +urlparams ,
|
url : 'bpmn/processes_Ajax.php' +urlparams ,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
PMExt.notify( _('ID_STATUS') , _('ID_USERS_REMOVED') );
|
PMExt.notify( _('ID_STATUS') , _('ID_USERS_REMOVED') );
|
||||||
//Secondly deleting from Grid
|
//Secondly deleting from Grid
|
||||||
@@ -653,7 +653,7 @@ TaskContext.prototype.editUsers= function()
|
|||||||
var urlparams = '?action=assign&data={"TAS_UID":"'+taskId+'","USR_UID":"'+userId+'","TU_TYPE":"'+tu_Type+'","TU_RELATION":"'+tu_Relation+'"}';
|
var urlparams = '?action=assign&data={"TAS_UID":"'+taskId+'","USR_UID":"'+userId+'","TU_TYPE":"'+tu_Type+'","TU_RELATION":"'+tu_Relation+'"}';
|
||||||
|
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: 'processes/processes_Ajax.php' +urlparams ,
|
url: 'bpmn/processes_Ajax.php' +urlparams ,
|
||||||
success: function (response) { // When saving data success
|
success: function (response) { // When saving data success
|
||||||
PMExt.notify( _('ID_STATUS') , _('ID_USER_ASSIGNED') );
|
PMExt.notify( _('ID_STATUS') , _('ID_USER_ASSIGNED') );
|
||||||
},
|
},
|
||||||
@@ -670,7 +670,7 @@ TaskContext.prototype.editUsers= function()
|
|||||||
var user_TUtype = record.json.TU_TYPE;
|
var user_TUtype = record.json.TU_TYPE;
|
||||||
urlparams = '?action=ofToAssign&data={"TAS_UID":"'+taskId+'","TU_RELATION":"'+user_TURel+'","USR_UID":"'+userUID+'","TU_TYPE":"'+user_TUtype+'"}';
|
urlparams = '?action=ofToAssign&data={"TAS_UID":"'+taskId+'","TU_RELATION":"'+user_TURel+'","USR_UID":"'+userUID+'","TU_TYPE":"'+user_TUtype+'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url : 'processes/processes_Ajax.php' +urlparams ,
|
url : 'bpmn/processes_Ajax.php' +urlparams ,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
//Ext.MessageBox.alert ('Status','User has been updated successfully.');
|
//Ext.MessageBox.alert ('Status','User has been updated successfully.');
|
||||||
}
|
}
|
||||||
@@ -1905,7 +1905,7 @@ TaskContext.prototype.editUsersAdHoc= function()
|
|||||||
if(r.data.USR_UID != "")
|
if(r.data.USR_UID != "")
|
||||||
{
|
{
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url : 'processes/processes_Ajax.php' +urlparams ,
|
url : 'bpmn/processes_Ajax.php' +urlparams ,
|
||||||
/*method: 'POST',
|
/*method: 'POST',
|
||||||
params: {
|
params: {
|
||||||
functions : 'ofToAssign',
|
functions : 'ofToAssign',
|
||||||
@@ -2547,7 +2547,7 @@ TaskContext.prototype.editSubProcessProperties= function(_3525)
|
|||||||
|
|
||||||
|
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url : 'processes/processes_Ajax.php',
|
url : 'bpmn/processes_Ajax.php',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
params: {
|
params: {
|
||||||
action : 'saveSubprocessDetails',
|
action : 'saveSubprocessDetails',
|
||||||
|
|||||||
@@ -293,7 +293,7 @@ pmosExt.prototype.popWebEntry= function(_5678)
|
|||||||
|
|
||||||
var evn_uid = workflow.currentSelection.id;
|
var evn_uid = workflow.currentSelection.id;
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: 'processes/processes_Ajax.php',
|
url: 'bpmn/processes_Ajax.php',
|
||||||
params:{action:'webEntry', data: '{"uid":"'+ pro_uid +'","evn_uid":"'+evn_uid+'"}'},
|
params:{action:'webEntry', data: '{"uid":"'+ pro_uid +'","evn_uid":"'+evn_uid+'"}'},
|
||||||
success: function(r,o){
|
success: function(r,o){
|
||||||
webEntryList = Ext.util.JSON.decode(r.responseText);
|
webEntryList = Ext.util.JSON.decode(r.responseText);
|
||||||
@@ -921,7 +921,7 @@ pmosExt.prototype.popTaskNotification= function(_5678){
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=saveInterMessageEvent&data={"uid":"'+ taskUid.value +'","tas_send":"'+tas_send+'","data":"'+data+'"}';
|
var urlparams = '?action=saveInterMessageEvent&data={"uid":"'+ taskUid.value +'","tas_send":"'+tas_send+'","data":"'+data+'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
window.close();
|
window.close();
|
||||||
},
|
},
|
||||||
@@ -949,7 +949,7 @@ pmosExt.prototype.popTaskNotification= function(_5678){
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=loadTask&data={"uid":"'+ taskUid.value +'"}';
|
var urlparams = '?action=loadTask&data={"uid":"'+ taskUid.value +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.taskDetails = Ext.util.JSON.decode(response.responseText);
|
workflow.taskDetails = Ext.util.JSON.decode(response.responseText);
|
||||||
},
|
},
|
||||||
@@ -965,7 +965,7 @@ pmosExt.prototype.popTaskNotification= function(_5678){
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=triggersList&data={"pro_uid":"'+ pro_uid +'"}';
|
var urlparams = '?action=triggersList&data={"pro_uid":"'+ pro_uid +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.triggerList = Ext.util.JSON.decode(response.responseText);
|
workflow.triggerList = Ext.util.JSON.decode(response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1140,7 +1140,7 @@ pmosExt.prototype.popTaskNotification= function(_5678){
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=saveInterMessageEvent&data={"uid":"'+ taskUid[0].value +'","tas_send":"'+tas_send+'","data":"'+data+'"}';
|
var urlparams = '?action=saveInterMessageEvent&data={"uid":"'+ taskUid[0].value +'","tas_send":"'+tas_send+'","data":"'+data+'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
window.close();
|
window.close();
|
||||||
},
|
},
|
||||||
@@ -1438,7 +1438,7 @@ pmosExt.prototype.loadProcess=function(_5678)
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=load&data={"uid":"'+ pro_uid +'"}';
|
var urlparams = '?action=load&data={"uid":"'+ pro_uid +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.processInfo = Ext.util.JSON.decode(response.responseText);
|
workflow.processInfo = Ext.util.JSON.decode(response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1454,7 +1454,7 @@ pmosExt.prototype.loadDynaforms=function()
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=dynaforms&data={"uid":"'+ taskUid[0].value +'"}';
|
var urlparams = '?action=dynaforms&data={"uid":"'+ taskUid[0].value +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.dynaList = Ext.util.JSON.decode(response.responseText);
|
workflow.dynaList = Ext.util.JSON.decode(response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1468,7 +1468,7 @@ pmosExt.prototype.loadConnectedTask=function()
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=load&data={"uid":"'+ pro_uid +'"}';
|
var urlparams = '?action=load&data={"uid":"'+ pro_uid +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.processInfo = Ext.util.JSON.decode(response.responseText);
|
workflow.processInfo = Ext.util.JSON.decode(response.responseText);
|
||||||
|
|
||||||
@@ -1483,7 +1483,7 @@ pmosExt.prototype.loadWebEntry=function()
|
|||||||
var evn_uid = workflow.currentSelection.id;
|
var evn_uid = workflow.currentSelection.id;
|
||||||
var urlparams = '?action=webEntry&data={"uid":"'+ pro_uid +'","evn_uid":"'+evn_uid+'"}';
|
var urlparams = '?action=webEntry&data={"uid":"'+ pro_uid +'","evn_uid":"'+evn_uid+'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.webEntryList = Ext.util.JSON.decode(response.responseText);
|
workflow.webEntryList = Ext.util.JSON.decode(response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1496,7 +1496,7 @@ pmosExt.prototype.loadEditProcess=function()
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=process_Edit&data={"pro_uid":"'+ pro_uid +'"}';
|
var urlparams = '?action=process_Edit&data={"pro_uid":"'+ pro_uid +'"}';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.processEdit = Ext.util.JSON.decode(response.responseText);
|
workflow.processEdit = Ext.util.JSON.decode(response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1509,7 +1509,7 @@ pmosExt.prototype.loadProcessCategory =function()
|
|||||||
{
|
{
|
||||||
var urlparams = '?action=loadCategory';
|
var urlparams = '?action=loadCategory';
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
workflow.processCategory = Ext.util.JSON.decode(response.responseText);
|
workflow.processCategory = Ext.util.JSON.decode(response.responseText);
|
||||||
},
|
},
|
||||||
@@ -1521,7 +1521,7 @@ pmosExt.prototype.loadProcessCategory =function()
|
|||||||
pmosExt.prototype.saveEvent =function(urlparams)
|
pmosExt.prototype.saveEvent =function(urlparams)
|
||||||
{
|
{
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: "processes/processes_Ajax.php"+ urlparams,
|
url: "bpmn/processes_Ajax.php"+ urlparams,
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user