BaseSupportUtils
This commit is contained in:
parent
8fa7a486fd
commit
2e72fb7df8
@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|||||||
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
|
import com.cnbm.admin.utils.BaseSupportUtils;
|
||||||
import com.cnbm.common.page.PageData;
|
import com.cnbm.common.page.PageData;
|
||||||
import com.cnbm.common.service.impl.CrudServiceImpl;
|
import com.cnbm.common.service.impl.CrudServiceImpl;
|
||||||
import com.cnbm.common.utils.ConvertUtils;
|
import com.cnbm.common.utils.ConvertUtils;
|
||||||
@ -33,8 +34,8 @@ import java.util.Map;
|
|||||||
@Service
|
@Service
|
||||||
public class ChangePackagingBoxHistoryServiceBizImpl extends CrudServiceImpl<ChangePackagingBoxHistoryMapper, ChangePackagingBoxHistory, ChangePackagingBoxHistoryDTO> implements ChangePackagingBoxHistoryServiceBiz {
|
public class ChangePackagingBoxHistoryServiceBizImpl extends CrudServiceImpl<ChangePackagingBoxHistoryMapper, ChangePackagingBoxHistory, ChangePackagingBoxHistoryDTO> implements ChangePackagingBoxHistoryServiceBiz {
|
||||||
|
|
||||||
@Autowired
|
// @Autowired
|
||||||
private BaseSupport baseSupport;
|
// private BaseSupport baseSupport;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public QueryWrapper<ChangePackagingBoxHistory> getWrapper(Map<String, Object> params){
|
public QueryWrapper<ChangePackagingBoxHistory> getWrapper(Map<String, Object> params){
|
||||||
@ -71,7 +72,7 @@ public class ChangePackagingBoxHistoryServiceBizImpl extends CrudServiceImpl<Cha
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void save(ChangePackagingBoxHistoryDTO dto) {
|
public void save(ChangePackagingBoxHistoryDTO dto) {
|
||||||
ChangePackagingBoxHistory entity = ConvertUtils.sourceToTarget(dto, ChangePackagingBoxHistory.class);
|
ChangePackagingBoxHistory entity = ConvertUtils.sourceToTarget(dto, ChangePackagingBoxHistory.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -79,7 +80,7 @@ public class ChangePackagingBoxHistoryServiceBizImpl extends CrudServiceImpl<Cha
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void update(ChangePackagingBoxHistoryDTO dto) {
|
public void update(ChangePackagingBoxHistoryDTO dto) {
|
||||||
ChangePackagingBoxHistory entity = ConvertUtils.sourceToTarget(dto, ChangePackagingBoxHistory.class);
|
ChangePackagingBoxHistory entity = ConvertUtils.sourceToTarget(dto, ChangePackagingBoxHistory.class);
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
|
import com.cnbm.admin.utils.BaseSupportUtils;
|
||||||
import com.cnbm.admin.utils.CodeGeneratorHelper;
|
import com.cnbm.admin.utils.CodeGeneratorHelper;
|
||||||
import com.cnbm.common.page.PageData;
|
import com.cnbm.common.page.PageData;
|
||||||
import com.cnbm.common.service.impl.CrudServiceImpl;
|
import com.cnbm.common.service.impl.CrudServiceImpl;
|
||||||
@ -32,8 +33,8 @@ public class PrintModelServiceBizImpl extends CrudServiceImpl<PrintModelMapper,
|
|||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private PrintModelMapper mapper;
|
private PrintModelMapper mapper;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private BaseSupport baseSupport;
|
// private BaseSupport baseSupport;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public QueryWrapper<PrintModel> getWrapper(Map<String, Object> params){
|
public QueryWrapper<PrintModel> getWrapper(Map<String, Object> params){
|
||||||
@ -72,7 +73,7 @@ public class PrintModelServiceBizImpl extends CrudServiceImpl<PrintModelMapper,
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void save(PrintModelDTO dto) {
|
public void save(PrintModelDTO dto) {
|
||||||
PrintModel entity = ConvertUtils.sourceToTarget(dto, PrintModel.class);
|
PrintModel entity = ConvertUtils.sourceToTarget(dto, PrintModel.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -80,7 +81,7 @@ public class PrintModelServiceBizImpl extends CrudServiceImpl<PrintModelMapper,
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void update(PrintModelDTO dto) {
|
public void update(PrintModelDTO dto) {
|
||||||
PrintModel entity = ConvertUtils.sourceToTarget(dto, PrintModel.class);
|
PrintModel entity = ConvertUtils.sourceToTarget(dto, PrintModel.class);
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
|
import com.cnbm.admin.utils.BaseSupportUtils;
|
||||||
import com.cnbm.common.page.PageData;
|
import com.cnbm.common.page.PageData;
|
||||||
import com.cnbm.common.service.impl.CrudServiceImpl;
|
import com.cnbm.common.service.impl.CrudServiceImpl;
|
||||||
import com.cnbm.common.utils.ConvertUtils;
|
import com.cnbm.common.utils.ConvertUtils;
|
||||||
@ -35,8 +36,8 @@ public class WoCompensationPowerServiceBizImpl extends CrudServiceImpl<WoCompens
|
|||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private WoCompensationPowerMapper mapper;
|
private WoCompensationPowerMapper mapper;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private BaseSupport baseSupport;
|
// private BaseSupport baseSupport;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public QueryWrapper<WoCompensationPower> getWrapper(Map<String, Object> params){
|
public QueryWrapper<WoCompensationPower> getWrapper(Map<String, Object> params){
|
||||||
@ -69,7 +70,7 @@ public class WoCompensationPowerServiceBizImpl extends CrudServiceImpl<WoCompens
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void save(WoCompensationPowerDTO dto) {
|
public void save(WoCompensationPowerDTO dto) {
|
||||||
WoCompensationPower entity = ConvertUtils.sourceToTarget(dto, WoCompensationPower.class);
|
WoCompensationPower entity = ConvertUtils.sourceToTarget(dto, WoCompensationPower.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,7 +78,7 @@ public class WoCompensationPowerServiceBizImpl extends CrudServiceImpl<WoCompens
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void update(WoCompensationPowerDTO dto) {
|
public void update(WoCompensationPowerDTO dto) {
|
||||||
WoCompensationPower entity = ConvertUtils.sourceToTarget(dto, WoCompensationPower.class);
|
WoCompensationPower entity = ConvertUtils.sourceToTarget(dto, WoCompensationPower.class);
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
|
import com.cnbm.admin.utils.BaseSupportUtils;
|
||||||
import com.cnbm.common.page.PageData;
|
import com.cnbm.common.page.PageData;
|
||||||
import com.cnbm.common.service.impl.CrudServiceImpl;
|
import com.cnbm.common.service.impl.CrudServiceImpl;
|
||||||
import com.cnbm.common.utils.ConvertUtils;
|
import com.cnbm.common.utils.ConvertUtils;
|
||||||
@ -37,8 +38,8 @@ public class WoPackagingBoxServiceBizImpl extends CrudServiceImpl<WoPackagingBox
|
|||||||
private WoPackagingBoxMapper mapper;
|
private WoPackagingBoxMapper mapper;
|
||||||
@Autowired
|
@Autowired
|
||||||
private WoPackagingBoxSubstrateMapper substrateMapper;
|
private WoPackagingBoxSubstrateMapper substrateMapper;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private BaseSupport baseSupport;
|
// private BaseSupport baseSupport;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public QueryWrapper<WoPackagingBox> getWrapper(Map<String, Object> params){
|
public QueryWrapper<WoPackagingBox> getWrapper(Map<String, Object> params){
|
||||||
@ -86,7 +87,7 @@ public class WoPackagingBoxServiceBizImpl extends CrudServiceImpl<WoPackagingBox
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public IdVo add(WoPackagingBoxDTO dto) {
|
public IdVo add(WoPackagingBoxDTO dto) {
|
||||||
WoPackagingBox entity = ConvertUtils.sourceToTarget(dto, WoPackagingBox.class);
|
WoPackagingBox entity = ConvertUtils.sourceToTarget(dto, WoPackagingBox.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
return IdVo.builder().id(entity.getId()).build();
|
return IdVo.builder().id(entity.getId()).build();
|
||||||
}
|
}
|
||||||
@ -95,7 +96,7 @@ public class WoPackagingBoxServiceBizImpl extends CrudServiceImpl<WoPackagingBox
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void update(WoPackagingBoxDTO dto) {
|
public void update(WoPackagingBoxDTO dto) {
|
||||||
WoPackagingBox entity = ConvertUtils.sourceToTarget(dto, WoPackagingBox.class);
|
WoPackagingBox entity = ConvertUtils.sourceToTarget(dto, WoPackagingBox.class);
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|||||||
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
|
import com.cnbm.admin.utils.BaseSupportUtils;
|
||||||
import com.cnbm.common.page.PageData;
|
import com.cnbm.common.page.PageData;
|
||||||
import com.cnbm.common.service.impl.CrudServiceImpl;
|
import com.cnbm.common.service.impl.CrudServiceImpl;
|
||||||
import com.cnbm.common.utils.ConvertUtils;
|
import com.cnbm.common.utils.ConvertUtils;
|
||||||
@ -42,8 +43,8 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
private ChangePackagingBoxHistoryServiceBiz changePackagingBoxHistoryService;
|
private ChangePackagingBoxHistoryServiceBiz changePackagingBoxHistoryService;
|
||||||
@Autowired
|
@Autowired
|
||||||
private WoPackagingBoxSubstrateMapper mapper;
|
private WoPackagingBoxSubstrateMapper mapper;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private BaseSupport baseSupport;
|
// private BaseSupport baseSupport;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public QueryWrapper<WoPackagingBoxSubstrate> getWrapper(Map<String, Object> params){
|
public QueryWrapper<WoPackagingBoxSubstrate> getWrapper(Map<String, Object> params){
|
||||||
@ -78,7 +79,7 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void save(WoPackagingBoxSubstrateDTO dto) {
|
public void save(WoPackagingBoxSubstrateDTO dto) {
|
||||||
WoPackagingBoxSubstrate entity = ConvertUtils.sourceToTarget(dto, WoPackagingBoxSubstrate.class);
|
WoPackagingBoxSubstrate entity = ConvertUtils.sourceToTarget(dto, WoPackagingBoxSubstrate.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,7 +87,7 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void update(WoPackagingBoxSubstrateDTO dto) {
|
public void update(WoPackagingBoxSubstrateDTO dto) {
|
||||||
WoPackagingBoxSubstrate entity = ConvertUtils.sourceToTarget(dto, WoPackagingBoxSubstrate.class);
|
WoPackagingBoxSubstrate entity = ConvertUtils.sourceToTarget(dto, WoPackagingBoxSubstrate.class);
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,7 +109,7 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
changePackagingBoxHistory.setSourceSlot(entity.getSlot());
|
changePackagingBoxHistory.setSourceSlot(entity.getSlot());
|
||||||
changePackagingBoxHistory.setLeaveTime(LocalDateTime.now());
|
changePackagingBoxHistory.setLeaveTime(LocalDateTime.now());
|
||||||
changePackagingBoxHistory.setType(2);
|
changePackagingBoxHistory.setType(2);
|
||||||
baseSupport.setCommonField(changePackagingBoxHistory);
|
BaseSupportUtils.setCommonField(changePackagingBoxHistory);
|
||||||
changePackagingBoxHistoryService.insert(changePackagingBoxHistory);
|
changePackagingBoxHistoryService.insert(changePackagingBoxHistory);
|
||||||
//模组从该包装箱中移出,该模组变为未绑定BoxID的模组
|
//模组从该包装箱中移出,该模组变为未绑定BoxID的模组
|
||||||
UpdateWrapper<WoPackagingBoxSubstrate> wrapper = new UpdateWrapper<>();
|
UpdateWrapper<WoPackagingBoxSubstrate> wrapper = new UpdateWrapper<>();
|
||||||
@ -132,12 +133,12 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
changePackagingBoxHistory.setTargetSlot(dto.getSlot());
|
changePackagingBoxHistory.setTargetSlot(dto.getSlot());
|
||||||
changePackagingBoxHistory.setInputTime(LocalDateTime.now());
|
changePackagingBoxHistory.setInputTime(LocalDateTime.now());
|
||||||
changePackagingBoxHistory.setType(1);
|
changePackagingBoxHistory.setType(1);
|
||||||
baseSupport.setCommonField(changePackagingBoxHistory);
|
BaseSupportUtils.setCommonField(changePackagingBoxHistory);
|
||||||
changePackagingBoxHistoryService.insert(changePackagingBoxHistory);
|
changePackagingBoxHistoryService.insert(changePackagingBoxHistory);
|
||||||
//更新
|
//更新
|
||||||
entity.setPackagingBoxId(dto.getPackagingBoxId());
|
entity.setPackagingBoxId(dto.getPackagingBoxId());
|
||||||
entity.setSlot(dto.getSlot());
|
entity.setSlot(dto.getSlot());
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,12 +155,12 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
changePackagingBoxHistory.setTargetBoxNo(dto.getPackagingBoxId());
|
changePackagingBoxHistory.setTargetBoxNo(dto.getPackagingBoxId());
|
||||||
changePackagingBoxHistory.setTargetSlot(dto.getSlot());
|
changePackagingBoxHistory.setTargetSlot(dto.getSlot());
|
||||||
changePackagingBoxHistory.setType(3);
|
changePackagingBoxHistory.setType(3);
|
||||||
baseSupport.setCommonField(changePackagingBoxHistory);
|
BaseSupportUtils.setCommonField(changePackagingBoxHistory);
|
||||||
changePackagingBoxHistoryService.insert(changePackagingBoxHistory);
|
changePackagingBoxHistoryService.insert(changePackagingBoxHistory);
|
||||||
//更新
|
//更新
|
||||||
entity.setPackagingBoxId(dto.getPackagingBoxId());
|
entity.setPackagingBoxId(dto.getPackagingBoxId());
|
||||||
entity.setSlot(dto.getSlot());
|
entity.setSlot(dto.getSlot());
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -173,7 +174,7 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
if (mapper.selectCount(wrapper) > 0 && StringUtils.isNotBlank(dto.getWoSubstrateId())) {
|
if (mapper.selectCount(wrapper) > 0 && StringUtils.isNotBlank(dto.getWoSubstrateId())) {
|
||||||
WoPackagingBoxSubstrate substrate = mapper.selectList(wrapper).get(0);
|
WoPackagingBoxSubstrate substrate = mapper.selectList(wrapper).get(0);
|
||||||
substrate.setPackagingBoxId(dto.getPackagingBoxId());
|
substrate.setPackagingBoxId(dto.getPackagingBoxId());
|
||||||
baseSupport.setUpdateCommonField(substrate);
|
BaseSupportUtils.setUpdateCommonField(substrate);
|
||||||
updateById(substrate);
|
updateById(substrate);
|
||||||
} else {
|
} else {
|
||||||
//模组ID有时为空,用户会输入”无码“
|
//模组ID有时为空,用户会输入”无码“
|
||||||
@ -183,7 +184,7 @@ public class WoPackagingBoxSubstrateServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
//效验数据
|
//效验数据
|
||||||
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class);
|
ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class);
|
||||||
WoPackagingBoxSubstrate entity = ConvertUtils.sourceToTarget(dto, WoPackagingBoxSubstrate.class);
|
WoPackagingBoxSubstrate entity = ConvertUtils.sourceToTarget(dto, WoPackagingBoxSubstrate.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|||||||
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
import com.cnbm.admin.enums.WhetherEnum;
|
import com.cnbm.admin.enums.WhetherEnum;
|
||||||
|
import com.cnbm.admin.utils.BaseSupportUtils;
|
||||||
import com.cnbm.common.page.PageData;
|
import com.cnbm.common.page.PageData;
|
||||||
import com.cnbm.common.service.impl.CrudServiceImpl;
|
import com.cnbm.common.service.impl.CrudServiceImpl;
|
||||||
import com.cnbm.common.utils.ConvertUtils;
|
import com.cnbm.common.utils.ConvertUtils;
|
||||||
@ -43,8 +44,8 @@ public class WoPackagingPrintHistoryServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private WoPackagingPrintHistoryMapper mapper;
|
private WoPackagingPrintHistoryMapper mapper;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private BaseSupport baseSupport;
|
// private BaseSupport baseSupport;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private WoPackagingBoxServiceBiz woPackagingBoxServiceBiz;
|
private WoPackagingBoxServiceBiz woPackagingBoxServiceBiz;
|
||||||
@ -81,7 +82,7 @@ public class WoPackagingPrintHistoryServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void save(WoPackagingPrintHistoryDTO dto) {
|
public void save(WoPackagingPrintHistoryDTO dto) {
|
||||||
WoPackagingPrintHistory entity = ConvertUtils.sourceToTarget(dto, WoPackagingPrintHistory.class);
|
WoPackagingPrintHistory entity = ConvertUtils.sourceToTarget(dto, WoPackagingPrintHistory.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -89,7 +90,7 @@ public class WoPackagingPrintHistoryServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void update(WoPackagingPrintHistoryDTO dto) {
|
public void update(WoPackagingPrintHistoryDTO dto) {
|
||||||
WoPackagingPrintHistory entity = ConvertUtils.sourceToTarget(dto, WoPackagingPrintHistory.class);
|
WoPackagingPrintHistory entity = ConvertUtils.sourceToTarget(dto, WoPackagingPrintHistory.class);
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -117,7 +118,7 @@ public class WoPackagingPrintHistoryServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
BeanUtils.copyProperties(woPackagingBox, woPackagingPrintHistory);
|
BeanUtils.copyProperties(woPackagingBox, woPackagingPrintHistory);
|
||||||
woPackagingPrintHistory.setId(null);
|
woPackagingPrintHistory.setId(null);
|
||||||
woPackagingPrintHistory.setPrintTime(LocalDateTime.now());
|
woPackagingPrintHistory.setPrintTime(LocalDateTime.now());
|
||||||
baseSupport.setCommonField(woPackagingPrintHistory);
|
BaseSupportUtils.setCommonField(woPackagingPrintHistory);
|
||||||
insert(woPackagingPrintHistory);
|
insert(woPackagingPrintHistory);
|
||||||
//更新包装箱表中打印状态和时间
|
//更新包装箱表中打印状态和时间
|
||||||
woPackagingBox.setPrintTime(woPackagingPrintHistory.getPrintTime());
|
woPackagingBox.setPrintTime(woPackagingPrintHistory.getPrintTime());
|
||||||
@ -128,7 +129,7 @@ public class WoPackagingPrintHistoryServiceBizImpl extends CrudServiceImpl<WoPac
|
|||||||
else{
|
else{
|
||||||
woPackagingBox.setPrintCount(woPackagingBox.getPrintCount()+1);
|
woPackagingBox.setPrintCount(woPackagingBox.getPrintCount()+1);
|
||||||
}
|
}
|
||||||
baseSupport.setUpdateCommonField(woPackagingBox);
|
BaseSupportUtils.setUpdateCommonField(woPackagingBox);
|
||||||
woPackagingBoxServiceBiz.update(woPackagingBox);
|
woPackagingBoxServiceBiz.update(woPackagingBox);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||||
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
||||||
import com.cnbm.admin.base.BaseSupport;
|
import com.cnbm.admin.base.BaseSupport;
|
||||||
|
import com.cnbm.admin.utils.BaseSupportUtils;
|
||||||
import com.cnbm.common.page.PageData;
|
import com.cnbm.common.page.PageData;
|
||||||
import com.cnbm.common.service.impl.CrudServiceImpl;
|
import com.cnbm.common.service.impl.CrudServiceImpl;
|
||||||
import com.cnbm.common.utils.ConvertUtils;
|
import com.cnbm.common.utils.ConvertUtils;
|
||||||
@ -32,8 +33,8 @@ public class WoPowerLevelServiceBizImpl extends CrudServiceImpl<WoPowerLevelMapp
|
|||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private WoPowerLevelMapper mapper;
|
private WoPowerLevelMapper mapper;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private BaseSupport baseSupport;
|
// private BaseSupport baseSupport;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public QueryWrapper<WoPowerLevel> getWrapper(Map<String, Object> params){
|
public QueryWrapper<WoPowerLevel> getWrapper(Map<String, Object> params){
|
||||||
@ -67,7 +68,7 @@ public class WoPowerLevelServiceBizImpl extends CrudServiceImpl<WoPowerLevelMapp
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void save(WoPowerLevelDTO dto) {
|
public void save(WoPowerLevelDTO dto) {
|
||||||
WoPowerLevel entity = ConvertUtils.sourceToTarget(dto, WoPowerLevel.class);
|
WoPowerLevel entity = ConvertUtils.sourceToTarget(dto, WoPowerLevel.class);
|
||||||
baseSupport.setCommonField(entity);
|
BaseSupportUtils.setCommonField(entity);
|
||||||
insert(entity);
|
insert(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,7 +76,7 @@ public class WoPowerLevelServiceBizImpl extends CrudServiceImpl<WoPowerLevelMapp
|
|||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void update(WoPowerLevelDTO dto) {
|
public void update(WoPowerLevelDTO dto) {
|
||||||
WoPowerLevel entity = ConvertUtils.sourceToTarget(dto, WoPowerLevel.class);
|
WoPowerLevel entity = ConvertUtils.sourceToTarget(dto, WoPowerLevel.class);
|
||||||
baseSupport.setUpdateCommonField(entity);
|
BaseSupportUtils.setUpdateCommonField(entity);
|
||||||
updateById(entity);
|
updateById(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user