Commit 2c7ca810 authored by shiyu's avatar shiyu

寄售单详情-返回当前状态

parent 62a47f5c
......@@ -12,6 +12,16 @@ public class ConsignSaleDetailVo implements Entity {
*/
private String consignSaledId;
/**
* 寄售单系统状态
*/
private Integer systemState;
/**
* 寄售单系统状态
*/
private String systemStateName;
/**
* 货品信息
*/
......
......@@ -117,6 +117,9 @@ public class ConsignSaleServiceImpl implements ConsignSaleService {
if (!itemResult.getSuccess()) {
return itemResult;
}
consignSaleDetailVo.setConsignSaledId(dto.getSaleId());
consignSaleDetailVo.setSystemState(consignSale.getSystemState());
consignSaleDetailVo.setSystemStateName(ConsignSaleEnum.SaleForSysStateEnum.getNameByCode(consignSale.getSystemState()));
consignSaleDetailVo.setItemVo(itemResult.getData());
//查询寄售单信息
......
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