576 lines
16 KiB
Vue
576 lines
16 KiB
Vue
<template>
|
|
<LayoutHeader v-if="organization.doc">
|
|
<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>
|
|
</LayoutHeader>
|
|
<div v-if="organization.doc" ref="parentRef" class="flex h-full">
|
|
<Resizer
|
|
v-if="organization.doc"
|
|
:parent="$refs.parentRef"
|
|
class="flex h-full flex-col overflow-hidden border-r"
|
|
>
|
|
<div class="border-b">
|
|
<FileUploader
|
|
@success="changeOrganizationImage"
|
|
:validateFile="validateFile"
|
|
>
|
|
<template #default="{ openFileSelector, error }">
|
|
<div class="flex flex-col items-start justify-start gap-4 p-5">
|
|
<div class="flex gap-4 items-center">
|
|
<div class="group relative h-15.5 w-15.5">
|
|
<Avatar
|
|
size="3xl"
|
|
class="h-15.5 w-15.5"
|
|
:label="organization.doc.organization_name"
|
|
:image="organization.doc.organization_logo"
|
|
/>
|
|
<component
|
|
:is="organization.doc.image ? Dropdown : 'div'"
|
|
v-bind="
|
|
organization.doc.image
|
|
? {
|
|
options: [
|
|
{
|
|
icon: 'upload',
|
|
label: organization.doc.image
|
|
? __('Change image')
|
|
: __('Upload image'),
|
|
onClick: openFileSelector,
|
|
},
|
|
{
|
|
icon: 'trash-2',
|
|
label: __('Remove image'),
|
|
onClick: () => changeOrganizationImage(''),
|
|
},
|
|
],
|
|
}
|
|
: { onClick: openFileSelector }
|
|
"
|
|
class="!absolute bottom-0 left-0 right-0"
|
|
>
|
|
<div
|
|
class="z-1 absolute bottom-0 left-0 right-0 flex h-14 cursor-pointer items-center justify-center rounded-b-full bg-black bg-opacity-40 pt-5 opacity-0 duration-300 ease-in-out group-hover:opacity-100"
|
|
style="
|
|
-webkit-clip-path: inset(22px 0 0 0);
|
|
clip-path: inset(22px 0 0 0);
|
|
"
|
|
>
|
|
<CameraIcon class="h-6 w-6 cursor-pointer text-white" />
|
|
</div>
|
|
</component>
|
|
</div>
|
|
<div class="flex flex-col gap-2 truncate">
|
|
<div class="truncate text-2xl font-medium text-ink-gray-9">
|
|
<span>{{ organization.doc.name }}</span>
|
|
</div>
|
|
<div
|
|
v-if="organization.doc.website"
|
|
class="flex items-center gap-1.5 text-base text-ink-gray-8"
|
|
>
|
|
<WebsiteIcon class="size-4" />
|
|
<span>{{ website(organization.doc.website) }}</span>
|
|
</div>
|
|
<ErrorMessage :message="__(error)" />
|
|
</div>
|
|
</div>
|
|
<div class="flex gap-1.5">
|
|
<Button
|
|
:label="__('Delete')"
|
|
theme="red"
|
|
size="sm"
|
|
@click="deleteOrganization"
|
|
>
|
|
<template #prefix>
|
|
<FeatherIcon name="trash-2" class="h-4 w-4" />
|
|
</template>
|
|
</Button>
|
|
<Tooltip :text="__('Open website')">
|
|
<div>
|
|
<Button @click="openWebsite">
|
|
<FeatherIcon name="link" class="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</FileUploader>
|
|
</div>
|
|
<div
|
|
v-if="sections.data"
|
|
class="flex flex-1 flex-col justify-between overflow-hidden"
|
|
>
|
|
<SidePanelLayout
|
|
:sections="sections.data"
|
|
doctype="CRM Organization"
|
|
:docname="organization.doc.name"
|
|
@reload="sections.reload"
|
|
/>
|
|
</div>
|
|
</Resizer>
|
|
<Tabs as="div" v-model="tabIndex" :tabs="tabs">
|
|
<template #tab-item="{ tab, selected }">
|
|
<button
|
|
class="group flex items-center gap-2 border-b border-transparent py-2.5 text-base text-ink-gray-5 duration-300 ease-in-out hover:border-outline-gray-3 hover:text-ink-gray-9"
|
|
:class="{ 'text-ink-gray-9': selected }"
|
|
>
|
|
<component v-if="tab.icon" :is="tab.icon" class="h-5" />
|
|
{{ __(tab.label) }}
|
|
<Badge
|
|
class="group-hover:bg-surface-gray-7"
|
|
:class="[selected ? 'bg-surface-gray-7' : 'bg-gray-600']"
|
|
variant="solid"
|
|
theme="gray"
|
|
size="sm"
|
|
>
|
|
{{ tab.count }}
|
|
</Badge>
|
|
</button>
|
|
</template>
|
|
<template #tab-panel="{ tab }">
|
|
<DealsListView
|
|
class="mt-4"
|
|
v-if="tab.label === 'Deals' && rows.length"
|
|
:rows="rows"
|
|
:columns="columns"
|
|
:options="{ selectable: false, showTooltip: false }"
|
|
/>
|
|
<ContactsListView
|
|
class="mt-4"
|
|
v-if="tab.label === 'Contacts' && rows.length"
|
|
:rows="rows"
|
|
:columns="columns"
|
|
:options="{ selectable: false, showTooltip: false }"
|
|
/>
|
|
<div
|
|
v-if="!rows.length"
|
|
class="grid flex-1 place-items-center text-xl font-medium text-ink-gray-4"
|
|
>
|
|
<div class="flex flex-col items-center justify-center space-y-3">
|
|
<component :is="tab.icon" class="!h-10 !w-10" />
|
|
<div>{{ __('No {0} Found', [__(tab.label)]) }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</Tabs>
|
|
</div>
|
|
<ErrorPage
|
|
v-else-if="errorTitle"
|
|
:errorTitle="errorTitle"
|
|
:errorMessage="errorMessage"
|
|
/>
|
|
<QuickEntryModal
|
|
v-if="showQuickEntryModal"
|
|
v-model="showQuickEntryModal"
|
|
doctype="CRM Organization"
|
|
/>
|
|
<AddressModal v-model="showAddressModal" v-model:address="_address" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import ErrorPage from '@/components/ErrorPage.vue'
|
|
import Resizer from '@/components/Resizer.vue'
|
|
import SidePanelLayout from '@/components/SidePanelLayout.vue'
|
|
import Icon from '@/components/Icon.vue'
|
|
import LayoutHeader from '@/components/LayoutHeader.vue'
|
|
import QuickEntryModal from '@/components/Modals/QuickEntryModal.vue'
|
|
import AddressModal from '@/components/Modals/AddressModal.vue'
|
|
import DealsListView from '@/components/ListViews/DealsListView.vue'
|
|
import ContactsListView from '@/components/ListViews/ContactsListView.vue'
|
|
import WebsiteIcon from '@/components/Icons/WebsiteIcon.vue'
|
|
import CameraIcon from '@/components/Icons/CameraIcon.vue'
|
|
import DealsIcon from '@/components/Icons/DealsIcon.vue'
|
|
import ContactsIcon from '@/components/Icons/ContactsIcon.vue'
|
|
import { getSettings } from '@/stores/settings'
|
|
import { getMeta } from '@/stores/meta'
|
|
import { globalStore } from '@/stores/global'
|
|
import { usersStore } from '@/stores/users'
|
|
import { statusesStore } from '@/stores/statuses'
|
|
import { getView } from '@/utils/view'
|
|
import { formatDate, timeAgo } from '@/utils'
|
|
import {
|
|
Tooltip,
|
|
Breadcrumbs,
|
|
Avatar,
|
|
FileUploader,
|
|
Dropdown,
|
|
Tabs,
|
|
call,
|
|
createListResource,
|
|
createDocumentResource,
|
|
usePageMeta,
|
|
createResource,
|
|
toast,
|
|
} from 'frappe-ui'
|
|
import { h, computed, ref } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
|
|
const props = defineProps({
|
|
organizationId: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const { brand } = getSettings()
|
|
const { getUser } = usersStore()
|
|
const { $dialog } = globalStore()
|
|
const { getDealStatus } = statusesStore()
|
|
const { doctypeMeta } = getMeta('CRM Organization')
|
|
const showQuickEntryModal = ref(false)
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
|
|
const errorTitle = ref('')
|
|
const errorMessage = ref('')
|
|
|
|
const organization = createDocumentResource({
|
|
doctype: 'CRM Organization',
|
|
name: props.organizationId,
|
|
cache: ['organization', props.organizationId],
|
|
fields: ['*'],
|
|
auto: true,
|
|
onSuccess: () => {
|
|
errorTitle.value = ''
|
|
errorMessage.value = ''
|
|
},
|
|
onError: (err) => {
|
|
if (err.messages?.[0]) {
|
|
errorTitle.value = __('Not permitted')
|
|
errorMessage.value = __(err.messages?.[0])
|
|
} else {
|
|
router.push({ name: 'Organizations' })
|
|
}
|
|
},
|
|
})
|
|
|
|
const breadcrumbs = computed(() => {
|
|
let items = [{ label: __('Organizations'), route: { name: 'Organizations' } }]
|
|
|
|
if (route.query.view || route.query.viewType) {
|
|
let view = getView(
|
|
route.query.view,
|
|
route.query.viewType,
|
|
'CRM Organization',
|
|
)
|
|
if (view) {
|
|
items.push({
|
|
label: __(view.label),
|
|
icon: view.icon,
|
|
route: {
|
|
name: 'Organizations',
|
|
params: { viewType: route.query.viewType },
|
|
query: { view: route.query.view },
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
items.push({
|
|
label: title.value,
|
|
route: {
|
|
name: 'Organization',
|
|
params: { organizationId: props.organizationId },
|
|
},
|
|
})
|
|
return items
|
|
})
|
|
|
|
const title = computed(() => {
|
|
let t = doctypeMeta['CRM Organization']?.title_field || 'name'
|
|
return organization.doc?.[t] || props.organizationId
|
|
})
|
|
|
|
usePageMeta(() => {
|
|
return {
|
|
title: title.value,
|
|
icon: brand.favicon,
|
|
}
|
|
})
|
|
|
|
function validateFile(file) {
|
|
let extn = file.name.split('.').pop().toLowerCase()
|
|
if (!['png', 'jpg', 'jpeg'].includes(extn)) {
|
|
return __('Only PNG and JPG images are allowed')
|
|
}
|
|
}
|
|
|
|
async function changeOrganizationImage(file) {
|
|
await call('frappe.client.set_value', {
|
|
doctype: 'CRM Organization',
|
|
name: props.organizationId,
|
|
fieldname: 'organization_logo',
|
|
value: file?.file_url || '',
|
|
})
|
|
organization.reload()
|
|
}
|
|
|
|
async function deleteOrganization() {
|
|
$dialog({
|
|
title: __('Delete organization'),
|
|
message: __('Are you sure you want to delete this organization?'),
|
|
actions: [
|
|
{
|
|
label: __('Delete'),
|
|
theme: 'red',
|
|
variant: 'solid',
|
|
async onClick(close) {
|
|
await call('frappe.client.delete', {
|
|
doctype: 'CRM Organization',
|
|
name: props.organizationId,
|
|
})
|
|
close()
|
|
router.push({ name: 'Organizations' })
|
|
},
|
|
},
|
|
],
|
|
})
|
|
}
|
|
|
|
function website(url) {
|
|
return url && url.replace(/^(?:https?:\/\/)?(?:www\.)?/i, '')
|
|
}
|
|
|
|
function openWebsite() {
|
|
if (!organization.doc.website) toast.error(__('No website found'))
|
|
else window.open(organization.doc.website, '_blank')
|
|
}
|
|
|
|
const showAddressModal = ref(false)
|
|
const _organization = ref({})
|
|
const _address = ref({})
|
|
|
|
const sections = createResource({
|
|
url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_sidepanel_sections',
|
|
cache: ['sidePanelSections', 'CRM Organization'],
|
|
params: { doctype: 'CRM Organization' },
|
|
auto: true,
|
|
transform: (data) => getParsedSections(data),
|
|
})
|
|
|
|
function getParsedSections(_sections) {
|
|
return _sections.map((section) => {
|
|
section.columns = section.columns.map((column) => {
|
|
column.fields = column.fields.map((field) => {
|
|
if (field.fieldname === 'address') {
|
|
return {
|
|
...field,
|
|
create: (value, close) => {
|
|
_organization.value.address = value
|
|
_address.value = {}
|
|
showAddressModal.value = true
|
|
close()
|
|
},
|
|
edit: async (addr) => {
|
|
_address.value = await call('frappe.client.get', {
|
|
doctype: 'Address',
|
|
name: addr,
|
|
})
|
|
showAddressModal.value = true
|
|
},
|
|
}
|
|
} else {
|
|
return field
|
|
}
|
|
})
|
|
return column
|
|
})
|
|
return section
|
|
})
|
|
}
|
|
|
|
const tabIndex = ref(0)
|
|
const tabs = [
|
|
{
|
|
label: 'Deals',
|
|
icon: h(DealsIcon, { class: 'h-4 w-4' }),
|
|
count: computed(() => deals.data?.length),
|
|
},
|
|
{
|
|
label: 'Contacts',
|
|
icon: h(ContactsIcon, { class: 'h-4 w-4' }),
|
|
count: computed(() => contacts.data?.length),
|
|
},
|
|
]
|
|
|
|
const deals = createListResource({
|
|
type: 'list',
|
|
doctype: 'CRM Deal',
|
|
cache: ['deals', props.organizationId],
|
|
fields: [
|
|
'name',
|
|
'organization',
|
|
'currency',
|
|
'annual_revenue',
|
|
'status',
|
|
'email',
|
|
'mobile_no',
|
|
'deal_owner',
|
|
'modified',
|
|
],
|
|
filters: {
|
|
organization: props.organizationId,
|
|
},
|
|
orderBy: 'modified desc',
|
|
pageLength: 20,
|
|
auto: true,
|
|
})
|
|
|
|
const contacts = createListResource({
|
|
type: 'list',
|
|
doctype: 'Contact',
|
|
cache: ['contacts', props.organizationId],
|
|
fields: [
|
|
'name',
|
|
'full_name',
|
|
'image',
|
|
'email_id',
|
|
'mobile_no',
|
|
'company_name',
|
|
'modified',
|
|
],
|
|
filters: {
|
|
company_name: props.organizationId,
|
|
},
|
|
orderBy: 'modified desc',
|
|
pageLength: 20,
|
|
auto: true,
|
|
})
|
|
|
|
const rows = computed(() => {
|
|
let list = []
|
|
list = !tabIndex.value ? deals : contacts
|
|
|
|
if (!list.data) return []
|
|
|
|
return list.data.map((row) => {
|
|
return !tabIndex.value ? getDealRowObject(row) : getContactRowObject(row)
|
|
})
|
|
})
|
|
|
|
const { getFormattedCurrency } = getMeta('CRM Deal')
|
|
|
|
const columns = computed(() => {
|
|
return tabIndex.value === 0 ? dealColumns : contactColumns
|
|
})
|
|
|
|
function getDealRowObject(deal) {
|
|
return {
|
|
name: deal.name,
|
|
organization: {
|
|
label: deal.organization,
|
|
logo: organization.doc?.organization_logo,
|
|
},
|
|
annual_revenue: getFormattedCurrency('annual_revenue', deal),
|
|
status: {
|
|
label: deal.status,
|
|
color: getDealStatus(deal.status)?.color,
|
|
},
|
|
email: deal.email,
|
|
mobile_no: deal.mobile_no,
|
|
deal_owner: {
|
|
label: deal.deal_owner && getUser(deal.deal_owner).full_name,
|
|
...(deal.deal_owner && getUser(deal.deal_owner)),
|
|
},
|
|
modified: {
|
|
label: formatDate(deal.modified),
|
|
timeAgo: __(timeAgo(deal.modified)),
|
|
},
|
|
}
|
|
}
|
|
|
|
function getContactRowObject(contact) {
|
|
return {
|
|
name: contact.name,
|
|
full_name: {
|
|
label: contact.full_name,
|
|
image_label: contact.full_name,
|
|
image: contact.image,
|
|
},
|
|
email: contact.email_id,
|
|
mobile_no: contact.mobile_no,
|
|
company_name: {
|
|
label: contact.company_name,
|
|
logo: organization.doc?.organization_logo,
|
|
},
|
|
modified: {
|
|
label: formatDate(contact.modified),
|
|
timeAgo: __(timeAgo(contact.modified)),
|
|
},
|
|
}
|
|
}
|
|
|
|
const dealColumns = [
|
|
{
|
|
label: __('Organization'),
|
|
key: 'organization',
|
|
width: '11rem',
|
|
},
|
|
{
|
|
label: __('Amount'),
|
|
key: 'annual_revenue',
|
|
align: 'right',
|
|
width: '9rem',
|
|
},
|
|
{
|
|
label: __('Status'),
|
|
key: 'status',
|
|
width: '10rem',
|
|
},
|
|
{
|
|
label: __('Email'),
|
|
key: 'email',
|
|
width: '12rem',
|
|
},
|
|
{
|
|
label: __('Mobile no'),
|
|
key: 'mobile_no',
|
|
width: '11rem',
|
|
},
|
|
{
|
|
label: __('Deal owner'),
|
|
key: 'deal_owner',
|
|
width: '10rem',
|
|
},
|
|
{
|
|
label: __('Last modified'),
|
|
key: 'modified',
|
|
width: '8rem',
|
|
},
|
|
]
|
|
|
|
const contactColumns = [
|
|
{
|
|
label: __('Name'),
|
|
key: 'full_name',
|
|
width: '17rem',
|
|
},
|
|
{
|
|
label: __('Email'),
|
|
key: 'email',
|
|
width: '12rem',
|
|
},
|
|
{
|
|
label: __('Phone'),
|
|
key: 'mobile_no',
|
|
width: '12rem',
|
|
},
|
|
{
|
|
label: __('Organization'),
|
|
key: 'company_name',
|
|
width: '12rem',
|
|
},
|
|
{
|
|
label: __('Last modified'),
|
|
key: 'modified',
|
|
width: '8rem',
|
|
},
|
|
]
|
|
</script>
|