简体   繁体   English

如果要在Acumatica的Bills and Adjustments屏幕上的Application选项卡Menu中自定义,使用哪种方法或事件处理程序

[英]In which method or event handler if I would to customize in Application tab Menu in screen Bills And Adjustments of Acumatica

I need to customize business logic of screen Bills and Adjustments (AP301000) of Acumatica ERP. 我需要自定义Acumatica ERP的屏幕账单和调整(AP301000)的业务逻辑。 Please refer to this screenshot below. 请参考下面的屏幕截图。

在此处输入图片说明

I just need to know, in which method or event handlers of APInvoiceEntry should I check if I need to customize of Application Tab Menu from this screen. 我只需要知道,应该从哪个屏幕检查APInvoiceEntry的哪种方法或事件处理程序,是否需要自定义“应用程序选项卡菜单”。 ?

I need to know the filter condition while system showing all records, regarding of current vendor in application tab menu. 我需要知道系统在应用程序选项卡菜单中显示当前供应商的所有记录时的过滤条件。

Maybe if anyone know about my questions. 也许有人知道我的问题。

The information is shown from the following PXSelectJoin object: 该信息从以下PXSelectJoin对象显示:

public PXSelectJoin<
        APAdjust, 
            InnerJoin<APPayment, 
                On<APPayment.docType, Equal<APAdjust.adjgDocType>,
                And<APPayment.refNbr, Equal<APAdjust.adjgRefNbr>>>>> 
        Adjustments;

So if you want to change filter conditions you will have to define your own select statement with that additional filtering and set the DataMember of that Grid to your defined Select Statement. 因此,如果要更改过滤器条件,则必须定义带有附加过滤器的自己的select语句,并将该网格的DataMember设置为定义的Select语句。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用WebServices API在Acumatica ERP系统中的“账单和调整”的“应用程序”选项卡菜单中导出付款 - Export payment in Applications Tab menu of Bill and Adjustments in Acumatica ERP system using webservices api 如何在事件处理程序中使用acumatica自定义属性? - How can I use acumatica custom attribute in Event Handler? 我应该为Windows应用程序使用哪个事件处理程序? - Which Event handler should i use for my windows application? 我怎么知道哪个方法称为事件处理程序 - How can I know which method called event handler 在Acumatica采购收据屏幕的“土地成本”选项卡菜单中,从文件按钮创建上传 - create upload from file button in tab menu “Landed Cost” of Acumatica Purchase Receipt Screen 通过Web服务API在Acumatica ERP的AP302000屏幕中插入调整文档 - Insert adjustments document in screen AP302000 of acumatica erp through web services api 我可以在Visual Studio中自定义自动事件处理程序生成吗? - Can I customize automatic event handler generation in Visual Studio? 我应该使用哪个ComboBox事件处理程序? - Which ComboBox event handler should I use? 如何将构造函数的两个参数发送到管理方法的事件处理程序? - How I send a constructor's two arguments to an event handler which manages a method? 菜单项事件处理程序 - Menu item event handler
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM