This commit is contained in:
jiask 2025-09-12 15:31:11 +08:00
parent 08e38c44d3
commit 36d719a0ce
1 changed files with 2 additions and 1 deletions

View File

@ -175,9 +175,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and mdsr.sale_month = month(curdate())
left join basic_canteen ac on mr.canteen_id = ac.canteen_id
left join basic_stall ass on mr.stall_id = ass.stall_id
left join basic_stall_mealtime bsm on mr.stall_id=bsm.stall_id and mrd.mealtime_type=bsm.mealtime_type
where
mrd.apply_date = #{applyDate}
and mr.recipe_id = #{recipeId}
and mr.recipe_id = #{recipeId} and bsm.if_enable='1'
order by
md.dishes_id asc
</select>