- 협상대화: 사용 카드 번호/멘트(Slate 서식본)/와일드 조건·메모 표시, SlateRenderer
밑줄·헥스색·{변수} 치환 보정, 말풍선 우측정렬·발신자 아바타 제거
- 견적상세 헤더: DB 컬럼명 라벨 제거, 견적정보/(진행상태+세팅)/상품(이미지) 2열 재배치,
협상카드 탭에 사용 카드 수 표시
- DataTable 행 패딩 축소, 협력사명 아바타 제거, 카드관리 본인 카드 안내문
- orval 재생성(QuotationCardData 신규 필드)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
27 lines
890 B
TypeScript
27 lines
890 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { ReqCreateQuotationManagerName } from './reqCreateQuotationManagerName';
|
|
import type { ReqCreateQuotationManagerEmail } from './reqCreateQuotationManagerEmail';
|
|
import type { ReqCreateQuotationManagerContactNumber } from './reqCreateQuotationManagerContactNumber';
|
|
import type { ReqCreateQuotationMemo } from './reqCreateQuotationMemo';
|
|
|
|
export interface ReqCreateQuotation {
|
|
qt_setting_id: string;
|
|
version_id: string;
|
|
name?: string;
|
|
number?: string;
|
|
type?: number;
|
|
status?: number;
|
|
start_time: string;
|
|
end_time: string;
|
|
round?: number;
|
|
manager_name?: ReqCreateQuotationManagerName;
|
|
manager_email?: ReqCreateQuotationManagerEmail;
|
|
manager_contact_number?: ReqCreateQuotationManagerContactNumber;
|
|
memo?: ReqCreateQuotationMemo;
|
|
}
|