1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Factory/ProductFactory.php
2019-04-03 13:34:28 +11:00

34 lines
640 B
PHP

<?php
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;
$product->product_key = '';
$product->notes = '';
$product->cost = 0;
$product->qty = 0;
$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;
return $product;
}
}