Enhance banking transaction data structure and validation
Playwright Tests / test (push) Has been cancelled

- Increased the length of the NameOfPayer field from NVARCHAR(60) to NVARCHAR(140) in the banking transactions function, table, temporary table, and user-defined type to accommodate longer names.
- Expanded the SepaRemittanceInformation field from VARCHAR(150) to VARCHAR(200) in the banking transactions function for more detailed remittance information.
- Modified the stored procedure fds__setBankingtransaction_done to return additional transaction data (ValueDate and Amount) along with the success flag for improved notification messaging.
- Added validation in MFRClientConfig constructor to ensure the provided URL is not null or empty, enhancing error handling for configuration settings.
This commit is contained in:
Stefan
2026-07-04 16:37:23 +02:00
parent aaf062fd77
commit c98be7b23f
24 changed files with 287 additions and 74 deletions
+28 -26
View File
@@ -30,57 +30,59 @@ main nav ul > li a[role=button] {
}
#notification_frame {
position: fixed;
bottom: 1rem;
right: 1rem;
z-index: 2000;
width: min(24rem, calc(100vw - 2rem));
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
gap: 0.5rem;
pointer-events: none;
}
.notification_item {
position: relative;
background: #fff;
border-left: 0.35rem solid $fuchs_blau;
border-radius: 0.35rem;
box-shadow: 0 0.25rem 1rem rgba(30, 35, 45, 0.25);
color: #222;
padding: 0.75rem 2.2rem 0.75rem 0.85rem;
flex: 0 0 $oci_header;
height: $oci_header;
box-sizing: border-box;
display: flex;
align-items: center;
text-align: left;
white-space: nowrap;
overflow: hidden;
color: $fuchs_weiss;
padding: 0 2.2rem 0 0.85rem;
pointer-events: auto;
&.warn {
border-left-color: #c78300;
}
&.error {
border-left-color: #b92525;
&.warn, &.warning, &.error {
color: $oci_yellow;
}
.notification_title {
font-weight: bold;
line-height: 1.25;
margin-bottom: 0.2rem;
flex: 0 0 auto;
&::after {
content: ":";
margin-right: 0.35rem;
}
}
.notification_message {
font-size: 0.9rem;
line-height: 1.3;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.notification_close {
position: absolute;
top: 0.35rem;
top: 0;
right: 0.45rem;
height: 100%;
border: 0;
background: transparent;
color: #444;
color: inherit;
cursor: pointer;
font-size: 1.2rem;
line-height: 1;
padding: 0.1rem 0.25rem;
line-height: $oci_header;
padding: 0 0.25rem;
}
}