@carsayo/types 1.1.892120 → 1.1.892122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -43,6 +43,10 @@ export interface OrderInfoTime {
|
|
|
43
43
|
* @notice 내차팔기가 아니거나, 담당 매니저가 아니거나, 미팅 날짜가 없을 경우 null입니다
|
|
44
44
|
*/
|
|
45
45
|
meeting_date: Date | null;
|
|
46
|
+
/**
|
|
47
|
+
* 고객이 견적서를 다운받은 시점
|
|
48
|
+
* */
|
|
49
|
+
estimate_checked_at: Date | null;
|
|
46
50
|
}
|
|
47
51
|
/** 향후 모든 주문은 이 정보를 기저에 깔고 갑니다 240507 */
|
|
48
52
|
export interface OrderInfo extends OrderInfoTime {
|
|
@@ -300,6 +304,8 @@ export interface OrderListData extends OrderInfoTime {
|
|
|
300
304
|
id: string;
|
|
301
305
|
type: OrderType;
|
|
302
306
|
state: OrderState;
|
|
307
|
+
/** 빠른견적 여부 */
|
|
308
|
+
isFast: boolean;
|
|
303
309
|
/** 주문번호 */
|
|
304
310
|
code: string;
|
|
305
311
|
/** 주문 제목 (주로 차량명) */
|