@jagota/interfaces 1.3.1 → 1.3.3
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
|
@@ -88,7 +88,7 @@ export interface IBiddingPricelistPayload {
|
|
|
88
88
|
}
|
|
89
89
|
export interface ISetBiddingPricelistPayload extends IBiddingPricelistPayload {
|
|
90
90
|
custProductCode: string;
|
|
91
|
-
productCode: string;
|
|
91
|
+
productCode: string;
|
|
92
92
|
price?: number;
|
|
93
93
|
}
|
|
94
94
|
|
|
@@ -112,7 +112,7 @@ export interface IBiddingStatusResponse extends IBaseResponse {
|
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
export interface IBiddingList extends IBiddingStatusPayload{
|
|
115
|
+
export interface IBiddingList extends IBiddingStatusPayload {
|
|
116
116
|
periodFrom: string;
|
|
117
117
|
periodTo: string;
|
|
118
118
|
winRate: number;
|
|
@@ -120,19 +120,19 @@ export interface IBiddingList extends IBiddingStatusPayload{
|
|
|
120
120
|
docBook: string;
|
|
121
121
|
docNo: string;
|
|
122
122
|
}
|
|
123
|
-
export interface IBiddingListPayload
|
|
123
|
+
export interface IBiddingListPayload {
|
|
124
124
|
custCode: string;
|
|
125
125
|
}
|
|
126
126
|
export interface IBiddingListResponse extends IBaseResponse {
|
|
127
127
|
data: IBiddingList[];
|
|
128
128
|
}
|
|
129
|
-
export interface IBiddingByRidPayload
|
|
129
|
+
export interface IBiddingByRidPayload {
|
|
130
130
|
recordId: string;
|
|
131
131
|
}
|
|
132
132
|
export interface IBiddingByRidResponse extends IBaseResponse {
|
|
133
133
|
data: IBiddingByRid;
|
|
134
134
|
}
|
|
135
|
-
export interface IBiddingByRid
|
|
135
|
+
export interface IBiddingByRid {
|
|
136
136
|
recordId: number;
|
|
137
137
|
status: string;
|
|
138
138
|
periodFrom: string;
|
|
@@ -143,4 +143,27 @@ export interface IBiddingByRid {
|
|
|
143
143
|
custCode: string;
|
|
144
144
|
custName: string;
|
|
145
145
|
address: string;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export interface IBiddingDetail {
|
|
149
|
+
recordId: number;
|
|
150
|
+
custProductCode: string;
|
|
151
|
+
custProductName: string;
|
|
152
|
+
seq: number;
|
|
153
|
+
productCode: string;
|
|
154
|
+
productShortCode: string;
|
|
155
|
+
productName: string;
|
|
156
|
+
unit: string;
|
|
157
|
+
price: number;
|
|
158
|
+
}
|
|
159
|
+
export interface IBiddingDetailResponse extends IBaseResponse {
|
|
160
|
+
data: IBiddingDetail[];
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export interface IBiddingReason {
|
|
164
|
+
recordId: number;
|
|
165
|
+
reason: string;
|
|
166
|
+
}
|
|
167
|
+
export interface IBiddingReasonResponse extends IBaseResponse {
|
|
168
|
+
data: IBiddingReason[];
|
|
146
169
|
}
|