Browse Source

fix:运单查询信息修改

visual
pref_mail@163.com 6 months ago
parent
commit
485a7e1227
  1. 4
      blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/entity/WarehouseWaybillEntity.java
  2. 6
      blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/controller/WarehouseWaybillController.java

4
blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/entity/WarehouseWaybillEntity.java

@ -274,7 +274,9 @@ public class WarehouseWaybillEntity extends TenantEntity {
@ApiModelProperty(value = "预留5") @ApiModelProperty(value = "预留5")
private String reserve5; private String reserve5;
private Integer stats = 0; //运单状态 弃用
@ApiModelProperty(value = "运单状态")
private Integer stats; //运单状态 弃用
@TableField(exist = false) @TableField(exist = false)
private String statsStr; private String statsStr;

6
blade-service/logpm-warehouse/src/main/java/com/logpm/warehouse/controller/WarehouseWaybillController.java

@ -87,8 +87,9 @@ public class WarehouseWaybillController extends BladeController {
@ApiOperationSupport(order = 1) @ApiOperationSupport(order = 1)
@ApiOperation(value = "详情", notes = "传入warehouseWaybill") @ApiOperation(value = "详情", notes = "传入warehouseWaybill")
public R<WarehouseWaybillVO> detail(WarehouseWaybillEntity warehouseWaybill) { public R<WarehouseWaybillVO> detail(WarehouseWaybillEntity warehouseWaybill) {
WarehouseWaybillEntity detail = warehouseWaybillService.getOne(Condition.getQueryWrapper(warehouseWaybill)); // WarehouseWaybillEntity detail = warehouseWaybillService.getOne(Condition.getQueryWrapper(warehouseWaybill));
return R.data(WarehouseWaybillWrapper.build().entityVO(detail)); WarehouseWaybillEntity byWaybillNo = warehouseWaybillService.findByWaybillNo(warehouseWaybill.getWaybillNo());
return R.data(WarehouseWaybillWrapper.build().entityVO(byWaybillNo));
} }
/** /**
@ -117,6 +118,7 @@ public class WarehouseWaybillController extends BladeController {
@ApiOperationSupport(order = 3) @ApiOperationSupport(order = 3)
@ApiOperation(value = "分页", notes = "传入warehouseWaybill") @ApiOperation(value = "分页", notes = "传入warehouseWaybill")
public R<IPage<WarehouseWaybillVO>> page(WarehouseWaybillVO warehouseWaybill, Query query) { public R<IPage<WarehouseWaybillVO>> page(WarehouseWaybillVO warehouseWaybill, Query query) {
IPage<WarehouseWaybillVO> pages = warehouseWaybillService.selectWarehouseWaybillPage(Condition.getPage(query), warehouseWaybill); IPage<WarehouseWaybillVO> pages = warehouseWaybillService.selectWarehouseWaybillPage(Condition.getPage(query), warehouseWaybill);
return R.data(pages); return R.data(pages);
} }

Loading…
Cancel
Save