kcommons 5.11.9 → 5.11.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.
|
@@ -107,6 +107,8 @@ export interface IRFQItem {
|
|
|
107
107
|
item_description?: string | null;
|
|
108
108
|
parent_pr_id?: string | null;
|
|
109
109
|
parent_pr_no?: string | null;
|
|
110
|
+
parent_rfq_bom_id?: string | null;
|
|
111
|
+
parent_rfq_bom_no?: string | null;
|
|
110
112
|
corresponding_pr_item_id?: string | null;
|
|
111
113
|
is_deleted: boolean;
|
|
112
114
|
deleted_at: string | null;
|
|
@@ -134,9 +136,9 @@ export interface IRFQBom {
|
|
|
134
136
|
remarks: string | null;
|
|
135
137
|
quantity: number;
|
|
136
138
|
is_deleted: boolean;
|
|
137
|
-
deleted_at:
|
|
138
|
-
created_at:
|
|
139
|
-
updated_at:
|
|
139
|
+
deleted_at: string | null;
|
|
140
|
+
created_at: string;
|
|
141
|
+
updated_at: string;
|
|
140
142
|
parent_rfq: INestedRFQ | null;
|
|
141
143
|
bom: INestedBOM | null;
|
|
142
144
|
referenced_rfq_item: IRFQItem | null;
|