[open-ils-commits] [GIT] Evergreen ILS branch rel_3_4 updated. 7fe992abef62c3beb6438b9c7af0801ed175ff69
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, rel_3_4 has been updated
via 7fe992abef62c3beb6438b9c7af0801ed175ff69 (commit)
from 72b080f331cfd5c7701209a6dc8819e4842cd616 (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 7fe992abef62c3beb6438b9c7af0801ed175ff69
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 a8b60b8d17..93cea2f01a 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