@jagota/interfaces 1.3.33 → 1.3.35
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
|
@@ -178,8 +178,13 @@ export interface IBiddingByRid extends IBiddingQuotation, IBiddingPeriodDate, IB
|
|
|
178
178
|
recordId: number;
|
|
179
179
|
status: string;
|
|
180
180
|
custAddress: string;
|
|
181
|
+
custEmail: string;
|
|
182
|
+
custContact: string;
|
|
181
183
|
companyName: string;
|
|
182
184
|
companyAddress: string;
|
|
185
|
+
createdBy: string;
|
|
186
|
+
createdEmail: string;
|
|
187
|
+
createdContact: string;
|
|
183
188
|
}
|
|
184
189
|
export interface IWinLoss {
|
|
185
190
|
winLoss: "W" | "L" | null;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { IBaseResponse } from "./base.interface";
|
|
2
|
+
|
|
3
|
+
export interface ICustomerSnapshotListPayload {
|
|
4
|
+
group: string;
|
|
5
|
+
shop: string;
|
|
6
|
+
salesChannel: string;
|
|
7
|
+
interval: string;
|
|
8
|
+
salesCodeArr: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface spendingHistoryItem {
|
|
12
|
+
date: Date;
|
|
13
|
+
amount: number;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface ICustomerSnapshotListItem {
|
|
17
|
+
rank: number;
|
|
18
|
+
custCode: string;
|
|
19
|
+
custName: string;
|
|
20
|
+
tradeName: string;
|
|
21
|
+
salesAmount: number;
|
|
22
|
+
lastSales: Date;
|
|
23
|
+
status: string;
|
|
24
|
+
lastVisit: Date;
|
|
25
|
+
shopType: string;
|
|
26
|
+
stockProductCount: string;
|
|
27
|
+
orderTakingProductCount: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
export interface ICustomerSnapshotListResponse extends IBaseResponse {
|
|
32
|
+
data: ICustomerSnapshotListItem[];
|
|
33
|
+
}
|