| | |
| | | |
| | | if (_eC_OrderBasic.UnitPrice.HasValue) |
| | | { |
| | | this.txtUnitPrice.Value = _eC_OrderBasic.UnitPrice.Value.ToString("0.00"); |
| | | this.txtUnitPrice.Value = _eC_OrderBasic.UnitPrice.Value.ToString("0.0000"); |
| | | } |
| | | if (_eC_OrderBasic.SumPrice.HasValue) |
| | | { |
| | |
| | | //this.rptCustormer.DataSource = corporateClients; |
| | | //this.rptCustormer.DataBind(); |
| | | |
| | | this.selPrintTypes.DataSource = _sysInquiry_PrintingTypeBLL.SelectUsedModlesByFirm(CurrentUser.MemberId); |
| | | this.selPrintTypes.DataSource = _sysInquiry_PrintingTypeBLL.SelectUsedModlesByFirm(CurrentUser.MemberId).OrderBy(x=>x.orderNumHome); |
| | | this.selPrintTypes.DataBind(); |
| | | this.selPrintTypes.Items.Insert(0, new ListItem("请选择", "")); |
| | | this.selPrintTypes.Items.Add(new ListItem("其他", "-1")); |
| | |
| | | _oA_CustomerCommunications.DegreeImportanId = m_OA_CorporateClients.DegreeImportanId; |
| | | _oA_CustomerCommunications.AccountManagerId = m_OA_CorporateClients.AccountManagerId; |
| | | _oA_CustomerCommunications.BusinessManagerId = m_OA_CorporateClients.BusinessManagerId; |
| | | _oA_CustomerCommunications.CompanyName = m_OA_CorporateClients.CompanyName; |
| | | Response.Write(null == _oA_CustomerCommunications ? "" : JsonHelper.GetJsonStringByObject(_oA_CustomerCommunications)); |
| | | } |
| | | |