|
|
|
@ -11,6 +11,7 @@ import com.glxp.api.admin.req.inventory.FilterInvSubWarehouseRequest;
|
|
|
|
|
import com.glxp.api.admin.req.inventory.FilterInvWarehouseRequest;
|
|
|
|
|
import com.glxp.api.admin.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.api.admin.service.inout.WarehouseBussinessTypeService;
|
|
|
|
|
import com.glxp.api.admin.service.inventory.InvProductService;
|
|
|
|
|
import com.glxp.api.admin.service.inventory.InvSubWarehouseService;
|
|
|
|
|
import com.glxp.api.admin.service.inventory.InvWarehouseService;
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
@ -24,10 +25,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
|
public class InvSubWarehouseController {
|
|
|
|
@ -40,6 +38,8 @@ public class InvSubWarehouseController {
|
|
|
|
|
CustomerService customerService;
|
|
|
|
|
@Resource
|
|
|
|
|
WarehouseBussinessTypeService warehouseBussinessTypeService;
|
|
|
|
|
@Resource
|
|
|
|
|
private InvProductService invProductService;
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("spms/sub/inv/warehouse/filter")
|
|
|
|
@ -135,6 +135,14 @@ public class InvSubWarehouseController {
|
|
|
|
|
if (!warehouseBussinessTypeEntities.isEmpty()) {
|
|
|
|
|
return ResultVOUtils.error(500, "请先移除该仓库关联用户和单据类型!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//判断此分库中是否还有库存
|
|
|
|
|
InvSubWarehouseEntity invSubWarehouse = invSubWarehouseService.findById(deleteRequest.getId());
|
|
|
|
|
Integer count = invProductService.countByWarehouseCode(null, invSubWarehouse.getCode());
|
|
|
|
|
if (count > 0) {
|
|
|
|
|
return ResultVOUtils.error(500, "此分库存在库存,不能删除!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
boolean b = invSubWarehouseService.deleteById(deleteRequest.getId());
|
|
|
|
|
|
|
|
|
|
if (!b) {
|
|
|
|
|