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
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ https://developers.facebook.com/docs/whatsapp/cloud-api/get-started

### Sending text message without creating template Create an entry in the WhatsApp message. On save it will trigger and whats app API to send a message ![image](https://user-images.githubusercontent.com/11792643/211518862-de2d3fbc-69c8-48e1-b000-8eebf20b75ab.png) WhatsApp messages are received via WhatsApp cloud API.![image](https://user-images.githubusercontent.com/11792643/211519625-a528abe2-ba24-46a4-bcbc-170f6b4e27fb.png) ![outgoing (1)](https://user-images.githubusercontent.com/11792643/211518647-45bfaa00-b06a-49c6-a3b3-3cf801d5ec68.gif)

### Sending a template using custom _dict() insted of a doctype.
This can be very useful for features where it is not possible to get the values directly from the doctype.
Just create a script and populate variable called "_data_list":
`doc.set("_data_list", data_list)`

Example:
![image](https://github.com/user-attachments/assets/7496b081-df2b-41dc-bdcb-ed7e5f464698)

### Incomming message
* Setup webhook on meta
* Add verify token on meta and update the same on whatsapp settings
Expand Down
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