|
|
|
@ -10,6 +10,7 @@ import com.glxp.api.http.ErpInvClient;
|
|
|
|
|
import com.glxp.api.req.thrsys.*;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.res.thrsys.ThrInvProductResponse;
|
|
|
|
|
import com.glxp.api.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.api.util.ExcelUtil;
|
|
|
|
|
import com.glxp.api.util.RedisUtil;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
@ -39,6 +40,8 @@ public class ThrInvProductsDlService {
|
|
|
|
|
ThrInvProductsDetailService thrInvProductsDetailService;
|
|
|
|
|
@Resource
|
|
|
|
|
ErpInvClient erpInvClient;
|
|
|
|
|
@Resource
|
|
|
|
|
CustomerService customerServicel;
|
|
|
|
|
|
|
|
|
|
@Async
|
|
|
|
|
public void importSelcyInvProducrs(String genKey, String thirdSys, List<ThrInvProductResponse> ThrInvProductResponses) {
|
|
|
|
@ -60,6 +63,9 @@ public class ThrInvProductsDlService {
|
|
|
|
|
thrProductsEntity.setGenKeyFk(genKey);
|
|
|
|
|
thrProductsEntity.setThirdSysFk(thirdSys);
|
|
|
|
|
thrProductsEntity.setUpdateTime(new Date());
|
|
|
|
|
thrProductsEntity.setCreateTime(new Date());
|
|
|
|
|
thrProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
thrProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
return thrProductsEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
@ -74,6 +80,9 @@ public class ThrInvProductsDlService {
|
|
|
|
|
ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity();
|
|
|
|
|
BeanUtils.copyProperties(item, thrInvProductsEntity);
|
|
|
|
|
thrInvProductsEntity.setUpdateTime(new Date());
|
|
|
|
|
thrInvProductsEntity.setCreateTime(new Date());
|
|
|
|
|
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
return thrInvProductsEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
@ -107,6 +116,9 @@ public class ThrInvProductsDlService {
|
|
|
|
|
ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity();
|
|
|
|
|
BeanUtils.copyProperties(item, thrInvProductsEntity);
|
|
|
|
|
thrInvProductsEntity.setUpdateTime(new Date());
|
|
|
|
|
thrInvProductsEntity.setCreateTime(new Date());
|
|
|
|
|
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
return thrInvProductsEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
@ -194,6 +206,9 @@ public class ThrInvProductsDlService {
|
|
|
|
|
thrInvProductsImportDetailEntity.setThirdSysFk(thirdSys);
|
|
|
|
|
thrInvProductsImportDetailEntity.setGenKeyFk(genKey);
|
|
|
|
|
thrInvProductsImportDetailEntity.setUpdateTime(new Date());
|
|
|
|
|
thrInvProductsImportDetailEntity.setCreateTime(new Date());
|
|
|
|
|
thrInvProductsImportDetailEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
thrInvProductsImportDetailEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
return thrInvProductsImportDetailEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
@ -205,6 +220,9 @@ public class ThrInvProductsDlService {
|
|
|
|
|
ThrInvProductsEntity thrInvProductsEntity = new ThrInvProductsEntity();
|
|
|
|
|
BeanUtils.copyProperties(item, thrInvProductsEntity);
|
|
|
|
|
thrInvProductsEntity.setUpdateTime(new Date());
|
|
|
|
|
thrInvProductsEntity.setCreateTime(new Date());
|
|
|
|
|
thrInvProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
thrInvProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
return thrInvProductsEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
@ -243,6 +261,9 @@ public class ThrInvProductsDlService {
|
|
|
|
|
thrProductsEntity.setGenKeyFk(genKey);
|
|
|
|
|
thrProductsEntity.setThirdSysFk(thirdSys);
|
|
|
|
|
thrProductsEntity.setUpdateTime(new Date());
|
|
|
|
|
thrProductsEntity.setCreateTime(new Date());
|
|
|
|
|
thrProductsEntity.setCreateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
thrProductsEntity.setUpdateUser(String.valueOf(customerServicel.getUserId()));
|
|
|
|
|
return thrProductsEntity;
|
|
|
|
|
}
|
|
|
|
|
).collect(Collectors.toList());
|
|
|
|
|