/
† task_list_day_default ()

† task_list_day_default ()

Deprecated in API Version 2.6.18

Removed definitively from API in version 2.7.32

task_list_day_default ( session, type, id  )

Is a function that returns the default day which have the older task in status “Not assigned/Assigned not done/Sent/Not sent” or “open” if is an event.

If there is not pending task or open event still return the most recent closed event or task completed.

If there no task or events at all returns today_date.

Input

parameters:

session: is the session id obtained in the session_init call

type: ADMI|CASE|USR|CALLS|SCH|DUE

“ADMI” : returns the tasks of the admission. The ID input parameter is the admission_id referenced by the URL

“CASE”: returns the tasks and the events of the case. The ID input parameter is the case_id referenced by the URL

“USR”: returns the tasks assigned to the user, assigned to the rol but not assigned to the user, and events created by or assigned to the user. Is called from USER(CALENDAR) graphic object. The ID input parameter is the id that is referenced by the URL

“CALLS”: returns events with CALL type.

 “SCH”:  returns tasks not assigned or not programmed. Is called by SCHEDULE graphic object. There is no ID input parameter

“DUE”:  returns overdue tasks or open events. Will called by a  graphic object. The ID input parameter is a id reference /to show the pending tasks and open events of a defined user, or none to see all due tasks or open events


id: depending the id_type input parameter will be admission_id or case_id or id

Output

parameters:

date: is the date to point in the calendar as a default day

ErrorMsg: any fault in the call, either in the validation of input parameters, errors in the connection to the database or any other error, this parameter returns the error message produced

Request

sample:

task_list_day_default(“LCAAAAAAAAAAAAAAAA”, “CASE”, “{label:}case_id{@source}” )

Response

sample:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<date>2012-01-01</date>

<ErrorMsg></ErrorMsg>

Notes:

* Currently, this function is only implemented for “CASE” and “ADMI” id_types

Related content