Update app.py
Browse files
app.py
CHANGED
@@ -41,11 +41,19 @@ Check the Quantity against the respective Minimum for each row. If the Quantity
|
|
41 |
** ROQ (MM/DD/YYYY) **
|
42 |
Item ID, Shortage (Quantity - Minimum), Contact Phone
|
43 |
|
44 |
-
For example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
** ROQ (02/19/2024) **
|
47 |
-
#
|
48 |
-
#
|
49 |
|
50 |
When rendering the response, please ensure ALL items in shortage state are on the list. Also, be aware that there may also be NO item in shortage state.
|
51 |
|
|
|
41 |
** ROQ (MM/DD/YYYY) **
|
42 |
Item ID, Shortage (Quantity - Minimum), Contact Phone
|
43 |
|
44 |
+
For example, considering the below Table,
|
45 |
+
| Item ID | Quantity | Minimum | Contact Phone |
|
46 |
+
| ----------- | ----------- |
|
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 |
** ROQ (02/19/2024) **
|
55 |
+
#01, -20 (30 - 50), 1234
|
56 |
+
#03, -5 (5 - 10), 4567
|
57 |
|
58 |
When rendering the response, please ensure ALL items in shortage state are on the list. Also, be aware that there may also be NO item in shortage state.
|
59 |
|