2020-12-17 13:00:32 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2021-02-18 00:51:56 +01:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-12-17 13:00:32 +01:00
|
|
|
*
|
2021-02-18 00:51:56 +01:00
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
2020-12-17 13:00:32 +01:00
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-12-17 13:00:32 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-12-17 13:00:32 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Import\Definitions;
|
|
|
|
|
|
|
|
class ProductMap
|
|
|
|
{
|
|
|
|
public static function importable()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
0 => 'product.product_key',
|
|
|
|
1 => 'product.notes',
|
|
|
|
2 => 'product.cost',
|
|
|
|
3 => 'product.price',
|
|
|
|
4 => 'product.quantity',
|
|
|
|
5 => 'product.tax_name1',
|
|
|
|
6 => 'product.tax_rate1',
|
|
|
|
7 => 'product.tax_name2',
|
|
|
|
8 => 'product.tax_rate2',
|
|
|
|
9 => 'product.tax_name3',
|
|
|
|
10 => 'product.tax_rate3',
|
|
|
|
11 => 'product.custom_value1',
|
|
|
|
12 => 'product.custom_value2',
|
|
|
|
13 => 'product.custom_value3',
|
|
|
|
14 => 'product.custom_value4',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function import_keys()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
0 => 'texts.item',
|
|
|
|
1 => 'texts.notes',
|
|
|
|
2 => 'texts.cost',
|
|
|
|
3 => 'texts.price',
|
|
|
|
4 => 'texts.quantity',
|
|
|
|
5 => 'texts.tax_name',
|
|
|
|
6 => 'texts.tax_rate',
|
|
|
|
7 => 'texts.tax_name',
|
|
|
|
8 => 'texts.tax_rate',
|
|
|
|
9 => 'texts.tax_name',
|
|
|
|
10 => 'texts.tax_rate',
|
|
|
|
11 => 'texts.custom_value',
|
|
|
|
12 => 'texts.custom_value',
|
|
|
|
13 => 'texts.custom_value',
|
|
|
|
14 => 'texts.custom_value',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|