Example #1
0
        private void SaveStatus(string keyValue, LR_ERP_PaymentInfoEntity entity)
        {
            var db = this.BaseRepository().BeginTrans();

            try
            {
                entity.F_ModifyDate     = DateTime.Now;
                entity.F_ModifyUserName = Learun.Util.LoginUserInfo.Get().realName;
                entity.F_Id             = Guid.NewGuid().ToString();
                entity.F_Status         = keyValue;
                db.Insert(entity);
                db.Commit();
            }
            catch (Exception ex)
            {
                db.Rollback();
                if (ex is ExceptionEx)
                {
                    throw;
                }
                else
                {
                    throw ExceptionEx.ThrowServiceException(ex);
                }
            }
        }
Example #2
0
        /// <summary>
        /// 保存实体数据(新增、修改)
        /// <param name="keyValue">主键</param>
        /// <summary>
        /// <returns></returns>
        public void SaveEntity(string keyValue, LR_ERP_PaymentInfoEntity entity, List <LR_ERP_PaymentInfoDetailEntity> lR_ERP_PaymentInfoDetailList)
        {
            var db = this.BaseRepository().BeginTrans();
            LR_ERP_PaymentInfoEntity lR_ERP_PaymentInfoEntityTmp = new LR_ERP_PaymentInfoEntity();

            try
            {
                if (!string.IsNullOrEmpty(keyValue))
                {
                    lR_ERP_PaymentInfoEntityTmp = GetLR_ERP_PaymentInfoEntity(keyValue);
                    entity.F_ModifyDate         = DateTime.Now;
                    entity.F_ModifyUserName     = Learun.Util.LoginUserInfo.Get().realName;
                    entity.Modify(keyValue);
                    db.Update(entity);
                    db.Delete <LR_ERP_PaymentInfoDetailEntity>(t => t.F_PId == lR_ERP_PaymentInfoEntityTmp.F_Id);
                    foreach (LR_ERP_PaymentInfoDetailEntity item in lR_ERP_PaymentInfoDetailList)
                    {
                        item.Create();
                        item.F_PId = lR_ERP_PaymentInfoEntityTmp.F_Id;
                        db.Insert(item);
                    }
                }
                else
                {
                    entity.Create();
                    db.Insert(entity);
                    foreach (LR_ERP_PaymentInfoDetailEntity item in lR_ERP_PaymentInfoDetailList)
                    {
                        item.Create();
                        item.F_PId = entity.F_Id;
                        db.Insert(item);
                    }
                }
                db.Commit();
            }
            catch (Exception ex)
            {
                db.Rollback();
                if (ex is ExceptionEx)
                {
                    throw;
                }
                else
                {
                    throw ExceptionEx.ThrowServiceException(ex);
                }
            }
            if (!string.IsNullOrEmpty(lR_ERP_PaymentInfoEntityTmp.F_PurchaseNo) && !string.IsNullOrEmpty(keyValue))
            {
                SaveStatus(keyValue, lR_ERP_PaymentInfoEntityTmp);
            }
        }
Example #3
0
 /// <summary>
 /// 保存实体数据(新增、修改)
 /// <param name="keyValue">主键</param>
 /// <summary>
 /// <returns></returns>
 public void SaveEntity(string keyValue, LR_ERP_PaymentInfoEntity entity, List <LR_ERP_PaymentInfoDetailEntity> lR_ERP_PaymentInfoDetailList)
 {
     try
     {
         paymentInfoService.SaveEntity(keyValue, entity, lR_ERP_PaymentInfoDetailList);
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         else
         {
             throw ExceptionEx.ThrowBusinessException(ex);
         }
     }
 }
Example #4
0
 public void UpdatePurchase(string purchaseId)
 {
     try
     {
         LR_ERP_PaymentInfoEntity entity = GetLR_ERP_PaymentInfoEntity(purchaseId);
         entity.F_Status = String.Empty;
         this.BaseRepository().Update(entity);
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         else
         {
             throw ExceptionEx.ThrowServiceException(ex);
         }
     }
 }