Update app.py
Browse files
app.py
CHANGED
@@ -40,10 +40,10 @@ with gr.Blocks() as app:
|
|
40 |
with gr.Row():
|
41 |
with gr.Column(scale=1):
|
42 |
onfftid = gr.Label(label="온오프코리아 TID", value="OFPT000000011017")
|
43 |
-
tot_amt = gr.Number(label="결제금액
|
44 |
-
com_tax_amt = gr.Number(label="과세승인금액", optional=True)
|
45 |
-
com_free_amt = gr.Number(label="비과세승인금액", optional=True)
|
46 |
-
com_vat_amt = gr.Number(label="부가세", optional=True)
|
47 |
card_no = gr.Textbox(label="카드번호", placeholder="카드번호를 입력하세요")
|
48 |
install_period = gr.Dropdown([str(i).zfill(2) for i in range(13)], label="할부기간 선택")
|
49 |
user_nm = gr.Textbox(label="결제자명", placeholder="결제자의 이름을 입력하세요")
|
@@ -54,8 +54,8 @@ with gr.Blocks() as app:
|
|
54 |
card_user_type = gr.Radio(choices=["0 - 개인카드", "1 - 법인카드"], label="카드유형 선택")
|
55 |
auth_value = gr.Textbox(label="인증번호", placeholder="개인은 주민번호 앞 6자리, 법인은 사업자등록번호")
|
56 |
password = gr.Textbox(label="카드 비밀번호 앞 2자리", placeholder="비밀번호 앞 2자리")
|
57 |
-
card_nm = gr.Textbox(label="카드사명", optional=True, placeholder="카드사명을 입력하세요")
|
58 |
-
order_no = gr.Textbox(label="주문번호", optional=True, placeholder="주문번호를 입력하세요")
|
59 |
pay_type = gr.Label(label="결제타입", value="card")
|
60 |
|
61 |
submit_button = gr.Button("결제 승인 요청")
|
|
|
40 |
with gr.Row():
|
41 |
with gr.Column(scale=1):
|
42 |
onfftid = gr.Label(label="온오프코리아 TID", value="OFPT000000011017")
|
43 |
+
tot_amt = gr.Number(label="결제금액 (금액을 입력하세요)")
|
44 |
+
com_tax_amt = gr.Number(label="과세승인금액 (필요시 입력)", optional=True)
|
45 |
+
com_free_amt = gr.Number(label="비과세승인금액 (필요시 입력)", optional=True)
|
46 |
+
com_vat_amt = gr.Number(label="부가세 (필요시 입력)", optional=True)
|
47 |
card_no = gr.Textbox(label="카드번호", placeholder="카드번호를 입력하세요")
|
48 |
install_period = gr.Dropdown([str(i).zfill(2) for i in range(13)], label="할부기간 선택")
|
49 |
user_nm = gr.Textbox(label="결제자명", placeholder="결제자의 이름을 입력하세요")
|
|
|
54 |
card_user_type = gr.Radio(choices=["0 - 개인카드", "1 - 법인카드"], label="카드유형 선택")
|
55 |
auth_value = gr.Textbox(label="인증번호", placeholder="개인은 주민번호 앞 6자리, 법인은 사업자등록번호")
|
56 |
password = gr.Textbox(label="카드 비밀번호 앞 2자리", placeholder="비밀번호 앞 2자리")
|
57 |
+
card_nm = gr.Textbox(label="카드사명 (필요시 입력)", optional=True, placeholder="카드사명을 입력하세요")
|
58 |
+
order_no = gr.Textbox(label="주문번호 (필요시 입력)", optional=True, placeholder="주문번호를 입력하세요")
|
59 |
pay_type = gr.Label(label="결제타입", value="card")
|
60 |
|
61 |
submit_button = gr.Button("결제 승인 요청")
|