-
Notifications
You must be signed in to change notification settings - Fork 359
[Quality Management] Move QM from Business Manager to Inventory Manager RC #7179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
127 changes: 127 additions & 0 deletions
127
src/Apps/W1/Quality Management/app/src/RoleCenters/QltyWhseBasicRC.PageExt.al
This file contains hidden or 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,127 @@ | ||
| // ------------------------------------------------------------------------------------------------ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See License.txt in the project root for license information. | ||
| // ------------------------------------------------------------------------------------------------ | ||
| namespace Microsoft.QualityManagement.RoleCenters; | ||
|
|
||
| using Microsoft.QualityManagement.Configuration.GenerationRule; | ||
| using Microsoft.QualityManagement.Configuration.Template; | ||
| using Microsoft.QualityManagement.Configuration.Template.Test; | ||
| using Microsoft.QualityManagement.Document; | ||
| using Microsoft.QualityManagement.Reports; | ||
| using Microsoft.QualityManagement.Setup; | ||
| using Microsoft.Warehouse.RoleCenters; | ||
|
|
||
| pageextension 20421 "Qlty. Whse. Basic RC" extends "Whse. Basic Role Center" | ||
| { | ||
| actions | ||
| { | ||
| addlast(processing) | ||
| { | ||
| group(Qlty_QualityManagement_Processing_Group) | ||
| { | ||
| Image = CheckList; | ||
| Caption = 'Quality Management'; | ||
| ToolTip = 'Work with Quality Inspections.'; | ||
|
|
||
| action(Qlty_ShowQualityInspections) | ||
| { | ||
| Caption = 'Quality Inspections'; | ||
| Image = CheckList; | ||
| ToolTip = 'See existing Quality Inspections and create a new inspection.'; | ||
JakovljevicDusan marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ApplicationArea = QualityManagement; | ||
| RunObject = Page "Qlty. Inspection List"; | ||
| } | ||
| action(Qlty_CertificateOfAnalysis) | ||
| { | ||
| Caption = 'Certificate of Analysis'; | ||
| Image = Certificate; | ||
| ToolTip = 'Certificate of Analysis (CoA) report.'; | ||
| ApplicationArea = QualityManagement; | ||
| RunObject = Report "Qlty. Certificate of Analysis"; | ||
| } | ||
| group(Qlty_Analysis_Group) | ||
| { | ||
| Caption = 'Analysis'; | ||
| Tooltip = 'Analyze Quality Inspection data'; | ||
|
|
||
| action(Qlty_QualityInspectionLines) | ||
| { | ||
| Caption = 'Quality Inspection Lines'; | ||
| Image = CheckList; | ||
| ToolTip = 'Historical Quality Inspection lines. Use this with analysis mode.'; | ||
| ApplicationArea = QualityManagement; | ||
| RunObject = Page "Qlty. Inspection Lines"; | ||
| } | ||
| } | ||
| group(Qlty_ConfigureQualityManagement) | ||
| { | ||
| Caption = 'Setup'; | ||
| Tooltip = 'Configure the Quality Management'; | ||
| Image = Setup; | ||
|
|
||
| action(Qlty_ManagementSetup) | ||
| { | ||
| Caption = 'Quality Management Setup'; | ||
| RunObject = Page "Qlty. Management Setup"; | ||
| ApplicationArea = QualityManagement; | ||
| Image = Setup; | ||
| RunPageMode = Edit; | ||
| Tooltip = 'Change the behavior of the Quality Management.'; | ||
| } | ||
| action(Qlty_ConfigureInspectionTemplates) | ||
| { | ||
| ApplicationArea = QualityManagement; | ||
| Caption = 'Inspection Templates'; | ||
| Image = BreakpointsList; | ||
| RunObject = Page "Qlty. Inspection Template List"; | ||
| RunPageMode = Edit; | ||
| ToolTip = 'Specifies a Quality Inspection Template is an inspection plan containing a set of questions and data points that you want to collect.'; | ||
| } | ||
| action(Qlty_ConfigureInspectionGenerationRules) | ||
| { | ||
| ApplicationArea = QualityManagement; | ||
| Caption = 'Inspection Generation Rules'; | ||
| Image = CopyFromTask; | ||
| RunObject = Page "Qlty. Inspection Gen. Rules"; | ||
| RunPageMode = Edit; | ||
| ToolTip = 'Specifies a Quality Inspection generation rule defines when you want to ask a set of questions or other data that you want to collect that is defined in a template. You connect a template to a source table, and set the criteria to use that template with the table filter. When these filter criteria is met, then it will choose that template. When there are multiple matches, it will use the first template that it finds, based on the sort order.'; | ||
| } | ||
| action(Qlty_ConfigureTests) | ||
| { | ||
| ApplicationArea = QualityManagement; | ||
| Caption = 'Tests'; | ||
| Image = TaskQualityMeasure; | ||
| RunObject = Page "Qlty. Tests"; | ||
| RunPageMode = Edit; | ||
| ToolTip = 'Specifies a quality inspection test is a data points to capture, or questions, or measurements.'; | ||
| } | ||
| } | ||
| } | ||
| } | ||
| addlast(sections) | ||
| { | ||
| group(Qlty_QualityManagement_Sections_Group) | ||
| { | ||
| Caption = 'Quality Inspection'; | ||
|
|
||
| action(Qlty_Sections_ShowQualityInspections) | ||
| { | ||
| Caption = 'Quality Inspections'; | ||
| Image = CheckList; | ||
| ToolTip = 'See existing Quality Inspections and create a new inspection.'; | ||
| ApplicationArea = QualityManagement; | ||
| RunObject = Page "Qlty. Inspection List"; | ||
| } | ||
| action(Qlty_Sections_QualityInspectionLines) | ||
| { | ||
| Caption = 'Quality Inspection Lines'; | ||
| Image = CheckList; | ||
| ToolTip = 'Historical Quality Inspection lines. Use this with analysis mode.'; | ||
| ApplicationArea = QualityManagement; | ||
| RunObject = Page "Qlty. Inspection Lines"; | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.