1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 03:02:34 +01:00
invoiceninja/app/Factory/InvoiceFactory.php

38 lines
888 B
PHP
Raw Normal View History

2019-04-10 11:09:57 +02:00
<?php
namespace App\Factory;
2019-04-10 11:42:19 +02:00
use App\Models\Invoice;
2019-04-10 11:09:57 +02:00
class InvoiceFactory
{
public static function create() :\stdClass
{
2019-04-10 11:42:19 +02:00
$invoice = new \stdClass;
$invoice->invoice_status_id = Invoice::STATUS_DRAFT;
$invoice->invoice_number = '';
$invoice->discount = 0;
$invoice->is_amount_discount = true;
$invoice->po_number = '';
$invoice->invoice_date = null;
$invoice->due_date = null;
$invoice->is_deleted = false;
$invoice->line_items = json_encode([]);
$invoice->settings = json_encode([]);
$invoice->backup = json_encode([]);
$invoice->tax_name1 = '';
$invoice->tax_rate1 = 0;
$invoice->tax_name2 = '';
$invoice->tax_rate2 = 0;
$invoice->custom_value1 = '';
$invoice->custom_value2 = '';
$invoice->custom_value3 = '';
$invoice->custom_value4 = '';
$invoice->amount = 0;
$invoice->balance = 0;
$invoice->partial = 0;
2019-04-10 11:09:57 +02:00
2019-04-10 11:42:19 +02:00
return $invoice;
2019-04-10 11:09:57 +02:00
}
}