kcommons 6.2.16 → 6.2.18
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.
|
@@ -7,7 +7,7 @@ exports.RFQ_NOTIFICATION_TEMPLATES = {
|
|
|
7
7
|
rfqApproved: (rfq_id, rfq_no) => {
|
|
8
8
|
return {
|
|
9
9
|
action_link: companyRoutes_constants_1.companyNavConfig.purchase.rfq.view.route(rfq_id),
|
|
10
|
-
description:
|
|
10
|
+
description: `${rfq_no} has been approved and is ready to send to vendors`,
|
|
11
11
|
title: "RFQ Send to Vendor",
|
|
12
12
|
};
|
|
13
13
|
},
|
|
@@ -21,7 +21,7 @@ exports.RFQ_NOTIFICATION_TEMPLATES = {
|
|
|
21
21
|
rfqRejection: (rfq_id, rfq_no, rejectedBy) => {
|
|
22
22
|
return {
|
|
23
23
|
action_link: companyRoutes_constants_1.companyNavConfig.purchase.rfq.view.route(rfq_id),
|
|
24
|
-
description:
|
|
24
|
+
description: `${rfq_no} has been rejeted by ${rejectedBy}.`,
|
|
25
25
|
title: `RFQ ${rfq_no} rejected`,
|
|
26
26
|
};
|
|
27
27
|
},
|
|
@@ -29,7 +29,7 @@ exports.RFQ_NOTIFICATION_TEMPLATES = {
|
|
|
29
29
|
return {
|
|
30
30
|
action_link: vendorRoutes_constants_1.vendorNavRoutes.purchase.quotes.edit(quote_id),
|
|
31
31
|
title: `Quotation Request`,
|
|
32
|
-
description:
|
|
32
|
+
description: `${company_name} has requested to quote on ${rfq_no}`,
|
|
33
33
|
};
|
|
34
34
|
},
|
|
35
35
|
};
|
|
@@ -8,8 +8,9 @@ var CONTACT_PEOPLE_INCLUDE;
|
|
|
8
8
|
CONTACT_PEOPLE_INCLUDE["company"] = "company";
|
|
9
9
|
CONTACT_PEOPLE_INCLUDE["referred_pos"] = "referred_pos";
|
|
10
10
|
})(CONTACT_PEOPLE_INCLUDE || (exports.CONTACT_PEOPLE_INCLUDE = CONTACT_PEOPLE_INCLUDE = {}));
|
|
11
|
+
// updates for lable change on FE
|
|
11
12
|
var CONTACT_PERSON_TYPE;
|
|
12
13
|
(function (CONTACT_PERSON_TYPE) {
|
|
13
14
|
CONTACT_PERSON_TYPE["COMPANY_USER"] = "COMPANY_USER";
|
|
14
|
-
CONTACT_PERSON_TYPE["EXTERNAL_USER"] = "
|
|
15
|
+
CONTACT_PERSON_TYPE["EXTERNAL_USER"] = "CONTACT_PERSON";
|
|
15
16
|
})(CONTACT_PERSON_TYPE || (exports.CONTACT_PERSON_TYPE = CONTACT_PERSON_TYPE = {}));
|