订单跟踪增加出发日期

dev/mobile
Jimmy 2 years ago
parent 0bf4cec83c
commit d44cd84a38

@ -112,7 +112,8 @@ const AdvanceSearchForm = memo(function noName({ initialValues, onSubmit }) {
{ value: '4', label: '等待付订金' },
{ value: '5', label: '成行' },
{ value: '6', label: '丢失' },
{ value: '7', label: '取消' }
{ value: '7', label: '取消' },
{ value: '8', label: '未报价' }
]}
/>
</Form.Item>
@ -188,7 +189,9 @@ function OrderGroupTable({ formValues }) {
return (
<Space>
{isNotEmpty(record.coli_guest_WhatsApp) && <WhatsAppOutlined className={['pl-1', record.last_received_time ? 'text-whatsapp' : 'text-neutral-500']} />}
<Tooltip title={record.coli_guest_WhatsApp}>
{text + regularText}
</Tooltip>
<Badge
count={record.unread_msg}
style={{
@ -224,6 +227,13 @@ function OrderGroupTable({ formValues }) {
title: '报价title',
dataIndex: 'lettertitle',
ellipsis: true,
hidden: false
},
{
title: '出发日期',
dataIndex: 'COLI_OrderStartDate',
width: 150,
hidden: false
},
{
title: '客人最后一次回复时间',

Loading…
Cancel
Save