Skip to content
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

codeunit 7018 "Price UX Management" - OnBeforeShowPriceListLines #28427

Open
Jattzia1978 opened this issue Mar 26, 2025 · 0 comments
Open

codeunit 7018 "Price UX Management" - OnBeforeShowPriceListLines #28427

Jattzia1978 opened this issue Mar 26, 2025 · 0 comments
Labels
event-request Request for adding an event SCM GitHub request for SCM area

Comments

@Jattzia1978
Copy link

Jattzia1978 commented Mar 26, 2025

Describe the request

We need the PriceAsset record to be passed as VAR in the following event
Can we change this IntegrationEvent
[IntegrationEvent(false, false)]
local procedure OnBeforeShowPriceListLines(PriceSource: Record "Price Source"; PriceAsset: Record "Price Asset"; PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type"; var IsHandled: Boolean)
begin
end

to this:
[IntegrationEvent(false, false)]
local procedure OnBeforeShowPriceListLines(PriceSource: Record "Price Source"; var PriceAsset: Record "Price Asset"; PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type"; var IsHandled: Boolean)
begin
end

Additional context

We are modifying the pricing interface for one of our client migrating from Navision to BC and when the ShowPriceListLines is called from the Item Card and ItemList, we need to be able to change the Price Asset that is being used to display pricing

From Item table:
procedure ShowPriceListLines(PriceType: Enum "Price Type"; AmountType: Enum "Price Amount Type")
var
PriceAsset: Record "Price Asset";
PriceUXManagement: Codeunit "Price UX Management";
begin
AsPriceAsset(PriceAsset, PriceType);
PriceUXManagement.ShowPriceListLines(PriceAsset, PriceType, AmountType);
end;

The PriceAsset record is never inserted and is not passed as VAR so when we add the logic in the OnBeforeShowPriceListLines Integration Event, the values we changed are ignored.
Internal work item: AB#572765

@JesperSchulz JesperSchulz added event-request Request for adding an event SCM GitHub request for SCM area labels Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
event-request Request for adding an event SCM GitHub request for SCM area
Projects
None yet
Development

No branches or pull requests

2 participants