Skip to content

Commit

Permalink
fix: changed Module name from CRM to FCRM
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Sep 13, 2023
1 parent 61f3ea5 commit 2b4feac
Show file tree
Hide file tree
Showing 45 changed files with 13 additions and 13 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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": [],
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion crm/modules.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CRM
FCRM
4 changes: 2 additions & 2 deletions frontend/src/pages/CallLog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Deal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Lead.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2b4feac

Please sign in to comment.