From 30fd5edcbfe3c0b29f8ecb9301d6689a7cbd60a9 Mon Sep 17 00:00:00 2001
From: jack <jack.su@pollex.com.tw>
Date: 星期四, 11 八月 2022 17:32:42 +0800
Subject: [PATCH] [UPDATE] 新增預約單若三天內有取消的預約單則批次新增此筆資料 [UPDATE] 前端錯誤訊息視窗調整

---
 PAMapp/shared/models/appointment.model.ts |   23 +++++++++++++----------
 1 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/PAMapp/shared/models/appointment.model.ts b/PAMapp/shared/models/appointment.model.ts
index 9a66ebe..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 {
@@ -115,6 +117,7 @@
   agentNo        : string;
   contactType    : string;
   email          : string;
+  name           : string;
   gender         : string;
   hopeContactTime: ContactTime[];
   job            : string;

--
Gitblit v1.8.0