-
Notifications
You must be signed in to change notification settings - Fork 441
MSlenejennum/647454/sales internal new body layouts and obsolete current #10495
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
base: main
Are you sure you want to change the base?
Changes from all commits
b5c194d
b4cbc6d
507e326
37f04d2
a0d0a21
ca9caa6
5a18201
2870039
e2f7ac0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -151,12 +151,40 @@ report 114 "Salesperson - Sales Statistics" | |
|
|
||
| rendering | ||
| { | ||
| layout(ExcelLayout) | ||
| { | ||
| Caption = 'Salesperson Sales Statistics Excel'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Existing APAC layout name changed from RDLC to Excel. The layout |
||
| Type = Excel; | ||
| LayoutFile = './Sales/Reports/SalespersonSalesStatistics.xlsx'; | ||
| Summary = 'Report layout primarily made for data analysis. Use an Excel editor to modify the layout.'; | ||
| } | ||
| #if not CLEAN30 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The APAC variant of "Salesperson - Sales Statistics" (report 114) previously had only an RDLCLayout; this PR introduces a brand-new layout(Word) wrapped in Knowledge: 👍 useful · ❤️ especially valuable · 👎 wrong - reply with why · AL review agent v1.35.4 |
||
| layout(Word) | ||
| { | ||
| Caption = 'Salesperson Sales Statistics Word'; | ||
| Type = Word; | ||
| LayoutFile = './Sales/Reports/SalespersonSalesStatistics.docx'; | ||
| Summary = 'Report layout made for print. Use a Word editor to modify the layout.'; | ||
| ObsoleteState = Pending; | ||
| ObsoleteReason = 'This Word layout will be replaced by the Document Report Experience. Use the corresponding composite (body) layout instead. It will be removed in a future release.'; | ||
| ObsoleteTag = '30.0'; | ||
| #endif | ||
| } | ||
| layout(RDLCLayout) | ||
| { | ||
| Caption = 'Salesperson Sales Statistics RDLC'; | ||
| Type = RDLC; | ||
| LayoutFile = './Sales/Reports/SalespersonSalesStatistics.rdlc'; | ||
| Summary = 'Report layout made in the legacy RDLC format. Use an RDLC editor to modify the layout.'; | ||
| } | ||
| layout(WordBody) | ||
| { | ||
| Type = Word; | ||
| Subtype = Body; | ||
| LayoutFile = './Sales/Reports/SalespersonSalesStatisticsBody.docx'; | ||
| Caption = 'Body-only: Salesperson Sales Statistics Word'; | ||
| Summary = 'Landscape orientated. Shows sales, profit, and adjusted profit in LCY and as a percentage for each salesperson, together with invoice discount, payment discount given, and payment tolerance. Includes column totals.'; | ||
| } | ||
| } | ||
|
|
||
| labels | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -468,6 +468,9 @@ report 107 "Customer - Order Summary" | |
| LayoutFile = '.\Sales\Reports\CustomerOrderSummary.docx'; | ||
| Type = Word; | ||
| Summary = 'Built in layout for the Customer Order Summary word report.'; | ||
| ObsoleteState = Pending; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Obsoleted Word layout is still referenced, so Clean builds fail. RU report 107 keeps |
||
| ObsoleteReason = 'This Word layout will be replaced by the Document Report Experience. Use the corresponding composite (body) layout instead. It will be removed in a future release.'; | ||
| ObsoleteTag = '30.0'; | ||
| } | ||
| #if not CLEAN27 | ||
| layout(RDLC) | ||
|
|
@@ -481,6 +484,14 @@ report 107 "Customer - Order Summary" | |
| Summary = 'Report layout made in the legacy RDLC format. Use an RDLC editor to modify the layout.'; | ||
| } | ||
| #endif | ||
| layout(WordBody) | ||
| { | ||
| Type = Word; | ||
| Subtype = Body; | ||
| LayoutFile = '.\Sales\Reports\CustomerOrderSummaryBody.docx'; | ||
| Caption = 'Body-only: Customer Order Summary Word'; | ||
| Summary = 'Landscape orientated. Groups outstanding sales order amounts by customer and currency, split across the periods before, within, and after the date range. Shows a total for each line and overall totals, in LCY.'; | ||
| } | ||
| } | ||
| labels | ||
| { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -259,6 +259,9 @@ report 114 "Salesperson - Sales Statistics" | |
| Type = Word; | ||
| LayoutFile = './Sales/Reports/SalespersonSalesStatistics.docx'; | ||
| Summary = 'Report layout made for print. Use a Word editor to modify the layout.'; | ||
| ObsoleteState = Pending; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The PR description does not match the code. It says |
||
| ObsoleteReason = 'This Word layout will be replaced by the Document Report Experience. Use the corresponding composite (body) layout instead. It will be removed in a future release.'; | ||
| ObsoleteTag = '30.0'; | ||
| } | ||
| #if not CLEAN27 | ||
| layout(RDLC) | ||
|
|
@@ -272,6 +275,14 @@ report 114 "Salesperson - Sales Statistics" | |
| Summary = 'Report layout made in the legacy RDLC format. Use an RDLC editor to modify the layout.'; | ||
| } | ||
| #endif | ||
| layout(WordBody) | ||
| { | ||
| Type = Word; | ||
| Subtype = Body; | ||
| LayoutFile = './Sales/Reports/SalespersonSalesStatisticsBody.docx'; | ||
| Caption = 'Body-only: Salesperson Sales Statistics Word'; | ||
| Summary = 'Landscape orientated. Shows sales, profit, and adjusted profit in LCY and as a percentage for each salesperson, together with invoice discount, payment discount given, and payment tolerance. Includes column totals.'; | ||
| } | ||
| } | ||
|
|
||
| labels | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.