一个字段可以根据另一个字段进行计算吗?

发布于 2024-11-04 20:26:39 字数 291 浏览 0 评论 0原文

在 Dynamics Ax 2009 中,我们需要一个将根据同一个表中的另一个字段进行计算的字段。

虽然使用显示方法或其他方法可能很好,但我们必须实际存储该值(管理层害怕动态计算,因为以前的产品使用它们并且速度很慢(就像 AX 中的任何东西都很快!))。

为了锦上添花,他们希望它能够双向工作:

如果我们有 FieldA,则计算并存储 FieldB。 如果我们有 FieldB,则计算并存储 FieldA。 如果我们两者都有或都没有,则什么也不做。

Dynamics AX 中是否有内置功能可以帮助我?

In Dynamics Ax 2009, we want a field that will be calculated based off another field in the same table.

Although it might be nice to use a display method or something, we have to actually store the value (management is scared of dynamic calculations because the previous product used them and was slow (like anything in AX is fast!)).

To put the icing on the cake, they want it to work two-way:

If we have FieldA, calculate and store FieldB.
If we have FieldB, calculate and store FieldA.
If we have both or none, do nothing.

Is there anything built into Dynamics AX that can help me?

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

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

发布评论

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

评论(2

奢华的一滴泪 2024-11-11 20:26:39

首先,重写表的方法insert(),eg:

public void insert()
{
    ;

    this.FieldB = this.FieldA * 2;

    super();
}

然后重写update(),eg:

public void update()
{
    if (this.FieldA == this.orig().FieldA && this.FieldB != this.orig().FieldB)
    {
        this.FieldA = this.FieldB / 2;
    }
    else
    {
        this.FieldB = this.FieldA * 2;
    }

    super();
}

这些只是示例,请自行判断如何重写方法。最后,重写 modifiedField(),只有在表单中手动修改字段时才会使用它:

public void modifiedField(fieldId _fieldId)
{
    ;

    super(_fieldId);

    switch (_fieldId)
    {
        case fieldnum(MyTable, FieldA) :
            this.FieldB = this.FieldA * 2;
            break;

        case fieldnum(MyTable, FieldB) :
            this.FieldA = this.FieldB / 2;
            break;
    }

    if (this.isFormDataSource())
        this.dataSource().refresh();
}

PS 请记住 insert()update()当您使用 doinsert()doupdate()skipDataMethods() 时,不会调用

First, override table's method insert(), e.g.:

public void insert()
{
    ;

    this.FieldB = this.FieldA * 2;

    super();
}

Then override update(), e.g.:

public void update()
{
    if (this.FieldA == this.orig().FieldA && this.FieldB != this.orig().FieldB)
    {
        this.FieldA = this.FieldB / 2;
    }
    else
    {
        this.FieldB = this.FieldA * 2;
    }

    super();
}

These are only examples, use your own judgement how the methods should be overridden. Lastly, override modifiedField(), which will be used only when the fields are modified manually in forms:

public void modifiedField(fieldId _fieldId)
{
    ;

    super(_fieldId);

    switch (_fieldId)
    {
        case fieldnum(MyTable, FieldA) :
            this.FieldB = this.FieldA * 2;
            break;

        case fieldnum(MyTable, FieldB) :
            this.FieldA = this.FieldB / 2;
            break;
    }

    if (this.isFormDataSource())
        this.dataSource().refresh();
}

P.S. Keep in mind that insert() and update() are not called when you are using doinsert(), doupdate(), or skipDataMethods().

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