Django - 使用2个嵌套外键复制模型实例

时间:2015-02-12 02:49:10

标签: python django django-admin

我是django的新手,我有一个调查应用程序,其中管理员创建有问题的调查,问题有选择...我已将save_as = True添加到我的调查管理员,但是当我复制调查时,问题出现在副本中,但不是选择..

class SurveyAdmin(admin.ModelAdmin):
    save_as = True
    prepopulated_fields = { "slug": ("name",),}
    fields = ['name', 'insertion', 'pub_date', 'description', 'external_survey_url', 'minutes_allowed', 'slug']
    inlines = [QuestionInline, SurveyImageInLine]

我试图在save_model方法中使用deepcopy,但得到了 " NOT NULL约束失败:assessment_question.survey_id",从回溯中,似乎在尝试保存时问题的pk为None。有没有更好的方法通过管理员复制调查或如何修复我的深层复制应用程序?

def save_model(self, request, obj, form, change):
    if '_saveasnew' in request.POST:
        new_obj = deepcopy(obj)
        new_obj.pk = None
        new_obj.save()

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

完全放弃了save_as并编写了一个管理操作,可以正确复制我需要的所有字段......

actions = ['duplicate']

from copy import deepcopy

def duplicate(self, request, queryset):
    for obj in queryset:
        obj_copy = deepcopy(obj)
        obj_copy.id = None
        obj_copy.save()

        for question in obj.question_set.all():
            question_copy = deepcopy(question)
            question_copy.id = None
            question_copy.save()
            obj_copy.question_set.add(question_copy)

            for choice in question.choice_set.all():
                choice_copy = deepcopy(choice)
                choice_copy.id = None
                choice_copy.save()
                question_copy.choice_set.add(choice_copy)
        obj_copy.save()