You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/utility-guides/BatchProcessing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ For this utility we have the following functions/methods:
28
28
29
29
### Batch Processing
30
30
31
-
This is the main function that is called in order to precess a batch.
31
+
This is the main function that is called in order to process a batch.
32
32
This will call the other two functions in order to successfully process a batch.
33
33
34
34
#### Required Arguments
@@ -65,7 +65,7 @@ This will call the other two functions in order to successfully process a batch.
65
65
5. Now it extracts the ID of the batch and stores it in the local variable `link_text`, this is used later on to extracts the subjects in the batch from the DB
66
66
6. After the ID is stored, it clicks on the ID to get to the Manage Active Batch page
67
67
7. From Here it calls the `prepare_and_print_batch` function.
68
-
1. If `get_subjects_from_pdf` was set to False it calls `get_nhs_no_from_batch_id`, which is imported from *utils.oracle.oracle_specific_functions*, to get the subjects from the batch and stores them as a pandas dataframe - **nhs_no_df**
68
+
1. If `get_subjects_from_pdf` was set to False it calls `get_nhs_no_from_batch_id`, which is imported from *utils.oracle.oracle_specific_functions*, to get the subjects from the batch and stores them as a pandas DataFrame - **nhs_no_df**
69
69
8. Once this is complete it calls the `check_batch_in_archived_batch_list` function
70
70
9. Finally, once that function is complete it calls `verify_subject_event_status_by_nhs_no` which is imported from *utils/screening_subject_page_searcher*
71
71
@@ -91,7 +91,7 @@ It is in charge of pressing on the following button: **Prepare Batch**, **Retrie
91
91
1. It starts off by clicking on the **Prepare Batch** button.
92
92
2. After this it waits for the button to turn into **Re-Prepare Batch**. Once this happens it means that the batch is ready to be printed.
93
93
3. Now It clicks on each **Retrieve** button visible.
94
-
1. If `get_subjects_from_pdf` was set to True and the file is a **.pdf**, then it calls `extract_nhs_no_from_pdf`, which is imported from *utils/pdf_reader*, to get the subjects from the batch and stores them as a pandas dataframe - **nhs_no_df**
94
+
1. If `get_subjects_from_pdf` was set to True and the file is a **.pdf**, then it calls `extract_nhs_no_from_pdf`, which is imported from *utils/pdf_reader*, to get the subjects from the batch and stores them as a pandas DataFrame - **nhs_no_df**
95
95
2. After a file is downloaded, it gets deleted.
96
96
4. Then it clicks on each **Confirm Printed** button ensuring to handle the dialog that appears.
97
97
5. Finally it checks for the message: *Batch Successfully Archived and Printed*
0 commit comments