fix bug of rancher plan id

This commit is contained in:
2025-09-25 12:55:08 +03:30
parent a44be5bbc4
commit b3d2da6036

View File

@@ -47,14 +47,13 @@ def quota_incentive_plans_info(quota: Quota, rancher: Rancher) -> typing.Any:
).filter(rancher=rancher, livestock_type=plan.livestock_type)
incentive_plans_data = {
'id': rancher_plan.first().allowed_quantity if rancher_plan.exists() else None,
'id': plan.incentive_plan.id,
'name': plan.incentive_plan.name,
'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_license_count': rancher_plan.first().allowed_quantity if rancher_plan else 0,
"incentive_plan": plan.incentive_plan.id
}
incentive_plans_list.append(incentive_plans_data)