Pharmacy Inventory Management
Comprehensive medication inventory tracking and management system
Inventory Filters
Inventory Items {{ inventory_items.count|default:0 }} items
| Medication | NDC | Lot Number | Quantity | Unit Cost | Total Value | Expiration | Location | Status | Actions | |
|---|---|---|---|---|---|---|---|---|---|---|
|
{{ item.medication.name }}
{{ item.medication.generic_name }} {% if item.medication.controlled_substance %} Controlled {% endif %} |
{{ item.ndc_number }} | {{ item.lot_number }} |
{{ item.quantity_on_hand }} {{ item.unit_of_measure }}
Min: {{ item.minimum_quantity }} |
${{ item.unit_cost|floatformat:2 }} | ${{ item.total_value|floatformat:2 }} |
{{ item.expiration_date|date:"M d, Y" }}
{% if item.days_until_expiration <= 30 %}
{{ item.days_until_expiration }} days {% endif %} |
{{ item.storage_location|title }} | {% if item.is_expired %} Expired {% elif item.is_expiring_soon %} Expiring Soon {% elif item.is_low_stock %} Low Stock {% elif item.is_out_of_stock %} Out of Stock {% else %} In Stock {% endif %} |
|
|
|
No inventory items found Add First Item |
||||||||||
Bulk Actions
0 items selected
Recent Inventory Transactions
| Time | Type | Medication | Quantity | User | Reference |
|---|---|---|---|---|---|
| {{ transaction.timestamp|date:"H:i" }} | {{ transaction.transaction_type|title }} | {{ transaction.medication.name }} | {% if transaction.transaction_type == 'dispensed' or transaction.transaction_type == 'adjustment_out' %} -{{ transaction.quantity }} {% else %} +{{ transaction.quantity }} {% endif %} {{ transaction.unit_of_measure }} | {{ transaction.user.get_full_name }} | {{ transaction.reference_number|default:"-" }} |
| No recent transactions | |||||