|
| 1 | +--- |
| 2 | +title: Managing Companies |
| 3 | +description: Learn how to manage companies in Django CRM, including company creation, access permissions, list overview, |
| 4 | + searching, filtering, bulk actions, and exporting data. |
| 5 | +--- |
| 6 | + |
| 7 | +# **Managing Companies in Django CRM** |
| 8 | + |
| 9 | +The **Company** object in the [CRM](../index.md) stores information about existing or potential client companies. |
| 10 | +Accurate company data is essential for sales operations, segmentation, and marketing outreach. |
| 11 | +This guide explains how to create companies, import company data, assign managers, |
| 12 | +and filter your company list for efficient sales and marketing work. |
| 13 | + |
| 14 | +--- |
| 15 | + |
| 16 | +## **What Is the Company Object in Django CRM?** |
| 17 | + |
| 18 | +A Company record represents a client or potential client. It includes key business details such as name, |
| 19 | +address, contact details, type, registration number, assigned sales manager, newsletter status, and industry. |
| 20 | +Maintaining accurate company profiles helps sales teams segment markets and manage the sales pipeline. |
| 21 | + |
| 22 | +--- |
| 23 | + |
| 24 | +## **How Companies Are Added to the CRM** |
| 25 | + |
| 26 | +Django CRM supports multiple ways to create or import companies: |
| 27 | + |
| 28 | +### 1. Automatically when creating a deal |
| 29 | + |
| 30 | +If the request contains information about a company and this company is not found in the CRM, |
| 31 | +then when creating a [deal](deals-management.md), the Company record will also be automatically created. |
| 32 | + |
| 33 | +### 2. Manual creation |
| 34 | + |
| 35 | +You can add a company manually by clicking **Add Company** and completing the form. |
| 36 | +Before creating a new company, check whether a **Lead** with the same company name already exists. |
| 37 | + |
| 38 | +> See also: [Managing Leads in CRM](lead-management.md). |
| 39 | +
|
| 40 | +### 3. Import from Excel |
| 41 | + |
| 42 | +To add multiple companies at once: |
| 43 | + |
| 44 | +1. Click **Import**. |
| 45 | +2. Select an Excel file prepared according to the CRM’s import format. |
| 46 | +3. Upload it to create or update company entries. |
| 47 | + |
| 48 | +### 4. Converting a Lead |
| 49 | + |
| 50 | +When converting a Lead to a client, the CRM can automatically create a corresponding Company record. |
| 51 | + |
| 52 | +--- |
| 53 | + |
| 54 | +## **Company Access Permissions** |
| 55 | + |
| 56 | +Access to company records depends on user roles and departments: |
| 57 | + |
| 58 | +- **Sales managers** and **operators** see only companies belonging to their own department. |
| 59 | +- **Company managers** and **super operators** have access to companies across all departments. |
| 60 | + |
| 61 | +If you do not see the company you expect, contact your CRM administrator to review your permissions. |
| 62 | + |
| 63 | +--- |
| 64 | + |
| 65 | +## **Company List View and Table Fields** |
| 66 | + |
| 67 | +All companies are displayed as a sortable table. Most column headers allow ascending/descending sorting. |
| 68 | + |
| 69 | +### **Table Columns** |
| 70 | + |
| 71 | +- **Company name** |
| 72 | +- **Company type** *(distributor, dealer, reseller, customer end competitor)* |
| 73 | +- **Date added** |
| 74 | +- **Assigned sales manager** |
| 75 | +- **Country** |
| 76 | +- **Newsletter recipient status** |
| 77 | +- **Company ID** |
| 78 | +- **Registration number** |
| 79 | + |
| 80 | +These sets of types and industries can be adjusted to match your business specifics. |
| 81 | +Contact your CRM administrator if customization is needed. |
| 82 | + |
| 83 | +--- |
| 84 | + |
| 85 | +## **Newsletter Status Indicators** |
| 86 | + |
| 87 | +The newsletter subscription status is shown as a colored mailbox icon: |
| 88 | + |
| 89 | +- **Red** — The company has not yet received any newsletters. |
| 90 | +- **Turquoise** — The company received newsletters and has not unsubscribed. |
| 91 | +- **Gray** — The company unsubscribed from newsletters. |
| 92 | + |
| 93 | +--- |
| 94 | + |
| 95 | +## **Searching for Companies** |
| 96 | + |
| 97 | +Use the search bar to find companies by: |
| 98 | + |
| 99 | +- Company name |
| 100 | +- Keywords |
| 101 | +- Company ID |
| 102 | + |
| 103 | +Search results update instantly based on your input. |
| 104 | + |
| 105 | +--- |
| 106 | + |
| 107 | +## **Filters for Company Database Management** |
| 108 | + |
| 109 | +Use the filter panel to narrow down the list by: |
| 110 | + |
| 111 | +- Department (based on your role) |
| 112 | +- Presence of linked contact persons |
| 113 | +- Assigned sales manager |
| 114 | +- Last updated date |
| 115 | +- Industry |
| 116 | +- Company type |
| 117 | +- Country |
| 118 | +- Newsletter subscription status |
| 119 | +- VIP status |
| 120 | +- Tags |
| 121 | + |
| 122 | +These filters help you segment companies for marketing, sales follow-up, or reporting. |
| 123 | + |
| 124 | +--- |
| 125 | + |
| 126 | +## **Bulk Actions** |
| 127 | + |
| 128 | +Select one or more companies and use the **Action** drop-down menu to perform group actions: |
| 129 | + |
| 130 | +- **Create mass mailing** (email campaigns) |
| 131 | +- **Set or remove VIP status** |
| 132 | +- **Export selected companies to Excel** |
| 133 | +- **Reassign companies to another sales manager** (role permitting) |
| 134 | + |
| 135 | +Administrators can also transfer selected companies to another manager from this menu. |
| 136 | + |
| 137 | +To transfer a single company along with its Contacts, change the **Owner** field on that company’s page. |
| 138 | + |
| 139 | +--- |
| 140 | + |
| 141 | +## **Creating Mass Mailings** |
| 142 | + |
| 143 | +There are two ways to launch a mass mailing: |
| 144 | + |
| 145 | +- From the **Action** menu (for selected companies) |
| 146 | +- Via the **Make massmail** button (for a large group) |
| 147 | + |
| 148 | +--- |
| 149 | + |
| 150 | +## **Exporting Companies** |
| 151 | + |
| 152 | +You can export company data using: |
| 153 | + |
| 154 | +- **Export** (for selected rows) |
| 155 | +- **Export All** — exports the entire company database to Excel |
| 156 | + |
| 157 | +Users can only export companies assigned to them. |
| 158 | + |
| 159 | +--- |
| 160 | + |
| 161 | +## Related Topics |
| 162 | + |
| 163 | +- [Managing Commercial Requests in CRM](commercial-requests-management.md) |
| 164 | +- [CRM Email Marketing](../features/massmail-app-features.md) |
0 commit comments