Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ table 8059 "Subscription Line"
end;
end;

internal procedure OpenExchangeSelectionPage(var NewCurrencyFactorDate: Date; var NewCurrencyFactor: Decimal; CurrencyCode: Code[10]; NewMessageTxt: Text; CalledFromServiceObject: Boolean): Boolean
procedure OpenExchangeSelectionPage(var NewCurrencyFactorDate: Date; var NewCurrencyFactor: Decimal; CurrencyCode: Code[10]; NewMessageTxt: Text; CalledFromServiceObject: Boolean): Boolean
var
ExchangeRateSelectionPage: Page "Exchange Rate Selection";
begin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ page 8088 "Exchange Rate Selection"
Error(CurrencyCodeChangePriceMustBeUpdatedErr);
end;

internal procedure SetIsCalledFromServiceObject(CalledFromServiceObject: Boolean)
procedure SetIsCalledFromServiceObject(CalledFromServiceObject: Boolean)
begin
IsCalledFromServiceObject := CalledFromServiceObject;
end;

internal procedure SetData(NewKeyDate: Date; NewCurrencyCode: Code[10]; NewMessage: Text)
procedure SetData(NewKeyDate: Date; NewCurrencyCode: Code[10]; NewMessage: Text)
begin
KeyDate := NewKeyDate;
CurrencyCode := NewCurrencyCode;
Expand All @@ -75,7 +75,7 @@ page 8088 "Exchange Rate Selection"
MessageTxt := NewMessage;
end;

internal procedure GetData(var NewKeyDate: Date; var NewExchangeRate: Decimal)
procedure GetData(var NewKeyDate: Date; var NewExchangeRate: Decimal)
begin
NewKeyDate := KeyDate;
NewExchangeRate := ExchangeRate;
Expand Down
Loading