Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ If the image aligns with this base reference, proceed with the following steps t
|
|
38 |
|
39 |
Check the Quantity against the respective Minimum for each row. If the Quantity is less than the Minimum, then the respective Item ID is in a shortage state, and the shortage is defined as the negative value of Quantity - Minimum. Provide a list of all items in shortage in the following format:
|
40 |
|
41 |
-
**
|
42 |
Item ID, Shortage (Quantity - Minimum), Contact Phone
|
43 |
|
44 |
For example, considering the below Table,
|
@@ -47,11 +47,10 @@ For example, considering the below Table,
|
|
47 |
| #01 | 30 | 50 | 1234
|
48 |
| #02 | 40 | 20 | 3456
|
49 |
| #03 | 5 | 10 | 4567
|
50 |
-
| Paragraph | Text |
|
51 |
-
--
|
52 |
-
#01 has quantity of 30, and
|
53 |
|
54 |
-
|
|
|
|
|
55 |
#01, -20 (30 - 50), 1234
|
56 |
#03, -5 (5 - 10), 4567
|
57 |
|
|
|
38 |
|
39 |
Check the Quantity against the respective Minimum for each row. If the Quantity is less than the Minimum, then the respective Item ID is in a shortage state, and the shortage is defined as the negative value of Quantity - Minimum. Provide a list of all items in shortage in the following format:
|
40 |
|
41 |
+
** SOS shortage (MM/DD/YYYY) **
|
42 |
Item ID, Shortage (Quantity - Minimum), Contact Phone
|
43 |
|
44 |
For example, considering the below Table,
|
|
|
47 |
| #01 | 30 | 50 | 1234
|
48 |
| #02 | 40 | 20 | 3456
|
49 |
| #03 | 5 | 10 | 4567
|
|
|
|
|
|
|
50 |
|
51 |
+
the respective response should be as follow:
|
52 |
+
|
53 |
+
** SOS shortage (02/19/2024) **
|
54 |
#01, -20 (30 - 50), 1234
|
55 |
#03, -5 (5 - 10), 4567
|
56 |
|