| 
					
				 | 
			
			
				@@ -1023,9 +1023,6 @@ public class PaymentDivMemberRecordServiceImpl extends ServiceImpl<PaymentDivMem 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (tenantId.equals(-1L)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 continue; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            if (amount.compareTo(BigDecimal.ZERO) <= 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                continue; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             String type = userPaymentOrder.getGoodType().getCode(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (share) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 type = type + "_SHARE"; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -1048,7 +1045,9 @@ public class PaymentDivMemberRecordServiceImpl extends ServiceImpl<PaymentDivMem 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 tenantPostStatus = PostStatusEnum.RECORDED; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 isIncomeTenant = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if (tenantAmount.compareTo(BigDecimal.ZERO) <= 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                continue; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             Long platformCashAccountRecordId = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (!isIncomeTenant) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 // 写入平台支出表 
			 |