我正在将相当复杂的自制表单转换为Django中的ModelForm。由于这种形式已在生产中使用了一年多,因此,我试图消除尽可能多的陷阱,并为用户提供额外的功能。

我有三种模型:TransactionCommissionUnit_typeTransaction是我使用的中心模型,并且具有Unit_typeCommission源自Unit_typebase_type

BASE_CHOICES = (
    ('R', 'rent'),
    ('S', 'sale'),
)

class Unit_type(models.Model):
    unit_name = models.CharField(max_length=250)
    base_type = models.CharField(max_length=1, choices=BASE_CHOICES)


class Commission(models.Model):
    commission_name = models.CharField(max_length=250)
    base_type = models.CharField(max_length=1, choices=BASE_CHOICES)


class Transaction(models.Models):
    unit_type = models.ForeignKey(Unit_type)
    commission = models.ForeignKey(Commission, blank=True, null=True)

当我显示表单时,我可以使用以下命令仅显示与Commission具有相同base_type的Unit_type:
class TransactionForm(forms.ModelForm):

    class Meta:
        model = Transaction

    def __init__(self, unit_type, *args, **kwargs):
        super(TransactionForm, self).__init__(*args, **kwargs)

        self.fields['commission'].queryset = Commission_type.objects.filter(base_type=unit_type.base_type)

我总是在 View 中将表单创建为TransactionForm(instance=transaction, unit_type=unit_type)

现在,在MySQL中进行的简单查询使我了解到,根据所选的Commission或多或少地使用了一些Unit:
SELECT `unit_type_id`, `commission_id`, COUNT(*)
FROM `app_transaction`
GROUP BY `unit_type_id`, `commission_id`

结果:
+----------------+-----------------+------------+
|  unit_type_id  |  commission_id  |  COUNT(*)  |
+----------------+-----------------+------------+
|             1  |              1  |       367  |
|             1  |              3  |         2  |
|             1  |              4  |        26  |
|             2  |              1  |       810  |
|             2  |              3  |        54  |
|             2  |              4  |       865  |
|             3  |              6  |      2065  |
|             3  |              7  |        16  |
|             3  |              8  |        79  |
+----------------+-----------------+------------+

现在,我想根据上述计数以self.fields['commission']排序我的查询集。我已经尝试在values()中使用__init__():
def __init__(self, unit, *args, **kwargs):
        super(TransactionForm, self).__init__(*args, **kwargs)

        transactions = Transaction.objects.filter(unit_type=unit)
        transactions = transactions.values('commission').annotate(Count('commission)).order_by('-commission')

但是现在我被困在如何在我的查询集中保持这个顺序。有没有一种简单的方法可以根据此ValuesQuerySet执行新的查询集?还是我看到这是完全错误的?

最佳答案

您只需要对计数使用kwarg,并在order_by中使用相同的kwarg

transactions = transactions.annotate(commission_count=Count('commission)).order_by('-commission_count')

https://docs.djangoproject.com/en/1.5/topics/db/aggregation/#cheat-sheet

关于django - 基于计数的ModelForm订单字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18352662/

10-11 01:46