Adding “AllowUpload” to the landed code tab in the Bill and adjustment screen

最后都变了- 提交于 2019-12-24 07:27:51

问题


I'm trying to add the ability to upload order lines into landed cost on the bills and adjustment screen via excel or csv. I customized the screen and set AllowUpload to True. enter image description here But i don't know how to use the [PXImport]. Can you guy show me step by step.Ex: what is the BQL and where to put it. Be specific. Thanks


回答1:


First determine the name of the DataView bound to the grid. To do that you can hold Ctl-Alt and click on the header of the grid and select Customize. It will open the customization project editor in the Screen section. Click on the top most element of the tree view in the middle to select the grid. Lookup the DataMember property on the property pane on the right side, this is the name of the DataView. While in the project editor, expand the Mode section of the property pane and set AllowUpload property to True.

Now that you know the name of the DataView you need to decorate it with the PXImport attribute. Create a Graph Extension in the code section of the project editor for this screen if you haven't already. In the Graph Extension, for a new DataView that you have created you add [PXImport(typeof(PrimaryDac)] right before the DataView declaration like this:

[PXImport(typeof(APInvoice))]
public PXSelect<MyDAC> MyDataView;

For an existing DataView from the base class you can override it in the same way:

[PXImport(typeof(APInvoice))]
public PXSelect<DAC> BaseDataView;

The Primary DAC can be found in the class declaration of the base graph:

public class APInvoiceEntry : APDataEntryGraph<APInvoiceEntry, APInvoice>, PXImportAttribute.IPXPrepareItems

Reference: Enabling Upload from Excel for the Grid



来源:https://stackoverflow.com/questions/44175705/adding-allowupload-to-the-landed-code-tab-in-the-bill-and-adjustment-screen

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!