| | |
| | | } |
| | | |
| | | 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); |
| | |
| | | _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)); |
| | | } |
| | | |