| | |
| | | using CY.Model; |
| | | using CY.Infrastructure.Query; |
| | | using System.Transactions; |
| | | using CY.Model.Inquiry; |
| | | using CY.Infrastructure.Common; |
| | | |
| | | namespace CY.SQLDAL |
| | | { |
| | |
| | | } |
| | | if (result != null && result.Count > 0) |
| | | { |
| | | _eC_OrderPrintParameterDAL = new EC_OrderPrintParameterDAL(_dataBase); |
| | | foreach (EC_OrderBasic ob in result) |
| | | { |
| | | if (IsComplainant(ob.Keyid.Value)) |
| | | { |
| | | ob.IsComplainant = true; |
| | | } |
| | | |
| | | EC_OrderPrintParameter _eC_OrderPrintParameter = _eC_OrderPrintParameterDAL.GetModel(ob.Keyid.Value); |
| | | InquiryCommonModel _inquiryCommonModel = null; |
| | | if (null == _eC_OrderPrintParameter) |
| | | { |
| | | _inquiryCommonModel = new InquiryCommonModel(); |
| | | } |
| | | else |
| | | { |
| | | _inquiryCommonModel = SerializationHelper.DeSerialize(typeof(InquiryCommonModel), _eC_OrderPrintParameter.PrintParameter) as InquiryCommonModel; |
| | | } |
| | | |
| | | ob.PrintSizeName = _inquiryCommonModel.PrintSizeName; |
| | | } |
| | | } |
| | | /*获取页数与返回数据条数*/ |