mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 08:17:32 -05:00 
			
		
		
		
	Minor fixes for credit_payments in CP
This commit is contained in:
		
							parent
							
								
									e42cb6f4d3
								
							
						
					
					
						commit
						2cd5d2d68a
					
				@ -227,7 +227,7 @@ class CreateSingleAccount extends Command
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        $settings = $client->settings;
 | 
					        $settings = $client->settings;
 | 
				
			||||||
        $settings->currency_id = "1";
 | 
					        $settings->currency_id = "1";
 | 
				
			||||||
        $settings->use_credits_payment = "always";
 | 
					//        $settings->use_credits_payment = "always";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        $client->settings = $settings;
 | 
					        $client->settings = $settings;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -205,6 +205,9 @@ class PaymentController extends Controller
 | 
				
			|||||||
        $credit_totals = $first_invoice->client->getSetting('use_credits_payment') == 'off' ? 0 : $first_invoice->client->service()->getCreditBalance();
 | 
					        $credit_totals = $first_invoice->client->getSetting('use_credits_payment') == 'off' ? 0 : $first_invoice->client->service()->getCreditBalance();
 | 
				
			||||||
        $starting_invoice_amount = $first_invoice->amount;
 | 
					        $starting_invoice_amount = $first_invoice->amount;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					nlog($credit_totals);
 | 
				
			||||||
 | 
					nlog($first_invoice->client->getSetting('use_credits_payment'));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if ($gateway) {
 | 
					        if ($gateway) {
 | 
				
			||||||
            $first_invoice->service()->addGatewayFee($gateway, $payment_method_id, $invoice_totals)->save();
 | 
					            $first_invoice->service()->addGatewayFee($gateway, $payment_method_id, $invoice_totals)->save();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user