|  |  | @ -1,13 +1,11 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | package com.glxp.sale.admin.thread; |  |  |  | package com.glxp.sale.admin.thread; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | import cn.hutool.core.util.StrUtil; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.glxp.sale.admin.entity.basic.UdiRelevanceEntity; |  |  |  | import com.glxp.sale.admin.entity.basic.UdiRelevanceEntity; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.glxp.sale.admin.entity.info.CompanyProductRelevanceEntity; |  |  |  | import com.glxp.sale.admin.entity.info.CompanyProductRelevanceEntity; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.glxp.sale.admin.req.basic.FilterUdiInfoRequest; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.glxp.sale.admin.req.basic.UdiInfoExportRequest; |  |  |  | import com.glxp.sale.admin.req.basic.UdiInfoExportRequest; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.glxp.sale.admin.res.basic.UdiRelevanceResponse; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.glxp.sale.admin.service.basic.UdiRelevanceService; |  |  |  | import com.glxp.sale.admin.service.basic.UdiRelevanceService; | 
			
		
	
		
		
			
				
					
					|  |  |  | import com.glxp.sale.admin.service.info.CompanyProductRelevanceService; |  |  |  | import com.glxp.sale.admin.service.info.CompanyProductRelevanceService; | 
			
		
	
		
		
			
				
					
					|  |  |  | import org.springframework.beans.BeanUtils; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | import org.springframework.scheduling.annotation.Async; |  |  |  | import org.springframework.scheduling.annotation.Async; | 
			
		
	
		
		
			
				
					
					|  |  |  | import org.springframework.stereotype.Service; |  |  |  | import org.springframework.stereotype.Service; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -32,8 +30,9 @@ public class CompanyProductsRelService { | 
			
		
	
		
		
			
				
					
					|  |  |  |                 for (String uuid : rlIdS) { |  |  |  |                 for (String uuid : rlIdS) { | 
			
		
	
		
		
			
				
					
					|  |  |  |                     CompanyProductRelevanceEntity companyProductRelevanceEntity = new CompanyProductRelevanceEntity(); |  |  |  |                     CompanyProductRelevanceEntity companyProductRelevanceEntity = new CompanyProductRelevanceEntity(); | 
			
		
	
		
		
			
				
					
					|  |  |  |                     UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectById(uuid); |  |  |  |                     UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectById(uuid); | 
			
		
	
		
		
			
				
					
					|  |  |  |                     if (udiRelevanceEntity != null) |  |  |  |                     if (udiRelevanceEntity != null && StrUtil.isNotBlank(udiRelevanceEntity.getPrice())) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |                         companyProductRelevanceEntity.setPrice(new BigDecimal(udiRelevanceEntity.getPrice())); |  |  |  |                         companyProductRelevanceEntity.setPrice(new BigDecimal(udiRelevanceEntity.getPrice())); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |                     } | 
			
		
	
		
		
			
				
					
					|  |  |  |                     companyProductRelevanceEntity.setCreate_time(new Date()); |  |  |  |                     companyProductRelevanceEntity.setCreate_time(new Date()); | 
			
		
	
		
		
			
				
					
					|  |  |  |                     companyProductRelevanceEntity.setUpdate_time(new Date()); |  |  |  |                     companyProductRelevanceEntity.setUpdate_time(new Date()); | 
			
		
	
		
		
			
				
					
					|  |  |  |                     companyProductRelevanceEntity.setAuditStatus("3"); |  |  |  |                     companyProductRelevanceEntity.setAuditStatus("3"); | 
			
		
	
	
		
		
			
				
					|  |  | 
 |