chore: updated readme with exotel integration

This commit is contained in:
Shariq Ansari 2025-01-20 20:12:05 +05:30
parent 5de2bb061c
commit cb2cb6db56
2 changed files with 7 additions and 5 deletions

View File

@ -75,6 +75,7 @@ The motivation behind building Frappe CRM stems from the need for a simple, cust
### Integrations
- **Twilio:** Integrate Twilio to make and receive calls from the CRM. You can also record calls. It is a built-in integration.
- **Exotel:** Integrate Exotel to make and receive calls via agents mobile phone from the CRM. You can also record calls. It is a built-in integration.
- **WhatsApp:** Integrate WhatsApp to send and receive messages from the CRM. [Frappe WhatsApp](https://github.com/shridarpatil/frappe_whatsapp) is used for this integration.
- **ERPNext:** Integrate with [ERPNext](https://erpnext.com) to extend the CRM capabilities to include invoicing, accounting, and more.

View File

@ -286,11 +286,6 @@ const contact = ref({
mobile_no: '',
})
watch(phoneNumber, (value) => {
if (!value) return
getContact.fetch()
})
const getContact = createResource({
url: 'crm.integrations.api.get_contact_by_phone_number',
makeParams() {
@ -303,6 +298,12 @@ const getContact = createResource({
},
})
watch(phoneNumber, (value) => {
if (!value) return
getContact.fetch()
}, { immediate: true })
const dirty = ref(false)
const note = ref({