WS 1770: Expand core sampler (again).
1 unresolved thread
1 unresolved thread
Fixes an issue where the core sampler was only getting ancillary products where the product group id was set, which is usually only a subset off all ancillary products in a group. Also adds file records to the sampler output to make linking products easier.
Merge request reports
Activity
assigned to @bfaciane
146 146 :param product_group_id: group id of interest 147 147 :return: 148 148 """ 149 150 149 # get the top level product group information 151 projects = self.table("product_groups") 152 requested = projects.fetch({"product_group_id": product_group_id}) 153 self.save(requested) 150 product_groups = self.table("product_groups") 151 product_group_rows = product_groups.fetch({"product_group_id": product_group_id}) mentioned in commit de160c0a
Please register or sign in to reply