2014-12-01 52 views
0

我有一个有N个位置的库存盘点,这个位置需要计数N次,所以我有一个模型用于“位置标题”,另一个用于每个标题的项目列表。Django/Python链和排序查询集

我需要连锁,排序和获得的N项的唯一结果查询集

我有这样的:

loc_id = request.POST['loc_id'] # the Id of my location pivot 
inv_location = InventoryLocations.objects.get(pk=loc_id) # get the location count pivot 
inv_locations = InventoryLocations.objects.filter(location=inv_location.location, 
       inventory=inv_location.inventory) #get all related locations counts 

# At this point i can have N inv_locations 

count_items = [] # list of items in all inventory counts 
for l in inv_locations: 
    items = InventoryDetails.objects.filter(inventory_location = l) # get items of every count 
    count_items.append(items) 

# Now I have all the items counted in the counts_items array, I need to get from this a single 
# list of items Ordered and not repeated  

all_items = chain(count_items) <<< IS THIS CORRECT?? 
sorted_items = sorted(all_items,key=lambda item: item.epc) << THIS GIVE ME ERROR 
unique_items = ??? 

我的车型有:

class InventoryCount(models.Model): 
    ...nothing important 

class InventoryLocation(models.Model): 
    inventory= models.ForeignKey(InventoryCount) 
    location= models.ForeignKey(Location) 
    ... 

class InventoryDetails(models.Model): 
    inventory_location= models.ForeignKey(InventoryLocations) 
    epc = models.CharField(max_length=25, null=True, blank=True) 
    item= models.ForeignKey(Item) 
    ... 

基本上,我需要所有物品清单中的所有物品清单数量按epc排序,并且不重复

我被困在这里,我不知道链是否正确,排序功能给我一个错误,说该项目没有'epc'属性。

帮助PLZ!

+0

你可以添加你的模型plz? – cdvv7788 2014-12-01 16:56:58

回答

1

要解决您的直接问题 - 假设itertools.chain,chain需要多个迭代。使用chain(*count_items)来扩展您的查询集列表。

但是你可以通过使用InventoryDetails.objects.filter(inventory_location__in=inv_locations).order_by('epc').distinct()来节省自己的一些麻烦 - 它会在数据库中进行排序和排序,而不是在视图中进行排序和排序。

+0

在distinct()中的空参数将唯一的所有字段?或者我应该把一个像.distinct('epc')这样的字段? – 2014-12-01 17:10:32

+0

请参阅文档以获取完整详细信息:https://docs.djangoproject.com/en/dev/ref/models/querysets/#django.db.models.query.QuerySet.distinct简短版本,它不区分所有字段 - 每个基础数据库行将只返回一次。你可能不需要它,如果你想每个'epc'只有一次,你可能需要在Python中完成这部分。仅在PostgreSQL上,您可以使用'.distinct('epc')'。 – 2014-12-01 17:52:05