|
|
@ -2,9 +2,11 @@ package org.jeecg.modules.demo.base.service.impl; |
|
|
|
|
|
|
|
|
|
|
|
import org.jeecg.modules.demo.base.entity.ZyClothsComponent; |
|
|
|
import org.jeecg.modules.demo.base.entity.ZyClothsComponent; |
|
|
|
import org.jeecg.modules.demo.base.entity.ZyClothsModular; |
|
|
|
import org.jeecg.modules.demo.base.entity.ZyClothsModular; |
|
|
|
|
|
|
|
import org.jeecg.modules.demo.base.entity.ZyClothsType; |
|
|
|
import org.jeecg.modules.demo.base.entity.vo.ZyProcessVo; |
|
|
|
import org.jeecg.modules.demo.base.entity.vo.ZyProcessVo; |
|
|
|
import org.jeecg.modules.demo.base.mapper.ZyClothsComponentMapper; |
|
|
|
import org.jeecg.modules.demo.base.mapper.ZyClothsComponentMapper; |
|
|
|
import org.jeecg.modules.demo.base.mapper.ZyClothsModularMapper; |
|
|
|
import org.jeecg.modules.demo.base.mapper.ZyClothsModularMapper; |
|
|
|
|
|
|
|
import org.jeecg.modules.demo.base.mapper.ZyClothsTypeMapper; |
|
|
|
import org.jeecg.modules.demo.base.service.IZyClothsComponentService; |
|
|
|
import org.jeecg.modules.demo.base.service.IZyClothsComponentService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
@ -28,6 +30,8 @@ import java.util.regex.Pattern; |
|
|
|
public class ZyClothsComponentServiceImpl extends ServiceImpl<ZyClothsComponentMapper, ZyClothsComponent> implements IZyClothsComponentService { |
|
|
|
public class ZyClothsComponentServiceImpl extends ServiceImpl<ZyClothsComponentMapper, ZyClothsComponent> implements IZyClothsComponentService { |
|
|
|
@Resource |
|
|
|
@Resource |
|
|
|
private ZyClothsComponentMapper zyClothsComponentMapper; |
|
|
|
private ZyClothsComponentMapper zyClothsComponentMapper; |
|
|
|
|
|
|
|
@Resource |
|
|
|
|
|
|
|
ZyClothsTypeMapper zyClothsTypeMapper; |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public List<ZyProcessVo> selectList(String id) { |
|
|
|
public List<ZyProcessVo> selectList(String id) { |
|
|
@ -47,9 +51,11 @@ public class ZyClothsComponentServiceImpl extends ServiceImpl<ZyClothsComponentM |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String generateNumber(ZyClothsComponent zyClothsComponent) { |
|
|
|
public String generateNumber(ZyClothsComponent zyClothsComponent) { |
|
|
|
String nums = zyClothsComponent.getClothsTypeId(); |
|
|
|
String nums = zyClothsComponent.getClothsTypeId(); |
|
|
|
String substring = nums.substring(nums.length() - 10); |
|
|
|
ZyClothsType zyClothsType = zyClothsTypeMapper.selectById(nums); |
|
|
|
String format = String.format("%08d", orderNumber()); |
|
|
|
String nums1 = zyClothsType.getNums(); |
|
|
|
return substring + format; |
|
|
|
//String substring = nums.substring(nums.length() - 10);
|
|
|
|
|
|
|
|
String format = String.format("%06d", orderNumber()); |
|
|
|
|
|
|
|
return nums1 + format; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private Long orderNumber() { |
|
|
|
private Long orderNumber() { |
|
|
|