|
@@ -16,9 +16,11 @@ import com.iamberry.rst.util.CustomerCommonUtil;
|
|
import com.iamberry.rst.util.SmsConfig;
|
|
import com.iamberry.rst.util.SmsConfig;
|
|
import com.iamberry.rst.utils.AdminUtils;
|
|
import com.iamberry.rst.utils.AdminUtils;
|
|
import com.iamberry.rst.utils.OrderNoUtil;
|
|
import com.iamberry.rst.utils.OrderNoUtil;
|
|
|
|
+import com.iamberry.rst.utils.ResultMsg;
|
|
import com.iamberry.rst.utils.StitchAttrUtil;
|
|
import com.iamberry.rst.utils.StitchAttrUtil;
|
|
import com.iamberry.wechat.tools.NameUtils;
|
|
import com.iamberry.wechat.tools.NameUtils;
|
|
import com.iamberry.wechat.tools.ResponseJson;
|
|
import com.iamberry.wechat.tools.ResponseJson;
|
|
|
|
+import com.iamberry.wechat.tools.ResultInfo;
|
|
import net.sf.json.JSONArray;
|
|
import net.sf.json.JSONArray;
|
|
import org.apache.commons.codec.binary.Base64;
|
|
import org.apache.commons.codec.binary.Base64;
|
|
import org.apache.commons.lang.StringUtils;
|
|
import org.apache.commons.lang.StringUtils;
|
|
@@ -1650,5 +1652,28 @@ public class AdminCustomerController {
|
|
return new ResponseJson(500, "修改失败!", 500);
|
|
return new ResponseJson(500, "修改失败!", 500);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 查询未解决客诉数量
|
|
|
|
+ */
|
|
|
|
+ @ResponseBody
|
|
|
|
+ @RequestMapping(value = "/selectTodo")
|
|
|
|
+ public ResultMsg selectTodo(HttpServletRequest request){
|
|
|
|
+ ResultMsg msg = new ResultMsg();
|
|
|
|
+ CustomerInfo customerInfo = new CustomerInfo();
|
|
|
|
+ customerInfo.setCustomerIsSolve(2);
|
|
|
|
+ //未解决客诉数量
|
|
|
|
+ Integer notSolvedCustomer = customerService.selectNotSolvedCustomer();
|
|
|
|
+ //需要向工厂确认所有已签收的产品数量
|
|
|
|
+
|
|
|
|
+ //需要填写Efast订单号的客诉数量
|
|
|
|
+
|
|
|
|
+ //客诉录入后,三天后未寄回的客诉数量
|
|
|
|
+
|
|
|
|
+ msg.setResultCode(ResultInfo.SUCCESSCODE);
|
|
|
|
+ msg.setStatus(true);
|
|
|
|
+ msg.setData(null);
|
|
|
|
+ return msg;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|