本文介绍了如何创建两个数字序列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们可以使用本地和国外采购的部门捕获来创建采购订单编号序列吗?

Can we create Purchase order Number Sequence with the division capture for Local and Foreign purchases?

我们可以在AX 2012中一次创建两个数字序列吗?

Can we create two number sequence at a time in AX 2012 ?

推荐答案

是的.

不了解您的版本或您已做过或尝试过的事情,我会尝试猜测您使用的是AX 2012.

Not knowing anything about your version or what you have done or tried, I will try guessing you are using AX 2012.

然后在\ Classes \ CustPostInvoice \ run中查看它们如何设置invoiceId变量.

Then go looking in \Classes\CustPostInvoice\run on how they set the invoiceId variable.

    if (countryRegion_LTLV)
    {
        [invoiceId, voucher] = this.getNumAndVoucher_W(numberSeq);
    }
    else
    {
        [invoiceId, voucher] = numberSeq.numAndVoucher();
    }

看起来甚至更丑陋,但要点是,使用两个不同的数字序列,然后使用if选择正确的数字序列.

It even looks more ugly, but the point is, use two different number sequences, then use an if to choose the right one.

也许您还应该阅读设置新的数字序列 ?

这篇关于如何创建两个数字序列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 22:49