| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845 |
- /*******************************************************************************
- * 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.ManagedDataAccess.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();
- }
- }
- }
- /// <summary>
- /// 查询金蝶代码数据
- /// </summary>
- /// <param name="sUserInfo"></param>
- /// <param name="goodsID"></param>
- /// <returns></returns>
- public static ServiceResultEntity GetKingdeeCode(SUserInfo sUserInfo, ClientRequestEntity cre)
- {
- IDBConnection conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- OracleParameter[] paras = new OracleParameter[] { };
- string sqlString = @"
- SELECT
- TP_MST_GOODSKINGDEECODE.GUID,
- TP_MST_GOODSKINGDEECODE.GOODSCODE,
- gd.goodsname,
- TP_MST_GOODSKINGDEECODE.GLAZETYPE,
- TP_MST_GOODSKINGDEECODE.LOGONAME,
- TP_MST_GOODSKINGDEECODE.KINGDEECODE,
- TP_MST_GOODSKINGDEECODE.CREATETIME,
- TP_MST_USER.USERNAME AS CREATEUSER,
- TP_MST_GOODSKINGDEECODE.UPDATETIME AS UPDATETIME,
- USERS.USERNAME AS UPDATEUSER
- FROM
- TP_MST_GOODSKINGDEECODE
- LEFT JOIN TP_MST_GOODS gd on gd.GOODSCODE=TP_MST_GOODSKINGDEECODE.GOODSCODE
- LEFT JOIN TP_MST_USER ON TP_MST_GOODSKINGDEECODE.CREATEUSERID=TP_MST_USER.USERID
- LEFT JOIN TP_MST_USER USERS ON TP_MST_GOODSKINGDEECODE.UPDATEUSERID=USERS.USERID
- WHERE 1=1 AND TP_MST_GOODSKINGDEECODE.valueflag=1 ";
- if (!string.IsNullOrEmpty(cre.Properties["GoodsCode"].ToString()))
- {
- sqlString += " AND TP_MST_GOODSKINGDEECODE.GOODSCODE like :GOODSCODE";
- }
- if (!string.IsNullOrEmpty(cre.Properties["GlazeType"].ToString()))
- {
- sqlString += " AND TP_MST_GOODSKINGDEECODE.GLAZETYPE = :GLAZETYPE";
- }
- if (!string.IsNullOrEmpty(cre.Properties["LogoName"].ToString()))
- {
- sqlString += " AND TP_MST_GOODSKINGDEECODE.LOGONAME = :LOGONAME";
- }
- if (!string.IsNullOrEmpty(cre.Properties["KingdeeCode"].ToString()))
- {
- sqlString += " AND TP_MST_GOODSKINGDEECODE.KINGDEECODE like :KINGDEECODE";
- }
- if (!string.IsNullOrEmpty(cre.Properties["GoodsName"].ToString()))
- {
- sqlString += " AND gd.goodsname like :GoodsName";
- }
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSCODE",'%'+cre.Properties["GoodsCode"].ToString()+'%'),
- new OracleParameter(":GoodsName",'%'+cre.Properties["GoodsName"].ToString()+'%'),
- new OracleParameter(":GLAZETYPE",cre.Properties["GlazeType"].ToString()),
- new OracleParameter(":LOGONAME",cre.Properties["LogoName"].ToString()),
- new OracleParameter(":KINGDEECODE",'%'+cre.Properties["KingdeeCode"].ToString()+'%'),
- };
- 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 GetLogoName(SUserInfo sUserInfo, ClientRequestEntity cre)
- {
- IDBConnection conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- string sqlString = @"
- SELECT
- LogoID,
- LogoName AS LogoNameCode
- FROM
- tp_mst_logo
- WHERE
- AccountID = 1
- AND valueflag = '1'
- ORDER BY
- DECODE(LogoName, '无标', 1) , LogoName";
- ServiceResultEntity sre = new ServiceResultEntity();
- sre.Data = conn.GetSqlResultToDs(sqlString, null);
- return sre;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (conn != null &&
- conn.ConnState == ConnectionState.Open)
- {
- conn.Close();
- }
- }
- }
- ///<summary>
- ///保存金蝶代码信息
- /// </summary>
- public static ServiceResultEntity AddKingdeeCode(SUserInfo sUserInfo, ClientRequestEntity cre)
- {
- IDBTransaction conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBTransaction(DataBaseType.ORACLE, DataManager.ConnectionString);
- ServiceResultEntity sre = new ServiceResultEntity();
- DataTable dt = new DataTable();
- string sqlString = string.Empty;
- OracleParameter[] paras = new OracleParameter[] { };
- //如果版面信息是新建的情况下,是否存在相同版面编码
- if (cre.Properties["FromStatus"].ToString() == "Add")
- {
- sqlString = @"SELECT 1 FROM TP_MST_GOODSKINGDEECODE
- WHERE
- KINGDEECODE = :KINGDEECODE AND GOODSCODE =:GOODSCODE
- AND GLAZETYPE =:GLAZETYPE AND LOGONAME =:LOGONAME
- AND valueflag=1";
- paras = new OracleParameter[] { new OracleParameter(":KINGDEECODE", cre.Properties["KINGDEECODE"].ToString()),
- new OracleParameter(":GOODSCODE", cre.Properties["GOODSCODE"].ToString()),
- new OracleParameter(":GLAZETYPE", cre.Properties["GLAZETYPE"].ToString()) ,
- new OracleParameter(":LOGONAME", cre.Properties["LOGONAME"].ToString()) ,
- };
- dt = new DataTable();
- dt = conn.GetSqlResultToDt(sqlString, paras);
- if (dt != null && dt.Rows.Count > 0)
- {
- //存在相同金蝶代码
- sre.OtherStatus = -1001;
- return sre;
- }
- }
- #region 新增
- if (cre.Properties["FromStatus"].ToString() == "Add")
- {
- //保存客户信息
- sqlString = @"INSERT INTO TP_MST_GOODSKINGDEECODE(
- GOODSCODE,
- GLAZETYPE,
- LOGONAME,
- KINGDEECODE,
- CREATEUSERID,
- UPDATEUSERID,
- VALUEFLAG
- ) VALUES(
- :GOODSCODE,
- :GLAZETYPE,
- :LOGONAME,
- :KINGDEECODE,
- :CREATEUSERID,:UPDATEUSERID,
- '1' )";
- paras = new OracleParameter[] {
- new OracleParameter(":GOODSCODE", cre.Properties["GOODSCODE"].ToString()),
- new OracleParameter(":GLAZETYPE", cre.Properties["GLAZETYPE"].ToString()) ,
- new OracleParameter(":LOGONAME", cre.Properties["LOGONAME"].ToString()) ,
- new OracleParameter(":KINGDEECODE", cre.Properties["KINGDEECODE"].ToString()) ,
- new OracleParameter(":CREATEUSERID", sUserInfo.UserID) ,
- new OracleParameter(":UPDATEUSERID", sUserInfo.UserID) ,
- };
- }
- #endregion
- #region 编辑
- if (cre.Properties["FromStatus"].ToString() == "Edit")
- {
- sqlString = @"SELECT 1 FROM TP_MST_GOODSKINGDEECODE
- WHERE
- KINGDEECODE = :KINGDEECODE AND GOODSCODE =:GOODSCODE
- AND GLAZETYPE =:GLAZETYPE AND LOGONAME =:LOGONAME
- AND valueflag=1";
- paras = new OracleParameter[] {
- new OracleParameter(":KINGDEECODE", cre.Properties["KINGDEECODE"].ToString()),
- new OracleParameter(":GOODSCODE", cre.Properties["GOODSCODE"].ToString()),
- new OracleParameter(":GLAZETYPE", cre.Properties["GLAZETYPE"].ToString()) ,
- new OracleParameter(":LOGONAME", cre.Properties["LOGONAME"].ToString()) ,
- };
- dt = new DataTable();
- dt = conn.GetSqlResultToDt(sqlString, paras);
- if (dt != null && dt.Rows.Count > 0)
- {
- //存在相同版面编码
- sre.OtherStatus = -1001;
- return sre;
- }
- sqlString = @" UPDATE TP_MST_GOODSKINGDEECODE
- SET
- GOODSCODE=:GOODSCODE,
- GLAZETYPE = :GLAZETYPE,
- LOGONAME =:LOGONAME,
- KINGDEECODE = :KINGDEECODE,
- UPDATEUSERID =:UPDATEUSERID,
- UPDATETIME = SYSDATE
- WHERE
- GUID =:GUID ";
- paras = new OracleParameter[] {
- new OracleParameter(":GOODSCODE", cre.Properties["GOODSCODE"].ToString()) ,
- new OracleParameter(":GLAZETYPE", cre.Properties["GLAZETYPE"].ToString()) ,
- new OracleParameter(":LOGONAME", cre.Properties["LOGONAME"].ToString()) ,
- new OracleParameter(":KINGDEECODEONE", cre.Properties["KINGDEECODEONE"].ToString()) ,
- new OracleParameter(":KINGDEECODE", cre.Properties["KINGDEECODE"].ToString()) ,
- new OracleParameter(":UPDATEUSERID", sUserInfo.UserID) ,
- new OracleParameter(":GUID", cre.Properties["GUID"].ToString()) ,
- };
- }
- #endregion
- #region 删除
- if (cre.Properties["FromStatus"].ToString() == "Delete")
- {
- sqlString = @"UPDATE TP_MST_GOODSKINGDEECODE
- SET
- VALUEFLAG=0
- WHERE
- GUID = :GUID";
- paras = new OracleParameter[] {
- new OracleParameter(":GUID", cre.Properties["GUID"].ToString()) ,
- };
- }
- #endregion
- int result = conn.ExecuteNonQuery(sqlString, paras);
- if (result <= 0)
- {
- //未改变任何数据
- sre.OtherStatus = -1003;
- return sre;
- }
- else
- {
- //提交数据
- sre.OtherStatus = 1;
- conn.Commit();
- }
- return sre;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (conn != null &&
- conn.ConnState == ConnectionState.Open)
- {
- conn.Disconnect();
- }
- }
- }
- /// <summary>
- /// 查询模具对应产品
- /// </summary>
- /// <param name="sUserInfo"></param>
- /// <param name="goodsID"></param>
- /// <returns></returns>
- public static ServiceResultEntity GetMouldGoodsCode(SUserInfo sUserInfo, ClientRequestEntity cre)
- {
- IDBConnection conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- OracleParameter[] paras = new OracleParameter[] { };
- string sqlString = @"
- SELECT MOULD.GUID,
- MOULD.GOODSCODE,
- GD.GOODSNAME,
- MOULD.MOULDGOODSCODE,
- MOULD.MOULDNAME
- FROM TP_MST_MOULDGOODSCODE MOULD
- LEFT JOIN TP_MST_GOODS GD ON MOULD.GOODSCODE=GD.GOODSCODE AND GD.VALUEFLAG=1
- WHERE MOULD.VALUEFLAG=1 ";
- if (!string.IsNullOrEmpty(cre.Properties["GoodsCode"].ToString()))
- {
- sqlString += "AND MOULD.GOODSCODE like :GOODSCODE";
- }
- if (!string.IsNullOrEmpty(cre.Properties["MOULDGOODSCODE"].ToString()))
- {
- sqlString += " AND MOULD.MOULDGOODSCODE like :MOULDGOODSCODE";
- }
- if (!string.IsNullOrEmpty(cre.Properties["MOULDNAME"].ToString()))
- {
- sqlString += " AND MOULD.MOULDNAME like :MOULDNAME";
- }
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSCODE",'%'+cre.Properties["GoodsCode"].ToString()+'%'),
- new OracleParameter(":MOULDNAME",'%'+cre.Properties["MOULDNAME"].ToString()+'%'),
- new OracleParameter(":MOULDGOODSCODE",'%'+cre.Properties["MOULDGOODSCODE"].ToString()+'%'),
- };
- 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>
- public static ServiceResultEntity AddMouldCode(SUserInfo sUserInfo, ClientRequestEntity cre)
- {
- IDBTransaction conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBTransaction(DataBaseType.ORACLE, DataManager.ConnectionString);
- ServiceResultEntity sre = new ServiceResultEntity();
- DataTable dt = new DataTable();
- string sqlString = string.Empty;
- OracleParameter[] paras = new OracleParameter[] { };
- //如果版面信息是新建的情况下,是否存在相同版面编码
- if (cre.Properties["FromStatus"].ToString() == "Add")
- {
- sqlString = @" SELECT 1 FROM TP_MST_MOULDGOODSCODE
- WHERE VALUEFLAG=1
- AND GOODSCODE= :GOODSCODE
- AND MOULDGOODSCODE= :MOULDGOODSCODE
- AND MOULDNAME= :MOULDNAME";
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSCODE",cre.Properties["GOODSCODE"].ToString()),
- new OracleParameter(":MOULDNAME",cre.Properties["MOULDNAME"].ToString()),
- new OracleParameter(":MOULDGOODSCODE",cre.Properties["MOULDGOODSCODE"].ToString()),
- };
- dt = new DataTable();
- dt = conn.GetSqlResultToDt(sqlString, paras);
- if (dt != null && dt.Rows.Count > 0)
- {
- //存在相同金蝶代码
- sre.OtherStatus = -1001;
- return sre;
- }
- }
- #region 新增
- if (cre.Properties["FromStatus"].ToString() == "Add")
- {
- //保存客户信息
- sqlString = @"INSERT INTO TP_MST_MOULDGOODSCODE(
- GOODSCODE,
- MOULDGOODSCODE,
- MOULDNAME,
- VALUEFLAG
- ) VALUES(
- :GOODSCODE,
- :MOULDGOODSCODE,
- :MOULDNAME,
- '1' )";
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSCODE",cre.Properties["GOODSCODE"].ToString()),
- new OracleParameter(":MOULDNAME",cre.Properties["MOULDNAME"].ToString()),
- new OracleParameter(":MOULDGOODSCODE",cre.Properties["MOULDGOODSCODE"].ToString()),
- };
- }
- #endregion
- #region 编辑
- if (cre.Properties["FromStatus"].ToString() == "Edit")
- {
- sqlString = @" SELECT 1 FROM TP_MST_MOULDGOODSCODE
- WHERE VALUEFLAG=1
- AND GOODSCODE=:GOODSCODE
- AND MOULDGOODSCODE=:MOULDGOODSCODE
- AND MOULDNAME=:MOULDNAME";
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSCODE",cre.Properties["GOODSCODE"].ToString()),
- new OracleParameter(":MOULDNAME",cre.Properties["MOULDNAME"].ToString()),
- new OracleParameter(":MOULDGOODSCODE",cre.Properties["MOULDGOODSCODE"].ToString()),
- };
- dt = new DataTable();
- dt = conn.GetSqlResultToDt(sqlString, paras);
- if (dt != null && dt.Rows.Count > 0)
- {
- //存在相同版面编码
- sre.OtherStatus = -1001;
- return sre;
- }
- sqlString = @"UPDATE TP_MST_MOULDGOODSCODE
- SET
- GOODSCODE=:GOODSCODE,
- MOULDGOODSCODE =:MOULDGOODSCODE,
- MOULDNAME =:MOULDNAME
- WHERE
- GUID=:GUID";
- paras = new OracleParameter[]{
- new OracleParameter(":GOODSCODE",cre.Properties["GOODSCODE"].ToString()),
- new OracleParameter(":MOULDNAME",cre.Properties["MOULDNAME"].ToString()),
- new OracleParameter(":MOULDGOODSCODE",cre.Properties["MOULDGOODSCODE"].ToString()),
- new OracleParameter(":GUID",cre.Properties["GUID"].ToString()),
- };
- }
- #endregion
- #region 删除
- if (cre.Properties["FromStatus"].ToString() == "Delete")
- {
- sqlString = @"UPDATE TP_MST_MOULDGOODSCODE
- SET
- VALUEFLAG=0
- WHERE GUID=:GUID
- ";
- paras = new OracleParameter[]{
- new OracleParameter(":GUID",cre.Properties["GUID"].ToString()),
- };
- }
- #endregion
- int result = conn.ExecuteNonQuery(sqlString, paras);
- if (result <= 0)
- {
- //未改变任何数据
- sre.OtherStatus = -1003;
- return sre;
- }
- else
- {
- //提交数据
- sre.OtherStatus = 1;
- conn.Commit();
- }
- return sre;
- }
- catch (Exception ex)
- {
- throw ex;
- }
- finally
- {
- if (conn != null &&
- conn.ConnState == ConnectionState.Open)
- {
- conn.Disconnect();
- }
- }
- }
- ///<summary>
- ///查询登录记录
- /// </summary>
- public static ServiceResultEntity GetUserLoginLogdata(SUserInfo sUserInfo, ClientRequestEntity cre)
- {
- IDBConnection conn = null;
- try
- {
- conn = ClsDbFactory.CreateDBConnection(DataBaseType.ORACLE, DataManager.ConnectionString);
- OracleParameter[] paras = new OracleParameter[] { };
- string sqlString = @"SELECT * from (SELECT
- 0 AS Sel,
- U.UserID,
- U.UserCode,
- U.limitMAC,
- U.UserName,
- POST.PostName,
- U.CanPCLogin,
- U.CanSmartLogin,
- U.IsWorker,
- U.IsGroutingWorker,
- U.IsPublicBody,
- U.CanLoginPRD,
- U.CanLoginMBC,
- U.ValueFlag,
- O.OrganizationName,
- O.OrganizationFullName,
- U.Remarks,
- TP_MST_USERLOGINLOG.MAC,
- COMPUTERNAME,
- ORGANIZATIONCODE,
- CASE
- ACTIONTYPE
- WHEN '0' THEN
- 'pc登录'
- WHEN '1' THEN
- 'PC登出'
- WHEN '2' THEN
- '移动设备登录'
- WHEN '3' THEN
- '移动设备登出'
- WHEN '4' THEN
- 'PC登录MBC' ELSE 'PC登出MBC'
- END ACTIONTYPE,
- IP ,IMEI,ACTIONTIME
- FROM
- TP_MST_USERLOGINLOG
- LEFT JOIN TP_MST_User U ON u.USERID = TP_MST_USERLOGINLOG.USERID
- LEFT JOIN TP_MST_Organization O ON U.Organizationid = O.Organizationid
- LEFT JOIN TP_MST_POST POST ON POST.POSTID = U.POST
- WHERE
- U.AccountID = 1) where 1=1 AND ACTIONTIME>=to_date(:opentime,'yyyy-mm-dd hh24:mi:ss')AND ACTIONTIME<=to_date(:closetime,'yyyy-mm-dd hh24:mi:ss')";
- if (!string.IsNullOrEmpty(cre.Properties["UserCode"].ToString()))
- {
- sqlString += "AND UserCode like :UserCode";
- }
- if (!string.IsNullOrEmpty(cre.Properties["UserName"].ToString()))
- {
- sqlString += " AND UserName like :UserName";
- }
- if (!string.IsNullOrEmpty(cre.Properties["Organization"].ToString()))
- {
- sqlString += " AND ORGANIZATIONCODE = :Organization";
- }
- if (!string.IsNullOrEmpty(cre.Properties["ActionType"].ToString()))
- {
- sqlString += " AND ActionType like :ActionType";
- }
- sqlString += @" ORDER BY
- ACTIONTIME DESC ";
- paras = new OracleParameter[]{
- new OracleParameter(":UserCode",'%'+cre.Properties["UserCode"].ToString()+'%'),
- new OracleParameter(":UserName",'%'+cre.Properties["UserName"].ToString()+'%'),
- new OracleParameter(":Organization",cre.Properties["Organization"].ToString()),
- new OracleParameter(":ActionType",'%'+cre.Properties["ActionType"].ToString()+'%'),
- new OracleParameter(":opentime",cre.Properties["opentime"].ToString()),
- new OracleParameter(":closetime",cre.Properties["closetime"].ToString()),
- };
- 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();
- }
- }
- }
- }
- }
|