1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Factory/ProductFactory.php

42 lines
1.0 KiB
PHP
Raw Normal View History

2019-04-03 04:34:28 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2019-04-03 04:34:28 +02:00
namespace App\Factory;
use App\Models\Product;
class ProductFactory
{
public static function create(int $company_id, int $user_id) :Product
{
$product = new Product;
$product->company_id = $company_id;
$product->user_id = $user_id;
2019-04-03 04:34:28 +02:00
$product->product_key = '';
$product->notes = '';
$product->cost = 0;
$product->price = 0;
$product->quantity = 1;
$product->tax_name1 = '';
$product->tax_rate1 = 0;
$product->tax_name2 = '';
$product->tax_rate2 = 0;
$product->custom_value1 = '';
$product->custom_value2 = '';
$product->custom_value3 = '';
$product->custom_value4 = '';
$product->is_deleted = 0;
2019-04-03 04:34:28 +02:00
return $product;
}
2019-04-03 04:34:28 +02:00
}