|
@@ -125,14 +125,11 @@ public class XiaomanCustomerServiceImpl extends ServiceImpl<XiaomanCustomerMappe
|
|
|
public void handleSaveOrUpdate(List<CustomerApiVo> customerApiVoList, Set<Long> allCustomer,boolean flag) {
|
|
|
List<XiaomanCustomer> xiaomanCustomerList = new ArrayList<>(customerApiVoList);
|
|
|
for (XiaomanCustomer customer : xiaomanCustomerList) {
|
|
|
- if (customer.getCompanyId() == 18906983782932L){
|
|
|
- if (allCustomer.contains(customer.getCompanyId())) {
|
|
|
- processCustomer(customer, true,flag);
|
|
|
- } else {
|
|
|
- processCustomer(customer, false,flag);
|
|
|
- }
|
|
|
+ if (allCustomer.contains(customer.getCompanyId())) {
|
|
|
+ processCustomer(customer, true,flag);
|
|
|
+ } else {
|
|
|
+ processCustomer(customer, false,flag);
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
|