Commit Graph

3433 Commits

Author SHA1 Message Date
David Bomba 3dd9e36997 Updates for designs 2025-02-05 15:52:39 +11:00
David Bomba fb293c0a14 Fixes for designs 2025-02-05 11:24:20 +11:00
David Bomba fd28457f13 Allow client postmark webhooks 2025-02-04 11:40:46 +11:00
David Bomba 6da33ea7fe Improvements for clean design 2025-02-02 11:24:36 +11:00
David Bomba 5d62aca49e Adjustments for last login 2025-02-01 10:18:28 +11:00
David Bomba ac1f2c21f3 Add optional redirection after an invoice payment 2025-01-31 10:06:18 +11:00
David Bomba 9b8fc10823 Gocardless oauth webhooks 2025-01-29 12:55:20 +11:00
David Bomba 4c77278b1d Remove redundant pdf generator 2025-01-28 22:45:30 +11:00
David Bomba 5fccf7f359 Remove redundant pdf generator 2025-01-28 22:16:36 +11:00
David Bomba 2f5d01c6af Remove redundant pdf generator 2025-01-28 17:39:04 +11:00
David Bomba 4fe7b44c51 Remove redundant pdf generator 2025-01-28 17:28:15 +11:00
David Bomba cffb77fe36 Remove redundant pdf generator 2025-01-28 16:29:32 +11:00
David Bomba a4686ca234 Remove redundant pdf generator 2025-01-28 15:28:46 +11:00
David Bomba c5e8fc9ed2 Remove redundant pdf generator 2025-01-28 14:56:16 +11:00
David Bomba aea0236068 Update a new payment method as default if current default is deleted 2025-01-27 15:02:54 +11:00
David Bomba 9d728af8d6 Updates for artisan call name 2025-01-26 09:43:27 +11:00
David Bomba 2db3c45c81 Add net_cost to templates 2025-01-23 08:54:33 +11:00
David Bomba bf8dffd9b5 Batch print queues for faster rendering of Print PDF 2025-01-22 18:30:21 +11:00
David Bomba 8ffbb54e3b Updates for NordigenController 2025-01-22 17:22:31 +11:00
David Bomba cdb8bfef73 Fixes for continue inside a finally block 2025-01-22 13:51:31 +11:00
David Bomba b66ffbcd8f Changes for gocardless verification requirements 2025-01-22 11:19:09 +11:00
David Bomba b96d69933a Fixes for session invalidation 2025-01-21 16:42:50 +11:00
David Bomba 0283fe9193 Minor fixes for trial starts 2025-01-21 16:26:22 +11:00
David Bomba 45fe5da683 Fixes for static analysis 2025-01-20 09:52:53 +11:00
David Bomba e9fa48af00 Prevent apple signups due to no email address provision 2025-01-20 09:48:27 +11:00
David Bomba 72c35b9031
Merge pull request #10526 from dshoreman/ds/nordigen-tx-days
Nordigen custom agreements
2025-01-20 09:44:20 +11:00
David Bomba 3d80032d69 Minor changes for user verification emails 2025-01-19 17:13:30 +11:00
David Bomba 2befc2338f Add checks for existing VAT number on the network 2025-01-17 14:19:22 +11:00
David Bomba be7fb9eb10
Merge branch 'v5-develop' into v5-develop
Signed-off-by: David Bomba <turbo124@gmail.com>
2025-01-16 15:28:34 +11:00
David Bomba 20f4d64aca Updates for bulk emails 2025-01-15 20:32:52 +11:00
David Bomba ea3f6f149d minor fixes 2025-01-15 20:03:19 +11:00
David Bomba dc033ae7e9 Fixes for mailable logging 2025-01-15 18:15:34 +11:00
David Bomba cd7866ed8a Fixes for removing reactivate email 2025-01-15 15:51:34 +11:00
David Bomba 132f053b02 Always update designs post self update 2025-01-15 12:11:49 +11:00
David Bomba bd6540992a Minor cleanup for session state 2025-01-15 11:47:40 +11:00
David Bomba 7574af6c3a
Merge pull request #10525 from beganovich/INV2-1776
E-invoicing: Healthchecks & regenerating tokens
2025-01-14 18:40:21 +11:00
Dave Shoreman 684ba39f65
Show history selection screen instead of guessing
Removes all the guesswork for requisition renewals, instead opting for
the manual approach of simply redirecting to the form and updating its
handling such that it jumps straight to history selection when needed.

