chore: updated readme with exotel integration
This commit is contained in:
parent
5de2bb061c
commit
cb2cb6db56
@ -75,6 +75,7 @@ The motivation behind building Frappe CRM stems from the need for a simple, cust
|
|||||||
### Integrations
|
### Integrations
|
||||||
|
|
||||||
- **Twilio:** Integrate Twilio to make and receive calls from the CRM. You can also record calls. It is a built-in integration.
|
- **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.
|
- **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.
|
- **ERPNext:** Integrate with [ERPNext](https://erpnext.com) to extend the CRM capabilities to include invoicing, accounting, and more.
|
||||||
|
|
||||||
|
|||||||
@ -286,11 +286,6 @@ const contact = ref({
|
|||||||
mobile_no: '',
|
mobile_no: '',
|
||||||
})
|
})
|
||||||
|
|
||||||
watch(phoneNumber, (value) => {
|
|
||||||
if (!value) return
|
|
||||||
getContact.fetch()
|
|
||||||
})
|
|
||||||
|
|
||||||
const getContact = createResource({
|
const getContact = createResource({
|
||||||
url: 'crm.integrations.api.get_contact_by_phone_number',
|
url: 'crm.integrations.api.get_contact_by_phone_number',
|
||||||
makeParams() {
|
makeParams() {
|
||||||
@ -303,6 +298,12 @@ const getContact = createResource({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
watch(phoneNumber, (value) => {
|
||||||
|
if (!value) return
|
||||||
|
getContact.fetch()
|
||||||
|
}, { immediate: true })
|
||||||
|
|
||||||
|
|
||||||
const dirty = ref(false)
|
const dirty = ref(false)
|
||||||
|
|
||||||
const note = ref({
|
const note = ref({
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user