|
@@ -3,12 +3,14 @@ package com.bz.smart_city.controller;
|
|
|
import com.bz.smart_city.commom.model.AjaxMessage;
|
|
|
import com.bz.smart_city.commom.model.ListObjectWrapper;
|
|
|
import com.bz.smart_city.commom.model.ResultStatus;
|
|
|
+import com.bz.smart_city.dao.CustomerMapper;
|
|
|
import com.bz.smart_city.dto.ClearingDataDTO;
|
|
|
import com.bz.smart_city.dto.assistant.InstallPlanInputDTO;
|
|
|
import com.bz.smart_city.dto.sync.*;
|
|
|
import com.bz.smart_city.dto.CommunityDto;
|
|
|
import com.bz.smart_city.dto.syncdata.*;
|
|
|
import com.bz.smart_city.entity.Community;
|
|
|
+import com.bz.smart_city.entity.Customer;
|
|
|
import com.bz.smart_city.service.CommunityService;
|
|
|
import com.bz.smart_city.service.SyncDataService;
|
|
|
import com.bz.smart_city.service.assistant.InstallPlanService;
|
|
@@ -35,6 +37,7 @@ public class SyncDataApi {
|
|
|
CommunityService communityService;
|
|
|
@Autowired
|
|
|
private InstallPlanService installPlanService;
|
|
|
+ private CustomerMapper customerMapper;
|
|
|
|
|
|
|
|
|
@ResponseBody
|
|
@@ -122,6 +125,8 @@ public class SyncDataApi {
|
|
|
public AjaxMessage syncPlan(
|
|
|
@ApiParam(value = "安装计划", required = true) @RequestBody(required = true) InstallPlanInputDTO installPlanInput
|
|
|
) {
|
|
|
+ Integer customerId = customerMapper.findByCustomerNo(installPlanInput.getCustomerNo());
|
|
|
+ installPlanInput.setCustomerId(customerId);
|
|
|
installPlanService.syncPlan(installPlanInput);
|
|
|
return new AjaxMessage(ResultStatus.OK);
|
|
|
}
|