mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:47:32 -05:00 
			
		
		
		
	Change back to UTC dates
This commit is contained in:
		
							parent
							
								
									80b582a059
								
							
						
					
					
						commit
						4739cc04c3
					
				@ -231,7 +231,7 @@ class InvoiceApiController extends BaseAPIController
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if (!isset($data['invoice_date'])) {
 | 
			
		||||
            $fields['invoice_date_sql'] = Utils::today(false)->format('Y-m-d');
 | 
			
		||||
            $fields['invoice_date_sql'] = date_create()->format('Y-m-d');
 | 
			
		||||
        }
 | 
			
		||||
        if (!isset($data['due_date'])) {
 | 
			
		||||
            $fields['due_date_sql'] = false;
 | 
			
		||||
 | 
			
		||||
@ -101,7 +101,7 @@ class InvoiceController extends BaseController
 | 
			
		||||
            $invoice->invoice_number = $account->getNextNumber($invoice);
 | 
			
		||||
            $invoice->balance = $invoice->amount;
 | 
			
		||||
            $invoice->invoice_status_id = 0;
 | 
			
		||||
            $invoice->invoice_date = Utils::today(false)->format('Y-m-d');
 | 
			
		||||
            $invoice->invoice_date = date_create()->format('Y-m-d');
 | 
			
		||||
            $method = 'POST';
 | 
			
		||||
            $url = "{$entityType}s";
 | 
			
		||||
        } else {
 | 
			
		||||
 | 
			
		||||
@ -612,7 +612,7 @@ class BasePaymentDriver
 | 
			
		||||
        $payment->client_id = $invoice->client_id;
 | 
			
		||||
        $payment->contact_id = $invitation->contact_id;
 | 
			
		||||
        $payment->transaction_reference = $ref;
 | 
			
		||||
        $payment->payment_date = Utils::today(false)->format('Y-m-d');
 | 
			
		||||
        $payment->payment_date = date_create()->format('Y-m-d');
 | 
			
		||||
        $payment->ip = Request::ip();
 | 
			
		||||
 | 
			
		||||
        $payment = $this->creatingPayment($payment, $paymentMethod);
 | 
			
		||||
 | 
			
		||||
@ -301,7 +301,7 @@ class InvoiceRepository extends BaseRepository
 | 
			
		||||
                $entityType = ENTITY_QUOTE;
 | 
			
		||||
            }
 | 
			
		||||
            $invoice = $account->createInvoice($entityType, $data['client_id']);
 | 
			
		||||
            $invoice->invoice_date = Utils::today(false)->format('Y-m-d');
 | 
			
		||||
            $invoice->invoice_date = date_create()->format('Y-m-d');
 | 
			
		||||
            if (isset($data['has_tasks']) && filter_var($data['has_tasks'], FILTER_VALIDATE_BOOLEAN)) {
 | 
			
		||||
                $invoice->has_tasks = true;
 | 
			
		||||
            }
 | 
			
		||||
@ -666,7 +666,7 @@ class InvoiceRepository extends BaseRepository
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        $clone->invoice_number = $invoiceNumber ?: $account->getNextNumber($clone);
 | 
			
		||||
        $clone->invoice_date = Utils::today(false)->format('Y-m-d');
 | 
			
		||||
        $clone->invoice_date = date_create()->format('Y-m-d');
 | 
			
		||||
 | 
			
		||||
        foreach ([
 | 
			
		||||
          'client_id',
 | 
			
		||||
@ -869,7 +869,7 @@ class InvoiceRepository extends BaseRepository
 | 
			
		||||
        $invoice->invoice_number = $recurInvoice->account->getNextNumber($invoice);
 | 
			
		||||
        $invoice->amount = $recurInvoice->amount;
 | 
			
		||||
        $invoice->balance = $recurInvoice->amount;
 | 
			
		||||
        $invoice->invoice_date = Utils::today(false)->format('Y-m-d');
 | 
			
		||||
        $invoice->invoice_date = date_create()->format('Y-m-d');
 | 
			
		||||
        $invoice->discount = $recurInvoice->discount;
 | 
			
		||||
        $invoice->po_number = $recurInvoice->po_number;
 | 
			
		||||
        $invoice->public_notes = Utils::processVariables($recurInvoice->public_notes);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user