Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -505,9 +505,8 @@ with gr.Blocks() as app:
|
|
505 |
采购款收款账号信息 = gr.Textbox(label="采购款收款账号信息")
|
506 |
在途状态 = gr.Dropdown(
|
507 |
choices=[
|
508 |
-
'
|
509 |
-
'
|
510 |
-
'发运', '到达目的港'
|
511 |
],
|
512 |
label="在途状态")
|
513 |
开票类型 = gr.Dropdown(
|
@@ -515,7 +514,11 @@ with gr.Blocks() as app:
|
|
515 |
'增票', '普票', '低开', '无票'
|
516 |
],
|
517 |
label="开票类型")
|
518 |
-
收款状态 = gr.
|
|
|
|
|
|
|
|
|
519 |
退款说明 = gr.Textbox(label="退款说明")
|
520 |
备注 = gr.Textbox(label="备注")
|
521 |
submit_button = gr.Button("提交订单")
|
@@ -552,9 +555,8 @@ with gr.Blocks() as app:
|
|
552 |
客户国家 = gr.Textbox(label="客户国家")
|
553 |
在途状态 = gr.Dropdown(
|
554 |
choices=[
|
555 |
-
'
|
556 |
-
'
|
557 |
-
'发运', '到达目的港'
|
558 |
],
|
559 |
label="在途状态")
|
560 |
开票类型 = gr.Dropdown(
|
@@ -562,7 +564,11 @@ with gr.Blocks() as app:
|
|
562 |
'增票', '普票', '低开', '无票'
|
563 |
],
|
564 |
label="开票类型")
|
565 |
-
收款状态 = gr.
|
|
|
|
|
|
|
|
|
566 |
退款说明 = gr.Textbox(label="退款说明")
|
567 |
备注 = gr.Textbox(label="备注")
|
568 |
submit_button = gr.Button("提交订单")
|
|
|
505 |
采购款收款账号信息 = gr.Textbox(label="采购款收款账号信息")
|
506 |
在途状态 = gr.Dropdown(
|
507 |
choices=[
|
508 |
+
'离港发运', '货代仓库', '到达目的港', '订单取消', '装箱',
|
509 |
+
'4S店', '工厂', '车管所', '国内运输中'
|
|
|
510 |
],
|
511 |
label="在途状态")
|
512 |
开票类型 = gr.Dropdown(
|
|
|
514 |
'增票', '普票', '低开', '无票'
|
515 |
],
|
516 |
label="开票类型")
|
517 |
+
收款状态 = gr.Dropdown(
|
518 |
+
choices=[
|
519 |
+
'已收全款', '已收定金'
|
520 |
+
],
|
521 |
+
label="收款状态")
|
522 |
退款说明 = gr.Textbox(label="退款说明")
|
523 |
备注 = gr.Textbox(label="备注")
|
524 |
submit_button = gr.Button("提交订单")
|
|
|
555 |
客户国家 = gr.Textbox(label="客户国家")
|
556 |
在途状态 = gr.Dropdown(
|
557 |
choices=[
|
558 |
+
'离港发运', '货代仓库', '到达目的港', '订单取消', '装箱',
|
559 |
+
'4S店', '工厂', '车管所', '运输中'
|
|
|
560 |
],
|
561 |
label="在途状态")
|
562 |
开票类型 = gr.Dropdown(
|
|
|
564 |
'增票', '普票', '低开', '无票'
|
565 |
],
|
566 |
label="开票类型")
|
567 |
+
收款状态 = gr.Dropdown(
|
568 |
+
choices=[
|
569 |
+
'已收全款', '已收定金'
|
570 |
+
],
|
571 |
+
label="收款状态")
|
572 |
退款说明 = gr.Textbox(label="退款说明")
|
573 |
备注 = gr.Textbox(label="备注")
|
574 |
submit_button = gr.Button("提交订单")
|