结算改价
This commit is contained in:
parent
fb18a63163
commit
365036ca50
|
|
@ -27,6 +27,9 @@ public class LeaseRepairRecord extends BaseEntity implements Serializable {
|
|||
|
||||
private Integer id;
|
||||
|
||||
@ApiModelProperty(value = "前端是否选中(此字段仅供前端使用,默认0)")
|
||||
private Integer isCheck = 0;
|
||||
|
||||
@ApiModelProperty(value = "订单id")
|
||||
private String orderId;
|
||||
|
||||
|
|
|
|||
|
|
@ -66,6 +66,7 @@ public class LeaseRepairRecordServiceImpl implements LeaseRepairRecordService {
|
|||
if (leaseRepairVo.getOrderId() != null) {
|
||||
LeaseRecordDto leaseRecordDto = getById(leaseRepairVo);
|
||||
leaseRepairVo.setTotalCost(leaseRecordDto.getTotalCost());
|
||||
leaseRepairVo.setIsChangePrice(leaseRecordDto.getIsChangePrice());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -244,7 +244,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
hh.take_over_user,
|
||||
hh.take_over_time,
|
||||
hh.rent_over_user,
|
||||
hh.rent_over_time
|
||||
hh.rent_over_time,
|
||||
hh.change_cost as changeCost
|
||||
FROM
|
||||
ma_order_details hh
|
||||
LEFT JOIN ma_order_info moi ON hh.order_id = moi.order_id
|
||||
|
|
|
|||
Loading…
Reference in New Issue