1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/DataMapper/InvoiceItem.php

88 lines
1.9 KiB
PHP
Raw Normal View History

<?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
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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
*/
namespace App\DataMapper;
class InvoiceItem
{
2019-10-29 12:44:54 +01:00
public $quantity = 0;
2019-10-29 12:44:54 +01:00
public $cost = 0;
2019-10-29 12:44:54 +01:00
public $product_key = '';
2021-07-07 13:39:49 +02:00
public $product_cost = 0;
2019-10-29 12:44:54 +01:00
public $notes = '';
2019-10-29 12:44:54 +01:00
public $discount = 0;
2019-10-29 12:44:54 +01:00
public $is_amount_discount = false;
2019-10-29 12:44:54 +01:00
public $tax_name1 = '';
2019-10-29 12:44:54 +01:00
public $tax_rate1 = 0;
2019-10-29 12:44:54 +01:00
public $tax_name2 = '';
2019-10-29 12:44:54 +01:00
public $tax_rate2 = 0;
2019-10-29 12:44:54 +01:00
public $tax_name3 = '';
2019-10-29 12:44:54 +01:00
public $tax_rate3 = 0;
public $sort_id = '0';
2019-09-03 05:39:35 +02:00
2019-10-29 12:44:54 +01:00
public $line_total = 0;
2019-09-03 05:39:35 +02:00
2021-09-15 01:02:25 +02:00
public $gross_line_total = 0;
2022-11-10 09:16:22 +01:00
2022-11-10 11:57:55 +01:00
public $tax_amount = 0;
2021-09-15 01:02:25 +02:00
2019-10-29 12:44:54 +01:00
public $date = '';
2019-09-03 05:39:35 +02:00
2019-10-29 12:44:54 +01:00
public $custom_value1 = '';
2019-09-03 05:39:35 +02:00
2019-10-29 12:44:54 +01:00
public $custom_value2 = '';
2019-09-03 05:39:35 +02:00
2019-10-29 12:44:54 +01:00
public $custom_value3 = '';
2019-10-29 12:44:54 +01:00
public $custom_value4 = '';
2021-03-31 12:41:17 +02:00
public $type_id = '1'; //1 = product, 2 = service, 3 unpaid gateway fee, 4 paid gateway fee, 5 late fee, 6 expense
2019-10-29 12:44:54 +01:00
public static $casts = [
'type_id' => 'string',
2019-10-29 12:44:54 +01:00
'quantity' => 'float',
'cost' => 'float',
2021-07-07 13:39:49 +02:00
'product_cost' => 'float',
2019-10-29 12:44:54 +01:00
'product_key' => 'string',
'notes' => 'string',
'discount' => 'float',
'is_amount_discount' => 'bool',
'tax_name1' => 'string',
'tax_name2' => 'string',
'tax_name3' => 'string',
'tax_rate1' => 'float',
'tax_rate2' => 'float',
'tax_rate3' => 'float',
'sort_id' => 'string',
2019-10-29 12:44:54 +01:00
'line_total' => 'float',
2021-09-15 01:02:25 +02:00
'gross_line_total' => 'float',
2022-11-10 11:57:55 +01:00
'tax_amount' => 'float',
2019-10-29 12:44:54 +01:00
'date' => 'string',
'custom_value1' => 'string',
'custom_value2' => 'string',
'custom_value3' => 'string',
'custom_value4' => 'string',
];
}