{% extends "admin/base_site.html" %} {% load i18n admin_urls import_export_tags %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block extrahead %}{{ block.super }} {{ form.media }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

📈 Export Parts Data

📋 Export Options

💰 Pricing Data:
Export current prices, master price list status, and basic part information
📊 Complete Data:
Export all part information including descriptions, images, and vehicle compatibility
🔧 Custom Format:
Choose CSV, Excel, or JSON format for your specific needs
{% csrf_token %}
{% for field in form %}
{% if field.name == 'file_format' %}
CSV: Best for spreadsheet applications and import back
XLSX: Excel format with better formatting
JSON: For technical/API integration use
{% endif %} {% if field.name == 'resource' %}
PartPricingExportResource: Pricing data only (recommended for price updates)
PartBulkDataResource: Complete part information
{% endif %}
{{ field }} {% if field.errors %}
{{ field.errors|join:", " }}
{% endif %}
{% endfor %}

💰 Pricing Export Format

Boodmo ID | Part Name | Part Number | Brand | Current MRP (₹) | In Master Price List | Pack Quantity | HSN Code | GST % | Last Price Update
Perfect for price updates - modify prices and import back

📊 Complete Data Export

Boodmo ID | Part Name | Part Number | Alternative Numbers | Brand | Part Class | Category | MRP | Master List | Pack Qty | HSN | GST | Custom Images | Description
Complete part catalog for analysis and reporting

💡 Export Tips & Best Practices

📋 For Price Updates

  • Use PartPricingExportResource
  • Export as CSV format
  • Modify only the pricing columns
  • Keep Boodmo ID unchanged

📊 For Analysis

  • Use PartBulkDataResource
  • XLSX format for better readability
  • Includes all part information
  • Great for reports and inventory

🔧 Technical Use

  • JSON format for APIs
  • Structured data format
  • Easy integration with systems
  • Includes nested relationships
{% if current_filters %}

🔍 Active Filters

Export will include only the filtered data from your current view.

To export all data, clear filters first from the main Parts list.
{% endif %}
{% endblock %}