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