我正在使用Odoo11中的Recipe应用程序。
在应用程序中,我有一个模型,其中包含在TreeView
上显示的字段Recipe,Ingredients和create_date。
我想过滤这些字段,以便对于所有相同的配方(例如煎饼),将从最新创建的日期开始过滤唯一的配料。
例如:
我现在拥有的TreeView
是:
Recipe ingredient create_date
pancake flour d/m/y-h:m:s
pancake flour d/m/y-h:m:s
pancake egg d/m/y-h:m:s
pancake egg d/m/y-h:m:s
pancake egg d/m/y-h:m:s
pancake butter d/m/y-h:m:s
食谱中有多个成分条目(面粉,鸡蛋):
煎饼
我想要过滤出重复的成分,并且仅查看具有最新create_date
的成分,如下所示:
Recipe ingredient create_date
pancake flour d/m/y-h:m:s
pancake egg d/m/y-h:m:s
pancake butter d/m/y-h:m:s
请注意,我不想删除重复的成分。
这可能吗?如果可以,怎么办?