kcommons 5.27.6 → 5.27.8
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.
|
@@ -115,6 +115,10 @@ exports.companyNavConfig = {
|
|
|
115
115
|
edit: (grn_id) => `/gate/grn/${grn_id}/edit`,
|
|
116
116
|
view: (grn_id) => `/gate/grn/${grn_id}/view`,
|
|
117
117
|
},
|
|
118
|
+
asns: {
|
|
119
|
+
list: `/gate/asns`,
|
|
120
|
+
view: (asn_id) => `/gate/asns/${asn_id}/view`,
|
|
121
|
+
},
|
|
118
122
|
},
|
|
119
123
|
vendorMaster: {
|
|
120
124
|
vendorGroups: {
|
|
@@ -106,3 +106,5 @@ export interface IASNItem {
|
|
|
106
106
|
}
|
|
107
107
|
export interface INestedASNItem extends Omit<IASNItem, "company" | "item" | "parent_asn" | "vendor" | "parent_po_item" | "used_in_grn_items" | "po_asn_item_junction"> {
|
|
108
108
|
}
|
|
109
|
+
export interface ICancelASNInputs extends Pick<IASN, "cancellation_remark" | "cancelled_by_entity" | "cancelled_by_user_id"> {
|
|
110
|
+
}
|