Bug 634911: [Subcontracting] Fix factbox UX issues - captions, DecimalPlaces, singular/plural#8172
Open
ChethanT wants to merge 5 commits into
Open
Bug 634911: [Subcontracting] Fix factbox UX issues - captions, DecimalPlaces, singular/plural#8172ChethanT wants to merge 5 commits into
ChethanT wants to merge 5 commits into
Conversation
…lPlaces, singular/plural Fix UX issues in two Subcontracting factbox pages: Transfer Line Factbox (page 99001501): - Change singular caption 'Production Component' to plural 'Production Components' to match the count shown and align with the sibling Purchase Line Factbox. Routing Info Factbox (page 99001502): - Rename 'Order Quantity' to 'Purch. Order Qty.' to clarify it is the purchase order quantity. - Apply Title Case to 'Quantity Received' and 'Quantity Invoiced' captions and their matching tooltips. - Change DecimalPlaces from 0:5 to 0:0 on the three integer line-count fields 'Transfer Order Lines', 'Return Transfer Order Lines', and 'Components'. The decimal quantity fields above keep DecimalPlaces 0:5. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
…ures Follow-up to the previous caption/DecimalPlaces fix. The three integer line-count fields on the Routing Info Factbox were calling procedures typed as Decimal that only ever returned Record.Count(), which required DecimalPlaces = 0:0 on the page to avoid showing '0.00000' for an integer count. Tighten the return type of both procedures to Integer to match what they actually return, and drop the now-redundant DecimalPlaces and AutoFormatType properties from the page fields: - SubcPurchFactboxMgmt.ShowTransferOrdersAndReturnOrder: Decimal -> Integer (also make implicit 'exit' statements explicit as 'exit(0)') - SubcRoutingFactboxMgmt.GetNoOfLinkedComponentsFromRouting: Decimal -> Integer - SubcRoutingInfoFactbox.Page: drop AutoFormatType=0 from the three integer-count fields (AutoFormatType has no effect on Integer fields) All callers of both procedures are within the Subcontracting app; no external consumers are affected. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
AnalysisScenario Validity:
Correctness:
Side Effects:
Risk Assessment:
Test Coverage:
Recommendation: Request Changes
|
Contributor
|
Tests are not required, breaking change can be ignored since the feature hasn't been released yet. Approved. |
alexei-dobriansky
previously approved these changes
May 18, 2026
…Subcontracting/634911-FactboxInconsistencies
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Fix several UX issues in two Subcontracting factbox pages reported in AB#634911.
Subc. Transfer Line Factbox (page
99001501)Production Component→Production Components(plural, matches the count > 1 it displays and aligns with the sibling Subc. Purchase Line Factbox, which already uses the plural form).Subc. Routing Info Factbox (page
99001502)Order Quantity→Purch. Order Qty.— clarifies it is the purchase order quantity.Quantity received→Quantity Received; matching tooltip Title Cased.Quantity invoiced→Quantity Invoiced; matching tooltip Title Cased.DecimalPlaces = 0 : 5→0 : 0on the three integer line-count fields:Transfer Order Lines,Return Transfer Order Lines, andComponents. The decimal quantity fields keep0 : 5.Test plan
Production Components.Purch. Order Qty.,Quantity Received,Quantity Invoiced, and the three line-count fields display integers (no.00000).Fixes AB#634911