Event_1v4k3r9
Activity_136xnz4
Gateway_005mbg4
Activity_1utg2n7
Activity_1m7u7di
Activity_0740nq5
Event_1ew0edc
Activity_1lpdsjc
Activity_0x2ofau
Activity_1wcbodo
Gateway_0ez3am0
Activity_0ejewop
Gateway_1be7bb7
Activity_0rb7t6w
Activity_1uw3xcu
Activity_1hq9hvm
Activity_0tvsamm
Activity_152t4hz
Event_1i3bmtb
Activity_0o7ln9u
Gateway_1gbhsvz
Activity_0azoas6
Activity_09yxu7e
Event_1whqnwg
Flow_047ap3u
# Following Documents Collected
-----------
- CIN
- Auth letter
Flow_047ap3u
Flow_0okvtru
Flow_0okvtru
Flow_1frafk5
Flow_156qez4
# Acceptance Form
We have received equipment to receive at Trafic branch, please see the following details
Flow_1frafk5
Flow_1kuk5xj
Flow_1kuk5xj
Flow_0x21rlw
Flow_1a0gemd
# Form Acceptance
Admin has approved the request to receive equipment at traffic branch
Flow_0x21rlw
Flow_0g3zzkk
# Endorse DRS
Please fill the following form to endorse DRS for equipment receipt procedure
Flow_0y27t43
Flow_13r09ut
Flow_0g3zzkk
Flow_0y27t43
from random import randint
drs_no = f"REB-24-{randint(0, 999999):06}"
Flow_156qez4
Flow_1a0gemd
Flow_0nr7yo5
Flow_1caqyqc
Flow_0vlp9uc
Flow_0se62kv
# Select Timer Value
Select time it should take for store to reach SASD Gate area
A **time duration** defined as ISO 8601 durations format.
- PT15S - 15 seconds
- PT1H30M - 1 hour and 30 minutes
- P14D - 14 days
Flow_13r09ut
Flow_1c2eg26
Flow_1c2eg26
Flow_1fo1w71
# Assuming timer_value_tfc contains the time duration in ISO 8601 format
# Example: "PT2H30M15S" for 2 hours, 30 minutes, and 15 seconds
# 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
# Create ISO 8601 string representation based on the selected time format
if time_format == "Hour(s)":
timer_value_tfc = f"PT{hours}H"
elif time_format == "Minute(s)":
timer_value_tfc = f"PT{minutes}M"
elif time_format == "Second(s)":
timer_value_tfc = f"PT{seconds}S"
elif time_format == "Day(s)":
timer_value_tfc = f"P{days}D"
# Now timer_value_tfc_str contains the ISO 8601 string representation based on the selected time format
print(timer_value_tfc)
TFC Clerk has approved the receipt of the equipment
Timer value is : {{hours}} Hour, {{minutes}} Minutes , {{seconds}} Seconds
Flow_1fo1w71
Flow_0hcdtwt
Flow_0hcdtwt
Flow_0hvrs0q
Flow_0nr7yo5
Flow_1oa3o7j
Flow_0ndgzoi
Flow_0hvrs0q
Flow_1oa3o7j
from random import randint
crv = f"CRV-24-{randint(0, 999999):06}"
# Equipment not received
Equipment not received at SASD area
Flow_0966w06
Flow_1caqyqc
# Select Timer Value
Select time it should take for store to reach SASD Gate area
A **time duration** defined as ISO 8601 durations format.
- PT15S - 15 seconds
- PT1H30M - 1 hour and 30 minutes
- P14D - 14 days
Flow_0ndgzoi
Flow_06dj55b
Flow_06dj55b
Flow_1kxa1d4
hours = 0
minutes = 0
seconds = 0
if 'H' in timer_value_warehouse:
hours_str = timer_value_warehouse.split('H')[0][2:]
hours = int(hours_str) if hours_str.isdigit() else 0
if 'M' in timer_value_warehouse:
minutes_str = timer_value_warehouse.split('M')[0][-2:]
minutes = int(minutes_str) if minutes_str.isdigit() else 0
if 'S' in timer_value_warehouse:
seconds_str = timer_value_warehouse.split('S')[0][-2:]
seconds = int(seconds_str) if seconds_str.isdigit() else 0
# Receipt of Equipment at S10 Warehouse
Timer value is : {{hours}} Hour, {{minutes}} Minutes , {{seconds}} Seconds
Did you receive requipment at S10 Warehouse?
Flow_1kxa1d4
Flow_0f7fpiv
Flow_0f7fpiv
Flow_1qnjxvj
Flow_0j8vgi6
# Equipment Arrived at S10 Warehouse
Equipment has succesfully arrived at warehouse
Flow_1qnjxvj
Flow_0vlp9uc
# Equipment Delayed
Equipment didn't arrive at S10 Warehouse
Flow_1qb0af3
Flow_0j8vgi6
Flow_0se62kv
Flow_0966w06
timer_value_tfc
Flow_1qb0af3
timer_value_warehouse
documents_collected=='Yes'
admin_approval_documents=='Yes'
sasd_approval=='Yes'
s10_approval=='Yes'