Last active
March 12, 2018 11:58
-
-
Save CedricL46/15c6234d014d547dcb5c53cc7abe360a to your computer and use it in GitHub Desktop.
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
public String defaultNextStatus() { | |
String value = (String) getAttributeInternal(AttributesEnum.NextStatus.index()); | |
if (value == null) { | |
XxcrWorkflowUvVORowImpl nextStatut = (XxcrWorkflowUvVORowImpl) getWfkVA().first(); | |
//Wkfva is the VO of the LOV | |
if (nextStatut != null) { | |
return nextStatut.getTxtValeur(); | |
} | |
} | |
return value; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment