将仓库选择器添加到 acumatica 中的自定义字段

发布于 2025-01-11 03:40:32 字数 477 浏览 0 评论 0原文

我创建了一个自定义字段并尝试向其中添加仓库选择器。我尝试阅读自定义指南并进行尝试,但是选择器没有显示在自定义字段中。 这是我尝试过的代码。 #region UsrCustomSite [PXDBInt] [PXUIField(DisplayName="仓库", 可见性 = PXUIVisibility.SelectorVisible)] [PXSelector(typeof(搜索),typeof(IN.INSite.descr),DescriptionField =(typeof(IN.INSite.siteCD)),SubstituteKey =(typeof(IN.INSite.siteCD)),脏读=真)] 公共虚拟整数? UsrCustomSite { 获取;放; } 公共抽象类 usrCustomSite : PX.Data.BQL.BqlInt.Field { } #endregion我在这里错过了什么吗?

I created a custom field and trying to add the warehouse selector to it.I try to read from the customization guide and tried it but,the selector does not show up in the custom field.
This is the code I tried.
#region UsrCustomSite
[PXDBInt]
[PXUIField(DisplayName="Warehouse", Visibility = PXUIVisibility.SelectorVisible)]
[PXSelector(typeof(Search<IN.INSite.siteCD>),typeof(IN.INSite.descr),DescriptionField =(typeof(IN.INSite.siteCD)),SubstituteKey =(typeof(IN.INSite.siteCD)),DirtyRead =true)]
public virtual int? UsrCustomSite { get; set; }
public abstract class usrCustomSite : PX.Data.BQL.BqlInt.Field { }
#endregion

Am I missing something here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追风人 2025-01-18 03:40:32

我会尝试更改

[PXSelector(typeof(Search<IN.INSite.siteCD>)

[PXSelector(typeof(Search)

您正在存储一个 int,因此您需要 id,替代 Key 设置将使其显示,以便 UI 将显示CD。

I would try changing

[PXSelector(typeof(Search<IN.INSite.siteCD>)

to

[PXSelector(typeof(Search<IN.INSite.siteID>)

You are storing an int so you want the id, the substitute Key setting will make it so that the UI will show the CD.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文