207 lines
5.6 KiB
Vue
207 lines
5.6 KiB
Vue
<template>
|
|
<Dialog v-model="show" :options="{ size: '3xl' }">
|
|
<template #body>
|
|
<div class="bg-surface-modal px-4 pb-6 pt-5 sm:px-6">
|
|
<div class="mb-5 flex items-center justify-between">
|
|
<div>
|
|
<h3 class="text-2xl font-semibold leading-6 text-ink-gray-9">
|
|
{{ __('Create Lead') }}
|
|
</h3>
|
|
</div>
|
|
<div class="flex items-center gap-1">
|
|
<Button
|
|
v-if="isManager() && !isMobileView"
|
|
variant="ghost"
|
|
class="w-7"
|
|
@click="openQuickEntryModal"
|
|
>
|
|
<EditIcon class="h-4 w-4" />
|
|
</Button>
|
|
<Button variant="ghost" class="w-7" @click="show = false">
|
|
<FeatherIcon name="x" class="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<FieldLayout v-if="tabs.data" :tabs="tabs.data" :data="lead" />
|
|
<ErrorMessage class="mt-4" v-if="error" :message="__(error)" />
|
|
</div>
|
|
</div>
|
|
<div class="px-4 pb-7 pt-4 sm:px-6">
|
|
<div class="flex flex-row-reverse gap-2">
|
|
<Button
|
|
variant="solid"
|
|
:label="__('Create')"
|
|
:loading="isLeadCreating"
|
|
@click="createNewLead"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</Dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import EditIcon from '@/components/Icons/EditIcon.vue'
|
|
import FieldLayout from '@/components/FieldLayout/FieldLayout.vue'
|
|
import { usersStore } from '@/stores/users'
|
|
import { statusesStore } from '@/stores/statuses'
|
|
import { sessionStore } from '@/stores/session'
|
|
import { isMobileView } from '@/composables/settings'
|
|
import { capture } from '@/telemetry'
|
|
import { createResource } from 'frappe-ui'
|
|
import { useOnboarding } from 'frappe-ui/frappe'
|
|
import { computed, onMounted, ref, reactive, nextTick } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
const props = defineProps({
|
|
defaults: Object,
|
|
})
|
|
|
|
const { user } = sessionStore()
|
|
const { getUser, isManager } = usersStore()
|
|
const { getLeadStatus, statusOptions } = statusesStore()
|
|
const { updateOnboardingStep } = useOnboarding('frappecrm')
|
|
|
|
const show = defineModel()
|
|
const router = useRouter()
|
|
const error = ref(null)
|
|
const isLeadCreating = ref(false)
|
|
|
|
const tabs = createResource({
|
|
url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_fields_layout',
|
|
cache: ['QuickEntry', 'CRM Lead'],
|
|
params: { doctype: 'CRM Lead', type: 'Quick Entry' },
|
|
auto: true,
|
|
transform: (_tabs) => {
|
|
return _tabs.forEach((tab) => {
|
|
tab.sections.forEach((section) => {
|
|
section.columns.forEach((column) => {
|
|
column.fields.forEach((field) => {
|
|
if (field.fieldname == 'status') {
|
|
field.fieldtype = 'Select'
|
|
field.options = leadStatuses.value
|
|
field.prefix = getLeadStatus(lead.status).color
|
|
}
|
|
|
|
if (field.fieldtype === 'Table') {
|
|
lead[field.fieldname] = []
|
|
}
|
|
})
|
|
})
|
|
})
|
|
})
|
|
},
|
|
})
|
|
|
|
const lead = reactive({
|
|
salutation: '',
|
|
first_name: '',
|
|
last_name: '',
|
|
email: '',
|
|
mobile_no: '',
|
|
gender: '',
|
|
organization: '',
|
|
website: '',
|
|
no_of_employees: '',
|
|
territory: '',
|
|
annual_revenue: '',
|
|
industry: '',
|
|
status: '',
|
|
lead_owner: '',
|
|
})
|
|
|
|
const createLead = createResource({
|
|
url: 'frappe.client.insert',
|
|
makeParams(values) {
|
|
return {
|
|
doc: {
|
|
doctype: 'CRM Lead',
|
|
...values,
|
|
},
|
|
}
|
|
},
|
|
})
|
|
|
|
const leadStatuses = computed(() => {
|
|
let statuses = statusOptions('lead')
|
|
if (!lead.status) {
|
|
lead.status = statuses?.[0]?.value
|
|
}
|
|
return statuses
|
|
})
|
|
|
|
function createNewLead() {
|
|
if (lead.website && !lead.website.startsWith('http')) {
|
|
lead.website = 'https://' + lead.website
|
|
}
|
|
|
|
createLead.submit(lead, {
|
|
validate() {
|
|
error.value = null
|
|
if (!lead.first_name) {
|
|
error.value = __('First Name is mandatory')
|
|
return error.value
|
|
}
|
|
if (lead.annual_revenue) {
|
|
if (typeof lead.annual_revenue === 'string') {
|
|
lead.annual_revenue = lead.annual_revenue.replace(/,/g, '')
|
|
} else if (isNaN(lead.annual_revenue)) {
|
|
error.value = __('Annual Revenue should be a number')
|
|
return error.value
|
|
}
|
|
}
|
|
if (lead.mobile_no && isNaN(lead.mobile_no.replace(/[-+() ]/g, ''))) {
|
|
error.value = __('Mobile No should be a number')
|
|
return error.value
|
|
}
|
|
if (lead.email && !lead.email.includes('@')) {
|
|
error.value = __('Invalid Email')
|
|
return error.value
|
|
}
|
|
if (!lead.status) {
|
|
error.value = __('Status is required')
|
|
return error.value
|
|
}
|
|
isLeadCreating.value = true
|
|
},
|
|
onSuccess(data) {
|
|
capture('lead_created')
|
|
isLeadCreating.value = false
|
|
show.value = false
|
|
router.push({ name: 'Lead', params: { leadId: data.name } })
|
|
updateOnboardingStep('create_first_lead', true, false, () => {
|
|
localStorage.setItem('firstLead' + user, data.name)
|
|
})
|
|
},
|
|
onError(err) {
|
|
isLeadCreating.value = false
|
|
if (!err.messages) {
|
|
error.value = err.message
|
|
return
|
|
}
|
|
error.value = err.messages.join('\n')
|
|
},
|
|
})
|
|
}
|
|
|
|
const showQuickEntryModal = defineModel('quickEntry')
|
|
|
|
function openQuickEntryModal() {
|
|
showQuickEntryModal.value = true
|
|
nextTick(() => {
|
|
show.value = false
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
Object.assign(lead, props.defaults)
|
|
if (!lead.lead_owner) {
|
|
lead.lead_owner = getUser().name
|
|
}
|
|
if (!lead.status && leadStatuses.value[0]?.value) {
|
|
lead.status = leadStatuses.value[0].value
|
|
}
|
|
})
|
|
</script>
|