示例#1
0
 public void Update(DbContext DbContext,ProductBillItem entity)
 {
     EntityState state = DbContext.Entry(entity).State;
        if (state == EntityState.Detached)
        {
       DbContext.Entry(entity).State = EntityState.Modified;
     }
 }
 public virtual OperationResult Create(ProductBillItemInfo info)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     using (var DbContext = new MRPDbContext())
     {
       ProductBillItem entity = new ProductBillItem();
       DESwap.ProductBillItemDTE(info, entity);
       ProductBillItemRpt.Insert(DbContext, entity);
       DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
 public virtual OperationResult Create(IEnumerable<ProductBillItemInfo> infoList)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     List<ProductBillItem> eList = new List<ProductBillItem>();
     infoList.ForEach(x =>
     {
         ProductBillItem entity = new ProductBillItem();
         DESwap. ProductBillItemDTE(x, entity);
         eList.Add(entity);
     });
     using (var DbContext = new MRPDbContext())
     {
     ProductBillItemRpt.Insert(DbContext, eList);
     DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
示例#4
0
        public static void ProductBillItemETD(ProductBillItem entity, ProductBillItemInfo info)
        {
            info.Id = entity.Id;
               info._IdIsDirty = 0;

               info.ProductBillId = entity.ProductBillId;
               info._ProductBillIdIsDirty = 0;

               info.ProductId = entity.ProductId;
               info._ProductIdIsDirty = 0;

               info.ProductName = entity.ProductName;
               info._ProductNameIsDirty = 0;

               info.Special = entity.Special;
               info._SpecialIsDirty = 0;

               info.Ratio = entity.Ratio;
               info._RatioIsDirty = 0;

               info.UnitId = entity.UnitId;
               info._UnitIdIsDirty = 0;

               info.UnitName = entity.UnitName;
               info._UnitNameIsDirty = 0;

               info.Amount = entity.Amount;
               info._AmountIsDirty = 0;

               info.Note = entity.Note;
               info._NoteIsDirty = 0;

               info.SYS_OrderSeq = entity.SYS_OrderSeq;
               info._SYS_OrderSeqIsDirty = 0;

               info.SYS_IsValid = entity.SYS_IsValid;
               info._SYS_IsValidIsDirty = 0;

               info.SYS_IsDeleted = entity.SYS_IsDeleted;
               info._SYS_IsDeletedIsDirty = 0;

               info.SYS_Remark = entity.SYS_Remark;
               info._SYS_RemarkIsDirty = 0;

               info.SYS_StaffId = entity.SYS_StaffId;
               info._SYS_StaffIdIsDirty = 0;

               info.SYS_StationId = entity.SYS_StationId;
               info._SYS_StationIdIsDirty = 0;

               info.SYS_DepartmentId = entity.SYS_DepartmentId;
               info._SYS_DepartmentIdIsDirty = 0;

               info.SYS_CompanyId = entity.SYS_CompanyId;
               info._SYS_CompanyIdIsDirty = 0;

               info.SYS_AppId = entity.SYS_AppId;
               info._SYS_AppIdIsDirty = 0;

               info.SYS_CreateTime = entity.SYS_CreateTime;
               info._SYS_CreateTimeIsDirty = 0;

               info.SYS_ModifyTime = entity.SYS_ModifyTime;
               info._SYS_ModifyTimeIsDirty = 0;

               info.SYS_DeleteTime = entity.SYS_DeleteTime;
               info._SYS_DeleteTimeIsDirty = 0;
        }
示例#5
0
 public void Insert(DbContext DbContext,ProductBillItem entity)
 {
     DbContext.Entry(entity).State = EntityState.Added;
 }
示例#6
0
 public void Delete(DbContext DbContext,ProductBillItem  entity)
 {
     DbContext.Entry(entity).State = EntityState.Deleted;
 }