service ticket
This commit is contained in:
+2
-1
@@ -240,7 +240,8 @@
|
|||||||
"category": "دسته بندی",
|
"category": "دسته بندی",
|
||||||
"low": "پایین",
|
"low": "پایین",
|
||||||
"medium": "متوسط",
|
"medium": "متوسط",
|
||||||
"high": "بالا"
|
"high": "بالا",
|
||||||
|
"service": "سرویس"
|
||||||
},
|
},
|
||||||
"attach": "پیوست",
|
"attach": "پیوست",
|
||||||
"date": "تاریخ",
|
"date": "تاریخ",
|
||||||
|
|||||||
@@ -71,7 +71,8 @@ const TicketList: FC = () => {
|
|||||||
<tr>
|
<tr>
|
||||||
<Td text={t('ticket.number')} />
|
<Td text={t('ticket.number')} />
|
||||||
<Td text={t('ticket.title')} />
|
<Td text={t('ticket.title')} />
|
||||||
<Td text={t('ticket.team')} />
|
<Td text={t('ticket.category')} />
|
||||||
|
<Td text={t('ticket.service')} />
|
||||||
<Td text={t('ticket.date')} />
|
<Td text={t('ticket.date')} />
|
||||||
<Td text={t('ticket.status')} />
|
<Td text={t('ticket.status')} />
|
||||||
<Td text={t('ticket.priority')} />
|
<Td text={t('ticket.priority')} />
|
||||||
@@ -86,6 +87,7 @@ const TicketList: FC = () => {
|
|||||||
<Td text={item.numericId + ''} />
|
<Td text={item.numericId + ''} />
|
||||||
<Td text={item.subject} />
|
<Td text={item.subject} />
|
||||||
<Td text={item?.category?.title} />
|
<Td text={item?.category?.title} />
|
||||||
|
<Td text={item?.danakService?.name} />
|
||||||
<Td text={''}>
|
<Td text={''}>
|
||||||
<div className='dltr text-right'>
|
<div className='dltr text-right'>
|
||||||
{moment(item.updatedAt).format('jYYYY-jMM-jDD HH:mm')}
|
{moment(item.updatedAt).format('jYYYY-jMM-jDD HH:mm')}
|
||||||
|
|||||||
@@ -8,6 +8,22 @@ export type TicketItemType = {
|
|||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
status: string;
|
status: string;
|
||||||
priority: string;
|
priority: string;
|
||||||
|
danakService: {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
icon: string;
|
||||||
|
link: string;
|
||||||
|
isActive: boolean;
|
||||||
|
isDanakSuggest: boolean;
|
||||||
|
metaDescription: string;
|
||||||
|
serviceLanguage: string;
|
||||||
|
softwareLanguage: string;
|
||||||
|
title: string;
|
||||||
|
userCount: number;
|
||||||
|
createdAt: string;
|
||||||
|
updatedAt: string;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type AddMessageTicketType = {
|
export type AddMessageTicketType = {
|
||||||
|
|||||||
Reference in New Issue
Block a user