structures

This commit is contained in:
2018-11-22 01:42:48 -06:00
parent d32a42d2cb
commit 7713dd1803
+1 -1
View File
@@ -107,7 +107,7 @@ class Finances {
}
private function PutWalletJournal($journal, $corpId, $division) {
$check = DB::table('CorpJournal')->where('id', $journal['id'])->get();
$check = DB::table('CorpJournals')->where('id', $journal['id'])->get();
//if we don't find the journal entry, add the journal entry to the database
if($check == null) {
$entry = new CorpJournal;