83 lines
1.6 KiB
Plaintext
83 lines
1.6 KiB
Plaintext
|
ds
|
||
|
lf
|
||
|
crm-pro
|
||
|
일정 업데이트
|
||
|
통화 컴포넌트
|
||
|
프로세스
|
||
|
ocx: 수신 이벤트 -> electron 수신 event 전파
|
||
|
-> open call, open memo -> 부모창 call, memo data 변경 구독
|
||
|
|
||
|
수신 컴포넌트
|
||
|
사용자 로그인 정보
|
||
|
주소록 정보
|
||
|
|
||
|
메모 컴포넌트
|
||
|
data observer
|
||
|
child->parent communication
|
||
|
parent->child communication
|
||
|
|
||
|
crm-pro-electron
|
||
|
|
||
|
crm-pro-desktop
|
||
|
|
||
|
crm-pro-web
|
||
|
|
||
|
environments
|
||
|
call
|
||
|
memo
|
||
|
angular.json
|
||
|
call project add
|
||
|
memo project add
|
||
|
package.json
|
||
|
build cmd add
|
||
|
|
||
|
|
||
|
통화 예약 리스트 컴포넌트
|
||
|
|
||
|
export interface ReservationInfo {
|
||
|
/* SEQ(n) */
|
||
|
seq: number;
|
||
|
/* 예약 발신 번호 주소록 명 */
|
||
|
resvNumName?: string;
|
||
|
/* 예약 통화 번호 */
|
||
|
resvNum?: string;
|
||
|
/* 예약 메모 내용 */
|
||
|
resvMemo?: string;
|
||
|
/* Date형태 Format yyyy-MM-ddTHH:mm:ss */
|
||
|
resvDt?: string;
|
||
|
/* 통화 예약 Version 정보 */
|
||
|
version?: number;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
export interface MemoInfo {
|
||
|
/** 메모 SEQ(n) */
|
||
|
seq: number;
|
||
|
/** 전화번호(s) */
|
||
|
callingNum: string;
|
||
|
/** 이름 */
|
||
|
callingNm?: string;
|
||
|
/** 메모타입 */
|
||
|
memoTypCd?: MemoType;
|
||
|
/** 메모내용 */
|
||
|
memoContent?: string;
|
||
|
/** 최근수정일 */
|
||
|
updatedDt?: string;
|
||
|
}
|
||
|
|
||
|
export enum MemoType {
|
||
|
// 0. 개인
|
||
|
Me = 'U',
|
||
|
// 1. 공용
|
||
|
Common = 'P'
|
||
|
}
|
||
|
|
||
|
|
||
|
<span
|
||
|
>{{ node.nodeType | ucapDate: 'LL' }}
|
||
|
{{ node.nodeType | ucapDate: 'dddd' }}</span
|
||
|
2020년 10월12일 월요일
|
||
|
>
|
||
|
|
||
|
{{ message!.sendDate | ucapDate: 'LT' }} 오후 6:05
|