{% extends 'base.html' %} {% load indonesian_filters %} {% block title %}Delete Warehouse - {{ warehouse.name }}{% endblock %} {% block content %}

Delete Warehouse

Cancel
Confirm Warehouse Deletion
⚠️ Warning: This action cannot be undone!

You are about to permanently delete the warehouse and all associated data.

Warehouse Information:
Name: {{ warehouse.name }}
Location: {{ warehouse.location|default:"-" }}
Status: {% if warehouse.is_active %} Active {% else %} Inactive {% endif %}
Data Impact:

Inventory Items: {{ inventory_count }} products stored

Total Products: {{ total_products }} different items

Total Value: {{ total_value|format_rupiah }}

Related Records: Stock movements and inventory history

What happens when you delete this warehouse:

  • The warehouse record will be permanently removed from the database
  • All inventory items in this warehouse will be deleted
  • Stock movements for this warehouse will be removed
  • Historical data will be preserved where possible
  • This action cannot be reversed
Alternative Actions

Instead of deleting, consider these alternatives:

{% endblock %}