-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TAC updates for new ERP system changes and misc bug fix (#750)
* - Added new columns to ehr.project table to accommodate speedkeys. In the process the cost_account data that was currently being placed in the account column was moved to the new cost_account column, and the account_id data is now placed in the account field. Speedkey is in the speedkey column. - updated the source view to supply the new column data - updated the query metadata in demographicsParentStatus.query.xml to fix Issue 339: Incorrect links on parents - added default view for ehr.project table - added the ehr.project table to browse all datasets * - Updated ehr.project default vies
- Loading branch information
Showing
5 changed files
with
31 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<customView xmlns="http://labkey.org/data/xml/queryCustomView" label="Projects"> | ||
<columns> | ||
<column name="project"/> | ||
<column name="account"/> | ||
<column name="speedkey"/> | ||
<column name="cost_account"/> | ||
<column name="protocol"/> | ||
<column name="research"/> | ||
<column name="startdate"/> | ||
<column name="enddate"/> | ||
<column name="displayName"/> | ||
</columns> | ||
<sorts> | ||
<sort column="startdate" descending="true" /> | ||
</sorts> | ||
</customView> |
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