|
|
@@ -350,14 +350,17 @@ public class AdminNewOrderApiController extends CertifyApiController {
|
|
|
/**
|
|
|
* 订单结单
|
|
|
*/
|
|
|
- @RequestMapping(value="/orderRefundList", method = RequestMethod.GET)
|
|
|
- public Result orderRefundList(String orderNo){
|
|
|
+ @RequestMapping(value="/asdas", method = RequestMethod.GET)
|
|
|
+ public Result asdas(String orderNo){
|
|
|
Result res=new Result();
|
|
|
if (StringUtils.isBlank(orderNo)) {
|
|
|
res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR, "订单编号","订单编号"));
|
|
|
return res;
|
|
|
}
|
|
|
res.data(orderNewService.checkOrderOver(orderNo));
|
|
|
+ if ((int)res.getData()==-1) {
|
|
|
+
|
|
|
+ }
|
|
|
return res;
|
|
|
}
|
|
|
|