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_0tvsamm
Activity_152t4hz
Activity_1hq9hvm
Event_1ny63g6
Activity_0o7ln9u
Gateway_1gbhsvz
Event_1whqnwg
Activity_09yxu7e
Activity_0azoas6
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_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_0rvrpzq
hours = 0
minutes = 0
seconds = 0
if 'H' in timer_value_1:
hours_str = timer_value_1.split('H')[0][2:]
hours = int(hours_str) if hours_str.isdigit() else 0
if 'M' in timer_value_1:
minutes_str = timer_value_1.split('M')[0][-2:]
minutes = int(minutes_str) if minutes_str.isdigit() else 0
if 'S' in timer_value_1:
seconds_str = timer_value_1.split('S')[0][-2:]
seconds = int(seconds_str) if seconds_str.isdigit() else 0
TFC Clerk has approved the receipt of the equipment
Timer value is : {{hours}} Hour, {{minutes}} Minutes , {{seconds}} Seconds
Flow_0rvrpzq
Flow_0hcdtwt
Flow_0hcdtwt
Flow_0hvrs0q
Flow_07vuu9y
Flow_1oa3o7j
Flow_0ndgzoi
Flow_0hvrs0q
Flow_1oa3o7j
from random import randint
crv = f"CRV-24-{randint(0, 999999):06}"
# 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
Flow_1qb0af3
timer_value_warehouse
documents_collected=='Yes'
admin_approval_documents=='Yes'
sasd_approval=='Yes'
s10_approval=='Yes'
s10_approval=='No'
# Equipment not received
Equipment not received at SASD area
Flow_07vuu9y
Flow_0942yq0
Flow_1caqyqc
sasd_approval=='No'
# Equipment Delayed
Equipment didn't arrive at S10 Warehouse
Flow_1qb0af3
Flow_0j8vgi6
Flow_0se62kv
# Equipment Arrived at S10 Warehouse
Equipment has succesfully arrived at warehouse
Flow_1qnjxvj
Flow_0vlp9uc
Flow_0942yq0
timer_value_1