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
16 changes: 10 additions & 6 deletions src/Apps/W1/EDocument/App/src/Document/EDocumentsSetup.Table.al
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,20 @@ table 6107 "E-Documents Setup"
var
CountryList: List of [Text];
begin
CountryList.Add('US');
CountryList.Add('AU');
CountryList.Add('NZ');
CountryList.Add('GB');
CountryList.Add('ES');
CountryList.Add('FR');
CountryList.Add('BE');
CountryList.Add('CA');
CountryList.Add('IT');
CountryList.Add('DE');
CountryList.Add('DK');
CountryList.Add('ES');
CountryList.Add('FR');
CountryList.Add('GB');
CountryList.Add('IT');
CountryList.Add('NL');
CountryList.Add('NO');
CountryList.Add('NZ');
CountryList.Add('SE');
CountryList.Add('US');
exit(CountryList);
end;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ page 6181 "E-Document Purchase Draft"
}
field("Amount Incl. VAT"; EDocumentPurchaseHeader.Total)
{
Caption = 'Amount Incl. VAT';
ToolTip = 'Specifies the total amount of the electronic document including VAT.';
Importance = Promoted;

Expand All @@ -217,6 +218,7 @@ page 6181 "E-Document Purchase Draft"
}
field("Currency Code"; EDocumentPurchaseHeader."Currency Code")
{
Caption = 'Currency Code';
Importance = Promoted;
ToolTip = 'Specifies the electronic document currency code.';
Editable = true;
Expand Down
Loading