/// <summary> /// 新增(传入事务处理) /// </summary> /// <param name="p_BE">要新增的实体</param> /// <param name="sqlTrans">事务类</param> public void RAdd(BaseEntity p_BE, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); ProductionPlan entity = (ProductionPlan)p_BE; ProductionPlanCtl control = new ProductionPlanCtl(sqlTrans); entity.ID = (int)EntityIDTable.GetID((long)SysEntity.WO_ProductionPlan, sqlTrans); string sql = "SELECT FormNo FROM WO_ProductionPlan WHERE FormNo=" + SysString.ToDBString(entity.FormNo); DataTable dt = sqlTrans.Fill(sql); if (dt.Rows.Count != 0) { throw new Exception("此单号已存在,请重新生成"); } FormNoControlRule fnrule = new FormNoControlRule(); fnrule.RAddSort("WO_ProductionPlan", "FormNo", sqlTrans); control.AddNew(entity); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }
/// <summary> /// 修改 /// </summary> /// <param name="p_BE">要修改的实体</param> /// <param name="sqlTrans">事务类</param> public void RUpdate(BaseEntity p_BE, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); ProductionPlan entity = (ProductionPlan)p_BE; ProductionPlanCtl control = new ProductionPlanCtl(sqlTrans); control.Update(entity); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }
/// <summary> /// 删除 /// </summary> /// <param name="p_BE">要删除的实体</param> /// <param name="sqlTrans">事务类</param> public void RDelete(BaseEntity p_BE, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); ProductionPlan entity = (ProductionPlan)p_BE; ProductionPlanCtl control = new ProductionPlanCtl(sqlTrans); string sql = "DELETE FROM WO_ProductionPlanDts WHERE MainID=" + entity.ID.ToString(); sqlTrans.ExecuteNonQuery(sql);//删除原单据明细数据 control.Delete(entity); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }