显示审核进度

main
Ycc 9 months ago
parent 8330244008
commit 575e792481

@ -1,5 +1,5 @@
import { useState, useEffect } from "react";
import { Grid, Divider, Layout, Spin, Input, Col, Row, Space, Checkbox, Table, Button, App } from "antd";
import { Grid, Divider, Layout, Steps, Input, Col, Row, Space, Checkbox, Table, Button, App, Typography } from "antd";
import { PhoneOutlined, CustomerServiceOutlined, FrownTwoTone, LikeTwoTone } from "@ant-design/icons";
import { useParams, useHref, useNavigate, NavLink } from "react-router-dom";
import { isEmpty, formatColonTime } from "@/utils/commons";
@ -24,7 +24,11 @@ const Invoice = props => {
title: "团名",
key: "GRI_No",
dataIndex: "GRI_No",
render: (text, record) => `${record.GRI_No} ${record.WL}`,
render: (text, record) => (
<Typography.Text title={record.Memo}>
{record.GRI_No} {record.WL}
</Typography.Text>
),
},
{
title: "状态",
@ -97,11 +101,6 @@ const Invoice = props => {
dataIndex: "Discount",
render: (text, record) => (record.CostType == "出票" ? text : "-"),
},
{
title: "客人信息/备注",
key: "Memo",
dataIndex: "Memo",
},
{
title: "审核状态",
children: [
@ -118,7 +117,25 @@ const Invoice = props => {
待提交
</Checkbox>
) : (
record.CheckStatusName
<Steps
size="small"
current={record.CheckStatus-1}
items={[
{
title: "提交账单",
},
{
title: "顾问审核",
},
{
title: "财务处理",
},
{
title: "账单支付",
},
]}
/>
),
},
],

@ -612,7 +612,7 @@ const AirticketPlan = props => {
{isTicketType && (
<>
<Form.Item label="PNR" name="PNR" rules={[{ required: true }]}>
<Input />
<Input />
</Form.Item>
<Form.Item label="票号" name="TicketNo" rules={[{ required: true }]}>
<Input

Loading…
Cancel
Save