kcommons 18.9.7 → 18.9.9
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.
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export interface IVendorDuplicityCheckReq {
|
|
2
|
+
vendorName?: string;
|
|
3
|
+
addressDetails?: string;
|
|
4
|
+
postalCode?: string;
|
|
5
|
+
city?: string;
|
|
6
|
+
gstNumber?: string;
|
|
7
|
+
panNumber?: string;
|
|
8
|
+
cinNumber?: string;
|
|
9
|
+
msmeNumber?: string;
|
|
10
|
+
bankAccountNumber?: string;
|
|
11
|
+
ifscCode?: string;
|
|
12
|
+
contactNumber?: string;
|
|
13
|
+
emailAddress?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface IVendorDuplicityMatchedParameter {
|
|
16
|
+
VendorName?: string;
|
|
17
|
+
AddressDetails?: string;
|
|
18
|
+
PostalCode?: string;
|
|
19
|
+
City?: string;
|
|
20
|
+
GSTNumber?: string;
|
|
21
|
+
PANNumber?: string;
|
|
22
|
+
CINNumber?: string;
|
|
23
|
+
MSMENumber?: string;
|
|
24
|
+
BankAccountNumber?: string;
|
|
25
|
+
IFSCCode?: string;
|
|
26
|
+
ContactNumber?: number;
|
|
27
|
+
EmailAddress?: string;
|
|
28
|
+
}
|
|
29
|
+
export interface IVendorDuplicityVendor {
|
|
30
|
+
vendorCode?: string;
|
|
31
|
+
vendorName?: string;
|
|
32
|
+
addressDetails?: string;
|
|
33
|
+
postalCode?: number;
|
|
34
|
+
city?: string;
|
|
35
|
+
bankAccountNumber?: string;
|
|
36
|
+
ifscCode?: string;
|
|
37
|
+
contactNumber?: string;
|
|
38
|
+
emailAddress?: string;
|
|
39
|
+
matchedParameters?: IVendorDuplicityMatchedParameter[];
|
|
40
|
+
}
|
|
41
|
+
export interface IVendorDuplicityCheckResponseCore {
|
|
42
|
+
isDuplicateFound?: string;
|
|
43
|
+
duplicateCount?: string;
|
|
44
|
+
duplicateVendors?: IVendorDuplicityVendor[];
|
|
45
|
+
}
|
|
46
|
+
export interface IVendorDuplicityCheckResponseFinal {
|
|
47
|
+
MT_KRAYA_VendorDuplicitycheck_Res?: IVendorDuplicityCheckResponseCore;
|
|
48
|
+
}
|
|
@@ -93,7 +93,7 @@ export interface INestedQualityClearanceDocumentItem extends Omit<IQualityCleara
|
|
|
93
93
|
export interface IQCDFilters extends Partial<Pick<IQualityClearanceDocument, "company_id" | "parent_qa_location_id" | "parent_grn_id" | "status" | "is_approved" | "created_by_user_id" | "last_updated_by_user_id" | "cancelled_by_user_id">> {
|
|
94
94
|
include?: QCD_INCLUDE[] | null;
|
|
95
95
|
status_array?: QCD_STATUS[];
|
|
96
|
-
|
|
96
|
+
metafields_include?: QCD_METAFIELDS_INCLUDE[];
|
|
97
97
|
}
|
|
98
98
|
export interface IQCDFiltersWithPagination extends IQCDFilters, IPaginationFilters {
|
|
99
99
|
}
|