|
@@ -77,7 +77,7 @@ public class OrderHandleServiceImpl extends ServiceImpl<OrderHandleMapper, Order
|
|
|
lqw.eq(bo.getBusinessId() != null, OrderHandle::getBusinessId, bo.getBusinessId());
|
|
|
lqw.eq(bo.getProjectId() != null, OrderHandle::getProjectId, bo.getProjectId());
|
|
|
lqw.eq(bo.getInputFrom() != null, OrderHandle::getInputFrom, bo.getInputFrom());
|
|
|
- lqw.eq(bo.getPayStauts() != null, OrderHandle::getPayStauts, bo.getPayStauts());
|
|
|
+ lqw.eq(bo.getPayStatus() != null, OrderHandle::getPayStatus, bo.getPayStatus());
|
|
|
lqw.eq(bo.getGoodsType() != null, OrderHandle::getGoodsType, bo.getGoodsType());
|
|
|
return entity2Vo(this.list(lqw));
|
|
|
}
|
|
@@ -168,7 +168,7 @@ public class OrderHandleServiceImpl extends ServiceImpl<OrderHandleMapper, Order
|
|
|
if (Validator.isEmpty(orderHandle)) {
|
|
|
throw new CustomException("录单单号不存在");
|
|
|
}
|
|
|
- if (orderHandle.getPayStauts()!=0) {
|
|
|
+ if (orderHandle.getPayStatus()!=0) {
|
|
|
throw new CustomException("非支付状态");
|
|
|
}
|
|
|
if (orderHandle.getOverTime()<DateUtils.getNowTime()) {
|
|
@@ -205,7 +205,7 @@ public class OrderHandleServiceImpl extends ServiceImpl<OrderHandleMapper, Order
|
|
|
objectLambdaUpdateWrapper.set(OrderHandle::getCompanyRemark,bo.getCompanyRemark());
|
|
|
objectLambdaUpdateWrapper.set(OrderHandle::getCompanyPayImg,bo.getCompanyPayImg());
|
|
|
objectLambdaUpdateWrapper.set(OrderHandle::getUpdateTime,DateUtils.getNowTime());
|
|
|
- objectLambdaUpdateWrapper.set(OrderHandle::getPayStauts,2);
|
|
|
+ objectLambdaUpdateWrapper.set(OrderHandle::getPayStatus,2);
|
|
|
objectLambdaUpdateWrapper.set(OrderHandle::getPayType,2);
|
|
|
this.update(null, objectLambdaUpdateWrapper);
|
|
|
|