2

如何在 Django 项目的 admin.py 中使用此代码? http://djangosnippets.org/snippets/2834/

我不知道如何将此功能添加到我的 admin.ModelAdmin 类

from django.core.exceptions import PermissionDenied
from django.http import HttpResponse
from pyExcelerator import *
from StringIO import StringIO


def export_as_xls(modeladmin, request, queryset):
    """
    Generic xls export admin action.
    """
    if not request.user.is_staff:
        raise PermissionDenied
    opts = modeladmin.model._meta

    wb = Workbook()
    ws0 = wb.add_sheet('0')
    col = 0
    field_names = []
    # write header row
    for field in opts.fields:
        ws0.write(0, col, field.name)
        field_names.append(field.name)
        col = col + 1

    row = 1
    # Write data rows
    for obj in queryset:
        col = 0
        for field in field_names:
            val = unicode(getattr(obj, field)).strip()
            ws0.write(row, col, val)
            col = col + 1
        row = row + 1   

    f = StringIO()
    wb.save(f)
    f.seek(0)
    response = HttpResponse(f.read(), mimetype='application/ms-excel')
    response['Content-Disposition'] = 'attachment; filename=%s.xls' % unicode(opts).replace('.', '_')
    return response

export_as_xls.short_description = "Export selected objects to XLS"

我尝试了不同的解决方案,但未能

4

2 回答 2

3

让我们说名为的片段actions.py,然后在admin.py做:

from myproject.actions import export_as_xls

class MyAdmin(admin.ModelAdmin):
    actions = [export_as_xls]

片段中也提到了您必须如何使用它。

于 2013-02-01T20:12:14.833 回答
1

在站点范围内添加它

from django.contrib import admin

admin.site.add_action(export_as_xls)
于 2017-12-12T04:55:10.163 回答