Commit eb2e3ad9 by Nilu Committed by Harsh Shah

change completed job status to closed

parent 3ba39e42
...@@ -22,7 +22,7 @@ public class JobStatus extends AbstractEnumerated ...@@ -22,7 +22,7 @@ public class JobStatus extends AbstractEnumerated
public static final JobStatus OPEN = new JobStatus ("OPEN", "OPEN", "Open", false); public static final JobStatus OPEN = new JobStatus ("OPEN", "OPEN", "Open", false);
public static final JobStatus COMPLETE = new JobStatus ("COMPLETE", "COMPLETE", "Complete", false); public static final JobStatus COMPLETE = new JobStatus ("COMPLETE", "COMPLETE", "Closed", false);
public static final JobStatus DRAFT = new JobStatus ("DRAFT", "DRAFT", "Draft", false); public static final JobStatus DRAFT = new JobStatus ("DRAFT", "DRAFT", "Draft", false);
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<CONSTANT package="performa.orm.types" name="JobStatus"> <CONSTANT package="performa.orm.types" name="JobStatus">
<VALUE name="OPEN" value="OPEN" description="Open"/> <VALUE name="OPEN" value="OPEN" description="Open"/>
<VALUE name="COMPLETE" value="COMPLETE" description="Complete"/> <VALUE name="COMPLETE" value="COMPLETE" description="Closed"/>
<VALUE name="DRAFT" value="DRAFT" description="Draft"/> <VALUE name="DRAFT" value="DRAFT" description="Draft"/>
</CONSTANT> </CONSTANT>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment