分界线退款文案修复
This commit is contained in:
parent
e5a7c1bb99
commit
c25587ffb6
|
|
@ -1128,6 +1128,8 @@ public class OrderController extends BaseController {
|
|||
orderListResponse.setIsOverTime(isOverTime);
|
||||
orderListResponse.setAfterServiceRecordList(detailRecordMap.get(detail.getId()));
|
||||
orderListResponse.setChangeMoney(changeMoney);
|
||||
orderListResponse.setDrawCashStatus(detail.getDrawCashStatus());
|
||||
orderListResponse.setDrawCashTime(detail.getDrawCashTime());
|
||||
orderListResponses.add(orderListResponse);
|
||||
});
|
||||
return orderListResponses;
|
||||
|
|
|
|||
|
|
@ -457,7 +457,7 @@ public class OrderMasterController extends BaseController {
|
|||
GoodsImgs qryImgsObj = new GoodsImgs();
|
||||
qryImgsObj.setRemark(orderDetail.getId().toString());
|
||||
qryImgsObj.setImgType(ImgType.FINISH_IMG.getId());
|
||||
qryImgsObj.setGoodsId(0l);
|
||||
qryImgsObj.setGoodsId(0L);
|
||||
List<GoodsImgs> goodsImgs = goodsImgsService.qryGoodsImgs(qryImgsObj);
|
||||
finishImgList = goodsImgs.stream().map(GoodsImgs::getImgUrl).collect(Collectors.toList());
|
||||
}
|
||||
|
|
@ -505,6 +505,9 @@ public class OrderMasterController extends BaseController {
|
|||
|
||||
orderStandardDetail.setIsOnlyServ(this.checkIsOnlyServer(orderMaster.getId(), orderDetail.getWorkerId()) ? Boolean.TRUE : Boolean.FALSE);
|
||||
|
||||
orderStandardDetail.setDrawCashStatus(orderDetail.getDrawCashStatus());
|
||||
orderStandardDetail.setDrawCashTime(orderDetail.getDrawCashTime());
|
||||
|
||||
orderStandardDetails.add(orderStandardDetail);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,4 +55,19 @@ public class OrderStandardDetail {
|
|||
private Boolean isOverTime;
|
||||
|
||||
private BigDecimal serverMoney;
|
||||
|
||||
/**
|
||||
* draw_cash_status
|
||||
* 0 未分账
|
||||
* 1 已分账
|
||||
* 2 已到账
|
||||
* -1 提现失败
|
||||
*/
|
||||
private Integer drawCashStatus;
|
||||
|
||||
/**
|
||||
* 发起提现时间 draw_cash_time
|
||||
*/
|
||||
private Date drawCashTime;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue