791 lines
22 KiB
Vue
791 lines
22 KiB
Vue
<template>
|
|
<LayoutHeader>
|
|
<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 v-if="!errorTitle" #right-header>
|
|
<CustomActions
|
|
v-if="document._actions?.length"
|
|
:actions="document._actions"
|
|
/>
|
|
<CustomActions
|
|
v-if="document.actions?.length"
|
|
:actions="document.actions"
|
|
/>
|
|
<AssignTo v-model="assignees.data" :data="doc" doctype="CRM Deal" />
|
|
<Dropdown
|
|
v-if="doc"
|
|
:options="
|
|
statusOptions(
|
|
'deal',
|
|
document.statuses?.length ? document.statuses : document._statuses,
|
|
triggerStatusChange,
|
|
)
|
|
"
|
|
>
|
|
<template #default="{ open }">
|
|
<Button v-if="doc.status" :label="doc.status">
|
|
<template #prefix>
|
|
<IndicatorIcon :class="getDealStatus(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="doc.name" class="flex h-full overflow-hidden">
|
|
<Tabs as="div" v-model="tabIndex" :tabs="tabs">
|
|
<template #tab-panel>
|
|
<Activities
|
|
ref="activities"
|
|
doctype="CRM Deal"
|
|
:docname="doc.name"
|
|
:tabs="tabs"
|
|
v-model:reload="reload"
|
|
v-model:tabIndex="tabIndex"
|
|
@beforeSave="beforeStatusChange"
|
|
@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(doc.name)"
|
|
>
|
|
{{ __(doc.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?.organization_logo"
|
|
/>
|
|
</div>
|
|
</Tooltip>
|
|
<div class="flex flex-col gap-2.5 truncate text-ink-gray-9">
|
|
<Tooltip :text="organization?.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="
|
|
doc.email ? openEmailBox() : toast.error(__('No email set'))
|
|
"
|
|
>
|
|
<template #icon><Email2Icon /></template>
|
|
</Button>
|
|
</div>
|
|
</Tooltip>
|
|
<Tooltip :text="__('Go to website')">
|
|
<div>
|
|
<Button
|
|
@click="
|
|
doc.website
|
|
? openWebsite(doc.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"
|
|
variant="subtle"
|
|
icon="trash-2"
|
|
theme="red"
|
|
/>
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<SLASection
|
|
v-if="doc.sla_status"
|
|
v-model="doc"
|
|
@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="doc.name"
|
|
@reload="sections.reload"
|
|
@beforeFieldChange="beforeStatusChange"
|
|
@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: doc.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="doc?.name"
|
|
v-model="showFilesUploader"
|
|
doctype="CRM Deal"
|
|
:docname="doc.name"
|
|
@after="
|
|
() => {
|
|
activities?.all_activities?.reload()
|
|
changeTabTo('attachments')
|
|
}
|
|
"
|
|
/>
|
|
<DeleteLinkedDocModal
|
|
v-if="showDeleteLinkedDocModal"
|
|
v-model="showDeleteLinkedDocModal"
|
|
:doctype="'CRM Deal'"
|
|
:docname="dealId"
|
|
name="Deals"
|
|
/>
|
|
<LostReasonModal
|
|
v-if="showLostReasonModal"
|
|
v-model="showLostReasonModal"
|
|
:deal="document"
|
|
/>
|
|
</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 LostReasonModal from '@/components/Modals/LostReasonModal.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,
|
|
watch,
|
|
} 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 { triggerOnChange, assignees, document, scripts, error } = useDocument(
|
|
'CRM Deal',
|
|
props.dealId,
|
|
)
|
|
|
|
const doc = computed(() => document.doc || {})
|
|
|
|
watch(error, (err) => {
|
|
if (err) {
|
|
errorTitle.value = __(
|
|
err.exc_type == 'DoesNotExistError'
|
|
? 'Document not found'
|
|
: 'Error occurred',
|
|
)
|
|
errorMessage.value = __(err.messages?.[0] || 'An error occurred')
|
|
} else {
|
|
errorTitle.value = ''
|
|
errorMessage.value = ''
|
|
}
|
|
})
|
|
|
|
watch(
|
|
() => document.doc,
|
|
async (_doc) => {
|
|
if (scripts.data?.length) {
|
|
let s = await setupCustomizations(scripts.data, {
|
|
doc: _doc,
|
|
$dialog,
|
|
$socket,
|
|
router,
|
|
toast,
|
|
updateField,
|
|
createToast: toast.create,
|
|
deleteDoc: deleteDealWithModal,
|
|
call,
|
|
})
|
|
document._actions = s.actions || []
|
|
document._statuses = s.statuses || []
|
|
}
|
|
},
|
|
{ once: true },
|
|
)
|
|
|
|
const organizationDocument = ref(null)
|
|
|
|
watch(
|
|
() => doc.value.organization,
|
|
(org) => {
|
|
if (org && !organizationDocument.value?.doc) {
|
|
let { document: _organizationDocument } = useDocument(
|
|
'CRM Organization',
|
|
org,
|
|
)
|
|
organizationDocument.value = _organizationDocument
|
|
}
|
|
},
|
|
{ immediate: true },
|
|
)
|
|
|
|
const organization = computed(() => organizationDocument.value?.doc || {})
|
|
|
|
onMounted(() => {
|
|
$socket.on('crm_customer_created', () => {
|
|
toast.success(__('Customer created successfully'))
|
|
})
|
|
})
|
|
|
|
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)
|
|
|
|
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: props.dealId } },
|
|
})
|
|
return items
|
|
})
|
|
|
|
const title = computed(() => {
|
|
let t = doctypeMeta['CRM Deal']?.title_field || 'name'
|
|
return doc.value?.[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)
|
|
}
|
|
|
|
async function triggerStatusChange(value) {
|
|
await triggerOnChange('status', value)
|
|
setLostReason()
|
|
}
|
|
|
|
function updateField(name, value) {
|
|
if (name == 'status' && !isOnboardingStepsCompleted.value) {
|
|
updateOnboardingStep('change_deal_status')
|
|
}
|
|
|
|
value = Array.isArray(name) ? '' : value
|
|
let oldValues = Array.isArray(name) ? {} : doc.value[name]
|
|
|
|
if (Array.isArray(name)) {
|
|
name.forEach((field) => (doc.value[field] = value))
|
|
} else {
|
|
doc.value[name] = value
|
|
}
|
|
|
|
document.save.submit(null, {
|
|
onSuccess: () => (reload.value = true),
|
|
onError: (err) => {
|
|
if (Array.isArray(name)) {
|
|
name.forEach((field) => (doc.value[field] = oldValues[field]))
|
|
} else {
|
|
doc.value[name] = oldValues
|
|
}
|
|
toast.error(err.messages?.[0] || __('Error updating field'))
|
|
},
|
|
})
|
|
}
|
|
|
|
async function deleteDealWithModal() {
|
|
showDeleteLinkedDocModal.value = true
|
|
}
|
|
|
|
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 showLostReasonModal = ref(false)
|
|
|
|
function setLostReason() {
|
|
if (
|
|
getDealStatus(document.doc.status).type !== 'Lost' ||
|
|
(document.doc.lost_reason && document.doc.lost_reason !== 'Other') ||
|
|
(document.doc.lost_reason === 'Other' && document.doc.lost_notes)
|
|
) {
|
|
document.save.submit()
|
|
return
|
|
}
|
|
|
|
showLostReasonModal.value = true
|
|
}
|
|
|
|
function beforeStatusChange(data) {
|
|
if (
|
|
data?.hasOwnProperty('status') &&
|
|
getDealStatus(data.status).type == 'Lost'
|
|
) {
|
|
setLostReason()
|
|
} else {
|
|
document.save.submit(null, {
|
|
onSuccess: () => reloadAssignees(data),
|
|
})
|
|
}
|
|
}
|
|
|
|
function reloadAssignees(data) {
|
|
if (data?.hasOwnProperty('deal_owner')) {
|
|
assignees.reload()
|
|
}
|
|
}
|
|
</script>
|