774 lines
22 KiB
Vue
774 lines
22 KiB
Vue
<template>
|
|
<LayoutHeader v-if="deal.data">
|
|
<template #left-header>
|
|
<Breadcrumbs :items="breadcrumbs">
|
|
<template #prefix="{ item }">
|
|
<Icon v-if="item.icon" :icon="item.icon" class="mr-2 h-4" />
|
|
</template>
|
|
</Breadcrumbs>
|
|
</template>
|
|
<template #right-header>
|
|
<CustomActions
|
|
v-if="deal.data._customActions?.length"
|
|
:actions="deal.data._customActions"
|
|
/>
|
|
<CustomActions
|
|
v-if="document.actions?.length"
|
|
:actions="document.actions"
|
|
/>
|
|
<AssignTo
|
|
v-model="assignees.data"
|
|
:data="document.doc"
|
|
doctype="CRM Deal"
|
|
/>
|
|
<Dropdown
|
|
v-if="document.doc"
|
|
:options="
|
|
statusOptions(
|
|
'deal',
|
|
document,
|
|
deal.data._customStatuses,
|
|
triggerOnChange,
|
|
)
|
|
"
|
|
>
|
|
<template #default="{ open }">
|
|
<Button :label="document.doc.status">
|
|
<template #prefix>
|
|
<IndicatorIcon
|
|
:class="getDealStatus(document.doc.status).color"
|
|
/>
|
|
</template>
|
|
<template #suffix>
|
|
<FeatherIcon
|
|
:name="open ? 'chevron-up' : 'chevron-down'"
|
|
class="h-4"
|
|
/>
|
|
</template>
|
|
</Button>
|
|
</template>
|
|
</Dropdown>
|
|
</template>
|
|
</LayoutHeader>
|
|
<div v-if="deal.data" class="flex h-full overflow-hidden">
|
|
<Tabs as="div" v-model="tabIndex" :tabs="tabs">
|
|
<template #tab-panel>
|
|
<Activities
|
|
ref="activities"
|
|
doctype="CRM Deal"
|
|
:tabs="tabs"
|
|
v-model:reload="reload"
|
|
v-model:tabIndex="tabIndex"
|
|
v-model="deal"
|
|
@afterSave="reloadAssignees"
|
|
/>
|
|
</template>
|
|
</Tabs>
|
|
<Resizer side="right" class="flex flex-col justify-between border-l">
|
|
<div
|
|
class="flex h-10.5 cursor-copy items-center border-b px-5 py-2.5 text-lg font-medium text-ink-gray-9"
|
|
@click="copyToClipboard(deal.data.name)"
|
|
>
|
|
{{ __(deal.data.name) }}
|
|
</div>
|
|
<div class="flex items-center justify-start gap-5 border-b p-5">
|
|
<Tooltip :text="__('Organization logo')">
|
|
<div class="group relative size-12">
|
|
<Avatar
|
|
size="3xl"
|
|
class="size-12"
|
|
:label="title"
|
|
:image="organization.data?.organization_logo"
|
|
/>
|
|
</div>
|
|
</Tooltip>
|
|
<div class="flex flex-col gap-2.5 truncate text-ink-gray-9">
|
|
<Tooltip :text="organization.data?.name || __('Set an organization')">
|
|
<div class="truncate text-2xl font-medium">
|
|
{{ title }}
|
|
</div>
|
|
</Tooltip>
|
|
<div class="flex gap-1.5">
|
|
<Tooltip v-if="callEnabled" :text="__('Make a call')">
|
|
<div>
|
|
<Button @click="triggerCall">
|
|
<template #icon><PhoneIcon /></template>
|
|
</Button>
|
|
</div>
|
|
</Tooltip>
|
|
<Tooltip :text="__('Send an email')">
|
|
<div>
|
|
<Button
|
|
@click="
|
|
deal.data.email
|
|
? openEmailBox()
|
|
: toast.error(__('No email set'))
|
|
"
|
|
>
|
|
<template #icon><Email2Icon /></template>
|
|
</Button>
|
|
</div>
|
|
</Tooltip>
|
|
<Tooltip :text="__('Go to website')">
|
|
<div>
|
|
<Button
|
|
@click="
|
|
deal.data.website
|
|
? openWebsite(deal.data.website)
|
|
: toast.error(__('No website set'))
|
|
"
|
|
>
|
|
<template #icon><LinkIcon /></template>
|
|
</Button>
|
|
</div>
|
|
</Tooltip>
|
|
<Tooltip :text="__('Attach a file')">
|
|
<div>
|
|
<Button @click="showFilesUploader = true">
|
|
<template #icon><AttachmentIcon /></template>
|
|
</Button>
|
|
</div>
|
|
</Tooltip>
|
|
<Tooltip :text="__('Delete')">
|
|
<div>
|
|
<Button
|
|
@click="deleteDealWithModal(deal.data.name)"
|
|
variant="subtle"
|
|
icon="trash-2"
|
|
theme="red"
|
|
/>
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<SLASection
|
|
v-if="deal.data.sla_status"
|
|
v-model="deal.data"
|
|
@updateField="updateField"
|
|
/>
|
|
<div
|
|
v-if="sections.data"
|
|
class="flex flex-1 flex-col justify-between overflow-hidden"
|
|
>
|
|
<SidePanelLayout
|
|
:sections="sections.data"
|
|
:addContact="addContact"
|
|
doctype="CRM Deal"
|
|
:docname="deal.data.name"
|
|
@reload="sections.reload"
|
|
@afterFieldChange="reloadAssignees"
|
|
>
|
|
<template #actions="{ section }">
|
|
<div v-if="section.name == 'contacts_section'" class="pr-2">
|
|
<Link
|
|
value=""
|
|
doctype="Contact"
|
|
@change="(e) => addContact(e)"
|
|
:onCreate="
|
|
(value, close) => {
|
|
_contact = {
|
|
first_name: value,
|
|
company_name: deal.data.organization,
|
|
}
|
|
showContactModal = true
|
|
close()
|
|
}
|
|
"
|
|
>
|
|
<template #target="{ togglePopover }">
|
|
<Button
|
|
class="h-7 px-3"
|
|
variant="ghost"
|
|
icon="plus"
|
|
@click="togglePopover()"
|
|
/>
|
|
</template>
|
|
</Link>
|
|
</div>
|
|
</template>
|
|
<template #default="{ section }">
|
|
<div
|
|
v-if="section.name == 'contacts_section'"
|
|
class="contacts-area"
|
|
>
|
|
<div
|
|
v-if="dealContacts?.loading && dealContacts?.data?.length == 0"
|
|
class="flex min-h-20 flex-1 items-center justify-center gap-3 text-base text-ink-gray-4"
|
|
>
|
|
<LoadingIndicator class="h-4 w-4" />
|
|
<span>{{ __('Loading...') }}</span>
|
|
</div>
|
|
<div
|
|
v-else-if="dealContacts?.data?.length"
|
|
v-for="(contact, i) in dealContacts.data"
|
|
:key="contact.name"
|
|
>
|
|
<div class="px-2 pb-2.5" :class="[i == 0 ? 'pt-5' : 'pt-2.5']">
|
|
<Section :opened="contact.opened">
|
|
<template #header="{ opened, toggle }">
|
|
<div
|
|
class="flex cursor-pointer items-center justify-between gap-2 pr-1 text-base leading-5 text-ink-gray-7"
|
|
>
|
|
<div
|
|
class="flex h-7 items-center gap-2 truncate"
|
|
@click="toggle()"
|
|
>
|
|
<Avatar
|
|
:label="contact.full_name"
|
|
:image="contact.image"
|
|
size="md"
|
|
/>
|
|
<div class="truncate">
|
|
{{ contact.full_name }}
|
|
</div>
|
|
<Badge
|
|
v-if="contact.is_primary"
|
|
class="ml-2"
|
|
variant="outline"
|
|
:label="__('Primary')"
|
|
theme="green"
|
|
/>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<Dropdown :options="contactOptions(contact)">
|
|
<Button
|
|
icon="more-horizontal"
|
|
class="text-ink-gray-5"
|
|
variant="ghost"
|
|
/>
|
|
</Dropdown>
|
|
<Button
|
|
variant="ghost"
|
|
@click="
|
|
router.push({
|
|
name: 'Contact',
|
|
params: { contactId: contact.name },
|
|
})
|
|
"
|
|
>
|
|
<template #icon>
|
|
<ArrowUpRightIcon class="h-4 w-4" />
|
|
</template>
|
|
</Button>
|
|
<Button variant="ghost" @click="toggle()">
|
|
<template #icon>
|
|
<FeatherIcon
|
|
name="chevron-right"
|
|
class="h-4 w-4 text-ink-gray-9 transition-all duration-300 ease-in-out"
|
|
:class="{ 'rotate-90': opened }"
|
|
/>
|
|
</template>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<div
|
|
class="flex flex-col gap-1.5 text-base text-ink-gray-8"
|
|
>
|
|
<div class="flex items-center gap-3 pb-1.5 pl-1 pt-4">
|
|
<Email2Icon class="h-4 w-4" />
|
|
{{ contact.email }}
|
|
</div>
|
|
<div class="flex items-center gap-3 p-1 py-1.5">
|
|
<PhoneIcon class="h-4 w-4" />
|
|
{{ contact.mobile_no }}
|
|
</div>
|
|
</div>
|
|
</Section>
|
|
</div>
|
|
<div
|
|
v-if="i != dealContacts.data.length - 1"
|
|
class="mx-2 h-px border-t border-outline-gray-modals"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-else
|
|
class="flex h-20 items-center justify-center text-base text-ink-gray-5"
|
|
>
|
|
{{ __('No contacts added') }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</SidePanelLayout>
|
|
</div>
|
|
</Resizer>
|
|
</div>
|
|
<ErrorPage
|
|
v-else-if="errorTitle"
|
|
:errorTitle="errorTitle"
|
|
:errorMessage="errorMessage"
|
|
/>
|
|
<OrganizationModal
|
|
v-if="showOrganizationModal"
|
|
v-model="showOrganizationModal"
|
|
:data="_organization"
|
|
:options="{
|
|
redirect: false,
|
|
afterInsert: (doc) => updateField('organization', doc.name),
|
|
}"
|
|
/>
|
|
<ContactModal
|
|
v-if="showContactModal"
|
|
v-model="showContactModal"
|
|
:contact="_contact"
|
|
:options="{
|
|
redirect: false,
|
|
afterInsert: (doc) => addContact(doc.name),
|
|
}"
|
|
/>
|
|
<FilesUploader
|
|
v-if="deal.data?.name"
|
|
v-model="showFilesUploader"
|
|
doctype="CRM Deal"
|
|
:docname="deal.data.name"
|
|
@after="
|
|
() => {
|
|
activities?.all_activities?.reload()
|
|
changeTabTo('attachments')
|
|
}
|
|
"
|
|
/>
|
|
<DeleteLinkedDocModal
|
|
v-if="showDeleteLinkedDocModal"
|
|
v-model="showDeleteLinkedDocModal"
|
|
:doctype="'CRM Deal'"
|
|
:docname="props.dealId"
|
|
name="Deals"
|
|
/>
|
|
</template>
|
|
<script setup>
|
|
import ErrorPage from '@/components/ErrorPage.vue'
|
|
import Icon from '@/components/Icon.vue'
|
|
import Resizer from '@/components/Resizer.vue'
|
|
import LoadingIndicator from '@/components/Icons/LoadingIndicator.vue'
|
|
import ActivityIcon from '@/components/Icons/ActivityIcon.vue'
|
|
import EmailIcon from '@/components/Icons/EmailIcon.vue'
|
|
import Email2Icon from '@/components/Icons/Email2Icon.vue'
|
|
import CommentIcon from '@/components/Icons/CommentIcon.vue'
|
|
import DetailsIcon from '@/components/Icons/DetailsIcon.vue'
|
|
import PhoneIcon from '@/components/Icons/PhoneIcon.vue'
|
|
import TaskIcon from '@/components/Icons/TaskIcon.vue'
|
|
import NoteIcon from '@/components/Icons/NoteIcon.vue'
|
|
import WhatsAppIcon from '@/components/Icons/WhatsAppIcon.vue'
|
|
import IndicatorIcon from '@/components/Icons/IndicatorIcon.vue'
|
|
import LinkIcon from '@/components/Icons/LinkIcon.vue'
|
|
import ArrowUpRightIcon from '@/components/Icons/ArrowUpRightIcon.vue'
|
|
import SuccessIcon from '@/components/Icons/SuccessIcon.vue'
|
|
import AttachmentIcon from '@/components/Icons/AttachmentIcon.vue'
|
|
import LayoutHeader from '@/components/LayoutHeader.vue'
|
|
import Activities from '@/components/Activities/Activities.vue'
|
|
import OrganizationModal from '@/components/Modals/OrganizationModal.vue'
|
|
import AssignTo from '@/components/AssignTo.vue'
|
|
import FilesUploader from '@/components/FilesUploader/FilesUploader.vue'
|
|
import ContactModal from '@/components/Modals/ContactModal.vue'
|
|
import Link from '@/components/Controls/Link.vue'
|
|
import Section from '@/components/Section.vue'
|
|
import SidePanelLayout from '@/components/SidePanelLayout.vue'
|
|
import SLASection from '@/components/SLASection.vue'
|
|
import CustomActions from '@/components/CustomActions.vue'
|
|
import { openWebsite, setupCustomizations, copyToClipboard } from '@/utils'
|
|
import { getView } from '@/utils/view'
|
|
import { getSettings } from '@/stores/settings'
|
|
import { globalStore } from '@/stores/global'
|
|
import { statusesStore } from '@/stores/statuses'
|
|
import { getMeta } from '@/stores/meta'
|
|
import { useDocument } from '@/data/document'
|
|
import { whatsappEnabled, callEnabled } from '@/composables/settings'
|
|
import {
|
|
createResource,
|
|
Dropdown,
|
|
Tooltip,
|
|
Avatar,
|
|
Tabs,
|
|
Breadcrumbs,
|
|
call,
|
|
usePageMeta,
|
|
toast,
|
|
} from 'frappe-ui'
|
|
import { useOnboarding } from 'frappe-ui/frappe'
|
|
import { ref, computed, h, onMounted, onBeforeUnmount, nextTick } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import { useActiveTabManager } from '@/composables/useActiveTabManager'
|
|
|
|
const { brand } = getSettings()
|
|
const { $dialog, $socket, makeCall } = globalStore()
|
|
const { statusOptions, getDealStatus } = statusesStore()
|
|
const { doctypeMeta } = getMeta('CRM Deal')
|
|
|
|
const { updateOnboardingStep, isOnboardingStepsCompleted } =
|
|
useOnboarding('frappecrm')
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
|
|
const props = defineProps({
|
|
dealId: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const errorTitle = ref('')
|
|
const errorMessage = ref('')
|
|
|
|
const deal = createResource({
|
|
url: 'crm.fcrm.doctype.crm_deal.api.get_deal',
|
|
params: { name: props.dealId },
|
|
cache: ['deal', props.dealId],
|
|
onSuccess: (data) => {
|
|
errorTitle.value = ''
|
|
errorMessage.value = ''
|
|
|
|
if (data.organization) {
|
|
organization.update({
|
|
params: { doctype: 'CRM Organization', name: data.organization },
|
|
})
|
|
organization.fetch()
|
|
}
|
|
|
|
setupCustomizations(deal, {
|
|
doc: data,
|
|
$dialog,
|
|
$socket,
|
|
router,
|
|
toast,
|
|
updateField,
|
|
createToast: toast.create,
|
|
deleteDoc: deleteDeal,
|
|
resource: {
|
|
deal,
|
|
dealContacts,
|
|
sections,
|
|
},
|
|
call,
|
|
})
|
|
},
|
|
onError: (err) => {
|
|
if (err.messages?.[0]) {
|
|
errorTitle.value = __('Not permitted')
|
|
errorMessage.value = __(err.messages?.[0])
|
|
} else {
|
|
router.push({ name: 'Deals' })
|
|
}
|
|
},
|
|
})
|
|
|
|
const organization = createResource({
|
|
url: 'frappe.client.get',
|
|
onSuccess: (data) => (deal.data._organizationObj = data),
|
|
})
|
|
|
|
onMounted(() => {
|
|
$socket.on('crm_customer_created', () => {
|
|
toast.success(__('Customer created successfully'))
|
|
})
|
|
|
|
if (deal.data) {
|
|
organization.data = deal.data._organizationObj
|
|
return
|
|
}
|
|
deal.fetch()
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
$socket.off('crm_customer_created')
|
|
})
|
|
|
|
const reload = ref(false)
|
|
const showOrganizationModal = ref(false)
|
|
const showFilesUploader = ref(false)
|
|
const _organization = ref({})
|
|
const showDeleteLinkedDocModal = ref(false)
|
|
|
|
async function deleteDealWithModal() {
|
|
showDeleteLinkedDocModal.value = true
|
|
}
|
|
function updateDeal(fieldname, value, callback) {
|
|
value = Array.isArray(fieldname) ? '' : value
|
|
|
|
if (validateRequired(fieldname, value)) return
|
|
|
|
createResource({
|
|
url: 'frappe.client.set_value',
|
|
params: {
|
|
doctype: 'CRM Deal',
|
|
name: props.dealId,
|
|
fieldname,
|
|
value,
|
|
},
|
|
auto: true,
|
|
onSuccess: () => {
|
|
deal.reload()
|
|
reload.value = true
|
|
toast.success(__('Deal updated'))
|
|
callback?.()
|
|
},
|
|
onError: (err) => {
|
|
toast.error(__('Error updating deal: {0}', [err.messages?.[0]]))
|
|
},
|
|
})
|
|
}
|
|
|
|
function validateRequired(fieldname, value) {
|
|
let meta = deal.data.fields_meta || {}
|
|
if (meta[fieldname]?.reqd && !value) {
|
|
toast.error(__('{0} is a required field', [meta[fieldname].label]))
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
const breadcrumbs = computed(() => {
|
|
let items = [{ label: __('Deals'), route: { name: 'Deals' } }]
|
|
|
|
if (route.query.view || route.query.viewType) {
|
|
let view = getView(route.query.view, route.query.viewType, 'CRM Deal')
|
|
if (view) {
|
|
items.push({
|
|
label: __(view.label),
|
|
icon: view.icon,
|
|
route: {
|
|
name: 'Deals',
|
|
params: { viewType: route.query.viewType },
|
|
query: { view: route.query.view },
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
items.push({
|
|
label: title.value,
|
|
route: { name: 'Deal', params: { dealId: deal.data.name } },
|
|
})
|
|
return items
|
|
})
|
|
|
|
const title = computed(() => {
|
|
let t = doctypeMeta['CRM Deal']?.title_field || 'name'
|
|
return deal.data?.[t] || props.dealId
|
|
})
|
|
|
|
usePageMeta(() => {
|
|
return {
|
|
title: title.value,
|
|
icon: brand.favicon,
|
|
}
|
|
})
|
|
|
|
const tabs = computed(() => {
|
|
let tabOptions = [
|
|
{
|
|
name: 'Activity',
|
|
label: __('Activity'),
|
|
icon: ActivityIcon,
|
|
},
|
|
{
|
|
name: 'Emails',
|
|
label: __('Emails'),
|
|
icon: EmailIcon,
|
|
},
|
|
{
|
|
name: 'Comments',
|
|
label: __('Comments'),
|
|
icon: CommentIcon,
|
|
},
|
|
{
|
|
name: 'Data',
|
|
label: __('Data'),
|
|
icon: DetailsIcon,
|
|
},
|
|
{
|
|
name: 'Calls',
|
|
label: __('Calls'),
|
|
icon: PhoneIcon,
|
|
},
|
|
{
|
|
name: 'Tasks',
|
|
label: __('Tasks'),
|
|
icon: TaskIcon,
|
|
},
|
|
{
|
|
name: 'Notes',
|
|
label: __('Notes'),
|
|
icon: NoteIcon,
|
|
},
|
|
{
|
|
name: 'Attachments',
|
|
label: __('Attachments'),
|
|
icon: AttachmentIcon,
|
|
},
|
|
{
|
|
name: 'WhatsApp',
|
|
label: __('WhatsApp'),
|
|
icon: WhatsAppIcon,
|
|
condition: () => whatsappEnabled.value,
|
|
},
|
|
]
|
|
return tabOptions.filter((tab) => (tab.condition ? tab.condition() : true))
|
|
})
|
|
const { tabIndex } = useActiveTabManager(tabs, 'lastDealTab')
|
|
|
|
const sections = createResource({
|
|
url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_sidepanel_sections',
|
|
cache: ['sidePanelSections', 'CRM Deal'],
|
|
params: { doctype: 'CRM Deal' },
|
|
transform: (data) => getParsedSections(data),
|
|
})
|
|
|
|
if (!sections.data) sections.fetch()
|
|
|
|
function getParsedSections(_sections) {
|
|
_sections.forEach((section) => {
|
|
if (section.name == 'contacts_section') return
|
|
section.columns[0].fields.forEach((field) => {
|
|
if (field.fieldname == 'organization') {
|
|
field.create = (value, close) => {
|
|
_organization.value.organization_name = value
|
|
showOrganizationModal.value = true
|
|
close()
|
|
}
|
|
field.link = (org) =>
|
|
router.push({
|
|
name: 'Organization',
|
|
params: { organizationId: org },
|
|
})
|
|
}
|
|
})
|
|
})
|
|
return _sections
|
|
}
|
|
|
|
const showContactModal = ref(false)
|
|
const _contact = ref({})
|
|
|
|
function contactOptions(contact) {
|
|
let options = [
|
|
{
|
|
label: __('Remove'),
|
|
icon: 'trash-2',
|
|
onClick: () => removeContact(contact.name),
|
|
},
|
|
]
|
|
|
|
if (!contact.is_primary) {
|
|
options.push({
|
|
label: __('Set as Primary Contact'),
|
|
icon: h(SuccessIcon, { class: 'h-4 w-4' }),
|
|
onClick: () => setPrimaryContact(contact.name),
|
|
})
|
|
}
|
|
|
|
return options
|
|
}
|
|
|
|
async function addContact(contact) {
|
|
if (dealContacts.data?.find((c) => c.name === contact)) {
|
|
toast.error(__('Contact already added'))
|
|
return
|
|
}
|
|
|
|
let d = await call('crm.fcrm.doctype.crm_deal.crm_deal.add_contact', {
|
|
deal: props.dealId,
|
|
contact,
|
|
})
|
|
if (d) {
|
|
dealContacts.reload()
|
|
toast.success(__('Contact added'))
|
|
}
|
|
}
|
|
|
|
async function removeContact(contact) {
|
|
let d = await call('crm.fcrm.doctype.crm_deal.crm_deal.remove_contact', {
|
|
deal: props.dealId,
|
|
contact,
|
|
})
|
|
if (d) {
|
|
dealContacts.reload()
|
|
toast.success(__('Contact removed'))
|
|
}
|
|
}
|
|
|
|
async function setPrimaryContact(contact) {
|
|
let d = await call('crm.fcrm.doctype.crm_deal.crm_deal.set_primary_contact', {
|
|
deal: props.dealId,
|
|
contact,
|
|
})
|
|
if (d) {
|
|
dealContacts.reload()
|
|
toast.success(__('Primary contact set'))
|
|
}
|
|
}
|
|
|
|
const dealContacts = createResource({
|
|
url: 'crm.fcrm.doctype.crm_deal.api.get_deal_contacts',
|
|
params: { name: props.dealId },
|
|
cache: ['deal_contacts', props.dealId],
|
|
transform: (data) => {
|
|
data.forEach((contact) => {
|
|
contact.opened = false
|
|
})
|
|
return data
|
|
},
|
|
})
|
|
|
|
if (!dealContacts.data) dealContacts.fetch()
|
|
|
|
function triggerCall() {
|
|
let primaryContact = dealContacts.data?.find((c) => c.is_primary)
|
|
let mobile_no = primaryContact.mobile_no || null
|
|
|
|
if (!primaryContact) {
|
|
toast.error(__('No primary contact set'))
|
|
return
|
|
}
|
|
|
|
if (!mobile_no) {
|
|
toast.error(__('No mobile number set'))
|
|
return
|
|
}
|
|
|
|
makeCall(mobile_no)
|
|
}
|
|
|
|
function updateField(name, value, callback) {
|
|
if (name == 'status' && !isOnboardingStepsCompleted.value) {
|
|
updateOnboardingStep('change_deal_status')
|
|
}
|
|
|
|
updateDeal(name, value, () => {
|
|
deal.data[name] = value
|
|
callback?.()
|
|
})
|
|
}
|
|
|
|
async function deleteDeal(name) {
|
|
await call('frappe.client.delete', {
|
|
doctype: 'CRM Deal',
|
|
name,
|
|
})
|
|
router.push({ name: 'Deals' })
|
|
}
|
|
|
|
const activities = ref(null)
|
|
|
|
function openEmailBox() {
|
|
let currentTab = tabs.value[tabIndex.value]
|
|
if (!['Emails', 'Comments', 'Activities'].includes(currentTab.name)) {
|
|
activities.value.changeTabTo('emails')
|
|
}
|
|
nextTick(() => (activities.value.emailBox.show = true))
|
|
}
|
|
|
|
const { assignees, document, triggerOnChange } = useDocument(
|
|
'CRM Deal',
|
|
props.dealId,
|
|
)
|
|
|
|
function reloadAssignees(data) {
|
|
if (data?.hasOwnProperty('deal_owner')) {
|
|
assignees.reload()
|
|
}
|
|
}
|
|
</script>
|