0

我是 Django 和 Python 的新手,我仍然对如何预填充与多字段相关的查找中的值感到困惑,因为我在Prepopulate tabularinline 中使用来自多字段相关查找的值的问题 是我的模型:

class Product(models.Model):
    product_name= models.CharField(max_length=50)
    price = models.DecimalField(max_digits=10, decimal_places=2, default=Decimal('0.00'))
    tax_per_item = models.DecimalField(max_digits=10, null=True, blank=True, decimal_places=2, default=Decimal('0.00'))
    discount_per_item = models.DecimalField(max_digits=10, null=True, blank=True, decimal_places=2, default=Decimal('0.00'))


class Order(models.Model):
    produks = models.ManyToManyField(Product, verbose_name=u"Kode Produk")
    no_customer = models.ForeignKey(Customer, null=True, blank=True, related_name='%(class)s_kode_cust')

    def order_view(request):
        if 'enter' in request.POST:
            #response to tabular.html template
            return HttpResponseRedirect('/admin/POS/Pemesanan/inline')

class Foo(models.Model):
    product = models.ForeignKey(Product, editable=False)
    pemesanan = models.ForeignKey(Order)
    quantity = models.IntegerField()
    price = models.IntegerField()
    discount = models.IntegerField()
    tax = models.IntegerField()

这是我的管理员:

class PemesananAdmin(admin.ModelAdmin):
fieldsets = (
    ('Customer in Time (Person)', {
        'fields': ('no_customer',),
    }),
    ('Date', {
        'fields' : ('date', 'delivery_date',),
    }),
    ('Order Details', {
        'fields' : ('produks',),
    }),
)
search_fields = ['produks', 'no_customer']
raw_id_fields = ('produks', 'no_customer',)
related_lookup_fields = {
'fk': ['no_customer'],
'm2m': ['produks'],
}
inlines = [
    FooInline,
]

class FooInline(admin.TabularInline):
model = Foo
template = 'admin/POS/Pemesanan/inline/tabular.html'
extra = 0
allow_add = True

这是我的 change_form 覆盖模板:

{% extends "admin/change_form.html" %}
{% block after_field_sets %}{{ block.super }}

<form action="" method="post">
<input type="submit" name="enter" value="Enter" />
</form>
{% endblock %}

但是,仍然没有人能告诉我如何 :(。(如果你请在该页面上回答我的问题)。现在,我对 2 个问题感到困惑:1. 我希望 change_form 中的提交按钮也重定向到 change_form 中同一页面不需要刷新页面(不是 change_list 页面或实际提交)。2.我如何从提交按钮获取相关查找“produks”字段集(manytomany)的实例,以便我可以访问父值(类产品)并预填充全部到 tabularinline(Foo 类或中间类)?

仅供参考,提交按钮位于所有字段集下方。

任何人都请帮助我:(。感谢您的友好回复:)。

4

2 回答 2

0

你的问题是,这

<form action="" method="post">
<input type="submit" name="enter" value="Enter" />
</form>

只会将您的提交按钮发送回您的服务器。表单标签需要围绕每个表单元素。

只需删除:<form action="" method="post"></form> 可能会起作用。

于 2012-06-12T16:08:18.470 回答
0

据我了解,您想显示订单 ( Order) 及其项目 ( Foo)?

我天真的解决方案是:

class Product(models.Model):
   ...

class Order(models.Model):
   products = models.ManyToManyField(Product, through='Item')

class Item(models.Model):
   order = models.ForeignKey(Order)
   product = models.ForeignKey(Product)
   quantity = models.IntegerField()
   ...

管理员可以像这样简单:

class ItemInline(admin.TabularInline):
    model = Item

class OrderAdmin(admin.ModelAdmin):
    inlines = (ItemInline,)

你需要测试一下,因为我不能(实际上)

于 2012-06-12T16:41:41.840 回答