mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:57:33 -05:00 
			
		
		
		
	Minor fix for null client balancE
This commit is contained in:
		
							parent
							
								
									1f1acaa500
								
							
						
					
					
						commit
						d7f5657dda
					
				@ -160,7 +160,7 @@ trait GenerateMigrationResources
 | 
				
			|||||||
                'company_id' => $client->account_id,
 | 
					                'company_id' => $client->account_id,
 | 
				
			||||||
                'user_id' => $client->user_id,
 | 
					                'user_id' => $client->user_id,
 | 
				
			||||||
                'name' => $client->name,
 | 
					                'name' => $client->name,
 | 
				
			||||||
                'balance' => $client->balance,
 | 
					                'balance' => $client->balance ?: 0,
 | 
				
			||||||
                'paid_to_date' => $client->paid_to_date,
 | 
					                'paid_to_date' => $client->paid_to_date,
 | 
				
			||||||
                'address1' => $client->address1,
 | 
					                'address1' => $client->address1,
 | 
				
			||||||
                'address2' => $client->address2,
 | 
					                'address2' => $client->address2,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user