Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Improved: Convert EntitySyncServices.xml mini-lang to groovy
(OFBIZ-11660) removed: EntitySyncServices.xml added: EntitySyncServices.groovy modified: services.xml to reflect the change from minilang to groovy for: - entitySyncPermissionCheck - resetEntitySyncStatus modified: webtools/controller.xml to reflect changed request-map and event type regarding reset of EntitySyncStatus modified: webtools/widget/EntitySyncForms.xml to reflect changed target regarding reset of EntitySyncStatus Thanks: Pierre Smits for implementation
- Loading branch information
1 parent
c4b106e
commit c654d9b
Showing
5 changed files
with
39 additions
and
43 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
framework/entityext/groovyScripts/EntitySyncServices.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
def entitySyncPermissionCheck() { | ||
parameters.primaryPermission = "ENTITY_SYNC" | ||
Map serviceResult = run service: "genericBasePermissionCheck", with: parameters | ||
return serviceResult | ||
} | ||
|
||
def resetEntitySyncStatus() { | ||
entitySyncRecord = from("EntitySync").where("entitySyncId", parameters.entitySyncId).queryOne() | ||
if(entitySyncRecord && "ESR_RUNNING".equals(entitySyncRecord.runStatusId)) { | ||
entitySyncRecord.runStatusId = "ESR_NOT_STARTED" | ||
entitySyncRecord.store() | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters