소스 검색

rename

master
cyril.tsui 2 일 전
부모
커밋
a6741df1a5
2개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +5
    -5
      src/app/api/escalation/index.ts
  2. +1
    -1
      src/components/DashboardPage/escalation/EscalationLogTable.tsx

+ 5
- 5
src/app/api/escalation/index.ts 파일 보기

@@ -7,14 +7,14 @@ import { cache } from "react";

export interface EscalationResult {
id: number;
personInCharge?: string;
personInChargeDepartment?: string;
personInChargeName?: string;
personInChargeTitle?: string;
handler?: string;
handlerDepartment?: string;
handlerName?: string;
handlerTitle?: string;
polId?: number;
poId?: number;
reason?: string;
personInChargeId?: number;
handlerId?: number;
itemName?: string;
demandQty?: number;
acceptedQty?: number;


+ 1
- 1
src/components/DashboardPage/escalation/EscalationLogTable.tsx 파일 보기

@@ -61,7 +61,7 @@ const EscalationLogTable: React.FC<Props> = ({
const columns = useMemo<Column<EscalationResult>[]>(
() => [
{
name: "personInCharge",
name: "handler",
label: t("Responsible for handling colleagues")
},
{


불러오는 중...
취소
저장