1
0
forked from test/crm

fix: changed Module name from CRM to FCRM

This commit is contained in:
Shariq Ansari 2023-09-13 19:42:09 +05:30
parent 61f3ea5e17
commit 2b4feacf6e
45 changed files with 13 additions and 13 deletions

View File

@ -120,7 +120,7 @@
"links": [],
"modified": "2023-08-30 15:39:46.613734",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "CRM Call Log",
"naming_rule": "By fieldname",
"owner": "Administrator",

View File

@ -75,7 +75,7 @@
"links": [],
"modified": "2023-08-25 19:19:27.813526",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "CRM Contacts",
"owner": "Administrator",
"permissions": [],

View File

@ -23,7 +23,7 @@
"links": [],
"modified": "2023-07-24 19:40:31.980882",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "CRM Industry",
"naming_rule": "By fieldname",
"owner": "Administrator",

View File

@ -258,7 +258,7 @@
"links": [],
"modified": "2023-08-25 19:21:22.778067",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "CRM Lead",
"naming_rule": "By \"Naming Series\" field",
"owner": "Administrator",

View File

@ -30,7 +30,7 @@
"links": [],
"modified": "2023-07-24 19:48:09.371379",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "CRM Lead Source",
"naming_rule": "By fieldname",
"owner": "Administrator",

View File

@ -42,7 +42,7 @@
],
"modified": "2023-08-28 11:48:42.100802",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "CRM Note",
"owner": "Administrator",
"permissions": [

View File

@ -53,7 +53,7 @@
"links": [],
"modified": "2023-08-17 22:21:00.606384",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "Twilio Agents",
"naming_rule": "By fieldname",
"owner": "Administrator",

View File

@ -71,7 +71,7 @@
"links": [],
"modified": "2023-08-28 00:44:24.942914",
"modified_by": "Administrator",
"module": "CRM",
"module": "FCRM",
"name": "Twilio Settings",
"owner": "Administrator",
"permissions": [

View File

@ -1 +1 @@
CRM
FCRM

View File

@ -174,7 +174,7 @@ const props = defineProps({
const showNoteModal = ref(false)
const callLog = createResource({
url: 'crm.crm.doctype.crm_call_log.crm_call_log.get_call_log',
url: 'crm.fcrm.doctype.crm_call_log.crm_call_log.get_call_log',
auto: true,
cache: ['callLog', props.callLogId],
params: {
@ -219,7 +219,7 @@ async function updateNote(_note) {
}
function createLead() {
call('crm.crm.doctype.crm_call_log.crm_call_log.create_lead_from_call_log', {
call('crm.fcrm.doctype.crm_call_log.crm_call_log.create_lead_from_call_log', {
call_log: callLog.data,
}).then((d) => {
if (d) {

View File

@ -404,7 +404,7 @@ const props = defineProps({
})
const deal = createResource({
url: 'crm.crm.doctype.crm_lead.api.get_lead',
url: 'crm.fcrm.doctype.crm_lead.api.get_lead',
params: { name: props.dealId },
cache: ['deal', props.dealId],
auto: true,

View File

@ -374,7 +374,7 @@ const props = defineProps({
})
const lead = createResource({
url: 'crm.crm.doctype.crm_lead.api.get_lead',
url: 'crm.fcrm.doctype.crm_lead.api.get_lead',
params: { name: props.leadId },
cache: ['lead', props.leadId],
auto: true,