You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.3 KiB
Java

package com.kiisoo.ic.customer.controller;
import com.kiisoo.ic.common.BaseController;
import com.kiisoo.ic.customer.CustomerService;
import com.kiisoo.ic.customer.bean.OpCustomerDTO;
import com.kiisoo.ic.customer.entity.OpCustomer;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.apache.ibatis.annotations.Param;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
*
*/
@RestController
@RequestMapping("/customer")
@Slf4j
public class CustomerController extends BaseController {
@Autowired
private CustomerService customerService;
@ResponseBody
@PostMapping("/info")
public Map<String, Object> getCustomerInfo(@Param("userId") long userId, Long shopId, Long regionId , Long sellerId,
String startDate, String endDate,@RequestParam("pageNum") int pageNum, @RequestParam("pageSize")int pageSize){
SimpleDateFormat sdf = new SimpleDateFormat();
List<OpCustomerDTO> opCustomerDTOS = null;
try {
opCustomerDTOS = customerService.getCustomerByUserAndDate(userId, shopId, regionId, sellerId,
StringUtils.isBlank(startDate) ? null : sdf.parse(startDate), StringUtils.isBlank(endDate) ? null : sdf.parse(endDate) ,pageNum,pageSize);
return data(opCustomerDTOS);
} catch (ParseException e) {
log.error("日期转换异常:",e);
return fail();
}
}
/**
*
* @param customerId id
* @param name
* @return
*/
@ResponseBody
@PostMapping("/edit/info")
public Map<String, Object> editCustomerInfo(@RequestParam("customerId") long customerId, String name){
try {
if(null!=name){
OpCustomer opCustomer = new OpCustomer();
opCustomer.setId(customerId);
opCustomer.setName(name);
customerService.editCustomerInfo(opCustomer);
}
return success();
} catch (Exception e) {
log.error("修改客户信息异常:",e);
return fail();
}
}
}