Compare commits
3 Commits
344dafbb48
...
f05bfa4047
Author | SHA1 | Date |
---|---|---|
|
f05bfa4047 | |
|
1d300e07ca | |
|
89db3e83c9 |
|
@ -437,23 +437,29 @@ const webhook = async (req, res) => {
|
|||
|
||||
let crmPhone = phone_number.replace('+', '')
|
||||
|
||||
const companies = [
|
||||
// { companyId: "99", account_id: "1" },
|
||||
{ companyId: "99", account_id: "15" },
|
||||
]
|
||||
const company = await Company.findOne({
|
||||
integrations: {
|
||||
$elemMatch: {
|
||||
name: "omnihit",
|
||||
"config.accountId": `${accountId}`
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
const obj = companies.find(c => +c.account_id == +accountId)
|
||||
if (!company) {
|
||||
return res.status(StatusCodes.NOT_FOUND).send({ msg: "companyId not found!" })
|
||||
}
|
||||
|
||||
console.log('=======> name: ', name)
|
||||
console.log('=======> crmPhone: ', crmPhone)
|
||||
console.log('=======> accountId: ', accountId)
|
||||
console.log('=======> companyId: ', obj.companyId)
|
||||
console.log('=======> companyId: ', company.companyId)
|
||||
|
||||
console.log('=======> ticketId: ', ticketId)
|
||||
|
||||
|
||||
await whatsappJournalingCRM(
|
||||
companyId = obj.companyId,
|
||||
companyId = company.companyId,
|
||||
crmPhone = crmPhone,
|
||||
crmAgent = '0000',
|
||||
crmFirstName = name,
|
||||
|
@ -519,8 +525,6 @@ const webhook_crm = async (req, res) => {
|
|||
|
||||
const { phone } = contact
|
||||
|
||||
// const obj = omnihitV2Integration.find(o => o.companyId == companyId)
|
||||
|
||||
const config = await getIntegrationsConfig(companyId, 'omnihit')
|
||||
|
||||
if (config) {
|
||||
|
@ -551,15 +555,6 @@ const webhook_crm = async (req, res) => {
|
|||
return res.set('Content-Type', 'text/xml').status(StatusCodes.OK).send(responseXml)
|
||||
}
|
||||
|
||||
const integration = async (req, res) => {
|
||||
const { companyId } = req.query
|
||||
const { integration } = req.body
|
||||
|
||||
console.log("====> companyId: ", companyId, " | integration: ", integration)
|
||||
|
||||
res.send()
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
contactCreate,
|
||||
uploadCrmConfig,
|
||||
|
|
Loading…
Reference in New Issue