/// <summary> /// 新增(传入事务处理) /// </summary> /// <param name="p_BE">要新增的实体</param> /// <param name="sqlTrans">事务类</param> public void RAdd(BaseEntity p_BE, BaseEntity[] p_BE2, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); ProductionNotice entity = (ProductionNotice)p_BE; string sql = "SELECT FormNo FROM Sale_ProductionNotice WHERE FormNo=" + SysString.ToDBString(entity.FormNo); DataTable dt = SysUtils.Fill(sql); if (dt.Rows.Count > 0) { throw new BaseException("单号已存在,请检查"); } ProductionNoticeCtl control = new ProductionNoticeCtl(sqlTrans); entity.ID = (int)EntityIDTable.GetID((long)SysEntity.Sale_ProductionNotice, sqlTrans); control.AddNew(entity); ProductionNoticeDtsRule procedureRule = new ProductionNoticeDtsRule(); procedureRule.RSave(entity, p_BE2, sqlTrans);//保存流程明细 FormNoControlRule frule = new FormNoControlRule(); frule.RAddSort((int)FormNoControlEnum.生产通知单号, sqlTrans); } 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, BaseEntity[] p_BE2, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); ProductionNotice entity = (ProductionNotice)p_BE; ProductionNoticeCtl control = new ProductionNoticeCtl(sqlTrans); control.Update(entity); ProductionNoticeDtsRule procedureRule = new ProductionNoticeDtsRule(); procedureRule.RSave(entity, p_BE2, sqlTrans);//保存流程明细 } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }