- 견적 목록에 대표 상품(세션 item) 조인 노출 → '대상 상품 확인 불가' 해소 (backend protocol/crud/service + orval 재생성 + front mapQuotation 매핑) - 견적·협상카드 목록 클라이언트 페이지네이션 추가 (useClientPagination) - 견적중단을 서버 stop_quotation 호출로 영속 처리(상태=견적마감) - 신규 협상견적 라벨 발의→등록 통일 - 발의 위저드 카드선택에 협상/와일드 구분 뱃지 추가 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
31 lines
937 B
TypeScript
31 lines
937 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { SessionDataBidPrice } from './sessionDataBidPrice';
|
|
import type { SessionDataBidAt } from './sessionDataBidAt';
|
|
import type { SessionDataRejectReason } from './sessionDataRejectReason';
|
|
import type { SessionDataRejectPrice } from './sessionDataRejectPrice';
|
|
import type { SessionDataRejectDeliveryType } from './sessionDataRejectDeliveryType';
|
|
|
|
export interface SessionData {
|
|
session_id: string;
|
|
qt_id: string;
|
|
supplier_id: string;
|
|
item_id: string;
|
|
qt_number: string;
|
|
qt_round: number;
|
|
qt_type: number;
|
|
target_price: number;
|
|
status: number;
|
|
bid_price?: SessionDataBidPrice;
|
|
bid_at?: SessionDataBidAt;
|
|
end_time: string;
|
|
reject_reason?: SessionDataRejectReason;
|
|
reject_price?: SessionDataRejectPrice;
|
|
reject_delivery_type?: SessionDataRejectDeliveryType;
|
|
url?: string;
|
|
}
|