Browse Source

2025-09-29

recipe_type 改为 bom_type
master
fengyuan_yang 4 months ago
parent
commit
7c451c7a2e
  1. 2
      src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java

2
src/main/java/com/spring/modules/part/service/impl/PartInformationServiceImpl.java

@ -567,7 +567,7 @@ public class PartInformationServiceImpl extends ServiceImpl<PartInformationMappe
RecipeHeaderEntity checkRecipe = recipeManagementMapper.selectOne(new QueryWrapper<RecipeHeaderEntity>()
.eq("site", recipeHeader.getSite())
.eq("part_no", recipeHeader.getPartNo())
.eq("recipe_type", recipeHeader.getBomType())
.eq("bom_type", recipeHeader.getBomType())
.eq("eng_chg_level", recipeHeader.getEngChgLevel()));
if (checkRecipe == null) {
recipeManagementMapper.saveRecipeHeader(recipeHeader);

Loading…
Cancel
Save