kcommons 18.17.10 → 18.17.12
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.
|
@@ -17,6 +17,8 @@ import { INestedUser, IUser } from "./user.typings";
|
|
|
17
17
|
import { INestedVendor, IVendor } from "./vendor.typings";
|
|
18
18
|
import { IVendorUser } from "./vendor/vendorUser.typings";
|
|
19
19
|
import { INestedVendorGroups } from "./vendorGroup.typings";
|
|
20
|
+
import { INestedPaymentTerms } from "./company/masters/paymentTerms.typings";
|
|
21
|
+
import { INestedTermsAndConditions } from "./company/masters/termsAndConditions.typings";
|
|
20
22
|
export declare enum RFQ_LIST_TYPES {
|
|
21
23
|
ALL = "ALL",
|
|
22
24
|
CREATED_BY_ME = "CREATED_BY_ME",
|
|
@@ -67,7 +69,9 @@ export declare enum RFQ_INCLUDES {
|
|
|
67
69
|
boms = "boms",
|
|
68
70
|
comparative = "comparative",
|
|
69
71
|
parent_prs = "parent_prs",
|
|
70
|
-
rfq_questionnaire_questions = "rfq_questionnaire_questions"
|
|
72
|
+
rfq_questionnaire_questions = "rfq_questionnaire_questions",
|
|
73
|
+
tnc = "tnc",
|
|
74
|
+
pt = "pt"
|
|
71
75
|
}
|
|
72
76
|
export declare enum RFQ_STATUS {
|
|
73
77
|
DRAFT = "DRAFT",
|
|
@@ -119,6 +123,8 @@ export interface IRFQ {
|
|
|
119
123
|
created_at?: string | null;
|
|
120
124
|
updated_at?: string | null;
|
|
121
125
|
is_target_value_visible?: boolean | null;
|
|
126
|
+
tnc_id?: string | null;
|
|
127
|
+
pt_id?: string | null;
|
|
122
128
|
company?: INestedCompany | null;
|
|
123
129
|
parent_purchase_location?: INestedPurchaseLocation | null;
|
|
124
130
|
created_by_user?: INestedUser | null;
|
|
@@ -136,9 +142,11 @@ export interface IRFQ {
|
|
|
136
142
|
boms: INestedRFQBOM[] | null;
|
|
137
143
|
parent_prs: INestedPR[] | null;
|
|
138
144
|
rfq_questionnaire_questions: INestedRFQQuestionnaireQuestion[] | null;
|
|
145
|
+
tnc?: INestedTermsAndConditions | null;
|
|
146
|
+
pt?: INestedPaymentTerms | null;
|
|
139
147
|
metafields: IRFQMetafields | null;
|
|
140
148
|
}
|
|
141
|
-
export interface INestedRFQ extends Omit<IRFQ, "company" | "parent_purchase_location" | "created_by_user" | "shipping_store_location" | "contact_person" | "sent_for_approval_by" | "sent_to_vendors_by" | "quotes" | "items" | "approval_chain" | "rfq_vendor_groups" | "rfq_vendors" | "additional_vendors" | "boms" | "comparative" | "parent_prs" | "rfq_questionnaire_questions" | "metafields"> {
|
|
149
|
+
export interface INestedRFQ extends Omit<IRFQ, "company" | "parent_purchase_location" | "created_by_user" | "shipping_store_location" | "contact_person" | "sent_for_approval_by" | "sent_to_vendors_by" | "quotes" | "items" | "approval_chain" | "rfq_vendor_groups" | "rfq_vendors" | "additional_vendors" | "boms" | "comparative" | "parent_prs" | "rfq_questionnaire_questions" | "tnc" | "pt" | "metafields"> {
|
|
142
150
|
}
|
|
143
151
|
export declare enum RFQ_ITEM_INCLUDE {
|
|
144
152
|
parent_rfq = "parent_rfq",
|
|
@@ -47,6 +47,8 @@ var RFQ_INCLUDES;
|
|
|
47
47
|
RFQ_INCLUDES["comparative"] = "comparative";
|
|
48
48
|
RFQ_INCLUDES["parent_prs"] = "parent_prs";
|
|
49
49
|
RFQ_INCLUDES["rfq_questionnaire_questions"] = "rfq_questionnaire_questions";
|
|
50
|
+
RFQ_INCLUDES["tnc"] = "tnc";
|
|
51
|
+
RFQ_INCLUDES["pt"] = "pt";
|
|
50
52
|
})(RFQ_INCLUDES || (exports.RFQ_INCLUDES = RFQ_INCLUDES = {}));
|
|
51
53
|
var RFQ_STATUS;
|
|
52
54
|
(function (RFQ_STATUS) {
|
|
@@ -78,6 +78,7 @@ export interface IHaldiramsPurchaseOrderItems {
|
|
|
78
78
|
pending_order_quantity: string | null;
|
|
79
79
|
over_tolerance_percentage: string | null;
|
|
80
80
|
under_tolerance_percentage: string | null;
|
|
81
|
+
line_item_number: number | null;
|
|
81
82
|
Delivery_Completed: string | null;
|
|
82
83
|
}
|
|
83
84
|
export interface IHaldiramsPODataFetchedFromERPData {
|