Example #1
0
        private void ReloadData(string orderId)
        {
            if (null == orderId || orderId.Equals(""))
            {
                soFormEntity = new SOFormEntity();
                return;
            }

            try
            {
                soFormEntity = icommodity.SOGetOederInfoById(orderId);
                soFormBack = soFormEntity.Clone() as SOFormEntity;

            }
            catch
            {
                ShowErrorInfo("读取数据失败。");
                return;
            }
        }