|
@@ -37,7 +37,9 @@ public class ApsProductDetailController {
|
|
|
public R getCustomOrderData(@RequestBody Map<String, Object> params) {
|
|
|
try {
|
|
|
log.info("获取客户订单;参数为:{}", params);
|
|
|
- return apsProductDetailService.getCustomOrderData(params);
|
|
|
+ R r=apsProductDetailService.getCustomOrderData(params);
|
|
|
+ log.info("获取客户订单;返回结果为:{}", r.toString());
|
|
|
+ return r;
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
return R.error("获取客户订单系统订单失败,请联系管理员");
|