mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
970c9bb87d
* Fixes for converting a quote to invoice * Fixes for deleting an invoice * Payment Terms CRUD * Payment Terms * Push PaymentTerms back into the DB * Payment Terms * Payment Terms * Create api docs for payment terms
27 lines
603 B
PHP
27 lines
603 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Factory;
|
|
|
|
use App\Models\PaymentTerm;
|
|
|
|
class PaymentTermFactory
|
|
{
|
|
public static function create(int $company_id, int $user_id) :PaymentTerm
|
|
{
|
|
$payment_term = new PaymentTerm;
|
|
$payment_term->user_id = $user_id;
|
|
$payment_term->company_id = $company_id;
|
|
|
|
return $payment_term;
|
|
}
|
|
}
|