From f47da9571d16108fcab2bf6d55279a08ce2e7cbf Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期五, 15 十一月 2024 14:29:14 +0800 Subject: [PATCH] 计划订单相关功能 --- CY_ECommercePlatform/CY.SQLDAL/EC/EC_OrderBasicDAL.cs | 73 ++++++++++++++++++++++++++++++++++++ 1 files changed, 73 insertions(+), 0 deletions(-) diff --git a/CY_ECommercePlatform/CY.SQLDAL/EC/EC_OrderBasicDAL.cs b/CY_ECommercePlatform/CY.SQLDAL/EC/EC_OrderBasicDAL.cs index fb2a15a..46278c9 100644 --- a/CY_ECommercePlatform/CY.SQLDAL/EC/EC_OrderBasicDAL.cs +++ b/CY_ECommercePlatform/CY.SQLDAL/EC/EC_OrderBasicDAL.cs @@ -1302,6 +1302,57 @@ } + + + /// <summary> + /// 浣滀笟鏈�佽揣鍒嗛〉鏌ヨ + /// </summary> + /// <param name="pagination"></param> + /// <returns></returns> + public IEnumerable<EC_OrderBasic> SelectModelPageWorkBook(Infrastructure.Query.Pagination pagination, Guid _MemberID, string txtBeginDate, string txtEndDate, string txtOrderId, string txtSearchyjname, string selCustormerManager, string selBusinessManager, string selOrderStates) + { + try + { + string condition = " ob.PrintTypeId = 37 "; + + if (_MemberID != Guid.Empty) + condition += " and ob.SellerId = '" + _MemberID + "'"; + + if (!string.IsNullOrEmpty(txtBeginDate)) + condition += string.Format(" and CAST(ob.CreateTime AS DATE) >='{0}'", txtBeginDate); + + if (!string.IsNullOrEmpty(txtEndDate)) + { + var EndDate = txtEndDate.ToDateTime2().Value.AddDays(1).ToShortDateString(); + condition += string.Format(" and CAST(ob.CreateTime AS DATE) <='{0}'", EndDate); + } + + + if (!string.IsNullOrEmpty(txtOrderId)) + condition += " and ob.SellerOrderId like '%" + txtOrderId + "%'"; + + if (!string.IsNullOrEmpty(txtSearchyjname)) + condition += " and ob.DocumentName like '%" + txtSearchyjname + "%'"; + + if (!string.IsNullOrEmpty(selCustormerManager)) + condition += " and oe.CustomerManagerId = '" + selCustormerManager + "'"; + + if (!string.IsNullOrEmpty(selBusinessManager)) + condition += " and oe.BusinessManagerId = '" + selBusinessManager + "'"; + + if (!string.IsNullOrEmpty(selOrderStates)) + condition += " and ob.OrderState = '" + selOrderStates + "'"; + + + + return _dataBase.SelectModelPage<EC_OrderBasic>(pagination, " ob.*,oe.shifouDelivery,oe.DeliveryOrderId,oe.KaipiaoshenqingCreater,oe.KaipiaoshenqingTime,oe.KaipiaoquerenCreater,oe.KaipiaoquerenTime,oe.Kehuqianshou,oe.KehuqianshouCreater,oe.KehuqianshouTime ,oe.Quchudingdan,oe.QuchudingdanCreater,oe.QuchudingdanTime,oe.PrintPackDeliveryRequir,oe.PrintNum,oe.ExigencyCaseId,opy.Name as yssldw ", " EC_OrderBasic as ob Inner Join EC_OrderExtend as oe On(ob.Keyid=oe.Keyid) Left Join Sys_Dictionary as opy On (opy.DicType='鍗板埛鍗曚綅' And opy.MeanValue = oe.printunit ) ", " ob.Keyid DESC ", " Keyid DESC ", condition); + } + catch (Exception ex) + { + throw ex; + } + } + /// <summary> /// 鍗曚釜鏌ヨ /// </summary> @@ -2694,6 +2745,28 @@ } } + + /// <summary> + /// 淇敼鎵撳嵃鐘舵�� + /// </summary> + /// <param name="orderId"></param> + public bool Updatejinedanjia(int orderId, decimal SumPrice, decimal UnitPrice) + { + try + { + string sqlStr = string.Empty; + sqlStr = "UPDATE EC_OrderBasic SET SumPrice="+ SumPrice + " ,UnitPrice="+ UnitPrice + " WHERE Keyid=@orderId"; + SqlParameter par = new SqlParameter("@orderId", orderId); + _dataBase.ExecuteSql(sqlStr, par); + } + catch + { + + } + + return true; + } + /// <summary> /// 淇敼鎵撳嵃鐘舵�� /// </summary> -- Gitblit v1.9.1