将订单标记为"完全付款"在Sage 200上

时间:2016-02-22 10:09:13

标签: sage-erp

我正在使用客户端C#APIs通过应用程序在Sage 200上插入订单。

我想查看"全额付款" "按订单付款"标签

enter image description here

目前,我正在设置PaymentType属性,该属性无效。

order.PaymentType = Sage.Accounting.SOP.SOPOrderPaymentTypeEnum.EnumSOPOrderPaymentTypeFull;

order是Sage.Accounting.SOP.SOPOrder的实例。

你知道怎么检查那个房产吗?

2 个答案:

答案 0 :(得分:0)

以下方法应提供所需的结果。

    private static void SetPaymentWithOrder(Sage.Accounting.SOP.SOPOrder sopOrder)
    {
        // Indicate that order has payment
        sopOrder.PaymentWithOrder = true;

        // This is full payment order
        sopOrder.PaymentType = Sage.Accounting.SOP.SOPOrderPaymentTypeEnum.EnumSOPOrderPaymentTypeFull;

        // Fetch the the Payment Methods. SOPPaymentMethods contructor accepts the boolean flag whether to fetch payment methods including card processing method or not.
        Sage.Accounting.SOP.SOPPaymentMethods paymentMethodsCollection = new Sage.Accounting.SOP.SOPPaymentMethods(false);

        // Set the first payment method of the collection to the order
        sopOrder.PaymentMethod = paymentMethodsCollection.First;
    }

enter image description here

答案 1 :(得分:0)

不知道你是否曾设法解决这个问题。

不确定您是否知道这一点,但您无法修改视图表单上的销售订单,或者至少不应该尝试这样做。

使用任何一个输入/修改销售订单表单都可以执行此操作。 可能发生的是,控件绑定的属性在代码运行后没有更新UI。

您可以使用以下

强制执行此操作

获取底层绑定对象

public Sage.Accounting.SOP.SOPOrderReturn SOPOrderReturn
{
    get
    {
        //Loop over the boundobjects collection
        //check if the bound object is of the type we want - e.g. SOPOrderReturn
        //if correct type, return this object
        Sage.Common.Collections.BoundObjectCollection boundObjects = this.form.BoundObjects;

        if (boundObjects != null)
        {
            foreach (object boundObject in boundObjects)
            {
                if (boundObject is Sage.Accounting.SOP.SOPOrderReturn)
                {
                    this._sopOrderReturn = boundObject as Sage.Accounting.SOP.SOPOrderReturn;
                    break;
                }
            }
        }
        return this._sopOrderReturn;
    }
}

获取可修改形式的正确底层表单类型,暂停数据绑定, 执行你的更改, 恢复数据绑定

Sage.MMS.SOP.MaintainOrderForm maintainOrderForm = this.form.UnderlyingControl as Sage.MMS.SOP.MaintainOrderForm;

maintainOrderForm.BindingContext[this.SOPOrderReturn].SuspendBinding();
this.SOPOrderReturn.PaymentWithOrder = true;
this.SOPOrderReturn.PaymentType = Sage.Accounting.SOP.SOPOrderPaymentTypeEnum.EnumSOPOrderPaymentTypeFull;
maintainOrderForm.BindingContext[this.SOPOrderReturn].ResumeBinding();

应该这样做。