| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278 |
- /*******************************************************************************
- * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:SystemModuleLogic.cs
- * 2.功能描述:产品档案数据查询处理
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 张国印 2014/09/12 1.00 新建
- *******************************************************************************/
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Text;
- using Dongke.IBOSS.PRD.Basics.DataAccess;
- using Dongke.IBOSS.PRD.Service.DataModels;
- using Dongke.IBOSS.PRD.WCF.DataModels;
- using Oracle.DataAccess.Client;
- namespace Dongke.IBOSS.PRD.Service.SystemModuleLogic
- {
- /// <summary>
- /// 产品档案数据查询处理
- /// </summary>
- public partial class SystemModuleLogic
- {
- #region 产品档案
- /// <summary>
- /// 查询产品信息
- /// </summary>
- /// <param name="sUserInfo">用户基本信息</param>
- /// <param name="goodsEntity">产品信息</param>
- /// <returns>DataSet</returns>
- /// <remarks>
- /// 陈冰 2014.09.01 新建
- /// </remarks>
- public static DataSet SerachGoods(SUserInfo sUserInfo, GoodsEntity goodsEntity)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- if (!string.IsNullOrWhiteSpace(goodsEntity.GoodsCodeOnly))
- {
- string sql = "select goodsid from tp_mst_goods g where g.goodscode = :goodscode";
- OracleParameter[] paras1 = new OracleParameter[]{
- new OracleParameter(":goodscode",OracleDbType.Varchar2,
- goodsEntity.GoodsCodeOnly,ParameterDirection.Input),
- };
- return con.GetSqlResultToDs(sql, paras1);
- }
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("account",OracleDbType.Int32,
- sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("goodsID",OracleDbType.Int32,
- goodsEntity.GoodsID,ParameterDirection.Input),
- new OracleParameter("goodsCode",OracleDbType.NVarchar2,
- goodsEntity.GoodsCode,ParameterDirection.Input),
- new OracleParameter("goodsName",OracleDbType.NVarchar2,
- goodsEntity.GoodsName,ParameterDirection.Input),
- new OracleParameter("goodsSpecification",OracleDbType.NVarchar2,
- goodsEntity.GoodsSpecification,ParameterDirection.Input),
- new OracleParameter("goodsModel",OracleDbType.NVarchar2,
- goodsEntity.GoodsModel,ParameterDirection.Input),
- new OracleParameter("goodsTypeCode",OracleDbType.NVarchar2,
- goodsEntity.GoodsTypeCode,ParameterDirection.Input),
- new OracleParameter("glazeTypeID",OracleDbType.Int32,
- goodsEntity.GlazeTypeID,ParameterDirection.Input),
- new OracleParameter("ceaseFlag",OracleDbType.NVarchar2,
- goodsEntity.CeaseFlag,ParameterDirection.Input),
- new OracleParameter("remarks",OracleDbType.NVarchar2,
- goodsEntity.Remarks,ParameterDirection.Input),
- new OracleParameter("valueFlag",OracleDbType.NVarchar2,
- goodsEntity.ValueFlag,ParameterDirection.Input),
- new OracleParameter("rs_result",OracleDbType.RefCursor,ParameterDirection.Output),
- new OracleParameter("rs_result_img",OracleDbType.RefCursor,ParameterDirection.Output),
- };
- foreach (OracleParameter item in paras)
- {
- if (item.Value + "" == "")
- {
- item.Value = DBNull.Value;
- }
- }
- DataSet ds = con.ExecStoredProcedure("PRO_MST_SerachGoods", paras);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- /// <summary>
- /// 新建产品档案
- /// </summary>
- /// <param name="sUserInfo">用户基本信息</param>
- /// <param name="goodsEntity">产品实体</param>
- /// <param name="imgList">产品图片集合</param>
- /// <param name="attList">缺陷位置ID集合</param>
- /// <returns>int受影响行数</returns>
- /// <remarks>
- /// 庄天威 2014.09.04 新建
- /// </remarks>
- public static int AddGoods(SUserInfo sUserInfo, GoodsEntity goodsEntity
- , List<GoodsImageEntity> imgList, List<GoodsAttachmentEntity> attList)
- {
- int returnRows;
- IDBTransaction oracleTrConn = ClsDbFactory.CreateDBTransaction(DataBaseType.ORACLE, DataManager.ConnectionString);
- if (goodsEntity.MudQuantity == null)
- {
- goodsEntity.MudQuantity = 0;
- }
- if (goodsEntity.GlazeQuantity == null)
- {
- goodsEntity.GlazeQuantity = 0;
- }
- if (goodsEntity.Remarks == null)
- {
- goodsEntity.Remarks = "";
- }
- if (goodsEntity.GoodsSpecification == null)
- {
- goodsEntity.GoodsSpecification = "";
- }
- if (goodsEntity.GoodsModel == null)
- {
- goodsEntity.GoodsModel = "";
- }
- try
- {
- oracleTrConn.Connect();
- // 物料编码重复验证 add by chenxy 2017-07-11 begin
- // 有不同编码,同物料编码的情况 delete by chenxy 2017-11-10
- //string sqlString = "SELECT g.goodscode \n" +
- //" FROM tp_mst_goods g\n" +
- //" WHERE g.materialcode = :materialcode";
- //OracleParameter[] checkParas = new OracleParameter[]{
- // new OracleParameter(":materialcode",goodsEntity.MaterialCode),
- //};
- //string goodscode = oracleTrConn.GetSqlResultToStr(sqlString, checkParas);
- //if (!string.IsNullOrWhiteSpace(goodscode))
- //{
- // return -10;
- //}
- // 物料编码重复验证 add by chenxy 2017-07-11 end
- StringBuilder sbSql = new StringBuilder();
- sbSql.Append("select SEQ_MST_Goods_GoodsID.nextval from dual");
- int id = Convert.ToInt32(oracleTrConn.GetSqlResultToStr(sbSql.ToString()));
- sbSql.Clear();
- sbSql.Append(" INSERT INTO TP_MST_GOODS");
- sbSql.Append("(GoodsID,GoodsCode,GoodsName,GoodsSpecification,GoodsModel,GoodsTypeID,");
- sbSql.Append("GlazeTypeID,MudWeight,GlazeWeight,LusterwareWeight,ProductionCycle,CeaseFlag,Goods_Line_Type,");
- sbSql.Append("StartingDate,AutoLossCycle,DeliverLimitCycle,PlateLimitNum,UnitPrice,ReservedDays,");
- sbSql.Append("PackageNum,OutletDistance,MaterialCode,MaterialRemark,printcopies,");
- sbSql.Append("MouldWeight,MouldCost,ScrapSumFlag,SEATCOVERCODE,");
- sbSql.Append("WaterLabelCode,StandardGroutingNum,MouldMaterialCode,MouldOutputCount,logoid,");
- sbSql.Append("Remarks,AccountID,ValueFlag,CreateUserID,UpdateUserID)");
- sbSql.Append("VALUES( :GoodsId, :GoodsCode, :GoodsName, :GoodsSpecification, :GoodsModel, :GoodsTypeID,");
- sbSql.Append(" :GlazeTypeID, :MudWeight, :GlazeWeight,:LusterwareWeight, :ProductionCycle, :CeaseFlag,:Goods_Line_Type,");
- sbSql.Append(" :StartingDate, :AutoLossCycle, :DeliverLimitCycle,:PlateLimitNum,:UnitPrice,:ReservedDays,");
- sbSql.Append(" :PackageNum, :OutletDistance, :MaterialCode,:MaterialRemark,:printcopies,");
- sbSql.Append(" :MouldWeight, :MouldCost,:ScrapSumFlag,:SEATCOVERCODE,");
- sbSql.Append(" :WaterLabelCode, :StandardGroutingNum, :MouldMaterialCode, :MouldOutputCount,:logoid,");
- sbSql.Append(" :Remarks, :AccountID, :ValueFlag, :CreateUserID, :UpdateUserID)");
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter(":GoodsId",id),
- new OracleParameter(":GoodsCode",goodsEntity.GoodsCode),
- new OracleParameter(":GoodsName",goodsEntity.GoodsName),
- new OracleParameter(":GoodsSpecification",goodsEntity.GoodsSpecification),
- new OracleParameter(":GoodsModel",goodsEntity.GoodsModel),
- new OracleParameter(":GoodsTypeID",goodsEntity.GoodsTypeID),
- new OracleParameter(":GlazeTypeID",goodsEntity.GlazeTypeID),
- new OracleParameter(":MudWeight",goodsEntity.MudQuantity),
- new OracleParameter(":GlazeWeight",goodsEntity.GlazeQuantity),
- new OracleParameter(":LusterwareWeight",goodsEntity.LusterwareWeight),
- new OracleParameter(":ProductionCycle",goodsEntity.ProductionCycle),
- new OracleParameter(":CeaseFlag",goodsEntity.CeaseFlag),
- new OracleParameter(":Goods_Line_Type",goodsEntity.GoodsLineType),
- new OracleParameter(":StartingDate",goodsEntity.StartingDate),
- new OracleParameter(":AutoLossCycle",goodsEntity.AutoLossCycle),
- new OracleParameter(":DeliverLimitCycle",goodsEntity.DeliverLimitCycle),
- new OracleParameter(":PlateLimitNum",goodsEntity.PlateLimitNum),
- new OracleParameter(":ReservedDays",goodsEntity.ReservedDays),
- new OracleParameter(":UnitPrice",goodsEntity.UnitPrice),
- new OracleParameter(":PackageNum",goodsEntity.PackageNum),
- new OracleParameter(":OutletDistance",goodsEntity.OutletDistance),
- new OracleParameter(":MaterialCode",goodsEntity.MaterialCode),
- new OracleParameter(":MouldWeight",goodsEntity.MouldWeight),
- new OracleParameter(":MouldCost",goodsEntity.MouldCost),
- new OracleParameter(":ScrapSumFlag",goodsEntity.ScrapSumFlag),
- new OracleParameter(":MaterialRemark",goodsEntity.MaterialRemark),
- new OracleParameter(":printcopies",goodsEntity.PrintCopies),
- new OracleParameter(":SEATCOVERCODE", goodsEntity.SeatCoverCode),
- new OracleParameter(":WaterLabelCode", goodsEntity.WaterLabelCode),
- new OracleParameter(":StandardGroutingNum", goodsEntity.StandardGroutingNum),
- new OracleParameter(":MouldMaterialCode", goodsEntity.MouldMaterialCode),
- new OracleParameter(":MouldOutputCount", goodsEntity.MouldOutputCount),
- new OracleParameter(":logoid", goodsEntity.LogoID),
- new OracleParameter(":Remarks",goodsEntity.Remarks),
- new OracleParameter(":AccountID",sUserInfo.AccountID),
- new OracleParameter(":ValueFlag",goodsEntity.ValueFlag),
- //new OracleParameter(":CreateTime",OracleDbType.Date,DateTime.Now,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",sUserInfo.UserID),
- //new OracleParameter(":UpdateTime",OracleDbType.Date,DateTime.Now,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",sUserInfo.UserID),
- //new OracleParameter(":OPTimeStamp",OracleDbType.TimeStamp,DateTime.Now,ParameterDirection.Input)
- };
- returnRows = oracleTrConn.ExecuteNonQuery(sbSql.ToString(), paras);
- //SAP物料信息
- string sql = "delete from TP_MST_GoodsLogoSAP where goodsid = " + id;
- returnRows += oracleTrConn.ExecuteNonQuery(sql);
- sql = "insert into TP_MST_GOODSLOGOSAP\n" +
- " (GOODSID, LOGOID, GOODSCODE, MATERIALCODE, MATERIALREMARK, CREATEUSERID, WaterLabelCode)\n" +
- "values\n" +
- " (:GOODSID, :LOGOID, :GOODSCODE, :MATERIALCODE, :MATERIALREMARK, :CREATEUSERID, :WaterLabelCode)";
- foreach (DataRow item in goodsEntity.SAPInfo.Rows)
- {
- string sapcode = item["MATERIALCODE"] + "";
- string sapremark = item["MATERIALREMARK"] + "";
- if (string.IsNullOrWhiteSpace(sapcode))
- {
- continue;
- }
- if (string.IsNullOrEmpty(sapremark))
- {
- sapremark = " ";
- }
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSID",id),
- new OracleParameter(":LOGOID",item["LOGOID"]),
- new OracleParameter(":GOODSCODE",goodsEntity.GoodsCode),
- new OracleParameter(":MATERIALCODE",sapcode),
- new OracleParameter(":MATERIALREMARK",sapremark),
- new OracleParameter(":CREATEUSERID",sUserInfo.UserID),
- new OracleParameter(":WaterLabelCode",item["WaterLabelCode"]),
- };
- returnRows += oracleTrConn.ExecuteNonQuery(sql, paras);
- }
- //此处添加图片信息
- foreach (GoodsImageEntity img in imgList)
- {
- int imgReturn = 0;
- sbSql.Clear();
- sbSql.Append("select SEQ_MST_GoodsImage_ID.nextval from dual");
- int imgId = Convert.ToInt32(oracleTrConn.GetSqlResultToStr(sbSql.ToString()));
- sbSql.Clear();
- sbSql.Append("Insert into TP_MST_GoodsImage");
- sbSql.Append("(GoodsImageID,GoodsID,Thumbnail,Image,AccountID,ValueFlag,");
- sbSql.Append("CreateUserID,UpdateUserID)");
- sbSql.Append(" VALUES(:GoodsImageID,:GoodsID,:Thumbnail,:Image,:AccountID,:ValueFlag,");
- sbSql.Append(":CreateUserID,:UpdateUserID)");
- OracleParameter[] imgParas = new OracleParameter[] {
- new OracleParameter(":GoodsImageID",OracleDbType.Int32,imgId,ParameterDirection.Input),
- new OracleParameter(":GoodsID",OracleDbType.Int32,id,ParameterDirection.Input),
- new OracleParameter(":Thumbnail",OracleDbType.Blob,img.Thumbnail,ParameterDirection.Input),
- new OracleParameter(":Image",OracleDbType.Blob,img.Image,ParameterDirection.Input),
- new OracleParameter(":AccountID",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter(":ValueFlag",OracleDbType.Int32,img.ValueFlag,ParameterDirection.Input),
- //new OracleParameter(":CreateTime",OracleDbType.Date,DateTime.Now,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",OracleDbType.Int32,sUserInfo.UserID,ParameterDirection.Input),
- //new OracleParameter(":UpdateTime",OracleDbType.Date,DateTime.Now,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,sUserInfo.UserID,ParameterDirection.Input),
- //new OracleParameter(":OPTimeStamp",OracleDbType.TimeStamp,DateTime.Now,ParameterDirection.Input)
- };
- imgReturn = oracleTrConn.ExecuteNonQuery(sbSql.ToString(), imgParas);
- }
- //此处添加产品附件
- //int AttReturn = AddAttachment(oracleTrConn, attList, id, sUserInfo);
- //此处添加缺陷位置关联
- //int dpCount = SaveGoodsDefectPosition(oracleTrConn, dpList, id, sUserInfo);
- oracleTrConn.Commit();
- oracleTrConn.Disconnect();
- }
- catch (Exception ex)
- {
- if (oracleTrConn.ConnState == System.Data.ConnectionState.Open)
- {
- oracleTrConn.Rollback();
- oracleTrConn.Disconnect();
- }
- throw ex;
- }
- return returnRows;
- }
- /// <summary>
- /// 修改产品档案
- /// </summary>
- /// <param name="sUserInfo">用户基本信息</param>
- /// <param name="goodsEntity">产品实体</param>
- /// <param name="imgList">产品图片集合</param>
- /// <param name="attList">缺陷位置ID集合</param>
- /// <returns>int受影响行数</returns>
- /// <remarks>
- /// 庄天威 2014.09.04 新建
- /// </remarks>
- public static int updateGoods(SUserInfo sUserInfo, GoodsEntity goodsEntity
- , List<GoodsImageEntity> imgList, List<GoodsAttachmentEntity> attList)
- {
- int returnRows = 0;
- IDBTransaction oracleTrConn = ClsDbFactory.CreateDBTransaction(DataBaseType.ORACLE, DataManager.ConnectionString);
- if (goodsEntity.MudQuantity == null)
- {
- goodsEntity.MudQuantity = 0;
- }
- if (goodsEntity.GlazeQuantity == null)
- {
- goodsEntity.GlazeQuantity = 0;
- }
- if (goodsEntity.Remarks == null)
- {
- goodsEntity.Remarks = "";
- }
- if (goodsEntity.GoodsSpecification == null)
- {
- goodsEntity.GoodsSpecification = "";
- }
- if (goodsEntity.GoodsModel == null)
- {
- goodsEntity.GoodsModel = "";
- }
- try
- {
- oracleTrConn.Connect();
- // 物料编码重复验证 add by chenxy 2017-07-11 begin
- // 有不同编码,同物料编码的情况 delete by chenxy 2017-11-10
- //string sqlString = "SELECT g.goodscode \n" +
- //" FROM tp_mst_goods g\n" +
- //" WHERE g.materialcode = :materialcode and g.goodsid <> :goodsid";
- //OracleParameter[] checkParas = new OracleParameter[]{
- // new OracleParameter(":materialcode",goodsEntity.MaterialCode),
- // new OracleParameter(":goodsid",goodsEntity.GoodsID),
- //};
- //string goodscode = oracleTrConn.GetSqlResultToStr(sqlString, checkParas);
- //if (!string.IsNullOrWhiteSpace(goodscode))
- //{
- // return -10;
- //}
- // 物料编码重复验证 add by chenxy 2017-07-11 end
- StringBuilder sbSql = new StringBuilder();
- sbSql.Append("update TP_MST_GOODS");
- //sbSql.Append(" set GoodsCode=:GoodsCode,GoodsName=:GoodsName,GoodsSpecification=:GoodsSpecification,");
- sbSql.Append(" set GoodsName=:GoodsName,GoodsSpecification=:GoodsSpecification,");
- sbSql.Append(" GoodsModel=:GoodsModel,GoodsTypeID=:GoodsTypeID,GlazeTypeID=:GlazeTypeID,MudWeight=:MudWeight,");
- sbSql.Append(" GlazeWeight=:GlazeWeight,LusterwareWeight=:LusterwareWeight,ProductionCycle=:ProductionCycle,CeaseFlag=:CeaseFlag,Goods_Line_Type=:Goods_Line_Type,Remarks=:Remarks,");
- sbSql.Append(" StartingDate=:StartingDate, AutoLossCycle = :AutoLossCycle, DeliverLimitCycle=:DeliverLimitCycle, PlateLimitNum=:PlateLimitNum,");
- sbSql.Append(" UnitPrice=:UnitPrice,PackageNum=:PackageNum,OutletDistance=:OutletDistance,MaterialCode=:MaterialCode,MaterialRemark=:MaterialRemark,printcopies=:printcopies,");
- sbSql.Append(" MouldWeight=:MouldWeight, MouldCost=:MouldCost,ScrapSumFlag=:ScrapSumFlag, ReservedDays=:ReservedDays,SEATCOVERCODE=:SEATCOVERCODE,");
- sbSql.Append(" WaterLabelCode=:WaterLabelCode, StandardGroutingNum=:StandardGroutingNum,MouldMaterialCode=:MouldMaterialCode, MouldOutputCount=:MouldOutputCount,");
- sbSql.Append(" AccountID=:AccountID,ValueFlag=:ValueFlag,UpdateUserID=:UpdateUserID,logoid=:logoid");
- //sbSql.Append(" CreateTime=:CreateTime,CreateUserID=:CreateUserID ");
- sbSql.Append(" where GoodsID=:GoodsID and OPTimeStamp=:OPTimeStamp");
- OracleParameter[] paras = new OracleParameter[]{
- // new OracleParameter(":GoodsCode",goodsEntity.GoodsCode),
- new OracleParameter(":GoodsName",goodsEntity.GoodsName),
- new OracleParameter(":GoodsSpecification",goodsEntity.GoodsSpecification),
- new OracleParameter(":GoodsModel",goodsEntity.GoodsModel),
- new OracleParameter(":GoodsTypeID",goodsEntity.GoodsTypeID),
- new OracleParameter(":GlazeTypeID",goodsEntity.GlazeTypeID),
- new OracleParameter(":MudWeight",goodsEntity.MudQuantity),
- new OracleParameter(":GlazeWeight",goodsEntity.GlazeQuantity),
- new OracleParameter(":LusterwareWeight",goodsEntity.LusterwareWeight),
- new OracleParameter(":ProductionCycle",goodsEntity.ProductionCycle),
- new OracleParameter(":CeaseFlag",goodsEntity.CeaseFlag),
- new OracleParameter(":Goods_Line_Type",goodsEntity.GoodsLineType),
- new OracleParameter(":StartingDate",goodsEntity.StartingDate),
- new OracleParameter(":AutoLossCycle",goodsEntity.AutoLossCycle),
- new OracleParameter(":DeliverLimitCycle",goodsEntity.DeliverLimitCycle),
- new OracleParameter(":PlateLimitNum",goodsEntity.PlateLimitNum),
- new OracleParameter(":ReservedDays",goodsEntity.ReservedDays),
- new OracleParameter(":UnitPrice",goodsEntity.UnitPrice),
- new OracleParameter(":PackageNum",goodsEntity.PackageNum),
- new OracleParameter(":OutletDistance",goodsEntity.OutletDistance),
- new OracleParameter(":MaterialCode",goodsEntity.MaterialCode),
- new OracleParameter(":MouldWeight",goodsEntity.MouldWeight),
- new OracleParameter(":MouldCost",goodsEntity.MouldCost),
- new OracleParameter(":ScrapSumFlag",goodsEntity.ScrapSumFlag),
- new OracleParameter(":MaterialRemark",goodsEntity.MaterialRemark),
- new OracleParameter(":printcopies",goodsEntity.PrintCopies),
- new OracleParameter(":Remarks",goodsEntity.Remarks),
- new OracleParameter(":SEATCOVERCODE",goodsEntity.SeatCoverCode),
- new OracleParameter(":WaterLabelCode",goodsEntity.WaterLabelCode),
- new OracleParameter(":StandardGroutingNum",goodsEntity.StandardGroutingNum),
- new OracleParameter(":MouldMaterialCode",goodsEntity.MouldMaterialCode),
- new OracleParameter(":MouldOutputCount",goodsEntity.MouldOutputCount),
- new OracleParameter(":logoid", goodsEntity.LogoID),
- new OracleParameter(":AccountID",goodsEntity.AccountID),
- new OracleParameter(":ValueFlag",goodsEntity.ValueFlag),
- //new OracleParameter(":UpdateTime",OracleDbType.Date,DateTime.Now,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",sUserInfo.UserID),
- //new OracleParameter(":CreateTime",OracleDbType.Date,goodsEntity.CreateTime,ParameterDirection.Input),
- //new OracleParameter(":CreateUserID",goodsEntity.CreateUserID),
- new OracleParameter(":OPTimeStamp",OracleDbType.TimeStamp,goodsEntity.OPTimeStamp,ParameterDirection.Input),
- new OracleParameter(":GoodsId",goodsEntity.GoodsID)
- };
- returnRows = oracleTrConn.ExecuteNonQuery(sbSql.ToString(), paras);
- if (returnRows == 0)
- {
- oracleTrConn.Rollback();
- oracleTrConn.Disconnect();
- return -500;
- }
- //SAP物料信息
- string sql = "delete from TP_MST_GoodsLogoSAP where goodsid = " + goodsEntity.GoodsID;
- returnRows += oracleTrConn.ExecuteNonQuery(sql);
- sql = "insert into TP_MST_GOODSLOGOSAP\n" +
- " (GOODSID, LOGOID, GOODSCODE, MATERIALCODE, MATERIALREMARK, CREATEUSERID,WaterLabelCode)\n" +
- "values\n" +
- " (:GOODSID, :LOGOID, :GOODSCODE, :MATERIALCODE, :MATERIALREMARK, :CREATEUSERID,:WaterLabelCode)";
- foreach (DataRow item in goodsEntity.SAPInfo.Rows)
- {
- string sapcode = item["MATERIALCODE"] + "";
- string sapremark = item["MATERIALREMARK"] + "";
- if (string.IsNullOrWhiteSpace(sapcode))
- {
- continue;
- }
- if (string.IsNullOrEmpty(sapremark))
- {
- sapremark = " ";
- }
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSID",goodsEntity.GoodsID),
- new OracleParameter(":LOGOID",item["LOGOID"]),
- new OracleParameter(":GOODSCODE",goodsEntity.GoodsCode),
- new OracleParameter(":MATERIALCODE",sapcode),
- new OracleParameter(":MATERIALREMARK",sapremark),
- new OracleParameter(":CREATEUSERID",sUserInfo.UserID),
- new OracleParameter(":WaterLabelCode",item["WaterLabelCode"]),
- };
- returnRows += oracleTrConn.ExecuteNonQuery(sql, paras);
- }
- foreach (GoodsImageEntity imgEntity in imgList)
- {
- if (imgEntity.GoodsImageID == 0)
- {
- int imgReturn = 0;
- sbSql.Clear();
- sbSql.Append("select SEQ_MST_GoodsImage_ID.nextval from dual");
- int imgId = Convert.ToInt32(oracleTrConn.GetSqlResultToStr(sbSql.ToString()));
- sbSql.Clear();
- sbSql.Append("Insert into TP_MST_GoodsImage");
- sbSql.Append("(GoodsImageID,GoodsID,Thumbnail,Image,AccountID,ValueFlag,");
- sbSql.Append("CreateUserID,UpdateUserID)");
- sbSql.Append(" VALUES(:GoodsImageID,:GoodsID,:Thumbnail,:Image,:AccountID,:ValueFlag,");
- sbSql.Append(":CreateUserID,:UpdateUserID)");
- OracleParameter[] imgParas = new OracleParameter[] {
- new OracleParameter(":GoodsImageID",OracleDbType.Int32,imgId,ParameterDirection.Input),
- new OracleParameter(":GoodsID",OracleDbType.Int32,goodsEntity.GoodsID,ParameterDirection.Input),
- new OracleParameter(":Thumbnail",OracleDbType.Blob,imgEntity.Thumbnail,ParameterDirection.Input),
- new OracleParameter(":Image",OracleDbType.Blob,imgEntity.Image,ParameterDirection.Input),
- new OracleParameter(":AccountID",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter(":ValueFlag",OracleDbType.Int32,imgEntity.ValueFlag,ParameterDirection.Input),
- //new OracleParameter(":CreateTime",OracleDbType.Date,DateTime.Now,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",OracleDbType.Int32,sUserInfo.UserID,ParameterDirection.Input),
- //new OracleParameter(":UpdateTime",OracleDbType.Date,DateTime.Now,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,sUserInfo.UserID,ParameterDirection.Input),
- //new OracleParameter(":OPTimeStamp",OracleDbType.TimeStamp,DateTime.Now,ParameterDirection.Input)
- };
- imgReturn = oracleTrConn.ExecuteNonQuery(sbSql.ToString(), imgParas);
- }
- else
- {
- int imgReturn = 0;
- sbSql.Clear();
- sbSql.Append(" update TP_MST_GoodsImage");
- sbSql.Append(" set GoodsID=:GoodsID,AccountID=:AccountID,ValueFlag=:ValueFlag,");
- sbSql.Append(" UpdateUserID=:UpdateUserID");
- //sbSql.Append(" where GoodsImageID=:GoodsImageID And OPTimeStamp=to_date(:OPTimeStamp,'yyyy-mm-dd HH24:mi:ss')");
- sbSql.Append(" where GoodsImageID=:GoodsImageID");
- OracleParameter[] imgParas = new OracleParameter[] {
- new OracleParameter(":GoodsID",OracleDbType.Int32,
- goodsEntity.GoodsID,ParameterDirection.Input),
- new OracleParameter(":AccountID",OracleDbType.Int32,
- imgEntity.AccountID,ParameterDirection.Input),
- new OracleParameter(":ValueFlag",OracleDbType.Int32,
- imgEntity.ValueFlag,ParameterDirection.Input),
- //new OracleParameter(":UpdateTime",OracleDbType.NVarchar2,
- // DateTime.Now.ToString(),ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,
- sUserInfo.UserID,ParameterDirection.Input),
- new OracleParameter(":GoodsImageID",OracleDbType.Int32,
- imgEntity.GoodsImageID,ParameterDirection.Input)
- //,new OracleParameter(":OPTimeStamp",OracleDbType.TimeStamp, imgEntity.OPTimeStamp,ParameterDirection.Input)
- };
- imgReturn = oracleTrConn.ExecuteNonQuery(sbSql.ToString(), imgParas);
- }
- }
- //修改产品附件
- //int AttReturn = UpdateAttachment(oracleTrConn, attList, Convert.ToInt32(goodsEntity.GoodsID), sUserInfo);
- oracleTrConn.Commit();
- oracleTrConn.Disconnect();
- }
- catch (Exception ex)
- {
- if (oracleTrConn.ConnState == System.Data.ConnectionState.Open)
- {
- oracleTrConn.Rollback();
- oracleTrConn.Disconnect();
- }
- throw ex;
- }
- return returnRows;
- }
- /// <summary>
- /// 查询产品物料信息
- /// </summary>
- /// <param name="sUserInfo"></param>
- /// <param name="goodsID"></param>
- /// <returns></returns>
- public static ServiceResultEntity GetGoodsSAP(SUserInfo sUserInfo, int goodsID)
- {
- IDBConnection conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- string sqlString = "\n" +
- "select '产品档案' logoname, g.materialcode, g.materialremark,g.WaterLabelCode, '1' valueflag, -1 displayno\n" +
- " from tp_mst_goods g\n" +
- " where g.goodsid = :goodsid\n" +
- "union all\n" +
- "select to_char(l.logoname)\n" +
- " ,gls.materialcode\n" +
- " ,gls.materialremark\n" +
- " ,gls.WaterLabelCode\n" +
- " ,l.valueflag\n" +
- " ,l.displayno\n" +
- " from tp_mst_goodslogosap gls\n" +
- " inner join tp_mst_logo l\n" +
- " on l.logoid = gls.logoid\n" +
- " where gls.goodsid = :goodsid\n" +
- " order by valueflag desc, displayno";
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter(":goodsid",goodsID),
- };
- ServiceResultEntity sre = new ServiceResultEntity();
- sre.Data = conn.GetSqlResultToDs(sqlString, paras);
- return sre;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (conn != null &&
- conn.ConnState == ConnectionState.Open)
- {
- conn.Close();
- }
- }
- }
- /// <summary>
- /// 查询产品物料信息(编辑用)
- /// </summary>
- /// <param name="sUserInfo"></param>
- /// <param name="goodsID"></param>
- /// <returns></returns>
- public static ServiceResultEntity GetGoodsSAPByEdit(SUserInfo sUserInfo, int goodsID)
- {
- IDBConnection conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- string sqlString = "select l.logoid\n" +
- " ,l.logoname\n" +
- " ,gls.materialcode\n" +
- " ,gls.materialremark\n" +
- " ,gls.WaterLabelCode\n" +
- " ,gls.goodsid\n" +
- " ,l.valueflag\n" +
- " from tp_mst_logo l\n" +
- " left join tp_mst_goodslogosap gls\n" +
- " on gls.goodsid = :goodsid\n" +
- " and l.logoid = gls.logoid\n" +
- " where (l.valueflag = '1' or gls.goodsid is not null)\n" +
- " order by gls.goodsid, l.valueflag desc, l.displayno";
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter(":goodsid",goodsID),
- };
- ServiceResultEntity sre = new ServiceResultEntity();
- sre.Data = conn.GetSqlResultToDs(sqlString, paras);
- return sre;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (conn != null &&
- conn.ConnState == ConnectionState.Open)
- {
- conn.Close();
- }
- }
- }
- #endregion
- #region 获得生产工号集合
- /// <summary>
- /// 获得生产工号集合
- /// </summary>
- /// <param name="sUserInfo">用户基本信息</param>
- /// <returns>DataSet</returns>
- /// <remarks>
- /// 陈冰 2014.09.03 新建
- /// </remarks>
- public static DataSet GetWorker(SUserInfo sUserInfo)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("accountID",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("rs_worker",OracleDbType.RefCursor,ParameterDirection.Output),
- };
- DataSet ds = con.ExecStoredProcedure("PRO_MST_GetWorker", paras);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- #region 获得工种集合
- /// <summary>
- /// 获得工种集合
- /// </summary>
- /// <param name="sUserInfo">用户基本信息</param>
- /// <returns>DataSet</returns>
- /// <remarks>
- /// 陈冰 2014.09.03 新建
- /// </remarks>
- public static DataSet GetJobs(SUserInfo sUserInfo)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("accountID",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("rs_jobs",OracleDbType.RefCursor,ParameterDirection.Output),
- };
- DataSet ds = con.ExecStoredProcedure("PRO_MST_GetJobs", paras);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- #region 获得缺陷集合
- /// <summary>
- /// 获得缺陷集合
- /// </summary>
- /// <param name="sUserInfo">用户基本信息</param>
- /// <returns>DataSet</returns>
- /// <remarks>
- /// 陈冰 2014.09.03 新建
- /// </remarks>
- public static DataSet GetDefect(SUserInfo sUserInfo)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("accountID",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("rs_defect",OracleDbType.RefCursor,ParameterDirection.Output),
- };
- DataSet ds = con.ExecStoredProcedure("PRO_MST_GetDefect", paras);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- #region 产品图片
- /// <summary>
- /// 根据产品ID获取产品图片
- /// </summary>
- /// <param name="sUserInfo">用户基本信息</param>
- /// <param name="goodsId">产品ID</param>
- /// <returns>DataSet</returns>
- /// <remarks>
- /// 庄天威 2014.09.04 新建
- /// </remarks>
- public static DataSet GetImageByGoodsId(SUserInfo sUserInfo, int goodsId)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("in_accountID",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("in_goodsID",OracleDbType.Int32,goodsId,ParameterDirection.Input),
- new OracleParameter("rs_result",OracleDbType.RefCursor,ParameterDirection.Output),
- };
- DataSet ds = con.ExecStoredProcedure("PRO_MST_GetImageByGoodsId", paras);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- #region 附件
- /// <summary>
- /// 新建附件信息
- /// </summary>
- /// <param name="AttList">附件实体集合</param>
- /// <param name="mainId">产品ID</param>
- /// <param name="userInfo">用户基本信息</param>
- /// <returns>int影响结果行数</returns>
- public static int AddAttachment(List<GoodsAttachmentEntity> AttList, int mainId, SUserInfo userInfo)
- {
- IDBTransaction oracleTrConn = ClsDbFactory.CreateDBTransaction(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- oracleTrConn.Connect();
- int AttReturn = 0;
- int GAReturn = 0;
- StringBuilder sbSql = new StringBuilder();
- foreach (GoodsAttachmentEntity attFor in AttList)
- {
- sbSql.Clear();
- sbSql.Append("select SEQ_MST_Attachment_ID.nextval from dual");
- int id = Convert.ToInt32(oracleTrConn.GetSqlResultToStr(sbSql.ToString()));
- sbSql.Clear();
- sbSql.Append(@"Insert into TP_MST_Attachment(AttachmentID,FileName,FilePath,AccountID,ValueFlag,
- CreateUserID,UpdateUserID)
- Values(:AttachmentID,:FileName,:FilePath,:AccountID,:ValueFlag,
- :CreateUserID,:UpdateUserID)");
- OracleParameter[] attParas = new OracleParameter[] {
- new OracleParameter(":AttachmentID",OracleDbType.Int32,
- id,ParameterDirection.Input),
- new OracleParameter(":FileName",OracleDbType.NVarchar2,
- attFor.FileName,ParameterDirection.Input),
- new OracleParameter(":FilePath",OracleDbType.NVarchar2,
- attFor.FilePath,ParameterDirection.Input),
- new OracleParameter(":AccountID",OracleDbType.Int32,
- userInfo.AccountID,ParameterDirection.Input),
- new OracleParameter(":ValueFlag",OracleDbType.Int32,
- 1,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input)
- };
- AttReturn += oracleTrConn.ExecuteNonQuery(sbSql.ToString(), attParas);
- sbSql.Clear();
- sbSql.Append(@"Insert into TP_MST_GoodsAttachment(GoodsID,AttachmentID,CreateUserID,UpdateUserID)
- Values(:GoodsID,:AttachmentID,:CreateUserID,:UpdateUserID)");
- OracleParameter[] gaParas = new OracleParameter[] {
- new OracleParameter(":GoodsID",OracleDbType.Int32,
- mainId,ParameterDirection.Input),
- new OracleParameter(":AttachmentID",OracleDbType.Int32,
- id,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input)
- };
- GAReturn += oracleTrConn.ExecuteNonQuery(sbSql.ToString(), gaParas);
- sbSql.Clear();
- }
- oracleTrConn.Commit();
- oracleTrConn.Disconnect();
- return AttReturn;
- }
- catch (Exception ex)
- {
- if (oracleTrConn.ConnState == System.Data.ConnectionState.Open)
- {
- oracleTrConn.Rollback();
- oracleTrConn.Disconnect();
- }
- throw ex;
- }
- }
- /// <summary>
- /// 修改附件信息
- /// </summary>
- /// <param name="AttList">附件实体集合</param>
- /// <param name="mainId">产品ID</param>
- /// <param name="userInfo">用户基本信息</param>
- /// <returns>int受影响行数</returns>
- public static int UpdateAttachment(List<GoodsAttachmentEntity> AttList, int mainId, SUserInfo userInfo)
- {
- IDBTransaction oracleTrConn = ClsDbFactory.CreateDBTransaction(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- oracleTrConn.Connect();
- int AttReturn = 0;
- int GAReturn = 0;
- StringBuilder sbSql = new StringBuilder();
- foreach (GoodsAttachmentEntity attFor in AttList)
- {
- if (attFor.IsUpdateAdd == 0) //不是新建的
- {
- sbSql.Clear();
- sbSql.Append(@"Update TP_MST_Attachment set ValueFlag = :ValueFlag,UpdateUserID=:UpdateUserID
- Where AttachmentID = :AttachmentID");
- OracleParameter[] attParas = new OracleParameter[] {
- new OracleParameter(":ValueFlag",OracleDbType.Int32,
- attFor.ValueFlag,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input),
- new OracleParameter(":AttachmentID",OracleDbType.Int32,
- attFor.AttachmentID,ParameterDirection.Input)
- };
- AttReturn += oracleTrConn.ExecuteNonQuery(sbSql.ToString(), attParas);
- sbSql.Clear();
- sbSql.Append(@"Update TP_MST_GoodsAttachment
- Set ValueFlag = :ValueFlag,UpdateUserID=:UpdateUserID
- Where AttachmentID = :AttachmentID");
- GAReturn += oracleTrConn.ExecuteNonQuery(sbSql.ToString(), attParas);
- sbSql.Clear();
- }
- else //新建的
- {
- sbSql.Clear();
- sbSql.Append("select SEQ_MST_Attachment_ID.nextval from dual");
- int id = Convert.ToInt32(oracleTrConn.GetSqlResultToStr(sbSql.ToString()));
- sbSql.Clear();
- sbSql.Append(@"Insert into TP_MST_Attachment(AttachmentID,FileName,FilePath,AccountID,ValueFlag,
- CreateUserID,UpdateUserID)
- Values(:AttachmentID,:FileName,:FilePath,:AccountID,:ValueFlag,
- :CreateUserID,:UpdateUserID)");
- OracleParameter[] attParas = new OracleParameter[] {
- new OracleParameter(":AttachmentID",OracleDbType.Int32,
- id,ParameterDirection.Input),
- new OracleParameter(":FileName",OracleDbType.NVarchar2,
- attFor.FileName,ParameterDirection.Input),
- new OracleParameter(":FilePath",OracleDbType.NVarchar2,
- attFor.FilePath,ParameterDirection.Input),
- new OracleParameter(":AccountID",OracleDbType.Int32,
- userInfo.AccountID,ParameterDirection.Input),
- new OracleParameter(":ValueFlag",OracleDbType.Int32,
- 1,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input)
- };
- AttReturn += oracleTrConn.ExecuteNonQuery(sbSql.ToString(), attParas);
- sbSql.Clear();
- sbSql.Append(@"Insert into TP_MST_GoodsAttachment(GoodsID,AttachmentID,CreateUserID,UpdateUserID)
- Values(:GoodsID,:AttachmentID,:CreateUserID,:UpdateUserID)");
- OracleParameter[] gaParas = new OracleParameter[] {
- new OracleParameter(":GoodsID",OracleDbType.Int32,
- mainId,ParameterDirection.Input),
- new OracleParameter(":AttachmentID",OracleDbType.Int32,
- id,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input),
- new OracleParameter(":UpdateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input)
- };
- GAReturn += oracleTrConn.ExecuteNonQuery(sbSql.ToString(), gaParas);
- sbSql.Clear();
- }
- }
- oracleTrConn.Commit();
- oracleTrConn.Disconnect();
- return AttReturn;
- }
- catch (Exception ex)
- {
- if (oracleTrConn.ConnState == System.Data.ConnectionState.Open)
- {
- oracleTrConn.Rollback();
- oracleTrConn.Disconnect();
- }
- throw ex;
- }
- }
- /// <summary>
- /// 根据产品ID获取附件
- /// </summary>
- /// <param name="goodsId">产品ID</param>
- /// <returns>DataSet</returns>
- public static DataSet GetAttachmentByGoodsId(int goodsId)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- String strSql = @"Select goodsAtt.GoodsID,att.* from TP_MST_GoodsAttachment goodsAtt
- Inner join TP_MST_Attachment att
- On goodsAtt.AttachmentID = att.AttachmentID
- Where goodsAtt.ValueFlag = 1 and goodsAtt.GoodsID = " + goodsId;
- DataSet ds = con.GetSqlResultToDs(strSql, null);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- #region 缺陷位置
- /// <summary>
- /// 获取缺陷位置
- /// </summary>
- /// <param name="dpEntity">缺陷位置实体</param>
- /// <param name="userInfo">用户基本信息</param>
- /// <returns>DataSet</returns>
- public static DataSet GetDefectPosition(DefectPositionEntity dpEntity, SUserInfo userInfo)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("in_DefectPositionID",OracleDbType.Int32,
- dpEntity.DefectPositionID,ParameterDirection.Input),
- new OracleParameter("in_DefectPositionCode",OracleDbType.NVarchar2,
- dpEntity.DefectPositionCode,ParameterDirection.Input),
- new OracleParameter("in_DefectPositionName",OracleDbType.NVarchar2,
- dpEntity.DefectPositionName,ParameterDirection.Input),
- new OracleParameter("in_AccountID",OracleDbType.Int32,
- userInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("out_rs_defect",OracleDbType.RefCursor,ParameterDirection.Output),
- };
- DataSet dsDefectPosition = con.ExecStoredProcedure("PRO_MST_GetDefectPosition", paras);
- return dsDefectPosition;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- /// <summary>
- /// 根据产品获得产品缺陷位置
- /// </summary>
- /// <param name="GoodsId">产品ID</param>
- /// <returns>DataSet</returns>
- public static DataSet getGoodsDefectPositionByGoodsId(int GoodsId)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- string sql = @"select gdp.*,dp.DefectPositionCode,dp.DefectPositionName,dp.Remarks
- from TP_MST_GoodsDefectPosition gdp
- inner join TP_MST_DefectPosition dp
- on gdp.DefectPositionID=dp.DefectPositionID
- where gdp.GoodsID=" + GoodsId;
- DataSet dsDefectPosition = con.GetSqlResultToDs(sql, null);
- return dsDefectPosition;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- /// <summary>
- /// 保存产品缺陷位置关联(依附在添加产品中)
- /// </summary>
- /// <param name="dpList">缺陷位置集</param>
- /// <param name="GoodsId">产品ID</param>
- /// <param name="userInfo">用户基本信息</param>
- /// <returns>int</returns>
- public static int SaveGoodsDefectPosition(IDBTransaction oracleTrConn, List<int> dpList, int GoodsId, SUserInfo userInfo)
- {
- try
- {
- int ReturnCount = 0;
- string sql = "Delete from TP_MST_GoodsDefectPosition where GoodsId=" + GoodsId;
- foreach (int dpFor in dpList)
- {
- string sqlAdd = @"Insert into TP_MST_GoodsDefectPosition(GoodsID,DefectPositionID,
- CreateTime,CreateUserID) Values(:GoodsID,:DefectPositionID,sysdate,:CreateUserID)";
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter(":GoodsID",OracleDbType.Int32,
- GoodsId,ParameterDirection.Input),
- new OracleParameter(":DefectPositionID",OracleDbType.Int32,
- dpFor,ParameterDirection.Input),
- new OracleParameter(":CreateUserID",OracleDbType.Int32,
- userInfo.UserID,ParameterDirection.Input),
- };
- ReturnCount += oracleTrConn.ExecuteNonQuery(sqlAdd, paras);
- }
- return ReturnCount;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- }
- #endregion
- #region 成型线类型
- /// <summary>
- /// 获取成型线类型
- /// </summary>
- /// <param name="userInfo">用户基本信息</param>
- /// <returns>数据集</returns>
- /// <remarks>
- /// 庄天威 2014.09.04 新建
- /// </remarks>
- public static DataSet GetGMouldType(SUserInfo userInfo)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("in_accountID",OracleDbType.Int32,
- userInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("in_valueFlag",OracleDbType.Int32,
- 1,ParameterDirection.Input),
- new OracleParameter("out_result",OracleDbType.RefCursor,ParameterDirection.Output),
- };
- DataSet ds = con.ExecStoredProcedure("PRO_MST_GetMouldType", paras);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- #region 产品分级数据源
- /// <summary>
- /// 产品分级数据源
- /// </summary>
- /// <param name="type">1适用半成品2检验 2适用成品检验 3入窑前检验</param>
- /// <param name="userInfo">用户基本信息</param>
- /// <returns>DataSet</returns>
- public static DataSet GetGoodsLevel(int type, SUserInfo userInfo)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- string sqlString = "";
- if (type == 1 || type == 3)
- {
- sqlString = "select GoodsLevelID as DefectFlagID,GoodsLevelName as DefectFlagName,GoodsLevelTypeID from TP_MST_GoodsLevel where IsSemiFinishedEx=1 and AccountID=:AccountID and ValueFlag=1 order by SFEDisplayNo";
- }
- else if (type == 2)
- {
- sqlString = "select GoodsLevelID as DefectFlagID,GoodsLevelName as DefectFlagName,GoodsLevelTypeID from TP_MST_GoodsLevel where IsFinishedEx=1 and AccountID=:AccountID and ValueFlag=1 order by FEDisplayNo";
- }
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter(":AccountID",userInfo.AccountID),
- };
- DataSet dsGoodsLevel = con.GetSqlResultToDs(sqlString, paras);
- return dsGoodsLevel;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- #region 审核状态
- /// <summary>
- /// 获取全部审核状态
- /// </summary>
- /// <returns>DataSet审核状态数据源</returns>
- public static DataSet GetAuditStatus()
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- String strSql = "Select * from TP_SYS_AuditStatus Order by DisplayNo";
- DataSet ds = con.GetSqlResultToDs(strSql, null);
- return ds;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- #endregion
- /// <summary>
- /// 工序集合
- /// </summary>
- /// <param name="ProductionLineEntity">工序实体</param>
- /// <param name="sUserInfo">用户<基本信息/param>
- /// <returns>DataSet</returns>
- /// <remarks>
- /// 王鑫 2014.11.29 新建
- /// </remarks>
- public static DataSet GetProdureList(SearchProductionLineEntity productionLineEntity, SUserInfo sUserInfo)
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- OracleParameter[] paras = new OracleParameter[]{
- new OracleParameter("in_procedureCode",OracleDbType.Varchar2,productionLineEntity.ProductionLineCode,ParameterDirection.Input),
- new OracleParameter("in_procedureName",OracleDbType.Varchar2,productionLineEntity.ProductionLineName,ParameterDirection.Input),
- new OracleParameter("in_procedureIDS",OracleDbType.Varchar2,productionLineEntity.ProcuteLineIDS,ParameterDirection.Input),
- new OracleParameter("in_accountID",OracleDbType.Int32,sUserInfo.AccountID,ParameterDirection.Input),
- new OracleParameter("out_result",OracleDbType.RefCursor, ParameterDirection.Output),
- };
- DataSet dsSearchReport = con.ExecStoredProcedure("PRO_PC_GetProcedureList", paras);
- return dsSearchReport;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- /// <summary>
- /// 获取全部工种计件方式
- /// </summary>
- /// <returns>DataSet工种计件方式集合</returns>
- public static DataSet GetJobsPriceType()
- {
- IDBConnection con = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- try
- {
- con.Open();
- String strSql = "Select * from TP_SYS_JobsPriceType Order by DisplayNo";
- DataSet dsSearchReport = con.GetSqlResultToDs(strSql, null);
- return dsSearchReport;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (con.ConnState == ConnectionState.Open)
- {
- con.Close();
- }
- }
- }
- }
- }
|