-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
7237: Minor updates for employee registry and rubrics management page r=jmcameron a=jmcameron This PR implements some minor changes for the employee registry and the payroll rubrics management page. - When editing an employee, the "Submit" button now reads "Update Employee" instead of "Register Employee" - Fixed various English payroll-related terms (eg, "grapped" (saiser) should be changed to "entered") - Add an Index type column to the Rubric management page (if using indexes). Hovering over the labels in these cells will bring up a tooltip describing them. Closes #7206 This are just a few superficial fixes. The terminology (in English) for all payroll activities needs to be scrubbed. Co-authored-by: Jonathan Cameron <jmcameron@gmail.com>
- Loading branch information
Showing
9 changed files
with
81 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
client/src/modules/payroll/rubrics/templates/index_type.tmpl.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<div class="ui-grid-cell-contents text-left"> | ||
<div ng-if="row.entity.indice_type" | ||
uib-tooltip="{{ grid.appScope.convertIndexType(row.entity.indice_type) }}" | ||
tooltip-append-to-body="true" | ||
tooltip-placement="left"> | ||
<span translate>{{row.entity.indice_type}}</span> | ||
</div> | ||
</div> |