kcommons 6.2.30 → 6.2.31

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.
@@ -395,7 +395,7 @@ export declare const companyNavConfig: {
395
395
  };
396
396
  comparative: {
397
397
  view: {
398
- route: (comparative_id: string) => string;
398
+ route: (comparative_id: string, activeNegotiationQuoteId?: string) => string;
399
399
  id: COMPANY_ROUTE_IDS;
400
400
  };
401
401
  };
@@ -394,7 +394,7 @@ exports.companyNavConfig = {
394
394
  },
395
395
  comparative: {
396
396
  view: {
397
- route: (comparative_id) => `/purchase/comparative/${comparative_id}?route_id=${COMPANY_ROUTE_IDS.CMPRTV_VIEW}`,
397
+ route: (comparative_id, activeNegotiationQuoteId) => `/purchase/comparative/${comparative_id}?route_id=${COMPANY_ROUTE_IDS.CMPRTV_VIEW}${activeNegotiationQuoteId ? "opent=" + activeNegotiationQuoteId : ""}`,
398
398
  id: COMPANY_ROUTE_IDS.CMPRTV_VIEW,
399
399
  },
400
400
  },
@@ -7,7 +7,7 @@ export declare const vendorNavRoutes: {
7
7
  list: string;
8
8
  add: string;
9
9
  view: (quote_id: string) => string;
10
- edit: (quote_id: string) => string;
10
+ edit: (quote_id: string, openNotifications?: boolean) => string;
11
11
  };
12
12
  po: {
13
13
  add: string;
@@ -12,7 +12,7 @@ exports.vendorNavRoutes = {
12
12
  list: "/purchase/quotes",
13
13
  add: "/purchase/quotes/add",
14
14
  view: (quote_id) => `/purchase/quotes/${quote_id}/view`,
15
- edit: (quote_id) => `/purchase/quotes/${quote_id}/edit`,
15
+ edit: (quote_id, openNotifications) => `/purchase/quotes/${quote_id}/edit?${openNotifications ? "opent=true" : ""}`,
16
16
  },
17
17
  po: {
18
18
  add: `/purchase/pos/add`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "6.2.30",
3
+ "version": "6.2.31",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",