Added new lines.

This commit is contained in:
James Cole 2016-02-10 16:01:18 +01:00
parent 4d6e244100
commit 426351bb54
44 changed files with 31 additions and 17 deletions

View File

@ -96,4 +96,4 @@ class AttachmentCollector extends BasicCollector implements CollectorInterface
$this->explanationString .= $string;
}
}
}

View File

@ -55,4 +55,4 @@ class BasicCollector
}
}
}

View File

@ -34,4 +34,4 @@ interface CollectorInterface
*/
public function setFiles(Collection $files);
}
}

View File

@ -66,4 +66,4 @@ class UploadCollector extends BasicCollector implements CollectorInterface
}
}
}
}
}

View File

@ -58,4 +58,4 @@ class ConfigurationFile
return $file;
}
}
}

View File

@ -420,4 +420,4 @@ class Entry
}
}
}

View File

@ -55,4 +55,4 @@ class BasicExporter
}
}

View File

@ -80,4 +80,4 @@ class CsvExporter extends BasicExporter implements ExporterInterface
$this->fileName = storage_path('export') . DIRECTORY_SEPARATOR . $fileName;
$this->handler = fopen($this->fileName, 'w');
}
}
}

View File

@ -39,4 +39,4 @@ interface ExporterInterface
*/
public function getFileName();
}
}

View File

@ -63,4 +63,4 @@ class JournalCollector
->get(['transaction_journals.*']);
}
}
}

View File

@ -157,4 +157,4 @@ class Processor
{
return $this->files;
}
}
}

View File

@ -560,4 +560,4 @@ Breadcrumbs::register(
$breadcrumbs->push($journal->description, route('transactions.show', [$journal->id]));
}
);
);

View File

@ -78,4 +78,4 @@ class ExportJobRepository implements ExportJobRepositoryInterface
return Auth::user()->exportJobs()->where('key', $key)->first();
}
}
}

View File

@ -36,4 +36,4 @@ interface ExportJobRepositoryInterface
*/
public function findByKey(string $key);
}
}

View File

@ -26,7 +26,7 @@ class ChangesForV380 extends Migration
*/
public function up()
{
// new table "rule_groups"
// new table "export_jobs"
Schema::create(
'export_jobs', function (Blueprint $table) {
$table->increments('id');
@ -40,5 +40,19 @@ class ChangesForV380 extends Migration
}
);
// new table for transaction journal meta, "journal_meta"
Schema::create('journal_meta', function(Blueprint $table) {
$table->increments('id');
$table->timestamps();
$table->integer('transaction_journal_id')->unsigned();
$table->string('name');
$table->text('data');
$table->unique(['transaction_journal_id', 'name']);
// link to transaction journal
$table->foreign('transaction_journal_id')->references('id')->on('transaction_journals')->onDelete('cascade');
});
}
}

0
resources/lang/fr_FR/breadcrumbs.php Executable file → Normal file
View File

0
resources/lang/fr_FR/config.php Executable file → Normal file
View File

0
resources/lang/fr_FR/firefly.php Executable file → Normal file
View File

0
resources/lang/fr_FR/form.php Executable file → Normal file
View File

0
resources/lang/fr_FR/help.php Executable file → Normal file
View File

0
resources/lang/fr_FR/list.php Executable file → Normal file
View File

0
resources/lang/fr_FR/pagination.php Executable file → Normal file
View File

0
resources/lang/fr_FR/passwords.php Executable file → Normal file
View File

0
resources/lang/fr_FR/validation.php Executable file → Normal file
View File

0
resources/lang/nl_NL/breadcrumbs.php Executable file → Normal file
View File

0
resources/lang/nl_NL/config.php Executable file → Normal file
View File

0
resources/lang/nl_NL/firefly.php Executable file → Normal file
View File

0
resources/lang/nl_NL/form.php Executable file → Normal file
View File

0
resources/lang/nl_NL/help.php Executable file → Normal file
View File

0
resources/lang/nl_NL/list.php Executable file → Normal file
View File

0
resources/lang/nl_NL/pagination.php Executable file → Normal file
View File

0
resources/lang/nl_NL/passwords.php Executable file → Normal file
View File

0
resources/lang/nl_NL/validation.php Executable file → Normal file
View File

0
resources/lang/pt_BR/breadcrumbs.php Executable file → Normal file
View File

0
resources/lang/pt_BR/config.php Executable file → Normal file
View File

0
resources/lang/pt_BR/firefly.php Executable file → Normal file
View File

0
resources/lang/pt_BR/form.php Executable file → Normal file
View File

0
resources/lang/pt_BR/help.php Executable file → Normal file
View File

0
resources/lang/pt_BR/list.php Executable file → Normal file
View File

0
resources/lang/pt_BR/pagination.php Executable file → Normal file
View File

0
resources/lang/pt_BR/passwords.php Executable file → Normal file
View File

0
resources/lang/pt_BR/validation.php Executable file → Normal file
View File

View File

@ -12,4 +12,4 @@ https://github.com/JC5/firefly-iii/issues/new
The full stacktrace is below:
{{ stacktrace }}
{{ stacktrace }}

View File

@ -58,4 +58,4 @@
</div>
</body>
</html>
</html>