我正在寻找一种基于所选字段在管理员中自动填充某些字段的方法。我在内联中有一个外键字段,并希望实时显示表单中当前所选对象的一些数据。
我的代码的简化版本用于举例说明我正在做的事情:
# models.py
class Product(models.Model):
code = models.CharField(max_length=6, default=0)
name = models.CharField(max_length=25, null=True, blank=True)
class Provider(models.Model):
code = models.CharField(max_length=6, default=0)
name = models.CharField(max_length=25, null=True, blank=True)
address = models.CharField(max_length=25, null=True, blank=True)
class ProductProvider(models.Model):
product = models.ForeignKey(Product)
provider = models.ForeignKey(Provider)
cost = models.DecimalField(max_digits=6, decimal_places=2, default=0)
我的管理课程如下:
# admin.py
class ProductProviderInline(admin.TabularInline):
model = ProductProvider
fk_name = 'product'
fields = ('provider', 'cost', 'provider_address')
readonly_fields = ('provider_address',)
extra = 1
def provider_address(self, obj):
return obj.provider.address
@admin.register(Product)
class ProductAdmin(admin.ModelAdmin):
model = Product
list_display = ('code', 'name')
inlines = [ProductProviderInline]
@admin.register(Provider)
class ProviderAdmin(admin.ModelAdmin):
model = Provider
在这个例子中,一旦选择了Provider,我想更新readonly字段address
,而不必保存对象。
我已经尝试了大多数“自动完成”第三方应用程序,遗憾的是对我来说,大多数都专注于自动完成选择字段,而不是基于选择自动填充表单。
我确定这需要一些Javascript / Ajax。有没有第三方应用程序。涵盖这个用例?我的情况没有,有关如何实现这一点的任何建议吗?