Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow to send whatsapp template with custom data dict #109

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,21 @@ def send_template(self):
parameters = []
template_parameters = []

ref_doc = frappe.get_doc(self.reference_doctype, self.reference_name)
for field_name in field_names:
value = ref_doc.get_formatted(field_name.strip())
if self.flags.custom_ref_doc:
HarryPaulo marked this conversation as resolved.
Show resolved Hide resolved
custom_values = self.flags.custom_ref_doc
for field_name in field_names:
value = custom_values.get(field_name.strip())
parameters.append({"type": "text", "text": value})
template_parameters.append(value)

else:
ref_doc = frappe.get_doc(self.reference_doctype, self.reference_name)
for field_name in field_names:
value = ref_doc.get_formatted(field_name.strip())

parameters.append({"type": "text", "text": value})
template_parameters.append(value)

parameters.append({"type": "text", "text": value})
template_parameters.append(value)

self.template_parameters = json.dumps(template_parameters)

Expand Down
Loading