mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 18:40:12 +00:00
Add timezone fields.
This commit is contained in:
@@ -490,6 +490,7 @@ class JournalUpdateService
|
|||||||
}
|
}
|
||||||
// do some parsing.
|
// do some parsing.
|
||||||
app('log')->debug(sprintf('Create date value from string "%s".', $value));
|
app('log')->debug(sprintf('Create date value from string "%s".', $value));
|
||||||
|
$this->transactionJournal->date_tz = $value->format('e');
|
||||||
}
|
}
|
||||||
event(
|
event(
|
||||||
new TriggeredAuditLog(
|
new TriggeredAuditLog(
|
||||||
@@ -610,6 +611,13 @@ class JournalUpdateService
|
|||||||
'data' => $value,
|
'data' => $value,
|
||||||
];
|
];
|
||||||
$factory->updateOrCreate($set);
|
$factory->updateOrCreate($set);
|
||||||
|
// also set date with timezone.
|
||||||
|
$set = [
|
||||||
|
'journal' => $this->transactionJournal,
|
||||||
|
'name' => sprintf('%s_tz', $field),
|
||||||
|
'data' => $value->format('e'),
|
||||||
|
];
|
||||||
|
$factory->updateOrCreate($set);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user