Schedule Invoice

This commit is contained in:
David Bomba 2023-03-16 20:34:20 +11:00
parent 8d66d9e60f
commit 77c56ef2a8
2 changed files with 40 additions and 0 deletions

View File

@ -471,9 +471,12 @@ class CompanySettings extends BaseSettings
public $client_initiated_payments_minimum = 0;
public $client_initiated_payments_recurring = false;
public $sync_invoice_quote_columns = true;
public static $casts = [
'client_initiated_payments_recurring'=> 'bool',
'client_initiated_payments' => 'bool',
'client_initiated_payments_minimum' => 'float',
'sync_invoice_quote_columns' => 'bool',

View File

@ -0,0 +1,37 @@
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\DataMapper\Schedule;
class ScheduleInvoice
{
/**
* Defines the template name
*
* @var string
*/
public string $template = 'schedule_invoice';
/**
* Defines the template name
*
* @var string
*/
public string $entity = '';
/**
* Defines the template name
*
* @var string
*/
public string $entity_id = '';
}