CY_ECommercePlatform/CY.WebForm/Pages/business/OrderEdit.aspx.cs
@@ -104,6 +104,15 @@
            }
            EC_OrderBasic _eC_OrderBasic = _eC_OrderBasicBLL.SelectModelById(orderId.Value);
            if(CurrentUser.TrueLoginId != "00001")
            {
                if (_eC_OrderBasic.OrderState != 1)
                {
                    JavaScript.MessageBox("只有状态为已下单的订单才能修改!", this, "window.location = 'OrderList.aspx';");
                    return;
                }
            }
            this.txtKeyid.Value = MyConvert.ConvertToString(_eC_OrderBasic.Keyid);
            this.txtOrderId.Value = MyConvert.ConvertToString(_eC_OrderBasic.SellerOrderId);
            this.txtCustormerName.Value = MyConvert.ConvertToString(_eC_OrderBasic.BuyerName);
@@ -279,6 +288,7 @@
            _oA_CustomerCommunications.AccountManagerId = m_OA_CorporateClients.AccountManagerId;
            _oA_CustomerCommunications.BusinessManagerId = m_OA_CorporateClients.BusinessManagerId;
            _oA_CustomerCommunications.CompanyName = m_OA_CorporateClients.CompanyName;
            _oA_CustomerCommunications.Note = m_OA_CorporateClients.Note;
            Response.Write(null == _oA_CustomerCommunications ? "" : JsonHelper.GetJsonStringByObject(_oA_CustomerCommunications));
        }