diff --git a/InvenTree/company/api.py b/InvenTree/company/api.py
index 8b777dd947..4231dc8434 100644
--- a/InvenTree/company/api.py
+++ b/InvenTree/company/api.py
@@ -43,9 +43,10 @@ class CompanyList(generics.ListCreateAPIView):
     ]
 
     filter_fields = [
-        'name',
         'is_customer',
+        'is_manufacturer',
         'is_supplier',
+        'name',
     ]
 
     search_fields = [
diff --git a/InvenTree/company/migrations/0016_auto_20200412_2330.py b/InvenTree/company/migrations/0016_auto_20200412_2330.py
new file mode 100644
index 0000000000..cec6f5a219
--- /dev/null
+++ b/InvenTree/company/migrations/0016_auto_20200412_2330.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.10 on 2020-04-12 23:30
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('company', '0015_company_is_manufacturer'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='company',
+            name='is_manufacturer',
+            field=models.BooleanField(default=False, help_text='Does this company manufacture parts?'),
+        ),
+    ]
diff --git a/InvenTree/company/models.py b/InvenTree/company/models.py
index f1610e5687..f99c855c77 100644
--- a/InvenTree/company/models.py
+++ b/InvenTree/company/models.py
@@ -112,7 +112,7 @@ class Company(models.Model):
 
     is_supplier = models.BooleanField(default=True, help_text=_('Do you purchase items from this company?'))
 
-    is_manufacturer = models.BooleanField(default=True, help_text=_('Does this company manufacture parts?'))
+    is_manufacturer = models.BooleanField(default=False, help_text=_('Does this company manufacture parts?'))
 
     def __str__(self):
         """ Get string representation of a Company """
diff --git a/InvenTree/company/serializers.py b/InvenTree/company/serializers.py
index 935712a180..218201179e 100644
--- a/InvenTree/company/serializers.py
+++ b/InvenTree/company/serializers.py
@@ -49,9 +49,10 @@ class CompanySerializer(InvenTreeModelSerializer):
             'contact',
             'link',
             'image',
-            'notes',
             'is_customer',
+            'is_manufacturer',
             'is_supplier',
+            'notes',
             'part_count'
         ]
 
diff --git a/InvenTree/company/templates/company/index.html b/InvenTree/company/templates/company/index.html
index 0c5e3a6931..2bdc936db8 100644
--- a/InvenTree/company/templates/company/index.html
+++ b/InvenTree/company/templates/company/index.html
@@ -46,7 +46,21 @@ InvenTree | {% trans "Supplier List" %}
                 title: '{% trans "Supplier" %}',
                 sortable: true,
                 formatter: function(value, row, index, field) {
-                    return imageHoverIcon(row.image) + renderLink(value, row.url);
+                    var html = imageHoverIcon(row.image) + renderLink(value, row.url);
+
+                    if (row.is_customer) {
+                        html += `<span title='Customer' class='fas fa-user label-right'></span>`;
+                    }
+                    
+                    if (row.is_manufacturer) {
+                        html += `<span title='Manufacturer' class='fas fa-industry label-right'></span>`;
+                    }
+                    
+                    if (row.is_supplier) {
+                        html += `<span title='Supplier' class='fas fa-building label-right'></span>`;
+                    }
+
+                    return html;
                 }
             },
             {
diff --git a/InvenTree/company/urls.py b/InvenTree/company/urls.py
index 65eba73f84..c00d1e7a4b 100644
--- a/InvenTree/company/urls.py
+++ b/InvenTree/company/urls.py
@@ -35,7 +35,7 @@ company_urls = [
 
     url(r'', views.CompanyIndex.as_view(), name='company-index'),
 
-    # Redirect any other patterns
+    # Redirect any other patterns to the 'company' index which displays all companies
     url(r'^.*$', RedirectView.as_view(url='', permanent=False), name='company-index'),
 ]
 
diff --git a/InvenTree/templates/navbar.html b/InvenTree/templates/navbar.html
index e44107e2d1..202fb2a0ce 100644
--- a/InvenTree/templates/navbar.html
+++ b/InvenTree/templates/navbar.html
@@ -10,8 +10,14 @@
       <li><a href="{% url 'part-index' %}"><span class='fas fa-shapes icon-header'></span> {% trans "Parts" %}</a></li>
       <li><a href="{% url 'stock-index' %}"><span class='fas fa-boxes icon-header'></span>{% trans "Stock" %}</a></li>
       <li><a href="{% url 'build-index' %}"><span class='fas fa-tools icon-header'></span>{% trans "Build" %}</a></li>
-      <li><a href="{% url 'company-index' %}"><span class='fas fa-industry icon-header'></span>{% trans "Suppliers" %}</a></li>
-      <li><a href="{% url 'po-index' %}"><span class='fas fa-shopping-cart icon-header'></span>{% trans "Orders" %}</a></li>
+      <li class='nav navbar-nav'>
+        <a class='dropdown-toggle' data-toggle='dropdown' href='#'><span class='fas fa-shopping-cart icon-header'></span>{% trans "Buy" %}</a>
+        <ul class='dropdown-menu'>
+          <li><a href="{% url 'company-index' %}"><span class='fas fa-building icon-header'></span>{% trans "Suppliers" %}</a></li>
+          <li><a href="{% url 'company-index' %}"><span class='fas fa-industry icon-header'></span>{% trans "Manufacturers" %}</a></li>
+          <li><a href="{% url 'po-index' %}"><span class='fas fa-list icon-header'></span>{% trans "Purchase Orders" %}</a></li>
+        </ul>
+      </li>
     </ul>
     <ul class="nav navbar-nav navbar-right">
         {% include "search_form.html" %}