mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-29 12:14:34 -06:00
137 lines
4.5 KiB
PHP
137 lines
4.5 KiB
PHP
<?php
|
|
return [
|
|
'roles' => [
|
|
'_ignore' => [
|
|
'name' => '(ignore this column)',
|
|
'mappable' => false,
|
|
'converter' => 'Ignore',
|
|
'field' => 'ignored',
|
|
],
|
|
'bill-id' => [
|
|
'name' => 'Bill ID (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'bill-name' => [
|
|
'name' => 'Bill name',
|
|
'mappable' => true,
|
|
],
|
|
'currency-id' => [
|
|
'name' => 'Currency ID (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'currency-name' => [
|
|
'name' => 'Currency name (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'currency-code' => [
|
|
'name' => 'Currency code (ISO 4217)',
|
|
'mappable' => true,
|
|
'converter' => 'CurrencyCode',
|
|
'field' => 'currency'
|
|
],
|
|
'currency-symbol' => [
|
|
'name' => 'Currency symbol (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'description' => [
|
|
'name' => 'Description',
|
|
'mappable' => false,
|
|
'converter' => 'Description',
|
|
'field' => 'description',
|
|
],
|
|
'date-transaction' => [
|
|
'name' => 'Date',
|
|
'mappable' => false,
|
|
'converter' => 'Date',
|
|
'field' => 'date',
|
|
],
|
|
'date-rent' => [
|
|
'name' => 'Rent calculation date',
|
|
'mappable' => false,
|
|
'converter' => 'Date',
|
|
'field' => 'date-rent',
|
|
],
|
|
'budget-id' => [
|
|
'name' => 'Budget ID (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'budget-name' => [
|
|
'name' => 'Budget name',
|
|
'mappable' => true,
|
|
],
|
|
'rabo-debet-credit' => [
|
|
'name' => 'Rabobank specific debet/credit indicator',
|
|
'mappable' => false,
|
|
'converter' => 'RabobankDebetCredit',
|
|
'field' => 'amount-modifier',
|
|
],
|
|
'category-id' => [
|
|
'name' => 'Category ID (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'category-name' => [
|
|
'name' => 'Category name',
|
|
'mappable' => true,
|
|
],
|
|
'tags-comma' => [
|
|
'name' => 'Tags (comma separated)',
|
|
'mappable' => true,
|
|
],
|
|
'tags-space' => [
|
|
'name' => 'Tags (space separated)',
|
|
'mappable' => true,
|
|
],
|
|
'account-id' => [
|
|
'name' => 'Asset account ID (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'account-name' => [
|
|
'name' => 'Asset account name',
|
|
'mappable' => true,
|
|
],
|
|
'account-iban' => [
|
|
'name' => 'Asset account IBAN',
|
|
'mappable' => true,
|
|
'converter' => 'AccountIban',
|
|
'field' => 'asset-account'
|
|
],
|
|
'opposing-id' => [
|
|
'name' => 'Expense or revenue account ID (matching Firefly)',
|
|
'mappable' => true,
|
|
],
|
|
'opposing-name' => [
|
|
'name' => 'Expense or revenue account name',
|
|
'mappable' => true,
|
|
'converter' => 'OpposingName',
|
|
'field' => 'opposing-account'
|
|
],
|
|
'opposing-iban' => [
|
|
'name' => 'Expense or revenue account IBAN',
|
|
'mappable' => true,
|
|
],
|
|
'amount' => [
|
|
'name' => 'Amount',
|
|
'mappable' => false,
|
|
'converter' => 'Amount',
|
|
'field' => 'amount',
|
|
],
|
|
'sepa-ct-id' => [
|
|
'name' => 'SEPA Credit Transfer end-to-end ID',
|
|
'mappable' => false,
|
|
'converter' => 'Description',
|
|
'field' => 'description',
|
|
],
|
|
'sepa-ct-op' => [
|
|
'name' => 'SEPA Credit Transfer opposing account',
|
|
'mappable' => false,
|
|
'converter' => 'Description',
|
|
'field' => 'description',
|
|
],
|
|
'sepa-db' => [
|
|
'name' => 'SEPA Direct Debet',
|
|
'mappable' => false,
|
|
'converter' => 'Description',
|
|
'field' => 'description',
|
|
],
|
|
]
|
|
]; |