我已经在客户位置窗口中添加了一些用于License Info的自定义字段,即License Number和Expiration。
我现在希望这些字段出现在销售订单标题上,并在客户位置更改时更改。
我认为这会很容易,但自定义字段不会在此屏幕上显示为自动链接。
发布于 2019-03-28 04:04:35
要将其添加到销售订单标题中,我首先需要在Graph扩展中声明一个当前的customer location视图:
public PXSelectReadonly<Location, Where<Location.locationID, Equal<Current<SOOrder.customerLocationID>>>> CurrentCustomerLocation;然后,您可以添加新的FormView,将DataMember设置为CurrentCustomerLocation,然后引用这些字段。这与常规信息选项卡=> DefContact上的Customers屏幕(AR303000)中的内容类似。
https://stackoverflow.com/questions/55378959
复制相似问题