@jagota/interfaces 1.3.16 → 1.3.18
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
|
@@ -80,7 +80,7 @@ export interface IBiddingPricelist extends IBiddingCustomerProductList {
|
|
|
80
80
|
minPrice?: number;
|
|
81
81
|
centerPrice?: number;
|
|
82
82
|
price?: number;
|
|
83
|
-
|
|
83
|
+
winLossHistory: IProductWinLossHistory[];
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
export interface IBiddingPricelistPayload {
|
|
@@ -168,6 +168,7 @@ export interface IBiddingByRid {
|
|
|
168
168
|
|
|
169
169
|
export interface IBiddingDetail {
|
|
170
170
|
recordId: number;
|
|
171
|
+
custCode: string;
|
|
171
172
|
custProductCode: string;
|
|
172
173
|
custProductName: string;
|
|
173
174
|
seq: number;
|
|
@@ -178,7 +179,7 @@ export interface IBiddingDetail {
|
|
|
178
179
|
unit: string;
|
|
179
180
|
price: number;
|
|
180
181
|
winLoss: string;
|
|
181
|
-
|
|
182
|
+
winLossHistory: IProductWinLossHistory[];
|
|
182
183
|
}
|
|
183
184
|
export interface IBiddingDetailResponse extends IBaseResponse {
|
|
184
185
|
data: IBiddingDetail[];
|