Esempio n. 1
0
        private void SaveStatus(string keyValue, LR_ERP_PurchaseRequisitionEntity 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);
                }
            }
        }
Esempio n. 2
0
        /// <summary>
        /// 保存实体数据(新增、修改)
        /// <param name="keyValue">主键</param>
        /// <summary>
        /// <returns></returns>
        public void SaveEntity(string keyValue, LR_ERP_PurchaseRequisitionEntity entity, List <LR_ERP_ProductInfoEntity> lR_ERP_ProductInfoList)
        {
            var db = this.BaseRepository().BeginTrans();
            LR_ERP_PurchaseRequisitionEntity lR_ERP_PurchaseRequisitionEntityTmp = new LR_ERP_PurchaseRequisitionEntity();

            try
            {
                if (!string.IsNullOrEmpty(keyValue))
                {
                    lR_ERP_PurchaseRequisitionEntityTmp = GetLR_ERP_PurchaseRequisitionEntity(keyValue);

                    entity.F_ModifyDate     = DateTime.Now;
                    entity.F_ModifyUserName = Learun.Util.LoginUserInfo.Get().realName;
                    entity.Modify(keyValue);
                    db.Update(entity);
                    db.Delete <LR_ERP_ProductInfoEntity>(t => t.F_PRID == lR_ERP_PurchaseRequisitionEntityTmp.F_Id);
                    foreach (LR_ERP_ProductInfoEntity item in lR_ERP_ProductInfoList)
                    {
                        item.Create();
                        item.F_PRID = lR_ERP_PurchaseRequisitionEntityTmp.F_Id;
                        db.Insert(item);
                    }
                }
                else
                {
                    entity.Create();
                    db.Insert(entity);
                    foreach (LR_ERP_ProductInfoEntity item in lR_ERP_ProductInfoList)
                    {
                        item.Create();
                        item.F_PRID = 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_PurchaseRequisitionEntityTmp.F_PurchaseNo) && !string.IsNullOrEmpty(keyValue))
            {
                SaveStatus(keyValue, lR_ERP_PurchaseRequisitionEntityTmp);
            }
        }
Esempio n. 3
0
 /// <summary>
 /// 保存实体数据(新增、修改)
 /// <param name="keyValue">主键</param>
 /// <summary>
 /// <returns></returns>
 public void SaveEntity(string keyValue, LR_ERP_PurchaseRequisitionEntity entity, List <LR_ERP_ProductInfoEntity> lR_ERP_ProductInfoList)
 {
     try
     {
         purchaseRequisitionService.SaveEntity(keyValue, entity, lR_ERP_ProductInfoList);
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         else
         {
             throw ExceptionEx.ThrowBusinessException(ex);
         }
     }
 }
Esempio n. 4
0
 public void UpdatePurchase(string purchaseId)
 {
     try
     {
         LR_ERP_PurchaseRequisitionEntity entity = GetLR_ERP_PurchaseRequisitionEntity(purchaseId);
         entity.F_Status = String.Empty;
         this.BaseRepository().Update(entity);
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         else
         {
             throw ExceptionEx.ThrowServiceException(ex);
         }
     }
 }