From ca2d65b285ac77c1a16605be38f88c6fe10c820a Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 10 三月 2022 12:38:08 +0800 Subject: [PATCH] update#136639: [前端] 調整為顧問不支援發送滿意度功能(移除發送滿意度功能連結) --- PAMapp/shared/models/appointment.model.ts | 22 ++++++++++++---------- 1 files changed, 12 insertions(+), 10 deletions(-) diff --git a/PAMapp/shared/models/appointment.model.ts b/PAMapp/shared/models/appointment.model.ts index ca94a8f..9bb43ba 100644 --- a/PAMapp/shared/models/appointment.model.ts +++ b/PAMapp/shared/models/appointment.model.ts @@ -1,16 +1,18 @@ import { ContactStatus } from "./enum/contact-status"; +import { SatisfactionType } from "./enum/satisfaction-type"; export interface AppointmentLog { - agentName : string; - agentNo : string; - appointmentId : number; - createdDate : string; - customerId : number; - customerName : string; - id : number; - lastModifiedDate: string; - score : number; - status : 'UNFILLED' | 'FILLED'; + id : number; + createdDate : string; + lastModifiedDate: string; + customerId : number; + agentNo : string; + status : 'UNFILLED' | 'FILLED'; + score : number; + appointmentId : number; + customerName : string; + agentName : string; + type : SatisfactionType; } export interface Appointment { -- Gitblit v1.8.0