username@email.com
8 小时以前 ea71208bf0d457f948edb7d16b29f94ae5dd3def
CY_ECommercePlatform/CY.WebForm/Pages/business/OrderEdit.aspx.cs
@@ -104,6 +104,11 @@
            }
            EC_OrderBasic _eC_OrderBasic = _eC_OrderBasicBLL.SelectModelById(orderId.Value);
            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 +284,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));
        }