@jagota/interfaces 1.3.19 → 1.3.21
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
|
@@ -163,7 +163,9 @@ export interface IBiddingByRid {
|
|
|
163
163
|
docNo: string;
|
|
164
164
|
custCode: string;
|
|
165
165
|
custName: string;
|
|
166
|
-
|
|
166
|
+
custAddress: string;
|
|
167
|
+
companyName: string;
|
|
168
|
+
companyAddress: string;
|
|
167
169
|
}
|
|
168
170
|
|
|
169
171
|
export interface IBiddingDetail {
|
|
@@ -178,7 +180,7 @@ export interface IBiddingDetail {
|
|
|
178
180
|
thumbnail: string;
|
|
179
181
|
unit: string;
|
|
180
182
|
price: number;
|
|
181
|
-
winLoss:
|
|
183
|
+
winLoss: "W" | "L" | null;
|
|
182
184
|
winLossHistory: IProductWinLossHistory[];
|
|
183
185
|
lossReasons: IBiddingReason[];
|
|
184
186
|
}
|
|
@@ -195,7 +197,7 @@ export interface IBiddingReasonResponse extends IBaseResponse {
|
|
|
195
197
|
}
|
|
196
198
|
export interface IBiddingWinLoss {
|
|
197
199
|
recordId: number;
|
|
198
|
-
winLoss:
|
|
200
|
+
winLoss: "W" | "L" | null;
|
|
199
201
|
}
|
|
200
202
|
export interface IBiddingWinLossResponse extends IBaseResponse {
|
|
201
203
|
data: IBiddingWinLoss;
|
|
@@ -232,7 +234,7 @@ export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
|
|
|
232
234
|
data: IBiddingCustomerHistory[];
|
|
233
235
|
}
|
|
234
236
|
export interface IProductWinLossHistory {
|
|
235
|
-
winLoss:
|
|
237
|
+
winLoss: "W" | "L" | null;
|
|
236
238
|
periodFrom: string;
|
|
237
239
|
periodTo: string;
|
|
238
240
|
}
|