Ejemplo n.º 1
0
        //20181113 modified by kexp 修改为导入完成后统一提示一次;
        /// <summary>
        /// 导入到ERP
        /// </summary>
        /// <param name="bItem"></param>
        public void ExportToERP(DEBusinessItem bItem, out string errText)
        {
            errText = "";
            if (bItem == null)
            {
                errText = "没有获取到对象!";
                return;
            }
            ExportService srv = new ExportService(bItem);

            srv.AddOrEditItem(out errText);
        }