@jagota/interfaces 1.3.6 → 1.3.8
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
|
@@ -81,12 +81,20 @@ export interface IBiddingPricelist extends IBiddingCustomerProductList {
|
|
|
81
81
|
centerPrice?: number;
|
|
82
82
|
price?: number;
|
|
83
83
|
}
|
|
84
|
+
|
|
84
85
|
export interface IBiddingPricelistPayload {
|
|
85
86
|
custCode: string;
|
|
86
87
|
periodFrom: string;
|
|
87
88
|
periodTo: string;
|
|
88
89
|
}
|
|
89
|
-
|
|
90
|
+
|
|
91
|
+
export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload{
|
|
92
|
+
submissionDay: number;
|
|
93
|
+
tenderDay: number;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface ISetBiddingPriceDPayload {
|
|
97
|
+
recordID: number;
|
|
90
98
|
custProductCode: string;
|
|
91
99
|
productCode: string;
|
|
92
100
|
price?: number;
|
|
@@ -176,7 +184,7 @@ export interface IBiddingWinLossResponse extends IBaseResponse {
|
|
|
176
184
|
data: IBiddingWinLoss;
|
|
177
185
|
}
|
|
178
186
|
|
|
179
|
-
export interface ISetLossReason
|
|
187
|
+
export interface ISetLossReason {
|
|
180
188
|
biddingDetailRid: number;
|
|
181
189
|
biddingReasonRid: number;
|
|
182
190
|
}
|