mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
User can submit new journal through API.
This commit is contained in:
@@ -240,20 +240,20 @@ class MigrateToGroups extends Command
|
||||
$notes = $this->journalRepository->getNoteText($journal);
|
||||
$tags = $this->journalRepository->getTags($journal);
|
||||
$internalRef = $this->journalRepository->getMetaField($journal, 'internal-reference');
|
||||
$sepaCC = $this->journalRepository->getMetaField($journal, 'sepa-cc');
|
||||
$sepaCtOp = $this->journalRepository->getMetaField($journal, 'sepa-ct-op');
|
||||
$sepaCtId = $this->journalRepository->getMetaField($journal, 'sepa-ct-id');
|
||||
$sepaDb = $this->journalRepository->getMetaField($journal, 'sepa-db');
|
||||
$sepaCountry = $this->journalRepository->getMetaField($journal, 'sepa-country');
|
||||
$sepaEp = $this->journalRepository->getMetaField($journal, 'sepa-ep');
|
||||
$sepaCi = $this->journalRepository->getMetaField($journal, 'sepa-ci');
|
||||
$sepaBatchId = $this->journalRepository->getMetaField($journal, 'sepa-batch-id');
|
||||
$sepaCC = $this->journalRepository->getMetaField($journal, 'sepa_cc');
|
||||
$sepaCtOp = $this->journalRepository->getMetaField($journal, 'sepa_ct_op');
|
||||
$sepaCtId = $this->journalRepository->getMetaField($journal, 'sepa_ct_id');
|
||||
$sepaDb = $this->journalRepository->getMetaField($journal, 'sepa_db');
|
||||
$sepaCountry = $this->journalRepository->getMetaField($journal, 'sepa_country');
|
||||
$sepaEp = $this->journalRepository->getMetaField($journal, 'sepa_ep');
|
||||
$sepaCi = $this->journalRepository->getMetaField($journal, 'sepa_ci');
|
||||
$sepaBatchId = $this->journalRepository->getMetaField($journal, 'sepa_batch_id');
|
||||
$externalId = $this->journalRepository->getMetaField($journal, 'external-id');
|
||||
$originalSource = $this->journalRepository->getMetaField($journal, 'original-source');
|
||||
$recurrenceId = $this->journalRepository->getMetaField($journal, 'recurrence_id');
|
||||
$bunq = $this->journalRepository->getMetaField($journal, 'bunq_payment_id');
|
||||
$hash = $this->journalRepository->getMetaField($journal, 'importHash');
|
||||
$hashTwo = $this->journalRepository->getMetaField($journal, 'importHashV2');
|
||||
$hash = $this->journalRepository->getMetaField($journal, 'import_hash');
|
||||
$hashTwo = $this->journalRepository->getMetaField($journal, 'import_hash_v2');
|
||||
$interestDate = $this->journalRepository->getMetaDate($journal, 'interest_date');
|
||||
$bookDate = $this->journalRepository->getMetaDate($journal, 'book_date');
|
||||
$processDate = $this->journalRepository->getMetaDate($journal, 'process_date');
|
||||
@@ -293,20 +293,20 @@ class MigrateToGroups extends Command
|
||||
'notes' => $notes,
|
||||
'tags' => $tags,
|
||||
'internal_reference' => $internalRef,
|
||||
'sepa-cc' => $sepaCC,
|
||||
'sepa-ct-op' => $sepaCtOp,
|
||||
'sepa-ct-id' => $sepaCtId,
|
||||
'sepa-db' => $sepaDb,
|
||||
'sepa-country' => $sepaCountry,
|
||||
'sepa-ep' => $sepaEp,
|
||||
'sepa-ci' => $sepaCi,
|
||||
'sepa-batch-id' => $sepaBatchId,
|
||||
'sepa_cc' => $sepaCC,
|
||||
'sepa_ct_op' => $sepaCtOp,
|
||||
'sepa_ct_id' => $sepaCtId,
|
||||
'sepa_db' => $sepaDb,
|
||||
'sepa_country' => $sepaCountry,
|
||||
'sepa_ep' => $sepaEp,
|
||||
'sepa_ci' => $sepaCi,
|
||||
'sepa_batch_id' => $sepaBatchId,
|
||||
'external_id' => $externalId,
|
||||
'original-source' => $originalSource,
|
||||
'recurrence_id' => $recurrenceId,
|
||||
'bunq_payment_id' => $bunq,
|
||||
'importHash' => $hash,
|
||||
'importHashV2' => $hashTwo,
|
||||
'import_hash' => $hash,
|
||||
'import_hash_v2' => $hashTwo,
|
||||
'interest_date' => $interestDate,
|
||||
'book_date' => $bookDate,
|
||||
'process_date' => $processDate,
|
||||
|
Reference in New Issue
Block a user