CustomerController.java 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. package com.jkcredit.invoice.controller.business;
  2. import cn.afterturn.easypoi.excel.entity.ExportParams;
  3. import cn.com.taiji.sdk.model.comm.protocol.eoms.company.B2bCompanyModel;
  4. import com.baomidou.mybatisplus.core.metadata.IPage;
  5. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  6. import com.jkcredit.invoice.annotation.LoginRequired;
  7. import com.jkcredit.invoice.annotation.annotationdes.AuthenticationInterceptor;
  8. import com.jkcredit.invoice.model.entity.customer.Customer;
  9. import com.jkcredit.invoice.model.entity.CustomerRecharge;
  10. import com.jkcredit.invoice.model.entity.customer.CustomerRec;
  11. import com.jkcredit.invoice.model.entity.manager.Param;
  12. import com.jkcredit.invoice.service.customer.CustomerRecService;
  13. import com.jkcredit.invoice.service.customer.CustomerRechargeService;
  14. import com.jkcredit.invoice.service.customer.CustomerService;
  15. import com.jkcredit.invoice.service.lowerservice.CustomeLowerService;
  16. import com.jkcredit.invoice.service.manager.ParamService;
  17. import com.jkcredit.invoice.util.DateUtil;
  18. import com.jkcredit.invoice.util.ExportUtil;
  19. import com.jkcredit.invoice.util.RespR;
  20. import com.jkcredit.invoice.util.WordUtil;
  21. import io.swagger.annotations.Api;
  22. import io.swagger.annotations.ApiOperation;
  23. import org.apache.commons.lang.StringUtils;
  24. import org.apache.poi.util.IOUtils;
  25. import org.springframework.beans.factory.annotation.Autowired;
  26. import org.springframework.web.bind.annotation.*;
  27. import javax.servlet.http.HttpServletResponse;
  28. import java.io.*;
  29. import java.net.URLEncoder;
  30. import java.util.*;
  31. /**
  32. * 客户操作
  33. */
  34. @Api(tags = "客户操作")
  35. @RestController
  36. @RequestMapping(value = {"/customer"})
  37. /**
  38. * @Description 客户操作
  39. * @Author mashengyi
  40. * @Date 2022/2/8 18:16
  41. * @Param
  42. * @Return
  43. * @Exception
  44. *
  45. */
  46. public class CustomerController {
  47. @Autowired
  48. CustomerService customerService;
  49. @Autowired
  50. CustomerRechargeService customerRechargeService;
  51. @Autowired
  52. CustomeLowerService lowerService;
  53. @Autowired
  54. CustomerRecService customerRecService;
  55. @Autowired
  56. private ParamService paramService;
  57. /**
  58. * 分页查询客户
  59. *
  60. * @param page 参数集
  61. * @return 用户集合
  62. */
  63. @PostMapping("/findCustomer")
  64. @ApiOperation(value="分页查询客户", notes="分页查询客户")
  65. @LoginRequired
  66. public RespR getCustomersByPage(Page page, Customer customer) {
  67. return new RespR(customerService.findAllCustomers(page, customer));
  68. }
  69. /**
  70. * 分页查询客户
  71. *
  72. * @param page 参数集
  73. * @return 用户集合
  74. */
  75. @PostMapping("/findCustomerRecharge")
  76. @ApiOperation(value="分页查询客户充值信息", notes="分页查询客户充值信息")
  77. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  78. public RespR findCustomerRecharge(Page page, CustomerRecharge customerRecharge) {
  79. return new RespR(customerRechargeService.findAllCustomerRecharge(page, customerRecharge));
  80. }
  81. /**
  82. * 分页查询客户
  83. *
  84. * @param page 参数集
  85. * @return 用户集合
  86. */
  87. @PostMapping("/findCustomerRechargeMoney")
  88. @ApiOperation(value="分页查询客户端客户充值信息", notes="分页查询客户端客户充值信息")
  89. public RespR findCustomerRechargeMoney(Page page, CustomerRecharge customerRecharge) {
  90. return new RespR(customerRechargeService.findAllCustomerRechargeMoney(page, customerRecharge));
  91. }
  92. /**
  93. * 导出客户信息
  94. * @param
  95. * @return 用户集合
  96. */
  97. @GetMapping("/findCustomerRecListExport")
  98. @ApiOperation(value="客户信息导出", notes="客户信息导出")
  99. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  100. public void findCustomerRechargeExport(String customerName,String companyName,String companyBelongName,HttpServletResponse response) throws Exception{
  101. CustomerRec customerRec = new CustomerRec();
  102. customerRec.setCustomerName(customerName);
  103. customerRec.setCompanyBelongName(companyBelongName);
  104. customerRec.setCompanyName(companyName);
  105. List<CustomerRec> customerRecs = customerRecService.findAllCustomerRecForExport(customerRec);
  106. if(customerRecs!=null && customerRecs.size()>0){
  107. customerRecs.stream().forEach(customerRec1 -> {
  108. if("2".equals(customerRec1.getBussinessType())){
  109. customerRec1.setBussinessType("无车");
  110. }else if("0".equals(customerRec1.getBussinessType())){
  111. customerRec1.setBussinessType("自有车");
  112. }
  113. });
  114. }
  115. ExportParams exportParams = new ExportParams("客户信息","客户信息");
  116. ExportUtil.exportExcel(customerRecs,CustomerRec.class,"客户信息导出",exportParams,response);
  117. }
  118. /**
  119. * 分页查询客户注册信息
  120. *
  121. * @param page 参数集
  122. * @return 用户集合
  123. */
  124. @PostMapping("/findCustomerRecList")
  125. @ApiOperation(value="分页查询客户注册信息", notes="分页查询客户注册信息")
  126. @LoginRequired
  127. public RespR findCustomerRecList(Page page, CustomerRec customerRec) {
  128. return new RespR(customerRecService.findAllCustomerRec(page, customerRec));
  129. }
  130. /**
  131. * 添加客户
  132. * @return 用户集合
  133. */
  134. @PostMapping("/addCustomer")
  135. @ApiOperation(value="添加客户", notes="添加客户")
  136. @LoginRequired
  137. public RespR addCustomer(@RequestBody Customer customer) {
  138. return new RespR(customerService.addCustomers(customer),"客户添加失败,请查看是否重复");
  139. }
  140. /**
  141. * 修改客户状态
  142. * @return 用户集合
  143. */
  144. @PostMapping("/updateCustomer")
  145. @ApiOperation(value="更新用户", notes="更新用户")
  146. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  147. public RespR updateCustomer(@RequestBody Customer customer) {
  148. return new RespR(customerService.updateCustomer(customer));
  149. }
  150. /**
  151. * 修改客户状态
  152. * @return 用户集合
  153. */
  154. @PostMapping("/customeRecStop")
  155. @ApiOperation(value="停用备案用户", notes="停用备案用户")
  156. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  157. public RespR customeRecStop(@RequestBody CustomerRec customerRec) {
  158. customerRec.setRecStatus(4);
  159. return customerService.updateCustomerRecStatus(customerRec);
  160. }
  161. /**
  162. * 修改客户状态
  163. * @return 用户集合customerRecAdd
  164. */
  165. @PostMapping("/customerRecAdd")
  166. @ApiOperation(value="手工添加备案信息", notes="手工添加备案信息")
  167. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  168. public RespR customerRecAdd(@RequestBody CustomerRec customerRec) {
  169. customerRec.setInterType(1);
  170. List<CustomerRec> customerRecList = new ArrayList<>();
  171. customerRecList.add(customerRec);
  172. return lowerService.customeRec(customerRecList);
  173. }
  174. /**
  175. * 修改客户状态
  176. * @return 用户集合customerRecAdd
  177. */
  178. @PostMapping("/customeRecQueryUpper")
  179. @ApiOperation(value="查询备案信息", notes="手工添加备案信息")
  180. @LoginRequired
  181. public RespR customeRecQueryUpper(@RequestBody CustomerRec customerRec) {
  182. RespR<List<B2bCompanyModel>> respR = customerService.customerRecQuery(customerRec);
  183. if(respR.getCode() == 1){
  184. return respR;
  185. }else{
  186. List<B2bCompanyModel> resArr = respR.getData();
  187. if(resArr == null || resArr.size() == 0){
  188. return new RespR(false,"未注册,无法回填");
  189. }else {
  190. if(resArr.size()>=1){
  191. resArr.forEach(b2bCompanyModel->{
  192. if(b2bCompanyModel.getCompanyType().equals(customerRec.getCompanyType())){
  193. customerRec.setCompanyType(b2bCompanyModel.getCompanyType());
  194. customerRec.setOperatingRangeType(b2bCompanyModel.getOperatingRangeType());
  195. customerRec.setCompanyLeader(b2bCompanyModel.getContact());
  196. customerRec.setCompanyLeaderPhone(b2bCompanyModel.getEmergencyTel());
  197. customerRec.setCompanyAdress(b2bCompanyModel.getBuyerAddr());
  198. customerRec.setCompanyPhone(b2bCompanyModel.getBuyerTel());
  199. customerRec.setCompanyOpenbank(b2bCompanyModel.getBuyerBank());
  200. customerRec.setCompanyOpenbankAcc(b2bCompanyModel.getBuyerBankAccount());
  201. customerRec.setCompanyPhone(b2bCompanyModel.getTel());
  202. }
  203. });
  204. }
  205. return new RespR(customerRec);
  206. }
  207. }
  208. }
  209. /**
  210. * 充值
  211. * @return 用户集合
  212. */
  213. @PostMapping("/customRecharge")
  214. @ApiOperation(value="账号充值", notes="账号充值")
  215. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  216. public RespR customRecharge(@RequestBody CustomerRecharge customerRecharge) {
  217. return new RespR(customerService.customRecharge(customerRecharge));
  218. }
  219. @PostMapping("/customeRec")
  220. @ApiOperation(value="用户备案确认", notes="用户备案确认")
  221. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  222. public RespR customeRec(@RequestBody CustomerRec customerRec){
  223. return customerService.customeRec(customerRec);
  224. }
  225. @PostMapping("/contractAdd")
  226. @ApiOperation(value="协议上传确认", notes="协议上传确认")
  227. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  228. public RespR contractAdd(@RequestBody CustomerRec customerRec){
  229. return customerService.contractAdd(customerRec);
  230. }
  231. @GetMapping("/contractDownload")
  232. @ApiOperation(value="协议下载", notes="协议下载")
  233. public RespR contractDownload(String customerRecId,HttpServletResponse response){
  234. CustomerRec customerRec = (CustomerRec) customerService.contractDownload(customerRecId).getData();
  235. String fileName = customerRec.getLowerFileName();
  236. if(customerRec.getLowerBase64Str()!=null){
  237. byte [] byteArray = Base64.getDecoder().decode(customerRec.getLowerBase64Str());
  238. InputStream inputStream = new ByteArrayInputStream(byteArray);
  239. OutputStream outputStream = null;
  240. try {
  241. response.setHeader("Content-Disposition", "attachment;filename="+ URLEncoder.encode(fileName, "UTF-8"));
  242. outputStream = response.getOutputStream();
  243. IOUtils.copy(inputStream, outputStream);
  244. response.flushBuffer();
  245. return new RespR(true);
  246. } catch (IOException e) {
  247. } finally {
  248. IOUtils.closeQuietly(inputStream);
  249. IOUtils.closeQuietly(outputStream);
  250. }
  251. }
  252. return new RespR(false);
  253. }
  254. @GetMapping("/generateWord")
  255. @ApiOperation(value="文档下载", notes="文档下载")
  256. public RespR generateWord(String customerRecId,HttpServletResponse response){
  257. CustomerRec customerRec = (CustomerRec) customerService.contractDownload(customerRecId).getData();
  258. if(null == customerRec || null ==customerRec.getServiceStartTime() || null ==customerRec.getServiceEndTime()){
  259. return new RespR(false,"企业维护信息缺失服务时间,请手动维护");
  260. }
  261. String fileName = "合作说明.doc";
  262. Map<String, String> dataMap = new HashMap<>();
  263. dataMap.put("a", customerRec.getCompanyBelongName());
  264. dataMap.put("b", customerRec.getCompanyName());
  265. dataMap.put("c", customerRec.getCompanyReferencenum());
  266. dataMap.put("d", customerRec.getCompanyAdress());
  267. dataMap.put("e", customerRec.getCompanyPhone());
  268. dataMap.put("f", customerRec.getCompanyOpenbank());
  269. dataMap.put("g", customerRec.getCompanyOpenbankAcc());
  270. dataMap.put("j", customerRec.getServiceStartTime().substring(0,10));
  271. dataMap.put("k", customerRec.getServiceEndTime().substring(0,10));
  272. Calendar now = Calendar.getInstance();
  273. dataMap.put("l",now.get(Calendar.YEAR)+"");
  274. dataMap.put("h",(now.get(Calendar.MONTH) + 1) + "");
  275. dataMap.put("i", now.get(Calendar.DAY_OF_MONTH)+"");
  276. OutputStream outputStream =null;
  277. try{
  278. response.setHeader("Content-Disposition", "attachment;filename="+ URLEncoder.encode(fileName, "UTF-8"));
  279. outputStream = response.getOutputStream();
  280. WordUtil.ExportSimpleWord(dataMap,"/static/templates/excel/",outputStream);
  281. response.flushBuffer();
  282. }catch (Exception e){
  283. e.printStackTrace();
  284. }finally {
  285. IOUtils.closeQuietly(outputStream);
  286. }
  287. return new RespR(false);
  288. }
  289. /**
  290. * 分页查询客户备案预警信息
  291. *
  292. * @param page 参数集
  293. * @return 用户集合
  294. */
  295. @PostMapping("/findCustomerRecTimeList")
  296. @ApiOperation(value="客户备案预警查询", notes="客户备案预警查询")
  297. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  298. public RespR findCustomerRecTimeList(Page page, CustomerRec customerRec) {
  299. IPage ipage = null;
  300. if(StringUtils.isNotEmpty(customerRec.getServiceEndTime()) && !"null".equals(customerRec.getServiceEndTime())){
  301. String [] res =customerRec.getServiceEndTime().split(",");
  302. customerRec.setServiceEndTimeStart(res[0]);
  303. customerRec.setServiceEndTimeEnd(res[1].replace("00:00:00","23:59:59"));
  304. ipage = customerRecService.findAllCustomerRecWarning(page, customerRec);
  305. }else{
  306. Param param = paramService.getParamsByParamName("CUST_EARLY_WARNING");
  307. ipage = customerRecService.findAllCustomerRecWarning(page, customerRec);
  308. List<CustomerRec> lists = ipage.getRecords();
  309. if(lists.size()>0){
  310. //遍历删除
  311. Iterator<CustomerRec> iterator = lists.iterator();
  312. while (iterator.hasNext()) {
  313. CustomerRec customerRec1 = iterator.next();
  314. if (((DateUtil.daysBetween(customerRec1.getServiceEndTime(),new Date()) < 0 ) )
  315. || (Integer.valueOf(param.getParamValue()) <= (DateUtil.daysBetween(customerRec1.getServiceEndTime(),new Date())))) {
  316. iterator.remove();//使用迭代器的删除方法删除
  317. }
  318. }
  319. }
  320. ipage.setTotal(lists.size());
  321. }
  322. return new RespR(ipage);
  323. }
  324. /**
  325. * 分页查询余额告警用户
  326. *
  327. * @param page 参数集
  328. * @return 用户集合
  329. */
  330. @PostMapping("/findCustomerMoney")
  331. @ApiOperation(value="分页查询余额告警用户", notes="分页查询余额告警用户")
  332. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  333. public RespR getCustomerMoneysByPage(Page page, Customer customer) {
  334. Param param = paramService.getParamsByParamName("CUST_MONEY_WARNING");
  335. IPage ipage = null;
  336. if(customer.getMoneyUpper() == null || customer.getMoneyUpper() == -1){
  337. customer.setMoneyUpper(Double.valueOf(param.getParamValue()));
  338. ipage = customerService.findAllNomoneyCustomers(page, customer);
  339. }else if(customer.getMoneyUpper() == null || customer.getMoneyUpper() == 0){
  340. ipage = customerService.findAllNomoneyCustomersByZero(page, customer);
  341. }else {
  342. ipage = customerService.findAllNomoneyCustomers(page, customer);
  343. }
  344. return new RespR(ipage);
  345. }
  346. /**
  347. * @param customerRec
  348. * @return
  349. */
  350. @PostMapping("/customeRecQueryListByPage")
  351. @ApiOperation(value="用户备案列表分页查询", notes="用户备案列表分页查询")
  352. @LoginRequired
  353. public RespR customeRecQueryListByPage(Page page, CustomerRec customerRec){
  354. IPage ipage = customerRecService.findAllCustomerRec(page, customerRec);
  355. return new RespR(ipage);
  356. }
  357. }