form_close ( )
Function prototype | form_close (session, form, [next=false]) |
---|---|
API Version | All |
SOAP |
Description
When a form is open (unlocked), call this function to close (lock) a task form.
If the task is a system action, then the function generates an action to the admission related to the task.
The function changes the form status to CLOSED and update the role to:
If it has role and not user assigned, It’s assign the role of the session given in the input parameter
If have role assigned and is the same as the session, It changes the user for the user of the session and if the user of the session is the “Case Manager” and the task have assigned user and role, the role not changes.
The function detects if the task have more forms and if all forms are closed the task is turned to “done”
Then if the activity is a System action, it will have the “Case Manager” role assigned. This function make modifications in the admission and his all other activities:
“X1 DISCHARGE”: modifiy the status of the Admission to “4 - Inactive”, modify the discharged dates of the admission
“X2 REJECT”: modify the status of the Admission to “2 - Rejected” and modify the rejected date of the admission.
“X3 PAUSE”: modify the status of the Admission to “6 - Suspended” and modify the suspended date of the admission. Then, change the status of all pending tasks ( 11 – Not assigned ) to (16 – Paused).
“X4 RESUME”: modify the status of the Admission to “ 1 – Active” and modify all the (16 – Paused) tasks before the Suspended date to the status ( 11 – Not assigned ) and replace all dates of the task to a new dates. This date is the sum of Today with the days between the old date of task and the suspended date of the admission.
All this modifications and changes of state of the admissions use the calls: admission_reject(), admission_suspend(), admission_resume(), admission_discharge()
Input parameters: |
|
Output parameters: |
|
Request example
form_close( “LCAAAAAAAAAA”, “1234”, "true");
Response
<?xml version="1.0" encoding="UTF-8"?>
<result>
<?xml version="1.0" encoding="utf-8"?>
<next>
<next_question/>
<next_form/>
<next_task/>
<next_strict_question/>
<next_strict_form/>
<next_strict_task/>
</next>
</result>
<ErrorMsg/>
<ErrorCode/>
Return Error codes
ERROR CODE |
|
---|---|
INVALID_TOKEN | The session token provided is not valid |
FORM.NOT_FOUND | The requested FORM was not found |