@ -191,6 +191,10 @@ public class SubjectFeeDetailController extends BladeController {
if ("辅助人员材料费用".equals(subjectName)) {
iterator.remove(); // 只有迭代器的 remove 才安全
}
// 如果“erp作业中心材料费用”,删除
if ("erp作业中心材料费用".equals(subjectName)) {
return R.data(list);
@ -25,6 +25,7 @@
<result column="REMARKS" property="remarks"/>
<result column="STATUS" property="status"/>
<result column="IS_DELETED" property="isDeleted"/>
<result column="JC_ID" property="jcId"/>
</resultMap>
@ -35,6 +36,9 @@
<if test="param2.month != null and param2.month != ''">
and MONTH = #{param2.month}
</if>
<if test="param2.jcId != null and param2.jcId != ''">
and JC_ID = #{param2.jcId}
</where>
</select>