diff --git a/client/src/components/chat-conversation-title/chat-conversation-title.component.jsx b/client/src/components/chat-conversation-title/chat-conversation-title.component.jsx
index 1503bf46f..110ea2ea3 100644
--- a/client/src/components/chat-conversation-title/chat-conversation-title.component.jsx
+++ b/client/src/components/chat-conversation-title/chat-conversation-title.component.jsx
@@ -4,6 +4,7 @@ import PhoneNumberFormatter from "../../utils/PhoneFormatter";
import ChatArchiveButton from "../chat-archive-button/chat-archive-button.component";
import ChatConversationTitleTags from "../chat-conversation-title-tags/chat-conversation-title-tags.component";
import ChatLabelComponent from "../chat-label/chat-label.component";
+import ChatPrintButton from "../chat-print-button/chat-print-button.component";
import ChatTagRoContainer from "../chat-tag-ro/chat-tag-ro.container";
export default function ChatConversationTitle({ conversation }) {
@@ -13,6 +14,7 @@ export default function ChatConversationTitle({ conversation }) {
{conversation && conversation.phone_num}
+
({
+ setEmailOptions: (e) => dispatch(setEmailOptions(e)),
+});
+
+export function ChatPrintButton({ conversation }) {
+ const [loading, setLoading] = useState(false);
+
+ return (
+
+ {
+ setLoading(true);
+ GenerateDocument(
+ {
+ name: TemplateList("messaging").conversation_list.key,
+ variables: { id: conversation.id },
+ },
+ {
+ subject: TemplateList("messaging").conversation_list.subject,
+ },
+ "p",
+ conversation.id
+ );
+ setLoading(false);
+ }}
+ />
+ {
+ setLoading(true);
+ GenerateDocument(
+ {
+ name: TemplateList("messaging").conversation_list.key,
+ variables: { id: conversation.id },
+ },
+ {
+ subject: TemplateList("messaging").conversation_list.subject,
+ },
+ "e",
+ conversation.id
+ );
+ setLoading(false);
+ }}
+ />
+ {loading && }
+
+ );
+}
+export default connect(mapStateToProps, mapDispatchToProps)(ChatPrintButton);
diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json
index bbac4cc7b..4d54c3b95 100644
--- a/client/src/translations/en_us/common.json
+++ b/client/src/translations/en_us/common.json
@@ -2044,6 +2044,9 @@
"sentby": "Sent by {{by}} at {{time}}",
"typeamessage": "Send a message...",
"unarchive": "Unarchive"
+ },
+ "render": {
+ "conversation_list": "Conversation List"
}
},
"notes": {
diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json
index 33cf621da..6e558f3f9 100644
--- a/client/src/translations/es/common.json
+++ b/client/src/translations/es/common.json
@@ -2044,6 +2044,9 @@
"sentby": "",
"typeamessage": "Enviar un mensaje...",
"unarchive": ""
+ },
+ "render": {
+ "conversation_list": ""
}
},
"notes": {
diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json
index 3b5251fa7..7874bc07e 100644
--- a/client/src/translations/fr/common.json
+++ b/client/src/translations/fr/common.json
@@ -2044,6 +2044,9 @@
"sentby": "",
"typeamessage": "Envoyer un message...",
"unarchive": ""
+ },
+ "render": {
+ "conversation_list": ""
}
},
"notes": {
diff --git a/client/src/utils/TemplateConstants.js b/client/src/utils/TemplateConstants.js
index c5e10d712..365b2431e 100644
--- a/client/src/utils/TemplateConstants.js
+++ b/client/src/utils/TemplateConstants.js
@@ -2102,6 +2102,17 @@ export const TemplateList = (type, context) => {
// },
}
: {}),
+ ...(!type || type === "messaging"
+ ? {
+ conversation_list: {
+ title: i18n.t("messaging.render.conversation_list"),
+ description: "",
+ subject: i18n.t("messaging.render.conversation_list"),
+ key: "conversation_list",
+ disabled: false,
+ },
+ }
+ : {}),
...(!type || type === "vendor"
? {
purchases_by_vendor_detailed: {