mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-24 21:58:18 +00:00
User: alex@sartography.com clicked save for misc/service-tests/bamboo/bamboo_get_employee.bpmn
This commit is contained in:
parent
85d9dec489
commit
eed74f7b54
@ -37,14 +37,19 @@ if is_bamboo_first_name:
|
||||
get_employee_fields_cnt = get_employee_fields_cnt + 1
|
||||
|
||||
if is_bamboo_last_name:
|
||||
get_employee_fields = get_employee_fields + ("lastName" if get_employee_fields_cnt = 0 else ",lastName")
|
||||
if get_employee_fields_cnt = 0:
|
||||
get_employee_fields = get_employee_fields + "lastName"
|
||||
else:
|
||||
get_employee_fields = get_employee_fields + ",lastName"
|
||||
get_employee_fields_cnt = get_employee_fields_cnt + 1
|
||||
|
||||
if is_bamboo_preferred_name:
|
||||
if get_employee_fields_cnt = 0
|
||||
get_employee_fields = get_employee_fields + "preferredName" if get_employee_fields_cnt = 0 else ",preferredName"
|
||||
get_employee_fields_cnt = get_employee_fields_cnt + 1
|
||||
|
||||
if is_bamboo_status_key:
|
||||
if get_employee_fields_cnt = 0
|
||||
get_employee_fields = get_employee_fields + "customStatusChatKey" if get_employee_fields_cnt = 0 else ",customStatusChatKey"
|
||||
get_employee_fields_cnt = get_employee_fields_cnt + 1
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user