Add BlackRoad General CRM objects and fields

- Added 5 custom objects: Lead__c, Deal__c, Company__c, Activity__c, Task__c
- Added fields for each object (email, phone, status, stage, amount, etc.)
- Created tabs for navigation
- Updated permission set with new object access
- Registered as CRM_Product__c: GENERAL_CRM

Objects included:
- Lead__c: Email, Phone, Company Name, Job Title, Lead Status, Lead Source, Notes
- Deal__c: Company, Amount, Stage, Close Date, Probability, Lead, Description
- Company__c: Website, Phone, Industry, Company Size, Annual Revenue, Status
- Activity__c: Type, Date, Duration, Subject, Notes, Outcome (linked to deals/leads)
- Task__c: Status, Priority, Due Date, Description (linked to deals/leads/companies)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alexa Louise
2026-01-11 17:41:02 -06:00
parent eee13afebb
commit f1f0148009
58 changed files with 720 additions and 0 deletions

View File

@@ -75,4 +75,50 @@
<object>Compliance_Log__c</object>
<viewAllRecords>true</viewAllRecords>
</objectPermissions>
<!-- General CRM Objects -->
<objectPermissions>
<allowCreate>true</allowCreate>
<allowDelete>true</allowDelete>
<allowEdit>true</allowEdit>
<allowRead>true</allowRead>
<modifyAllRecords>true</modifyAllRecords>
<object>Lead__c</object>
<viewAllRecords>true</viewAllRecords>
</objectPermissions>
<objectPermissions>
<allowCreate>true</allowCreate>
<allowDelete>true</allowDelete>
<allowEdit>true</allowEdit>
<allowRead>true</allowRead>
<modifyAllRecords>true</modifyAllRecords>
<object>Deal__c</object>
<viewAllRecords>true</viewAllRecords>
</objectPermissions>
<objectPermissions>
<allowCreate>true</allowCreate>
<allowDelete>true</allowDelete>
<allowEdit>true</allowEdit>
<allowRead>true</allowRead>
<modifyAllRecords>true</modifyAllRecords>
<object>Company__c</object>
<viewAllRecords>true</viewAllRecords>
</objectPermissions>
<objectPermissions>
<allowCreate>true</allowCreate>
<allowDelete>true</allowDelete>
<allowEdit>true</allowEdit>
<allowRead>true</allowRead>
<modifyAllRecords>true</modifyAllRecords>
<object>Activity__c</object>
<viewAllRecords>true</viewAllRecords>
</objectPermissions>
<objectPermissions>
<allowCreate>true</allowCreate>
<allowDelete>true</allowDelete>
<allowEdit>true</allowEdit>
<allowRead>true</allowRead>
<modifyAllRecords>true</modifyAllRecords>
<object>Task__c</object>
<viewAllRecords>true</viewAllRecords>
</objectPermissions>
</PermissionSet>