User: hurairaidrees@gmail.com clicked save for playground/nutech/receipt/receipt.bpmn
This commit is contained in:
parent
d31b5a82c4
commit
7faf3b02a3
|
@ -150,13 +150,13 @@ elif time_format == "Day(s)":
|
|||
|
||||
# Create ISO 8601 string representation based on the selected time format
|
||||
if time_format == "Hour(s)":
|
||||
timer_value_1 = f"{numeric_part_with_PT}H"
|
||||
timer_value_1 = f"{str(numeric_part_with_PT)}H"
|
||||
elif time_format == "Minute(s)":
|
||||
timer_value_1 = f"{numeric_part_with_PT}M"
|
||||
timer_value_1 = f"{str(numeric_part_with_PT)}M"
|
||||
elif time_format == "Second(s)":
|
||||
timer_value_1 = f"{numeric_part_with_PT}S"
|
||||
timer_value_1 = f"{str(numeric_part_with_PT)}S"
|
||||
elif time_format == "Day(s)":
|
||||
timer_value_1 = f"{numeric_part_with_PT}D"
|
||||
timer_value_1 = f"{str(numeric_part_with_PT)}D"
|
||||
|
||||
# Now timer_value_tfc_str contains the ISO 8601 string representation based on the selected time format
|
||||
print(timer_value_1)
|
||||
|
|
Loading…
Reference in New Issue