mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:17:35 -05:00 
			
		
		
		
	Add 'Sent' filter to invoice reports #1414
This commit is contained in:
		
							parent
							
								
									a99065f70b
								
							
						
					
					
						commit
						b2a2ac6630
					
				@ -30,7 +30,7 @@ class InvoiceReport extends AbstractReport
 | 
			
		||||
                        ->with(['invoices' => function ($query) use ($status) {
 | 
			
		||||
                            if ($status == 'draft') {
 | 
			
		||||
                                $query->whereIsPublic(false);
 | 
			
		||||
                            } elseif ($status == 'unpaid' || $status == 'paid') {
 | 
			
		||||
                            } elseif (in_array($status, ['paid', 'unpaid', 'sent'])) {
 | 
			
		||||
                                $query->whereIsPublic(true);
 | 
			
		||||
                            }
 | 
			
		||||
                            $query->invoices()
 | 
			
		||||
 | 
			
		||||
@ -30,7 +30,7 @@ class ProductReport extends AbstractReport
 | 
			
		||||
                        ->with(['invoices' => function ($query) use ($status) {
 | 
			
		||||
                            if ($status == 'draft') {
 | 
			
		||||
                                $query->whereIsPublic(false);
 | 
			
		||||
                            } elseif ($status == 'unpaid' || $status == 'paid') {
 | 
			
		||||
                            } elseif (in_array($status, ['paid', 'unpaid', 'sent'])) {
 | 
			
		||||
                                $query->whereIsPublic(true);
 | 
			
		||||
                            }
 | 
			
		||||
                            $query->invoices()
 | 
			
		||||
 | 
			
		||||
@ -2248,6 +2248,8 @@ $LANG = array(
 | 
			
		||||
    'oauth_taken' => 'The account is already registered',
 | 
			
		||||
    'emailed_payment' => 'Successfully emailed payment',
 | 
			
		||||
    'email_payment' => 'Email Payment',
 | 
			
		||||
    'sent' => 'Sent',
 | 
			
		||||
    
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
return $LANG;
 | 
			
		||||
 | 
			
		||||
@ -122,6 +122,7 @@
 | 
			
		||||
							{!! Former::select('invoice_status')->label('status')
 | 
			
		||||
									->addOption(trans('texts.all'), 'all')
 | 
			
		||||
									->addOption(trans('texts.draft'), 'draft')
 | 
			
		||||
									->addOption(trans('texts.sent'), 'sent')
 | 
			
		||||
									->addOption(trans('texts.unpaid'), 'unpaid')
 | 
			
		||||
									->addOption(trans('texts.paid'), 'paid') !!}
 | 
			
		||||
						</div>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user