This is an automated email from the ASF dual-hosted git repository.
Aman-Mittal pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/fineract-backoffice-ui.git
from 2d541c8 Merge pull request #269 from
Aman-Mittal/feat/loan-remaining-gaps
add 0e9e5c5 feat(clients): transfer between offices, staff assignment and
default savings account
add c0dd343 test(clients): take the servicing spec through the adapter
boundary
add fa419c9 test(clients): drive a real client transfer end to end
new d355c58 Merge pull request #276 from
Aman-Mittal/feat/client-servicing-gaps
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
e2e/client-servicing-gaps.spec.ts | 392 +++++++++++++++++++++
e2e/client-transfer.spec.ts | 213 +++++++++++
playwright.config.ts | 1 +
src/app/core/icons.ts | 2 +
.../client-savings-account-dialog.component.ts | 150 ++++++++
src/app/features/clients/client-servicing.model.ts | 57 +++
.../client-staff-dialog.component.ts} | 64 ++--
.../clients/client-transfer-dialog.component.ts | 221 ++++++++++++
.../client-transfer-response-dialog.component.ts} | 47 ++-
src/app/features/clients/client-view.component.ts | 322 ++++++++++++++++-
.../features/clients/client-view.servicing.spec.ts | 366 +++++++++++++++++++
src/assets/i18n/en.json | 20 +-
12 files changed, 1796 insertions(+), 59 deletions(-)
create mode 100644 e2e/client-servicing-gaps.spec.ts
create mode 100644 e2e/client-transfer.spec.ts
create mode 100644
src/app/features/clients/client-savings-account-dialog.component.ts
create mode 100644 src/app/features/clients/client-servicing.model.ts
copy src/app/features/{groups/group-staff-dialog.component.ts =>
clients/client-staff-dialog.component.ts} (61%)
create mode 100644 src/app/features/clients/client-transfer-dialog.component.ts
copy src/app/features/{loans/loan-undo-approval-dialog.component.ts =>
clients/client-transfer-response-dialog.component.ts} (57%)
create mode 100644 src/app/features/clients/client-view.servicing.spec.ts