配餐功能营养配餐显示
This commit is contained in:
parent
33fe8c08bb
commit
e2fa131cf9
@ -29,4 +29,7 @@ public class FtCateringVo {
|
|||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String hospitalId;
|
private String hospitalId;
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String foodName;
|
||||||
}
|
}
|
||||||
|
@ -21,8 +21,10 @@
|
|||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<select id="listNewFormatter" resultType="com.ruoyi.system.fantang.domain.FtCateringDao">
|
<select id="listNewFormatter" resultType="com.ruoyi.system.fantang.domain.FtCateringDao">
|
||||||
select a.*, b.name, b.bed_id, c.depart_name, b.hospital_id from ft_catering a LEFT JOIN ft_patient b LEFT
|
select a.*, b.name, b.bed_id, c.depart_name, b.hospital_id, d.name as food_name from ft_catering a
|
||||||
JOIN ft_depart c on b.depart_id = c.depart_id on a.patient_id = b.patient_id where b.off_flag = 0
|
LEFT JOIN ft_nutrition_food d ON d.id = a.number
|
||||||
|
LEFT JOIN ft_patient b
|
||||||
|
LEFT JOIN ft_depart c on b.depart_id = c.depart_id on a.patient_id = b.patient_id where b.off_flag = 0
|
||||||
<if test="name != null and name !=''">and b.name = #{name}</if>
|
<if test="name != null and name !=''">and b.name = #{name}</if>
|
||||||
<if test="bedId != null">and b.bed_id = #{bedId}</if>
|
<if test="bedId != null">and b.bed_id = #{bedId}</if>
|
||||||
<if test="departId != null">and b.depart_id = #{departId}</if>
|
<if test="departId != null">and b.depart_id = #{departId}</if>
|
||||||
@ -31,7 +33,7 @@
|
|||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="getByIdNewFormatter" resultType="com.ruoyi.system.fantang.domain.FtCateringDao">
|
<select id="getByIdNewFormatter" resultType="com.ruoyi.system.fantang.domain.FtCateringDao">
|
||||||
select a.*, b.name, b.bed_id, b.patient_id,c.depart_name, b.hospital_id, c.depart_id
|
select a.*, b.name, b.bed_id, b.patient_id, c.depart_name, b.hospital_id, c.depart_id
|
||||||
from ft_catering a
|
from ft_catering a
|
||||||
LEFT JOIN ft_patient b
|
LEFT JOIN ft_patient b
|
||||||
LEFT JOIN ft_depart c on b.depart_id = c.depart_id on a.patient_id = b.patient_id
|
LEFT JOIN ft_depart c on b.depart_id = c.depart_id on a.patient_id = b.patient_id
|
||||||
|
@ -182,7 +182,7 @@
|
|||||||
<el-table-column label="姓名" align="center" prop="name"/>
|
<el-table-column label="姓名" align="center" prop="name"/>
|
||||||
<el-table-column label="床号" align="center" prop="bedId"/>
|
<el-table-column label="床号" align="center" prop="bedId"/>
|
||||||
<el-table-column label="正餐类型" align="center" prop="type" :formatter="typeFormat" v-if="false"/>
|
<el-table-column label="正餐类型" align="center" prop="type" :formatter="typeFormat" v-if="false"/>
|
||||||
<el-table-column label="配餐号" align="center" prop="number"/>
|
<el-table-column label="营养配餐" align="center" prop="foodName"/>
|
||||||
<el-table-column label="配餐频次" align="center" prop="frequency"/>
|
<el-table-column label="配餐频次" align="center" prop="frequency"/>
|
||||||
<el-table-column label="用法" align="center" prop="cateringUsage"/>
|
<el-table-column label="用法" align="center" prop="cateringUsage"/>
|
||||||
<el-table-column label="描述" align="center" prop="cateringDescribe"/>
|
<el-table-column label="描述" align="center" prop="cateringDescribe"/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user