Browse Source

fix:删除错误的库位导入代码。。

pull/37/head
pref_mail@163.com 12 months ago
parent
commit
d2826842fc
  1. 19
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataGoodsShelfController.java
  2. 5
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataGoodsShelfService.java
  3. 8
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataGoodsShelfServiceImpl.java

19
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/controller/BasicdataGoodsShelfController.java

@ -245,16 +245,15 @@ public class BasicdataGoodsShelfController extends BladeController {
ExcelUtil.export(response, "货架数据" + DateUtil.time(), "货架数据表", list, BasicdataGoodsShelfExcel.class); ExcelUtil.export(response, "货架数据" + DateUtil.time(), "货架数据表", list, BasicdataGoodsShelfExcel.class);
} }
/** // /**
* 导入货架前置条件 // * 导入货架前置条件
*/ // */
@GetMapping("/preImport") // @GetMapping("/preImport")
@ApiOperationSupport(order = 12) // @ApiOperationSupport(order = 12)
@ApiOperation(value = "导入货架", notes = "传入ids") // @ApiOperation(value = "导入货架", notes = "传入ids")
public R preImport(Long ids) { // public R preImport(Long ids) {
basicdataGoodsShelfService.saveIds(ids); // return R.success("操作成功");
return R.success("操作成功"); // }
}
/** /**
* 导入货架 * 导入货架

5
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/IBasicdataGoodsShelfService.java

@ -137,8 +137,5 @@ public interface IBasicdataGoodsShelfService extends BaseService<BasicdataGoodsS
* 货架 导入 * 货架 导入
*/ */
void importGoodsShelf(List<BasicdataGoodsShelfExcel> data); void importGoodsShelf(List<BasicdataGoodsShelfExcel> data);
/**
* 货架 ids
*/
void saveIds(Long ids);
} }

8
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataGoodsShelfServiceImpl.java

@ -94,7 +94,6 @@ public class BasicdataGoodsShelfServiceImpl extends BaseServiceImpl<BasicdataGoo
private IBasicdataWarehouseService basicdataWarehouseService; private IBasicdataWarehouseService basicdataWarehouseService;
private Long ids;
@Override @Override
@ -884,7 +883,6 @@ public class BasicdataGoodsShelfServiceImpl extends BaseServiceImpl<BasicdataGoo
List<BasicdataGoodsShelfEntity> basicdataGoodsShelfEntities = baseMapper.selectList(new QueryWrapper<BasicdataGoodsShelfEntity>().lambda() List<BasicdataGoodsShelfEntity> basicdataGoodsShelfEntities = baseMapper.selectList(new QueryWrapper<BasicdataGoodsShelfEntity>().lambda()
.eq(BasicdataGoodsShelfEntity::getGoodsShelfName, datum.getGoodsShelfName()) .eq(BasicdataGoodsShelfEntity::getGoodsShelfName, datum.getGoodsShelfName())
.eq(BasicdataGoodsShelfEntity::getWarehouseId, myCurrentWarehouse.getId()) .eq(BasicdataGoodsShelfEntity::getWarehouseId, myCurrentWarehouse.getId())
.eq(BasicdataGoodsShelfEntity::getGoodsAreaId, Long.valueOf(ids))
.eq(BasicdataGoodsShelfEntity::getIsDeleted, 0) .eq(BasicdataGoodsShelfEntity::getIsDeleted, 0)
); );
if (!basicdataGoodsShelfEntities.isEmpty()) { if (!basicdataGoodsShelfEntities.isEmpty()) {
@ -894,7 +892,6 @@ public class BasicdataGoodsShelfServiceImpl extends BaseServiceImpl<BasicdataGoo
log.info("复制后>>>>>>>>>>>>{}", copy); log.info("复制后>>>>>>>>>>>>{}", copy);
assert copy != null; assert copy != null;
copy.setWarehouseId(myCurrentWarehouse.getId()); copy.setWarehouseId(myCurrentWarehouse.getId());
copy.setGoodsAreaId(Long.valueOf(ids));
arrayList.add(copy); arrayList.add(copy);
} }
// 根据对象的value属性进行去重 // 根据对象的value属性进行去重
@ -902,10 +899,7 @@ public class BasicdataGoodsShelfServiceImpl extends BaseServiceImpl<BasicdataGoo
this.saveBatch(collect); this.saveBatch(collect);
} }
@Override
public void saveIds(Long ids) {
this.ids = ids;
}
// @NotNull // @NotNull
// static Integer getLayerNum(@NotNull List<BasicdataGoodsAllocationEntity> products, String ColumnNum) { // static Integer getLayerNum(@NotNull List<BasicdataGoodsAllocationEntity> products, String ColumnNum) {

Loading…
Cancel
Save