@jagota/interfaces 1.3.25 → 1.3.26
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
|
@@ -23,18 +23,18 @@ export interface IBiddingPeriod {
|
|
|
23
23
|
status: string;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
export interface ICustomerForBidding extends IBiddingCustCodeAndName {
|
|
26
|
+
export interface ICustomerForBidding extends IBiddingCustCodeAndName {
|
|
27
27
|
status: string;
|
|
28
28
|
statusText: string;
|
|
29
29
|
tradeName: string;
|
|
30
30
|
biddingStatus: string;
|
|
31
31
|
}
|
|
32
|
-
export interface IBiddingCustomer extends IBiddingCustCodeAndName{
|
|
32
|
+
export interface IBiddingCustomer extends IBiddingCustCodeAndName {
|
|
33
33
|
status: string;
|
|
34
34
|
statusText: string;
|
|
35
35
|
tradeName: string;
|
|
36
36
|
}
|
|
37
|
-
export interface IBiddingCustomerInfo extends IBiddingCustCodeAndName{
|
|
37
|
+
export interface IBiddingCustomerInfo extends IBiddingCustCodeAndName {
|
|
38
38
|
address: string;
|
|
39
39
|
tradeName: string;
|
|
40
40
|
salesCode: string;
|
|
@@ -92,7 +92,7 @@ export interface IBiddingPeriodDate {
|
|
|
92
92
|
periodTo: string;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
export interface IBiddingPricelistPayload extends IBiddingPeriodDate, IBiddingCustCode{
|
|
95
|
+
export interface IBiddingPricelistPayload extends IBiddingPeriodDate, IBiddingCustCode {
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload {
|
|
@@ -152,7 +152,7 @@ export interface IBiddingQuotation {
|
|
|
152
152
|
export interface IBiddingList extends IBiddingStatusPayload, IBiddingQuotation, IBiddingPeriodDate {
|
|
153
153
|
winRate: number;
|
|
154
154
|
}
|
|
155
|
-
export interface IBiddingListPayload extends IBiddingCustCode{
|
|
155
|
+
export interface IBiddingListPayload extends IBiddingCustCode {
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
export interface IBiddingListResponse extends IBaseResponse {
|
|
@@ -171,12 +171,13 @@ export interface IBiddingByRid extends IBiddingQuotation, IBiddingPeriodDate, IB
|
|
|
171
171
|
companyName: string;
|
|
172
172
|
companyAddress: string;
|
|
173
173
|
}
|
|
174
|
-
export interface IWinLoss{
|
|
174
|
+
export interface IWinLoss {
|
|
175
175
|
winLoss: "W" | "L" | null;
|
|
176
176
|
}
|
|
177
177
|
export interface IBiddingDetail extends IBiddingProductDetail, IBiddingCustomerProductList, IWinLoss, IBiddingCustCode {
|
|
178
178
|
recordId: number;
|
|
179
|
-
price: number;
|
|
179
|
+
price: number;
|
|
180
|
+
reqMinNarration: string;
|
|
180
181
|
winLossHistory: IProductWinLossHistory[];
|
|
181
182
|
lossReasons: IBiddingReason[];
|
|
182
183
|
}
|
|
@@ -207,7 +208,7 @@ export interface IBiddingReasonByDetailRidResponse extends IBaseResponse {
|
|
|
207
208
|
data: IBiddingReason[];
|
|
208
209
|
}
|
|
209
210
|
|
|
210
|
-
export interface IBiddingCustomerCommon extends IBiddingCustCodeAndName{
|
|
211
|
+
export interface IBiddingCustomerCommon extends IBiddingCustCodeAndName {
|
|
211
212
|
startDate: Date;
|
|
212
213
|
submissionDay: number;
|
|
213
214
|
}
|