1.单据响应结果信息添加单据类型名称字段

master
x_z 3 years ago
parent c4e5f8418b
commit f67adda152

@ -115,8 +115,15 @@ public class OrderController {
page.getRecords().forEach(order -> { page.getRecords().forEach(order -> {
OrderMdResponse response = new OrderMdResponse(); OrderMdResponse response = new OrderMdResponse();
BeanUtil.copyProperties(order, response); BeanUtil.copyProperties(order, response);
String name = invWarehouseDao.selectNameByCode(order.getLocStorageCode());
response.setLocStorageName(name); //查询仓库名称
String locStorageName = invWarehouseDao.selectNameByCode(order.getLocStorageCode());
response.setLocStorageName(locStorageName);
//查询单据类型名称
String busTypeName = bussinessTypeService.findNameByAction(order.getAction());
response.setBusName(busTypeName);
//查询是否可以补单 //查询是否可以补单
if (StrUtil.isNotBlank(order.getSupplementNo())) { if (StrUtil.isNotBlank(order.getSupplementNo())) {
//已经补单过了 //已经补单过了

@ -32,6 +32,14 @@ public class OrderEntity {
private String fromCorp; private String fromCorp;
/**
*
* -1:
* 1.
* 2.
* 3.
* 9.
*/
private Integer status; private Integer status;
private String remark; private String remark;

@ -12,29 +12,99 @@ import java.util.Date;
public class OrderMdResponse { public class OrderMdResponse {
private String id; private String id;
/**
*
*/
private String orderId; private String orderId;
/**
*
*/
private String action; private String action;
/**
*
*/
private String busName;
/**
*
*/
private String corpOrderId; private String corpOrderId;
/**
*
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date actDate; private Date actDate;
/**
* ID
*/
private String fromCorpId; private String fromCorpId;
/**
*
*/
private String actor; private String actor;
/**
*
*/
private String mainAction; private String mainAction;
/**
*
*/
private String fromCorp; private String fromCorp;
/**
*
*/
private Integer status; private Integer status;
/**
*
*/
private String remark; private String remark;
/**
*
*/
private String exportStatus; private String exportStatus;
/**
*
*/
private String fromType; private String fromType;
private String contrastStatus; private String contrastStatus;
private String erpFk; private String erpFk;
private String uploadStatus; //上传状态0未上传1已上传
/**
* 01
*/
private String uploadStatus;
/**
* ID
*/
private Long customerId; private Long customerId;
private String invStorageCode; /**
private String invWarehouseCode; *
*/
private String locStorageCode; private String locStorageCode;
private String locStorageName; //出入库仓库名称
private String nameCode; //最小销售标识 /**
*
*/
private String locStorageName;
/**
*
*/
private String nameCode;
//启用默认补单 //启用默认补单
private boolean enableSupplementOrder; private boolean enableSupplementOrder;

Loading…
Cancel
Save