0

我尝试在视图中按年、月显示信息顺序,如何改进获取它的代码?

提示:我正在编写一份按年和月显示销售订单的报告,帮帮我

谢谢。

视图.py

 def ventas_mes_anio(request):
     ventas = Ventas.objects.filter(Fecha_registro__range=["2011-01-01", "2013-12-31"])
     if ventas.is_valid():
         enero = Ventas.objects.filter(Fecha_registro__month=1)
         febrero = Ventas.objects.filter(Fecha_registro__month=2)
         marzo = Ventas.objects.filter(Fecha_registro__month=3)
         abril = Ventas.objects.filter(Fecha_registro__month=4)
         mayo = Ventas.objects.filter(Fecha_registro__month=5)
         junio = Ventas.objects.filter(Fecha_registro__month=6)
         julio = Ventas.objects.filter(Fecha_registro__month=7)
         agosto = Ventas.objects.filter(Fecha_registro__month=8)
         septiembre = Ventas.objects.filter(Fecha_registro__month=9)
         octubre = Ventas.objects.filter(Fecha_registro__month=10)
         noviembre = Ventas.objects.filter(Fecha_registro__month=11)
         diciembre = Ventas.objects.filter(Fecha_registro__month=12)

    return render_to_response('ventasxproductosxmes.html',{'datos':ventas,'enero':enero,'febrero':febrero,'marzo':marzo,'abril':abril,'mayo':mayo,'junio':junio,'julio':julio,'agosto':agosto,'septiembre':septiembre,'octubre':octubre,'noviembre':noviembre,'diciembre':diciembre,},context_instance=RequestContext(request))
4

1 回答 1

0

您可以使用dict月份名称而不是单个月份名称变量。(您的语言环境必须正确设置,month_name 才能使用您的语言)

    import calendar
    months = dict(zip(calendar.month_name[1:], [Ventas.objects.filter(Fecha_registro__month=x) for x in xrange(1,13)]))

然后,您可以简单地返回dictas 上下文。或者,如果您不想更改模板端的任何内容。

ret = {'datos':ventas}
ret.update(months)
return render_to_response('ventasxproductosxmes.html',ret,context_instance=RequestContext(request))
于 2013-05-30T05:25:23.407 回答