Add column and use instead of last transactions date
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2022-03-14 19:26:54 +00:00
parent 984a2aa296
commit 0201b368d4
8 changed files with 58 additions and 19 deletions

View File

@@ -65,6 +65,12 @@ func (h *Handler) reconcileTransactions(c *gin.Context) {
return
}
err = h.Service.SetLastReconciled(c.Request.Context(), accountUUID)
if err != nil {
c.AbortWithError(http.StatusInternalServerError, fmt.Errorf("set last reconciled: %w", err))
return
}
err = tx.Commit()
if err != nil {
c.AbortWithError(http.StatusInternalServerError, fmt.Errorf("commit: %w", err))