/// <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); GoodsTrans entity = (GoodsTrans)p_BE; GoodsTransCtl control = new GoodsTransCtl(sqlTrans); control.Update(entity); GoodsTransDtsRule rule = new GoodsTransDtsRule(); rule.RSave(entity, p_BE2, sqlTrans); //string sql = "DELETE Att_GoodsTransDts WHERE MainID="+SysString.ToDBString(entity.ID); //sqlTrans.ExecuteNonQuery(sql); //for (int i = 0; i < p_BE2.Length; i++) //{ // GoodsTransDtsRule rule = new GoodsTransDtsRule(); // GoodsTransDts entityDts = (GoodsTransDts)p_BE2[i]; // entityDts.MainID = entity.ID; // entityDts.Seq = i + 1; // rule.RAdd(entityDts, 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 RAdd(BaseEntity p_BE, BaseEntity[] p_BE2, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); GoodsTrans entity = (GoodsTrans)p_BE; string sql = "SELECT FormNo FROM Att_GoodsTrans WHERE FormNo=" + SysString.ToDBString(entity.FormNo); DataTable dt = sqlTrans.Fill(sql); if (dt.Rows.Count > 0) { throw new BaseException("物流单号已存在,请重新生成"); } GoodsTransCtl control = new GoodsTransCtl(sqlTrans); entity.ID = (int)EntityIDTable.GetID((long)SysEntity.Att_GoodsTrans, sqlTrans); control.AddNew(entity); for (int i = 0; i < p_BE2.Length; i++) { GoodsTransDtsRule rule = new GoodsTransDtsRule(); GoodsTransDts entityDts = (GoodsTransDts)p_BE2[i]; entityDts.MainID = entity.ID; entityDts.Seq = i + 1; rule.RAdd(entityDts, sqlTrans); } FormNoControlRule rulest = new FormNoControlRule(); rulest.RAddSort((int)FormNoControlEnum.物流单号, sqlTrans); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }