@jagota/interfaces 1.3.26 → 1.3.28
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.
package/package.json
CHANGED
|
@@ -144,12 +144,13 @@ export interface IBiddingStatusResponse extends IBaseResponse {
|
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
export interface IBiddingQuotation {
|
|
147
|
-
docType
|
|
148
|
-
docBook
|
|
149
|
-
docNo
|
|
147
|
+
docType?: string;
|
|
148
|
+
docBook?: string;
|
|
149
|
+
docNo?: number;
|
|
150
|
+
quotationStatus?: string;
|
|
150
151
|
}
|
|
151
152
|
|
|
152
|
-
export interface IBiddingList extends IBiddingStatusPayload, IBiddingQuotation, IBiddingPeriodDate {
|
|
153
|
+
export interface IBiddingList extends IBiddingStatusPayload, IBiddingQuotation, IBiddingPeriodDate, ISetBiddingPriceHPayload {
|
|
153
154
|
winRate: number;
|
|
154
155
|
}
|
|
155
156
|
export interface IBiddingListPayload extends IBiddingCustCode {
|
|
@@ -177,7 +178,8 @@ export interface IWinLoss {
|
|
|
177
178
|
export interface IBiddingDetail extends IBiddingProductDetail, IBiddingCustomerProductList, IWinLoss, IBiddingCustCode {
|
|
178
179
|
recordId: number;
|
|
179
180
|
price: number;
|
|
180
|
-
reqMinNarration
|
|
181
|
+
reqMinNarration?: string;
|
|
182
|
+
quotationStatus?: string;
|
|
181
183
|
winLossHistory: IProductWinLossHistory[];
|
|
182
184
|
lossReasons: IBiddingReason[];
|
|
183
185
|
}
|