ITSAIDI
commited on
Commit
·
a469cf7
1
Parent(s):
a7b9e38
sd
Browse files
App.py
CHANGED
@@ -21,12 +21,12 @@ if uploaded_file is not None:
|
|
21 |
Change_Image(image,image_initiale)
|
22 |
st.sidebar.title('Results')
|
23 |
|
24 |
-
text_fourni = st.sidebar.
|
25 |
-
text_InvDate = st.sidebar.
|
26 |
-
text_InvNum = st.sidebar.
|
27 |
-
text_TT = st.sidebar.
|
28 |
-
text_TVA = st.sidebar.
|
29 |
-
text_TTC = st.sidebar.
|
30 |
|
31 |
st.write("Predicted Text:",text_fourni,text_InvDate,text_InvNum,text_TT,text_TVA,text_TTC)
|
32 |
|
|
|
21 |
Change_Image(image,image_initiale)
|
22 |
st.sidebar.title('Results')
|
23 |
|
24 |
+
text_fourni = st.sidebar.text_input("Fournisseur",Results["Fournisseur"])
|
25 |
+
text_InvDate = st.sidebar.text_input("Date Facture",Results["Date Facture"])
|
26 |
+
text_InvNum = st.sidebar.text_input("Numéro de facture",Results["Numéro de facture"])
|
27 |
+
text_TT = st.sidebar.text_input("Total HT",Results["Total HT"])
|
28 |
+
text_TVA = st.sidebar.text_input("TVA",Results["Total TTC"])
|
29 |
+
text_TTC = st.sidebar.text_input("TTC",Results["TVA"])
|
30 |
|
31 |
st.write("Predicted Text:",text_fourni,text_InvDate,text_InvNum,text_TT,text_TVA,text_TTC)
|
32 |
|