|
|
|
@ -245,6 +245,18 @@ public class InvWarehouseController extends BaseController {
|
|
|
|
|
invWarehouseEntity.setUpdateTime(new Date());
|
|
|
|
|
boolean b = invWarehouseService.updateInvSubWarehouse(invWarehouseEntity);
|
|
|
|
|
|
|
|
|
|
//如果要是一级仓库就吧全部子集都刷成一样的寄售仓库
|
|
|
|
|
if(StrUtil.isBlank(invWarehouseEntity.getParentCode())){
|
|
|
|
|
List<InvWarehouseEntity> invWarehouseEntityList=invWarehouseService.selectLowWarehouseAll(invWarehouseEntity.getCode());
|
|
|
|
|
for (InvWarehouseEntity obj : invWarehouseEntityList) {
|
|
|
|
|
obj.setAdvanceType(invWarehouseEntity.getAdvanceType());
|
|
|
|
|
obj.setUpdateTime(new Date());
|
|
|
|
|
invWarehouseService.updateInvSubWarehouse(obj);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//更新部门信息
|
|
|
|
|
DeptEntity pEntity = deptService.selectByCode(invWarehouseEntity.getParentId());
|
|
|
|
|
pEntity.setUpdateTime(new Date());
|
|
|
|
|