kcommons 5.8.11 → 5.8.13
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.
|
@@ -21,7 +21,7 @@ export interface IGRNFilters {
|
|
|
21
21
|
company_id?: string;
|
|
22
22
|
parent_asn_id?: string;
|
|
23
23
|
shipping_store_location_id?: string;
|
|
24
|
-
department_id
|
|
24
|
+
department_id?: string;
|
|
25
25
|
status?: GRN_STATUS;
|
|
26
26
|
include?: GRN_INCLUDE[];
|
|
27
27
|
}
|
|
@@ -30,7 +30,8 @@ export declare enum GRN_STATUS {
|
|
|
30
30
|
PENDING_APPROVAL = "PENDING APPROVAL",
|
|
31
31
|
APPROVED = "APPROVED",
|
|
32
32
|
REJECTED = "REJECTED",
|
|
33
|
-
CLOSED = "CLOSED"
|
|
33
|
+
CLOSED = "CLOSED",
|
|
34
|
+
SENT_TO_STORE = "SENT TO STORE"
|
|
34
35
|
}
|
|
35
36
|
export interface IGRNFiltersWithPagination extends IPaginationFilters, IGRNFilters {
|
|
36
37
|
}
|
|
@@ -38,18 +39,18 @@ export interface IGRN {
|
|
|
38
39
|
id: string;
|
|
39
40
|
grn_no: string;
|
|
40
41
|
actual_delivery_date: string;
|
|
41
|
-
expected_delivery_date
|
|
42
|
-
parent_asn_id
|
|
42
|
+
expected_delivery_date?: string | null;
|
|
43
|
+
parent_asn_id?: string | null;
|
|
43
44
|
shipping_store_location_id: string;
|
|
44
45
|
created_by_id: string;
|
|
45
46
|
company_id: string;
|
|
46
47
|
status: GRN_STATUS;
|
|
47
48
|
department_id: string;
|
|
48
49
|
contact_person_id: string;
|
|
49
|
-
attachment_link
|
|
50
|
-
remarks
|
|
50
|
+
attachment_link?: string | null;
|
|
51
|
+
remarks?: string | null;
|
|
51
52
|
is_deleted: boolean;
|
|
52
|
-
deleted_at
|
|
53
|
+
deleted_at?: string | null;
|
|
53
54
|
created_at: string;
|
|
54
55
|
updated_at: string;
|
|
55
56
|
company?: INestedCompany | null;
|
|
@@ -80,10 +81,10 @@ export interface IGRNItem {
|
|
|
80
81
|
uom: string;
|
|
81
82
|
expected_deliverable_quantity: number;
|
|
82
83
|
actual_delivered_quantity: number;
|
|
83
|
-
item_description
|
|
84
|
-
parent_asn_item_id
|
|
84
|
+
item_description?: string | null;
|
|
85
|
+
parent_asn_item_id?: string | null;
|
|
85
86
|
is_deleted: boolean;
|
|
86
|
-
deleted_at
|
|
87
|
+
deleted_at?: string | null;
|
|
87
88
|
created_at: string;
|
|
88
89
|
updated_at: string;
|
|
89
90
|
company?: INestedCompany | null;
|
|
@@ -20,6 +20,7 @@ var GRN_STATUS;
|
|
|
20
20
|
GRN_STATUS["APPROVED"] = "APPROVED";
|
|
21
21
|
GRN_STATUS["REJECTED"] = "REJECTED";
|
|
22
22
|
GRN_STATUS["CLOSED"] = "CLOSED";
|
|
23
|
+
GRN_STATUS["SENT_TO_STORE"] = "SENT TO STORE";
|
|
23
24
|
})(GRN_STATUS || (exports.GRN_STATUS = GRN_STATUS = {}));
|
|
24
25
|
var GRN_ITEM_INCLUDE;
|
|
25
26
|
(function (GRN_ITEM_INCLUDE) {
|