|
|
|
@ -8,6 +8,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.core.mp.base.BaseService; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
@ -20,6 +21,12 @@ public class OrderPackageStatusPushFailLogServiceImpl extends BaseServiceImpl<Or
|
|
|
|
|
public void saveOrderPackageStatusFaleLog(String unitNo, String currentWarehouseId, String status,String operationTime, Integer trayId) { |
|
|
|
|
log.info("##############dealWithDataHandler: unitNo={} 没有查询到数据 保存到待处理数据库", unitNo); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(StringUtil.isBlank(currentWarehouseId)){ |
|
|
|
|
log.info(">>>>>>>>>>>>>>>> 没有仓库信息 不进行记录"); |
|
|
|
|
return ; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QueryWrapper queryWrapper = new QueryWrapper(); |
|
|
|
|
queryWrapper.eq("unit_no", unitNo); |
|
|
|
|
queryWrapper.eq("warehouse_id", currentWarehouseId); |
|
|
|
|