When the institution is preloaded (so we skip country/bank selection)
the cloned element is a country and not the bank so we need to replace
athe flag with its logo, but otherwise the code was all moved as-is.
2025-01-13 19:40:39 +00:00
Dave Shoreman 51760ef563
Support setting custom Nordigen access duration
If agreements are already available and no custom `access_days` is
passed, it will simply take the first match regardless of duration.

When a new agreement is needed, it defaults to the max supported.
2025-01-13 19:11:53 +00:00
Dave Shoreman f6a7c0ddda
Attempt to reuse existing agreements
Implements changes from #10410 but using `Arr::first()` rather than a
foreach loop to fix bugs returning invalid or expired agreements.

If an agreement exists with at least the requested `$txDays` then that
is used, otherwise a new one is created with the given parameters. If it
fails, we error out because `createRequisition()` would fail regardless.

Skips accepting EUAs: seems it's done automatically during requisition.
2025-01-13 19:10:33 +00:00
Dave Shoreman 3204163e70
Cleanup, add return types, normalise quotes 2025-01-13 19:09:02 +00:00
Dave Shoreman 66f197b857
Fix error on token-invalid failure when expired
The cache data is set to expire after an hour, at which point the call
to `$request->getCompany()` will fail because it depends internally on
the `company_key` in the response of `getTokenContent()` which is null.

By moving the company *after* the context check, we avoid the exception
but need to manually set lang as there's no context for company data.
2025-01-13 19:06:40 +00:00
Dave Shoreman fb47c29c91
Find old EUA to get tx_days for new agreement
The end user agreement ID isn't stored with the bank integration, but it
*is* returned as part of the error for an expired account which works
perfectly for the case of renewing an expired requisition.

When `tx_days` isn't set in the request (i.e. it's a renewal) we instead
extract the EUA ID from the account error after getting the integration,
then once we have the EUA we're able to restore the old tx_days setting.

Since the BankIntegration query is used in both endpoints, this moves it
to a method with `firstOrFail()` rather than `first()` which also allows
for a cleanup of the integration saving code with try/catch/finally to
make it a little clearer which values apply to both new+existing cases.
2025-01-13 19:06:01 +00:00
Dave Shoreman f501f250f4
Improve Nordigen error-handling code
All failures boil down to about 3 variations - one with reason/lang, one
that has context defined but no company data, and a full variant that
also fills the company and account keys in the view.

The only other difference is redirect url coming from config when it's
not available in the context, so to simplify things this commit merges
all the failure view responses into one unified `failed` method.
2025-01-13 19:01:04 +00:00
Dave Shoreman 2501ca17c9
Allow setting number of days of transactions
If e.g. `&tx_days=365` is added to the URL, this will use it to set the
amount of history that's fetched from Nordigen on sync, with basic
safeguards to prevent it being set too low or above the bank's max.
2025-01-13 18:49:10 +00:00
Dave Shoreman e825bb0895
Nordigen: Use institution max for bank integration
While we set the days in the agreement, how many we fetch when
processing transactions depends on the `from_date` of the bank
integration. We could call `getInstitution($id)` on the API, but
consistency would dictate adding a wrapper in the Nordigen class and
it's already being called within `$nordigen->getAccount()` so it makes
more sense to extract the data in the account transformer instead.

App\Jobs\Bank\ProcessBankTransactionsNordigen also sets a from date, but
that's only used when not set on the bank integration so it can be left
at the Nordigen default of 90 days worth of transaction history.
2025-01-13 18:45:24 +00:00
Dave Shoreman d51e1527e6
Nordigen: Pass custom agreement with max history
In order to change the total days of transactions we can request, a
custom end user agreement is needed. There *are* methods to find
existing agreements, but assuming nothing else breaks it's probably
fairly safe to just go ahead and create one.

If it works, it only runs once... as far as I can tell.
2025-01-13 18:44:40 +00:00
Benjamin Beganović ce4d22dc77 Healthcheck endpoint 2025-01-13 16:58:49 +01:00
David Bomba 7304f01de6 Ensures that invalid props cannot be saves to settings 2025-01-13 17:59:38 +11:00
David Bomba 406cc52279 Adjustments for design and dom elements / attributes 2025-01-13 14:16:55 +11:00
David Bomba 5c60a3efed Revert latest nordigen commit 2025-01-11 18:25:54 +11:00