|
|
@@ -1,11 +1,7 @@
|
|
|
package easydo.technology.controller;
|
|
|
|
|
|
-import easydo.technology.components.JdbcClient;
|
|
|
-import easydo.technology.enums.MESEnum;
|
|
|
-import easydo.technology.exception.BizException;
|
|
|
import easydo.technology.model.Customer;
|
|
|
-import easydo.technology.service.FlowNoService;
|
|
|
-import easydo.technology.utils.StringUtil;
|
|
|
+import easydo.technology.service.CustomerService;
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
@@ -13,112 +9,42 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import javax.sql.DataSource;
|
|
|
-import java.sql.Connection;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@RestController
|
|
|
@RequestMapping("/customer")
|
|
|
public class CustomerController {
|
|
|
+
|
|
|
@Resource
|
|
|
- JdbcClient jdbcClient;
|
|
|
- @Resource
|
|
|
- DataSource dataSource;
|
|
|
- @Resource
|
|
|
- FlowNoService flowNoService;
|
|
|
+ CustomerService customerService;
|
|
|
|
|
|
@RequestMapping(value = "/getList")
|
|
|
public Object getList(@RequestBody Map<String, Object> map) throws Exception {
|
|
|
- List<Customer> list = jdbcClient.getJdbcList(map, Customer.class);
|
|
|
+ Object list = customerService.getList(map);
|
|
|
return new ResponseEntity<>(list, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getPage")
|
|
|
public Object getPage(@RequestBody Map<String, Object> map) throws Exception {
|
|
|
- Connection connection = dataSource.getConnection();
|
|
|
- try {
|
|
|
-
|
|
|
- Map<String, Object> recordsPage = jdbcClient.getJdbcPage(map, Customer.class, connection);
|
|
|
- return new ResponseEntity<>(recordsPage, HttpStatus.OK);
|
|
|
- } catch (Exception e) {
|
|
|
- throw new BizException(e.getMessage());
|
|
|
- } finally {
|
|
|
- connection.close();
|
|
|
- }
|
|
|
+ Object page = customerService.getPage(map);
|
|
|
+ return new ResponseEntity<>(page, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/save")
|
|
|
public Object save(@RequestBody Customer model) throws Exception {
|
|
|
- Connection connection = dataSource.getConnection();
|
|
|
- try {
|
|
|
- connection.setAutoCommit(false);
|
|
|
- model.setStatus(MESEnum.PROCESS_OF_STATUS_ENABLE.getValue());
|
|
|
- generateCode(model, connection);
|
|
|
- jdbcClient.jdbcInsert(model, connection);
|
|
|
- connection.commit();
|
|
|
- return new ResponseEntity<>(model, HttpStatus.OK);
|
|
|
- } catch (Exception e) {
|
|
|
- connection.rollback();
|
|
|
- throw new BizException(e.getMessage());
|
|
|
- } finally {
|
|
|
- connection.close();
|
|
|
- }
|
|
|
+ Object result = customerService.save(model);
|
|
|
+ return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/update")
|
|
|
public Object update(@RequestBody Customer model) throws Exception {
|
|
|
- Connection connection = dataSource.getConnection();
|
|
|
- try {
|
|
|
- connection.setAutoCommit(false);
|
|
|
-
|
|
|
- jdbcClient.jdbcUpdateById(model, connection);
|
|
|
-
|
|
|
- connection.commit();
|
|
|
- return new ResponseEntity<>(HttpStatus.OK);
|
|
|
- } catch (Exception e) {
|
|
|
- connection.rollback();
|
|
|
- throw new BizException(e.getMessage());
|
|
|
- } finally {
|
|
|
- connection.close();
|
|
|
- }
|
|
|
+ Object result = customerService.update(model);
|
|
|
+ return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/remove")
|
|
|
- public Object deleteProgram(@RequestBody Customer model) throws Exception {
|
|
|
- Connection connection = dataSource.getConnection();
|
|
|
- try {
|
|
|
- jdbcClient.jdbcRemoveById(model, connection);
|
|
|
-
|
|
|
- return new ResponseEntity<>(HttpStatus.OK);
|
|
|
- } catch (Exception e) {
|
|
|
- throw new BizException(e.getMessage());
|
|
|
- } finally {
|
|
|
- connection.close();
|
|
|
- }
|
|
|
+ public Object remove(@RequestBody Customer model) throws Exception {
|
|
|
+ Object result = customerService.remove(model);
|
|
|
+ return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
-
|
|
|
- private synchronized void generateCode(Customer model, Connection connection) throws Exception {
|
|
|
- if (StringUtil.isEmpty(model.getCode())) {
|
|
|
- while (true) {
|
|
|
- String flowNo = flowNoService.getFlowNo(MESEnum.FLOW_NO_TYPE_CUSTOMER.getValue(), connection);
|
|
|
- Customer param = new Customer();
|
|
|
- param.setCode(flowNo);
|
|
|
- int count = jdbcClient.getJdbcCount(param, connection);
|
|
|
- if (count == 0) {
|
|
|
- model.setCode(flowNo);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- } else {
|
|
|
- Customer param = new Customer();
|
|
|
- param.setCode(model.getCode());
|
|
|
- int count = jdbcClient.getJdbcCount(param, connection);
|
|
|
- if (count > 0) {
|
|
|
- throw new BizException("编号已存在,请重新填写");
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
}
|