username@email.com
2024-10-15 22a7922be8d234c04bdf894b48d9f57fe97c857f
CY_ECommercePlatform/CY.WebForm/Pages/business/OrderEdit.aspx.cs
@@ -109,7 +109,7 @@
            this.txtCompanyName.Value = MyConvert.ConvertToString(_eC_OrderBasic.BuyerName);
            this.selPrintTypes.Value = _eC_OrderBasic.PrintTypeId.HasValue ? _eC_OrderBasic.PrintTypeId.Value.ToString() : "";
            this.txtPrintTypes.Value = MyConvert.ConvertToString(_eC_OrderBasic.PrintType.PrintName);
            this.txtDeliveryTime.Value = _eC_OrderBasic.DeliveryTime.Value.ToString(FixedInfo.DATEFORMAT);
            this.txtDeliveryTime.Value = _eC_OrderBasic.DeliveryTime.HasValue? _eC_OrderBasic.DeliveryTime.Value.ToString(FixedInfo.DATEFORMAT):"";
            this.txtDocumentName.Value = MyConvert.ConvertToString(_eC_OrderBasic.DocumentName);
            this.hidOrderTypeId.Value = _eC_OrderBasic.OrderTypeId.ToString();
            this.txtRemark.Value = _eC_OrderBasic.Remark.ToString2();