[open-ils-commits] [GIT] Evergreen ILS branch master updated. 14121ee64d22615e1434f8d5f7f38174b0061b99
Evergreen Git
git at git.evergreen-ils.org
Fri Dec 27 16:22:54 EST 2019
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via 14121ee64d22615e1434f8d5f7f38174b0061b99 (commit)
from 9776b89e6446c9bea2b5fb3ee24e2e263c0eac7f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 14121ee64d22615e1434f8d5f7f38174b0061b99
Author: Mike Risher <mrisher at catalyte.io>
Date: Fri Sep 13 21:53:42 2019 +0000
lp1843640 Standing Penalty Followup
Fix 2 issues: grid not updating when a new record is created and
double clicking a row doesn't edit it
Signed-off-by: Mike Risher <mrisher at catalyte.io>
Changes to be committed:
modified: Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.html
modified: Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.ts
Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.html b/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.html
index e8cfaf047a..aefc58d640 100644
--- a/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.html
+++ b/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.html
@@ -2,7 +2,10 @@
<eg-staff-banner bannerText="Standing Penalty Types" i18n-bannerText>
</eg-staff-banner>
+<eg-string #createString i18n-text text="New Standing Penalty Added"></eg-string>
+<eg-string #createErrString i18n-text text="Failed to Create New Standing Penalty"></eg-string>
<eg-string #successString i18n-text text="Standing Penalty Update Succeeded"></eg-string>
+<eg-string #updateFailedString i18n-text text="Standing Penalty Update Failed"></eg-string>
<eg-string #deleteFailedString i18n-text text="Delete of Standing Penalty failed or was not allowed"></eg-string>
<eg-string #deleteSuccessString i18n-text text="Delete of Standing Penalty succeeded"></eg-string>
<eg-string #cspFlairTooltip i18n-text text="Limited Editing"></eg-string>
diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.ts
index c8a2559e98..3bd1d7550b 100644
--- a/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.ts
+++ b/Open-ILS/src/eg2/src/app/staff/admin/local/standing-penalty.component.ts
@@ -97,6 +97,10 @@ export class StandingPenaltyComponent implements OnInit {
);
};
+ this.grid.onRowActivate.subscribe(
+ (idlThing: IdlObject) => this.showEditDialog(idlThing)
+ );
+
}
cspReadonlyOverride = (field: string, csp: IdlObject): boolean => {
-----------------------------------------------------------------------
Summary of changes:
.../src/eg2/src/app/staff/admin/local/standing-penalty.component.html | 3 +++
.../src/eg2/src/app/staff/admin/local/standing-penalty.component.ts | 4 ++++
2 files changed, 7 insertions(+)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list