fix 开业营运方案筹备人为null

This commit is contained in:
shuo.wang
2024-12-20 18:07:58 +08:00
parent 9e75be5034
commit 9d81c34ad4
2 changed files with 8 additions and 1 deletions

View File

@@ -51,7 +51,13 @@
op.result_type AS resultType,si.supervisor_user_id as supervisorUserId
from xfsg_opening_operation_plan op
join xfsg_shop_info si on si.id = op.shop_id
<if test="request.shopSubStageStatus != null">
left join xfsg_shop_stage_info xssi on xssi.shop_id = si.id
</if>
where 1=1
<if test="request.shopSubStageStatus != null">
xssi.shop_sub_stage_status = #{request.shopSubStageStatus}
</if>
<if test="request.shopName != null and request.shopName != '' ">
AND si.shop_name like concat('%', #{request.shopName}, '%')
</if>

View File

@@ -35,5 +35,6 @@ public class PlanListRequest {
private String curUserId;
@ApiModelProperty(value = "管辖区域",hidden = true)
private List<String> authRegionIds;
@ApiModelProperty("阶段状态")
private Integer shopSubStageStatus;
}