Flow_17db3yp
The process instance completed successfully.
Flow_0yzbpyw
This is an example **Manual Task**. A **Manual Task** is designed to allow someone to complete a task outside of the system and then report back that it is complete. You can click the *Continue* button to proceed. When you are done running this process, you can edit the **Process Model** to include a:
* **Script Task** - write a short snippet of python code to update some data
* **User Task** - generate a form that collects information from a user
* **Service Task** - communicate with an external API to fetch or update some data.
You can also change the text you are reading here by updating the *Instructions* on this example manual task.
Flow_17db3yp
Flow_01eub9l
Flow_01eub9l
Flow_0y4at06
# Initialize variables
hours = 0
minutes = 0
seconds = 0
days = 0
# Extract the value after "PT"
time_value_str = timer_value_tfc.split('PT')[1]
# Extract the numeric part of the time value
numeric_part = ""
for char in time_value_str:
if char.isdigit():
numeric_part += char
else:
break
# Populate values based on the selected time format
if time_format == "Hour(s)":
hours = int(numeric_part) if numeric_part.isdigit() else 0
elif time_format == "Minute(s)":
minutes = int(numeric_part) if numeric_part.isdigit() else 0
elif time_format == "Second(s)":
seconds = int(numeric_part) if numeric_part.isdigit() else 0
elif time_format == "Day(s)":
days = int(numeric_part) if numeric_part.isdigit() else 0
Flow_0y4at06
Flow_0ukmyta
timer_value_tfc
# Equipment not received
Equipment not received at SASD area
Flow_0ukmyta
Flow_0yzbpyw