|
@@ -106,11 +106,11 @@ public interface ApsProcessOperationDao extends BaseMapper<ApsProcessOperationDo
|
|
List<ApsProcessOperationProcessEquDo> getNextProcessOperationEqusByNextIds(@Param("nextIds") String nextIds);
|
|
List<ApsProcessOperationProcessEquDo> getNextProcessOperationEqusByNextIds(@Param("nextIds") String nextIds);
|
|
|
|
|
|
@Select({" <script>",
|
|
@Select({" <script>",
|
|
- "update aps_work_in_progress_inventory set WORKINPROCESSSTATUS='备料中',PLANMATERIALID=null where DELETED='0' and BLANKBATCHNUMBER in",
|
|
|
|
|
|
+ "update aps_work_in_progress_inventory set WORKINPROCESSSTATUS='备料中',PLANMATERIALID=null where DELETED='0' and PROCESSOPERATIONEQUID=#{processoperationequid} and BLANKBATCHNUMBER in",
|
|
" <foreach collection=\"blankbatchnumbers\" item=\"blankbatchnumber\" index=\"index\" open=\"(\" close=\")\" separator=\",\"> ",
|
|
" <foreach collection=\"blankbatchnumbers\" item=\"blankbatchnumber\" index=\"index\" open=\"(\" close=\")\" separator=\",\"> ",
|
|
" #{blankbatchnumbers}",
|
|
" #{blankbatchnumbers}",
|
|
"</foreach>",
|
|
"</foreach>",
|
|
"</script>"})
|
|
"</script>"})
|
|
- void updateProgressInventory(@Param("blankbatchnumbers") List<String> blankbatchnumbers);
|
|
|
|
|
|
+ void updateProgressInventory(@Param("blankbatchnumbers") List<String> blankbatchnumbers, @Param("processoperationequid") String processoperationequid);
|
|
|
|
|
|
}
|
|
}
|