-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItemList.PageExt.al
33 lines (31 loc) · 970 Bytes
/
ItemList.PageExt.al
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace QuickPrices.QuickPrices;
using Microsoft.Inventory.Item;
using Microsoft.Sales.Pricing;
using Microsoft.Pricing.PriceList;
pageextension 50100 "Item List" extends "Item List"
{
actions
{
addbefore(SalesPriceLists)
{
action(PriceOverview)
{
AccessByPermission = TableData "Sales Price Access" = R;
ApplicationArea = Basic, Suite;
Caption = 'Price Overview';
Image = Price;
Scope = Repeater;
Visible = ExtendedPriceEnabled;
ToolTip = 'Overview of all prices, costs and discounts setup for an item.';
RunObject = page "Item Prices Overview";
RunPageLink = "Asset No." = field("No.");
}
}
addbefore(SalesPriceLists_Promoted)
{
actionref(PriceOverview_Promoted; PriceOverview)
{
}
}
}
}