Update app.py
Browse files
app.py
CHANGED
@@ -73,16 +73,16 @@ with gr.Blocks() as app:
|
|
73 |
with gr.Row():
|
74 |
with gr.Column(scale=1):
|
75 |
onfftid = gr.Textbox(label="์จ์คํ์ฝ๋ฆฌ์ TID", value="OFPT000000011017")
|
76 |
-
tot_amt = gr.Number(label="๊ฒฐ์ ๊ธ์ก"
|
77 |
com_tax_amt = gr.Number(label="๊ณผ์ธ์น์ธ๊ธ์ก")
|
78 |
com_free_amt = gr.Number(label="๋น๊ณผ์ธ์น์ธ๊ธ์ก")
|
79 |
com_vat_amt = gr.Number(label="๋ถ๊ฐ์ธ")
|
80 |
-
card_no = gr.Textbox(label="์นด๋๋ฒํธ"
|
81 |
install_period = gr.Dropdown(choices=[f"{str(i).zfill(2)} - {i if i > 0 else '์ผ์๋ถ'}๊ฐ์" for i in range(13)], label="ํ ๋ถ๊ธฐ๊ฐ ์ ํ", value="00 - ์ผ์๋ถ")
|
82 |
-
user_nm = gr.Textbox(label="๊ฒฐ์ ์๋ช
"
|
83 |
-
user_phone2 = gr.Textbox(label="๊ฒฐ์ ์ ์ฐ๋ฝ์ฒ"
|
84 |
-
product_nm = gr.Textbox(label="์ํ๋ช
"
|
85 |
-
expire_date = gr.Textbox(label="์ ํจ๊ธฐ๊ฐ(YYMM)"
|
86 |
cert_type = gr.Radio(choices=["0 - ์ธ์ฆ", "1 - ๋น์ธ์ฆ"], label="์ธ์ฆ์ฌ๋ถ ์ ํ", value="0 - ์ธ์ฆ")
|
87 |
card_user_type = gr.Radio(choices=["0 - ๊ฐ์ธ์นด๋", "1 - ๋ฒ์ธ์นด๋"], label="์นด๋์ ํ ์ ํ", value="0 - ๊ฐ์ธ์นด๋")
|
88 |
auth_value = gr.Textbox(label="์ธ์ฆ๋ฒํธ (์ธ์ฆ ์ ํ์)")
|
|
|
73 |
with gr.Row():
|
74 |
with gr.Column(scale=1):
|
75 |
onfftid = gr.Textbox(label="์จ์คํ์ฝ๋ฆฌ์ TID", value="OFPT000000011017")
|
76 |
+
tot_amt = gr.Number(label="๊ฒฐ์ ๊ธ์ก")
|
77 |
com_tax_amt = gr.Number(label="๊ณผ์ธ์น์ธ๊ธ์ก")
|
78 |
com_free_amt = gr.Number(label="๋น๊ณผ์ธ์น์ธ๊ธ์ก")
|
79 |
com_vat_amt = gr.Number(label="๋ถ๊ฐ์ธ")
|
80 |
+
card_no = gr.Textbox(label="์นด๋๋ฒํธ")
|
81 |
install_period = gr.Dropdown(choices=[f"{str(i).zfill(2)} - {i if i > 0 else '์ผ์๋ถ'}๊ฐ์" for i in range(13)], label="ํ ๋ถ๊ธฐ๊ฐ ์ ํ", value="00 - ์ผ์๋ถ")
|
82 |
+
user_nm = gr.Textbox(label="๊ฒฐ์ ์๋ช
")
|
83 |
+
user_phone2 = gr.Textbox(label="๊ฒฐ์ ์ ์ฐ๋ฝ์ฒ")
|
84 |
+
product_nm = gr.Textbox(label="์ํ๋ช
")
|
85 |
+
expire_date = gr.Textbox(label="์ ํจ๊ธฐ๊ฐ(YYMM)")
|
86 |
cert_type = gr.Radio(choices=["0 - ์ธ์ฆ", "1 - ๋น์ธ์ฆ"], label="์ธ์ฆ์ฌ๋ถ ์ ํ", value="0 - ์ธ์ฆ")
|
87 |
card_user_type = gr.Radio(choices=["0 - ๊ฐ์ธ์นด๋", "1 - ๋ฒ์ธ์นด๋"], label="์นด๋์ ํ ์ ํ", value="0 - ๊ฐ์ธ์นด๋")
|
88 |
auth_value = gr.Textbox(label="์ธ์ฆ๋ฒํธ (์ธ์ฆ ์ ํ์)")
|