|
|
|
@ -26,6 +26,7 @@ import org.springblade.common.utils.QRCodeUtil;
|
|
|
|
|
import org.springblade.common.utils.TemplateUtil; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.ObjectUtil; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
@ -193,4 +194,30 @@ public class TrunklineAdvanceDetailServiceImpl extends BaseServiceImpl<Trunkline
|
|
|
|
|
.eq("is_deleted",0); |
|
|
|
|
baseMapper.delete(queryWrapper); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R deleteAdvanceDetail(AdvanceDetailDTO advanceDetailDTO) { |
|
|
|
|
List<Long> advanceDetailIds = advanceDetailDTO.getAdvanceDetailIds(); |
|
|
|
|
for (Long advanceDetailId : advanceDetailIds) { |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailEntity = getById(advanceDetailId); |
|
|
|
|
Long advanceId = advanceDetailEntity.getAdvanceId(); |
|
|
|
|
baseMapper.deleteAdvanceDetailById(advanceDetailId); |
|
|
|
|
|
|
|
|
|
//判断暂存单下还有没有包件
|
|
|
|
|
List<String> strings = baseMapper.findOrderPackageCodesByAdvanceId(advanceId); |
|
|
|
|
if(0 == strings.size()){ |
|
|
|
|
//删除暂存单
|
|
|
|
|
List<Long> advanceIds = new ArrayList<>(); |
|
|
|
|
advanceIds.add(advanceId); |
|
|
|
|
advanceMapper.deletedAdvance(advanceIds); |
|
|
|
|
}else{ |
|
|
|
|
//数量减一
|
|
|
|
|
advanceMapper.subTotalNumByAdvanceId(advanceId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("删除成功"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|