Commit 8276f296 authored by 332784038@qq.com's avatar 332784038@qq.com

订单列表的状态与动态区分

parent a284c494
...@@ -440,10 +440,16 @@ public class OrderBackPageVO { ...@@ -440,10 +440,16 @@ public class OrderBackPageVO {
@ApiModelProperty(value = "报价单状态") @ApiModelProperty(value = "报价单状态")
private Integer offerStatus; private Integer offerStatus;
/** /**
* 状态说明 * 状态说明
*/ */
@ApiModelProperty(value = "状态说明") @ApiModelProperty(value = "状态说明")
private String statusText;
/**
* 动态
*/
@ApiModelProperty(value = "动态")
private String statusMsg; private String statusMsg;
...@@ -549,6 +555,7 @@ public class OrderBackPageVO { ...@@ -549,6 +555,7 @@ public class OrderBackPageVO {
public void setStatus(Integer status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
this.statusText = lang == 0 ? OrderStatusEnum.valueOf(status).getNameZh() : OrderStatusEnum.valueOf(status).getNameEn();
this.getOrderDesc(); this.getOrderDesc();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment