我正在尝试使用自定义表单中的以下代码行调用Create Customer Order
FORM:
this.Application.RunOperation(PosisOperations.ConvertCustomerOrder, null);
但它给了我以下错误:
对象引用未设置为对象的实例: System.NullReferenceException:未将对象引用设置为实例 一个对象。
有任何线索吗?因为我将posTransaction对象从空白操作传递到我的自定义表单,甚至尝试编写如下代码:
this.Application.RunOperation(PosisOperations.ConvertCustomerOrder, posTransaction);
任何帮助都将受到高度赞赏。 感谢。