diff --git a/apps/product/services/services.py b/apps/product/services/services.py index afef698..d6832f6 100644 --- a/apps/product/services/services.py +++ b/apps/product/services/services.py @@ -48,14 +48,11 @@ def quota_incentive_plans_info(quota: Quota, rancher: Rancher) -> typing.Any: incentive_plans_data = { 'name': plan.incentive_plan.name, - 'heavy_value': plan.heavy_value, - 'light_value': plan.light_value, 'livestock_type': plan.livestock_type.name if plan.livestock_type else "", + 'livestock_type_en': plan.livestock_type.en_name if plan.livestock_type else "", 'livestock_weight_type': plan.livestock_type.weight_type if plan.livestock_type else "", 'quantity_kg': plan.quantity_kg, - 'rancher_plan_statistic': { - f'{rancher_plan.first().livestock_type.en_name}': rancher_plan.first().allowed_quantity - } if rancher_plan else {} + 'rancher_license_count': rancher_plan.first().allowed_quantity if rancher_plan else 0, } incentive_plans_list.append(incentive_plans_data)