diff --git a/InvenTree/InvenTree/static/script/inventree/inventree.js b/InvenTree/InvenTree/static/script/inventree/inventree.js index 4f119b6118..04539c6d96 100644 --- a/InvenTree/InvenTree/static/script/inventree/inventree.js +++ b/InvenTree/InvenTree/static/script/inventree/inventree.js @@ -45,6 +45,7 @@ function inventreeDocReady() { // Callback to launch the 'Database Stats' window $('#launch-stats').click(function() { launchModalForm("/stats/", { + no_post: true, }); }); } diff --git a/InvenTree/InvenTree/views.py b/InvenTree/InvenTree/views.py index 2fcef3b76a..a161d2b103 100644 --- a/InvenTree/InvenTree/views.py +++ b/InvenTree/InvenTree/views.py @@ -16,7 +16,8 @@ from django.views import View from django.views.generic import UpdateView, CreateView from django.views.generic.base import TemplateView -from part.models import Part +from part.models import Part, PartCategory +from stock.models import StockLocation, StockItem from common.models import InvenTreeSetting from .forms import DeleteForm, EditUserForm, SetPasswordForm @@ -544,4 +545,27 @@ class DatabaseStatsView(AjaxView): """ View for displaying database statistics """ ajax_template_name = "stats.html" - ajax_form_title = _("Database Statistics") \ No newline at end of file + ajax_form_title = _("Database Statistics") + + def get_context_data(self, **kwargs): + + ctx = {} + + # Part stats + ctx['part_count'] = Part.objects.count() + ctx['part_cat_count'] = PartCategory.objects.count() + + # Stock stats + ctx['stock_item_count'] = StockItem.objects.count() + ctx['stock_loc_count'] = StockLocation.objects.count() + + """ + TODO: Other ideas for database metrics + + - "Popular" parts (used to make other parts?) + - Most ordered part + - Most sold part + - etc etc etc + """ + + return ctx \ No newline at end of file diff --git a/InvenTree/templates/stats.html b/InvenTree/templates/stats.html index 38520bfb01..caa2a44cee 100644 --- a/InvenTree/templates/stats.html +++ b/InvenTree/templates/stats.html @@ -2,4 +2,27 @@ {% load inventree_extras %} {% load i18n %} -HELLO WORLD \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + +
{% trans "Parts" %}
{% trans "Parts" %}{{ part_count }}
{% trans "Part Categories" %}{{ part_cat_count }}
{% trans "Stock Items" %}
{% trans "Stock Items" %}{{ stock_item_count }}
{% trans "Stock Locations" %}{{ stock_loc_count }}
\ No newline at end of file