From 27d109b5792305d849f578627f98e1cb55a330f4 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期五, 11 三月 2022 15:12:54 +0800 Subject: [PATCH] Merge branch 'Phase3' into pollex-dev --- PAMapp/shared/services/appointment.service.ts | 70 ++++++++++++++++++++++++++++------- 1 files changed, 56 insertions(+), 14 deletions(-) diff --git a/PAMapp/shared/services/appointment.service.ts b/PAMapp/shared/services/appointment.service.ts index ef4cea0..6ba2c18 100644 --- a/PAMapp/shared/services/appointment.service.ts +++ b/PAMapp/shared/services/appointment.service.ts @@ -1,14 +1,13 @@ import { http } from "./httpClient"; -import { ClientInfo } from "~/shared/models/client.model"; -import { AppointmentDetail, EditAppointmentParams } from "~/shared/models/appointment.model"; +import { Appointment, AppointmentMemoInfo, createdMemoInfo, EditAppointmentParams, InterviewRecordInfo, ToCloseAppointment, ToDoneAppointment, ToInformAppointment, updatedMemoInfo, UpdateInterviewRecordInfo } from "~/shared/models/appointment.model"; class AppointmentService { - // ��������� - async getMyAppointmentList(): Promise<ClientInfo[]> { + // 憿批������撌梁���API + async getMyAppointmentList(): Promise<Appointment[]> { return http.get('/consultant/getMyAppointment').then((res) => { - const hasNewAppointment = res.data.find((appointment: ClientInfo) => !appointment.consultantViewTime); + const hasNewAppointment = res.data.find((appointment: Appointment) => !appointment.consultantViewTime); if (hasNewAppointment) { this.viewAllAppointment(); } @@ -16,16 +15,9 @@ }); } + // 憿批��汗�撌望������蝝���孛�API private viewAllAppointment(): void { http.post('/consultant/record/allAppointmentsView').then(); - } - - // 璅�撌脰蝯� - markAsContact(appointmentId: number): Promise<void> { - // TODO: 頝�垢蝣箄���ㄐ��� API 銝�府���� void, ���府���敺���� - Ben 2021/11/16 - // return http.post('/appointment/markAsContacted/'+appointmentId, undefined, {headers}) - // .then(res => res.data) - return http.post(`/appointment/markAsContacted/${appointmentId}`); } // 霈�������孛�嚗������������ @@ -34,7 +26,7 @@ } // �����蝝啁� - async getAppointmentDetail(appointmentId: number):Promise<AppointmentDetail> { + async getAppointmentDetail(appointmentId: number):Promise<Appointment> { return http.get(`/appointment/getDetail/${appointmentId}`).then((res) => res.data); } @@ -48,6 +40,56 @@ return http.put('/appointment', editAppointmentParams); } + // �憓酉閮� + async createMemo(memoInfo: createdMemoInfo): Promise<AppointmentMemoInfo> { + return http.post('/appointment/memo/create', memoInfo).then(res => res.data); + } + + // 蝺刻摩閮餉�� + async updateMemo(memoInfo: updatedMemoInfo): Promise<AppointmentMemoInfo> { + return http.post('/appointment/memo/update', memoInfo).then(res => res.data); + } + + // ��閮餉�� + deleteMemo(appointmentMemoId: number) { + return http.delete(`/appointment/memo/${appointmentMemoId}`) + } + + // ���蝯��, ��蝯��敦 + async closeAppointment(appointmentInfo: ToDoneAppointment | ToCloseAppointment) { + return http.post(`/appointment/close`, appointmentInfo).then((res) => res.data); + } + + // 蝝赤� API + async informAppointment(appointmentInformation: ToInformAppointment) { + return http.post(`/notice/send`, appointmentInformation).then((res) => res.data); + } + + // �憓�赤閮�� + async createInterviewRecord(interviewRecordInfo: InterviewRecordInfo) { + return http.post('/interview_record/create', interviewRecordInfo).then(res => res.data); + } + + // 靽格蝝赤閮�� + async updateInterviewRecord(updateInterviewRecordInfo: UpdateInterviewRecordInfo) { + return http.post('/interview_record/update', updateInterviewRecordInfo) + } + + // ��蝝赤閮�� + async deleteInterviewRecord(interviewRecordId) { + return http.delete(`/interview_record/${interviewRecordId}`); + } + + // 摰X�������������� + async getNotContactAppointment(): Promise<Appointment> { + return http.get(`/appointment/customer/expiring/newest`).then((res) => res.data); + } + + // 憿批������������ + async getPendingAppointmentSum(): Promise<number> { + return http.get(`/appointment/consultant/pending/sum`).then((res) => res.data) + } + } export default new AppointmentService(); -- Gitblit v1.8.0