| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670 |
- using BizCom;
- using Newtonsoft.Json;
- using SiteCore.taoObj;
- using SQLData;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Data.SqlClient;
- using System.IO;
- using System.Text;
- using System.Text.RegularExpressions;
- using Match = System.Text.RegularExpressions.Match;
- using SiteCore.Handler;
- using System.Threading;
- using Newtonsoft.Json.Linq;
- using System.Net.Security;
- using System.Net;
- using System.Security.Cryptography.X509Certificates;
- using System.Security.Policy;
- using NHibernate.Engine;
- using static NHibernate.Linq.Visitors.LeftJoinDetector;
- using NHibernate.Loader.Custom;
- using System.Runtime.Remoting.Metadata.W3cXsd2001;
- using NPOI.OpenXmlFormats.Shared;
- using static SiteCore.taoObj.work_core_vo;
- using System.Linq;
- using NHibernate.Mapping;
- using System.Reflection.Emit;
- using NPOI.SS.Formula.Functions;
- namespace SiteCore
- {
- public class commonHelper
- {
- public static void autoRefreshRefundState()
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("update CE_ErpTradeRefund set RefundState=3 where RefundState=2 and DATEDIFF(hh,modified,getdate())>=72;");
- //sql.AppendFormat("update ce_erptradecell with(rowlock) set AfterSaleState=4,FinishAfterSaleTime=getdate() where AfterSaleState=3 and IsArbitrate=0 and DATEDIFF(hh,AfterSalePreTime,getdate())>=168;");
- //sql.AppendFormat("update ce_erptradecell with(rowlock) set AfterSaleSupplierState=1,set FinishAfterSaleTime=GETDATE(),set AfterSaleState=4 where AfterSaleSupplierState=0 and AfterSaleState>1 and AfterSaleResSupId>0 and DATEDIFF(hh,HandleTime,getdate())>=72;");
- //sql.AppendFormat("update CE_ErpTradeResponsible set VerifyState=1 where VerifyState=0 and IsArbitrate=0 and DATEDIFF(hh,createdTime,getdate())>=168;");
- //DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- sql = new StringBuilder();
- sql.AppendFormat("SELECT r.ID, r.tid, r.VerifyState, r.UserId, r.VerifyTime, type FROM CE_ErpTradeResponsible r LEFT JOIN CE_ErpTradeCell t ON r.tid= t.ctid WHERE VerifyState > -1 AND VerifyState != 1 AND t.AfterSaleState = 3 AND DATEDIFF( hh, VerifyTime, getdate( ) ) >= 72;");
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- foreach (DataRow dr in dt.Rows)
- {
- string state = dr["VerifyState"].ToString();
- string tid = dr["tid"].ToString();
- int userId = Convert.ToInt32(dr["UserId"]);
- int reasonId = Convert.ToInt32(dr["ID"]);
- int type = Convert.ToInt32(dr["type"]);
- if (type == 0)
- {
- if (state == "0")//主管审核超时
- {
- CeErpTradeResponsible ceErpTradeResponsible = CeErpTradeResponsible.GetById(dr["ID"].ToString());
- if (ceErpTradeResponsible != null)
- {
- ceErpTradeResponsible.VerifyTime = DateTime.Now;
- ceErpTradeResponsible.VerifyState = 3;
- ceErpTradeResponsible.Update();
- LogHelper.AddAfterSaleLog(tid, reasonId, "主管审核超时", userId);
- LogHelper.addLog(tid, 0, "主管审核超时", 4, 4);
- }
- }
- if (state == "3")//责任人审核超时
- {
- CeErpTradeResponsible ceErpTradeResponsible = CeErpTradeResponsible.GetById(dr["ID"].ToString());
- if (ceErpTradeResponsible != null)
- {
- ceErpTradeResponsible.VerifyTime = DateTime.Now;
- ceErpTradeResponsible.VerifyState = 1;
- ceErpTradeResponsible.Update();
- LogHelper.AddAfterSaleLog(tid, reasonId, "责任人审核超时", userId);
- LogHelper.addLog(tid, 0, "责任人审核超时", 4, 4);
- CeErpTradeCell entity = CeErpTradeCell.GetByCtid(ceErpTradeResponsible.tid);
- bool isAll = tradeResponsibleAll(entity);
- if (isAll)
- {
- entity.AfterSaleState = 4;
- entity.FinishAfterSaleTime = DateTime.Now;
- entity.UpdateTime = DateTime.Now;
- entity.AfterSaleSupplierState = 1;
- ApiVo apiVo = new ApiVo();
- apiVo.orderNumber = entity.ctid;
- apiVo.actionName = "afterOver";
- designHelper.API_WorkCore(apiVo); //afterOver
- entity.Update();
- }
- }
- }
- }
- else
- {
- if (type == 2)
- {
- DateTime date = DateTime.Parse(dr["VerifyTime"].ToString());
- if (DateTime.Compare(DateTime.Now, date.AddHours(96)) <= 0)
- {
- continue;
- }
- }
- if (state == "0")
- {
- CeErpTradeResponsible ceErpTradeResponsible = CeErpTradeResponsible.GetById(dr["ID"].ToString());
- if (ceErpTradeResponsible != null)
- {
- ceErpTradeResponsible.VerifyTime = DateTime.Now;
- ceErpTradeResponsible.VerifyState = 1;
- ceErpTradeResponsible.Update();
- CeErpTradeCell entity = CeErpTradeCell.GetByCtid(ceErpTradeResponsible.tid);
- bool isAll = tradeResponsibleAll(entity);
- if (isAll)
- {
- entity.AfterSaleState = 4;
- entity.FinishAfterSaleTime = DateTime.Now;
- entity.UpdateTime = DateTime.Now;
- entity.AfterSaleSupplierState = 1;
- entity.Update();
- ApiVo apiVo = new ApiVo();
- apiVo.orderNumber = entity.ctid;
- apiVo.actionName = "afterOver";
- designHelper.API_WorkCore(apiVo); //afterOver
- }
- CeErpSukuraData.createInfo(entity.ctid, 8);
- LogHelper.addLog(tid, 0, "审核超时,自动完成售后", 4, 4);
- }
- }
- }
- }
- }
- public static void tradeSaleState(CeErpTradeCell ceErpTradeCell)
- {
- string sql = "select * from ce_erptraderesponsible where tid='" + ceErpTradeCell.ctid + "' and VerifyState != -1";
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql).Tables[0];
- CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(ceErpTradeCell.ctid);
- if (ceErpTradeAfterSaleExtend == null)
- {
- ceErpTradeAfterSaleExtend = new CeErpTradeAfterSaleExtend();
- ceErpTradeAfterSaleExtend.tid = ceErpTradeCell.ctid;
- ceErpTradeAfterSaleExtend.Create();
- }
- List<string> list = new List<string>();
- foreach (DataRow row in dt.Rows)
- {
- list.Add(row["VerifyState"].ToString());
- }
- ceErpTradeAfterSaleExtend.VerifyStates = String.Join(",", list);
- ceErpTradeAfterSaleExtend.Update();
- }
- public static bool tradeResponsibleAll(CeErpTradeCell ceErpTradeCell)
- {
- //判断是否全部处理完成
- string sql = "select * from ce_erptraderesponsible where tid='" + ceErpTradeCell.ctid + "' and VerifyState != -1";
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql).Tables[0];
- bool isAll = true;
- if (dt.Rows.Count > 0 && dt.Rows.Count == 1)
- {
- }
- else if (dt.Rows.Count > 1)
- {
- foreach (DataRow row in dt.Rows)
- {
- if (row["VerifyState"].ToString() != "1")
- {
- isAll = false;
- break;
- }
- }
- }
- return isAll;
- }
- public static string getSupplierNameById(int sid)
- {
- CeErpSupplier sup = CeErpSupplier.Get(sid);
- if (sup != null)
- {
- return sup.ComName;
- }
- else
- {
- return "";
- }
- }
- public static void aftersaleSend(string ctid, string cpCode, string curUseWayBillCode)
- {
- if (ctid.IndexOf("S_") > -1)
- {
- try
- {
- string tradeCtid = ctid.Remove(0, 2);
- CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(tradeCtid);
- if (ceErpTradeAfterSaleExtend == null)
- {
- ceErpTradeAfterSaleExtend = new CeErpTradeAfterSaleExtend();
- ceErpTradeAfterSaleExtend.tid = tradeCtid;
- ceErpTradeAfterSaleExtend.ExpressNo = cpCode + "-" + curUseWayBillCode;
- ceErpTradeAfterSaleExtend.Create();
- }
- else
- {
- ceErpTradeAfterSaleExtend.ExpressNo = cpCode + "-" + curUseWayBillCode;
- ceErpTradeAfterSaleExtend.Update();
- }
- }
- catch (Exception ex)
- {
- }
- }
- }
- public static string getUserNameById(int sid)
- {
- CeErpUser sup = CeErpUser.Get(sid);
- if (sup != null)
- {
- return sup.Name;
- }
- else
- {
- return "";
- }
- }
- public static int getSupplierIDByName(string name)
- {
- StringBuilder sql2 = new StringBuilder();
- sql2.AppendFormat("select top 1 * from CE_ErpSupplier where ComName='{0}';", name);
- DataTable dt2 = DbHelper.DbConn.ExecuteDataset(sql2.ToString()).Tables[0];
- if (dt2.Rows.Count > 0)
- {
- return Convert.ToInt32(dt2.Rows[0]["ID"]);
- }
- return 0;
- }
- public static int autoDistributeToSupplier(CeErpTradeCell trade)
- {
- if (trade.seller_memo.IndexOf("电子稿") != -1) return 0;
- int count = 0;
- string sc = trade.ProductCount;
- count = handleProductCount(sc, true);
- //string needSc = System.Text.RegularExpressions.Regex.Replace(sc, @"[^0-9]+", "");
- //if (!int.TryParse(needSc, out count))
- //{
- // XLog.SaveLog(0, "autoDistributeToSupplier:获取数量[" + trade.ProductCount + "]转换出错");
- //}
- //老客户指派之前供应商
- if (trade.IsOldCustomer == 1 && (trade.seller_memo.IndexOf("改稿") != -1 || trade.OtherMemo.IndexOf("老客户") != -1))
- {
- CeErpTrade ceErpTrade = CeErpTrade.Get(trade.tid);
- if (ceErpTrade != null)
- {
- //用昵称找之前的订单
- string name = ceErpTrade.buyer_nick;
- StringBuilder CeErpTradeSql = new StringBuilder();
- CeErpTradeSql.AppendFormat("select top 1 * from ce_erptrade o left join CE_ErpTradeCell c on c.tid=o.tid where o.buyer_nick='{0}' and o.tid <> '{1}' and c.SupplierId <> 35 AND c.SupplierId <> 33 order by created desc;", name, trade.tid);
- DataSet data = DbHelper.DbConn.ExecuteDataset(CeErpTradeSql.ToString());
- DataTable datatable = data.Tables[0];
- if (datatable.Rows.Count > 0)
- {
- CeErpTradeCell oldOrder = CeErpTradeCell.GetByTid(datatable.Rows[0]["tid"].ToString());
- if (oldOrder != null)
- {
- CeErpSupplier ceErpSupplier = CeErpSupplier.Get(oldOrder.SupplierId);
- if (ceErpSupplier != null && ceErpSupplier.IsClose == 0)
- {
- return oldOrder.SupplierId;
- }
- }
- }
- }
- }
- if (trade.Craft.IndexOf("门挂卡") != -1)
- {
- return 7;// ljl
- }
- else if (trade.Craft.IndexOf("打印") != -1 || trade.Craft.IndexOf("专版") != -1)
- {
- return 10; //得力
- }
- else if (trade.Craft.IndexOf("打码") != -1 || trade.Craft.IndexOf("压点线") != -1)
- {
- if (count < 300)
- {
- return 10;
- }
- else
- return 25;
- }
- if (trade.seller_memo.Contains("金属标") && (trade.ShopId == 26 || trade.ShopId == 45))
- {
- return 9;
- }
- //if (trade.IsOldCustomer == 1)
- //{
- // StringBuilder oldsql = new StringBuilder();
- // oldsql.AppendFormat("select top 1 SupplierId from view_erptradecell where buyer_nick={0} and IsAutoDistribute=1 ;",trad, trade.ProductId);
- //}
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("select count(0) from ce_erpproduct where id={0} and IsAutoDistribute=1 ;", trade.ProductId);
- sql.AppendFormat("select top 1 * from ce_erptrade where tid='{0}';", trade.tid);
- DataSet oDs = DbHelper.DbConn.ExecuteDataset(sql.ToString());
- DataTable pDt = oDs.Tables[0];
- DataTable rDt = oDs.Tables[1];
- string material = trade.Material;
- material = material.Replace("铜板纸", "铜版纸");
- string crafts = trade.Craft;
- string supplierCrafts = trade.MakeSupplier;
- if (supplierCrafts == "")
- {
- supplierCrafts = "123123";
- }
- decimal size = getOrderSizeFromString(trade.ProductSize);
- if (pDt != null && pDt.Rows.Count > 0)
- {
- string receiver_state = "";
- if (rDt != null || rDt.Rows.Count > 0)
- {
- receiver_state = rDt.Rows[0]["receiver_state"].ToString();
- if (trade.IsOldCustomer == 1)
- {
- StringBuilder oldsql = new StringBuilder();
- oldsql.AppendFormat("select top 1 * from view_erptradecell where buyer_nick='{0}' and ProductId={1} and SupplierId!=0 order by ID desc;", rDt.Rows[0]["buyer_nick"].ToString(), trade.ProductId);
- DataTable oldDt = DbHelper.DbConn.ExecuteDataset(oldsql.ToString()).Tables[0];
- if (oldDt.Rows.Count > 0)
- {
- CeErpSupplier ceErpSupplier = CeErpSupplier.Get(Convert.ToInt32(oldDt.Rows[0]["SupplierId"]));
- if (ceErpSupplier != null && ceErpSupplier.IsClose == 0)
- {
- return Convert.ToInt32(oldDt.Rows[0]["SupplierId"]);
- }
- }
- }
- }
- try
- {
- //CHARINDEX(','+'{0}'+',',','+ProductID+',')>0
- sql = new StringBuilder();
- sql.AppendFormat("select A.* from CE_ErpSupplierProduct A LEFT JOIN CE_ErpSupplier B on A.SupplierID = B.ID where B.IsClose=0 and CHARINDEX(','+'{0}'+',',','+A.ProductIds+',')>0 order by A.Bsort asc;", trade.ProductId);
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- if (dt == null || dt.Rows.Count < 1) return 0;
- DataView dv = new DataView(dt);
- int topOneProductSupplier = Convert.ToInt32(dv[0]["SupplierID"]);
- if (receiver_state.Length > 0)
- {
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1} and SizeL<={2} and SizeW>={2} and (Area like '%{3}%' or Area='*')", material, count, size, receiver_state);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- }
- if (count > 0)
- {
- if (size > 0)
- {
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1} and SizeL<={2} and SizeW>={2} ", material, count, size);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- }
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1}", material, count);
- if (dv.Count > 0)
- {
- LogHelper.addLog(trade.ctid, 0, "筛选供应商:产品 材质 工艺 数量 符合!"); return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- }
- if (size > 0)
- {
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1} and SizeL<={2} and SizeW>={2}", material, count, size);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and SizeL<={1} and SizeW>={1}", material, size);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- }
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%'", material);
- if (count > 0)
- {
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1}", material, count);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- dv.RowFilter = string.Format("MinNum<={0} and MaxNum>={0}", count);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- }
- if (size > 0)
- {
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and SizeL<={1} and SizeW>={1}", material, size);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- dv.RowFilter = string.Format(" SizeL<={0} and SizeW>={0}", size);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- }
- dv.RowFilter = string.Format("Crafts like '%{0}%' or Crafts like '%{1}%'", crafts, supplierCrafts);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- //产品 材质符合
- dv.RowFilter = string.Format("ProductCrafts like '%{0}%' ", material);
- if (dv.Count > 0)
- {
- return Convert.ToInt32(dv[0]["SupplierID"]);
- }
- else
- {
- return topOneProductSupplier;
- }
- }
- catch (Exception ex)
- {
- XLog.SaveLog(0, "commmonHelper:autoDistributeToSupplier" + ex.Message);
- }
- }
- return 0;
- }
- public static void setDeliveryUnusualOrder()
- {
- try
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("select * from view_ErpTradeCell where orderstate=6 and unusualTag=0 and FinishPlaceTime is not null and DATEDIFF(HH,FinishPlaceTime,GETDATE())>48 and DATEDIFF(DAY,FinishPlaceTime,GETDATE())<20 and IsXianHuo=0 and (IsSample=0 or IsSample=2);");
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- List<string> tLst = new List<string>();
- if (dt.Rows.Count > 0)
- {
- foreach (DataRow dr in dt.Rows)
- {
- double hour = 0;
- string fptime = dr["FinishPlaceTime"].ToString();
- if (fptime.Length > 0)
- {
- hour = DateTime.Now.Subtract(Convert.ToDateTime(fptime)).TotalHours;
- }
- else
- continue;
- int useHour = 10000;
- StringBuilder sqlhour = new StringBuilder();
- sqlhour.AppendFormat("select top 1 * from CE_ErpProductHour where ProductID={0} and (CHARINDEX(Material,'{1}')>0 or Material='*') and (CHARINDEX(Craft,'{2}')>0 or Craft='*');", dr["ProductId"].ToString(), dr["Material"].ToString(), dr["Craft"].ToString());
- DataTable dthour = DbHelper.DbConn.ExecuteDataset(sqlhour.ToString()).Tables[0];
- if (dthour.Rows.Count > 0)
- {
- useHour = Convert.ToInt32(dthour.Rows[0]["fhTime"]);
- }
- else
- {
- sqlhour = new StringBuilder();
- sqlhour.AppendFormat("select top 1 * from CE_ErpProductHour where ProductID={0} and (CHARINDEX(Craft,'{1}')>0 or Craft='*');", dr["ProductId"].ToString(), dr["Craft"].ToString());
- dthour = DbHelper.DbConn.ExecuteDataset(sqlhour.ToString()).Tables[0];
- if (dthour.Rows.Count > 0)
- {
- useHour = Convert.ToInt32(dthour.Rows[0]["fhTime"]);
- }
- else
- {
- sqlhour = new StringBuilder();
- sqlhour.AppendFormat("select top 1 * from CE_ErpProductHour where ProductID={0};", dr["ProductId"].ToString());
- dthour = DbHelper.DbConn.ExecuteDataset(sqlhour.ToString()).Tables[0];
- if (dthour.Rows.Count > 0)
- {
- useHour = Convert.ToInt32(dthour.Rows[0]["fhTime"]);
- }
- }
- }
- if (hour > useHour)
- {
- tLst.Add("'" + dr["ctid"].ToString() + "'");
- }
- }
- }
- sql = new StringBuilder();
- sql.AppendFormat("select * from view_ErpTradeCell where orderstate=6 and unusualTag=0 and FinishPlaceTime is not null and DATEDIFF(HH,FinishPlaceTime,GETDATE())>3 and DATEDIFF(DAY,FinishPlaceTime,GETDATE())<20 and IsXianHuo=1 ;");
- dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- if (dt.Rows.Count > 0)
- {
- foreach (DataRow dr in dt.Rows)
- {
- double hour = 0;
- string fptime = dr["FinishPlaceTime"].ToString();
- string paytime = dr["pay_time"].ToString();
- DateTime dtPaytime = Convert.ToDateTime(paytime);
- if (fptime.Length > 0)
- {
- hour = DateTime.Now.Subtract(Convert.ToDateTime(paytime)).TotalHours;
- }
- else
- continue;
- DateTime nowtime = DateTime.Now;
- if (hour > 18)
- {
- tLst.Add("'" + dr["ctid"].ToString() + "'");
- }
- //if (hour > 72 && Convert.ToInt32(dr["ShopId"])==34)//公司自用
- //{
- // tLst.Add("'" + dr["ctid"].ToString() + "'");
- //}
- //else if (nowtime.Hour >= 17)
- //{
- // if((dtPaytime.Hour >= 14 && dtPaytime.Hour < 17) || (dtPaytime.Hour == 17 && dtPaytime.Minute < 40))
- // {
- // string sptime = nowtime.Year + "/" + nowtime.Month + "/" + nowtime.Day + " 17:40:00";
- // DateTime spDatetime = Convert.ToDateTime(sptime);
- // if (spDatetime.Subtract(Convert.ToDateTime(paytime)).TotalMinutes > 0)
- // {
- // tLst.Add("'" + dr["ctid"].ToString() + "'");
- // }
- // }
- //}
- //else if (nowtime.Hour >= 14)
- //{
- // if(dtPaytime.Hour >= 10 && dtPaytime.Hour < 14)
- // {
- // string sptime = nowtime.Year + "/" + nowtime.Month + "/" + nowtime.Day + " 14:00:00";
- // DateTime spDatetime = Convert.ToDateTime(sptime);
- // if (spDatetime.Subtract(Convert.ToDateTime(paytime)).TotalMinutes > 0)
- // {
- // tLst.Add("'" + dr["ctid"].ToString() + "'");
- // }
- // }
- //}
- //else if (nowtime.Hour >= 10)
- //{
- // if (dtPaytime.Hour >= 18 || dtPaytime.Hour < 10)
- // {
- // string sptime = nowtime.Year + "/" + nowtime.Month + "/" + nowtime.Day + " 10:00:00";
- // DateTime spDatetime = Convert.ToDateTime(sptime);
- // if (spDatetime.Subtract(Convert.ToDateTime(paytime)).TotalMinutes > 0)
- // {
- // tLst.Add("'" + dr["ctid"].ToString() + "'");
- // }
- // }
- //}
- }
- }
- if (tLst.Count > 0)
- {
- string needctids = string.Join(",", tLst.ToArray());
- StringBuilder updsql = new StringBuilder();
- //DateTime unusualTime = new DateTime();
- updsql.AppendFormat("update ce_erptradecell with(rowlock) set unusualTag=5,UnusualTime=getDate() where ctid in ({0});", needctids);
- DbHelper.DbConn.ExecuteNonQuery(updsql.ToString());
- }
- }
- catch (Exception ex)
- {
- XLog.SaveLog(0, "更新发货异常订单错误:" + ex.Message);
- }
- splitCell2AllPlaceOrder();
- }
- public static void splitCell2AllPlaceOrder()
- {
- //
- int spid = 0;
- try
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("select * from CE_ErpTradeCell2 where DATEDIFF(DAY, FinishPlaceTime, GETDATE())<5 and MakeSupplier like '%,%';");
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- List<string> idList = new List<string>();
- foreach (DataRow dr in dt.Rows)
- {
- string msup = dr["MakeSupplier"].ToString();
- string[] suplist = msup.Split(',');
- spid = Convert.ToInt32(dr["ID"]);
- foreach (string supItem in suplist)
- {
- StringBuilder newsql = new StringBuilder();
- newsql.AppendFormat(" insert into CE_ErpTradeCell2 ([ctid],[tid],[DesignUserId],[OrderState],[CustomerUserId],[IsUrgency],[IsRefund],[IsReturn],[IsNeedBill]," +
- "[SupplierId],[DeliveryAddress],[CallTimes],[NoteTimes],[OvertimeUserId],[UnusualTag],[UnusualCon],[ReturnReason],[MemoOpt],[AfterSaleTime],[AfterSaleUserId]," +
- "[AfterSaleReason],[PlaceUserId],[AfterSaleState],[AfterSaleMethod],[AfterSaleMemo],[AfterSaleResponsible],[AfterSalePreTime],[FinishAfterSaleTime],[DeductFee]," +
- "[RefundFee],[HandleTime],[IsHaveNewOrder],[ResponsibleUserId],[ptid],[IsPreDelivery],[IsSample],[seller_memo],[ProductId],[WaitDesignTime],[StartDesignTime]," +
- "[FinishDesignTime],[FinishPlaceTime],[FinishDeliveryTime],[DesignSelfMemo],[DesignPrice],[Material],[Craft],[ProductSize],[ProductCount],[UnusualTime],[IsAutoDispatch]," +
- "[IsVerifyToSupplier],[CustomerMemo],[payment],[OutSid],[AfterSalePayment],[ShopId],[SplitTag],[isAfterSaleOrder],[isDianziOrder],[LastBillCpCode],[LastBillWaybillCode]," +
- "[pay_time],[IsSF],[IsXianHuo],[ReturnTime],[OtherMemo],[AfterSaleBackReason],[CheckMemo],[IsOldCustomer],[IsSupplierRefund],[IsReadTag],[AfterSaleMemoType]," +
- "[UrgencyTime],[IsOffLineOrder],[PayProofImg],[wechatTag],[MakeSupplier]) select [ctid],[tid],[DesignUserId],[OrderState],[CustomerUserId],[IsUrgency],[IsRefund]," +
- "[IsReturn],[IsNeedBill],[SupplierId],[DeliveryAddress],[CallTimes],[NoteTimes],[OvertimeUserId],[UnusualTag],[UnusualCon],[ReturnReason],[MemoOpt],[AfterSaleTime]," +
- "[AfterSaleUserId],[AfterSaleReason],[PlaceUserId],[AfterSaleState],[AfterSaleMethod],[AfterSaleMemo],[AfterSaleResponsible],[AfterSalePreTime],[FinishAfterSaleTime]," +
- "[DeductFee],[RefundFee],[HandleTime],[IsHaveNewOrder],[ResponsibleUserId],[ptid],[IsPreDelivery],[IsSample],[seller_memo],[ProductId],[WaitDesignTime],[StartDesignTime]," +
- "[FinishDesignTime],[FinishPlaceTime],[FinishDeliveryTime],[DesignSelfMemo],[DesignPrice],[Material],[Craft],[ProductSize],[ProductCount],[UnusualTime],[IsAutoDispatch]," +
- "[IsVerifyToSupplier],[CustomerMemo],[payment],[OutSid],[AfterSalePayment],[ShopId],[SplitTag],[isAfterSaleOrder],[isDianziOrder],[LastBillCpCode],[LastBillWaybillCode]," +
- "[pay_time],[IsSF],[IsXianHuo],[ReturnTime],[OtherMemo],[AfterSaleBackReason],[CheckMemo],[IsOldCustomer],[IsSupplierRefund],[IsReadTag],[AfterSaleMemoType],[UrgencyTime]," +
- "[IsOffLineOrder],[PayProofImg],[wechatTag],'{1}' from CE_ErpTradeCell2 where ID={0}", Convert.ToInt32(dr["ID"]), supItem);
- DbHelper.DbConn.ExecuteNonQuery(newsql.ToString());
- }
- idList.Add(dr["ID"].ToString());
- }
- string idsstr = string.Join(",", idList.ToArray());
- sql.AppendFormat("delete from CE_ErpTradeCell2 where ID in ({0})", idsstr);
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- }
- catch (Exception ex)
- {
- XLog.SaveLog(0, "拆分ce_erptradecell2表的制作车间出错:" + spid + ex.Message);
- }
- }
- public static void DoAutoDispatch(string conn)
- {
- if (webConfig.Dispatch_TimeList.Contains(DateTime.Now.ToString("HH:mm")))
- {
- WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "开始自动派单!"));
- SqlParameter[] sqlParameter ={
- new SqlParameter("@res", SqlDbType.VarChar, 50)};
- sqlParameter[0].Direction = ParameterDirection.Output;
- CeErpOpt.ExecuteNonQueryStore("sp_autodispatch", sqlParameter);
- string res = sqlParameter[0].Value.ToString();
- if (res == "派单完成") WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "结束自动派单!"));
- else WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "无法成功派单"));
- }
- //sp_autodispatch
- }
- public static void DoAutoDispatch2(string conn)
- {
- if (webConfig.Dispatch_TimeList.Contains(DateTime.Now.ToString("HH:mm")))
- {
- WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "开始自动派单!"));
- SqlConnection sqlCnt = new SqlConnection(conn);
- try
- {
- sqlCnt.Open();
- string sql = "select * from view_ErpTradeCell where OrderState = 2 and ProductId <> 0";
- SqlDataAdapter myDataAdapter = new SqlDataAdapter(sql, sqlCnt);
- DataSet myDataSet = new DataSet();
- myDataAdapter.Fill(myDataSet, "Trade");
- DataTable myTable = myDataSet.Tables[0];
- List<string> ids = new List<string>();
- foreach (DataRow Dr in myTable.Rows)
- {
- if (Convert.ToInt32(Dr["OrderState"]) > 2 || Convert.ToInt32(Dr["DesignUserId"]) > 0)
- {
- continue;
- }
- ids.Add(Dr["ctid"].ToString());
- CeErpShop nShop = CeErpShop.GetShopIdByName(Dr["seller_nick"].ToString());
- string shopId = "0";
- if (nShop != null)
- {
- shopId = nShop.ID.ToString();
- }
- string proId = Dr["ProductId"].ToString();
- string Amount = Dr["payment"].ToString();
- string ctid = Dr["ctid"].ToString();
- string ctids = "";
- if (ctid.IndexOf("C") != -1)
- {
- ctids = getSameTradeByTid(Dr["tid"].ToString());
- if (ctids.Length <= 0)
- {
- continue;
- }
- }
- else
- {
- ctids = "'" + ctid + "'";
- }
- sql = "select top 1 * from view_ErpUser " +
- "where PostCode = 'Designer' and " + //设计师
- "OnDuty = 1 and " + //上班状态
- "DayOrderReceive < DayOrderLimit and " + //当日接单数小于可接单数量上限
- "OrderAmountLimit >= " + Amount + " and " + //额度上限大于付款金额
- "CHARINDEX('," + shopId + ",',','+OrgShop+ ',')>0 and " + //部门关联店铺
- "CHARINDEX('," + shopId + ",',','+pemShop+ ',')>0 and " + //个人关联店铺
- "CHARINDEX('," + proId + ",',','+pemDesign+ ',')>0 " + //个人关联产品
- "order by DayOrderPer, PostLevel desc, Id";
- SqlDataAdapter userAdapter = new SqlDataAdapter(sql, sqlCnt);
- DataSet userSet = new DataSet();
- userAdapter.Fill(userSet, "user");
- DataTable userTable = userSet.Tables[0];
- //有满足条件的设计师
- if (userTable.Rows.Count > 0)
- {
- SqlCommand updCMD = sqlCnt.CreateCommand();
- try
- {
- updCMD.Transaction = sqlCnt.BeginTransaction();//开启事务
- //派单
- updCMD.CommandText = "update CE_ErpTradeCell set OrderState = 3, IsAutoDispatch = 1, WaitDesignTime = getdate(), DesignUserId = " + userTable.Rows[0]["ID"].ToString() + " where ctid in (" + ctids + ")";
- updCMD.ExecuteNonQuery();
- //更新日数量上限和可接单比例
- updCMD.CommandText = "update view_ErpUser set DayOrderReceive = DayOrderReceive + 1, DayOrderPer = CAST((CAST(((DayOrderReceive + 1)) as decimal(8,5)) / DayOrderLimit) as decimal(8,3)) where id = " + userTable.Rows[0]["ID"].ToString();
- updCMD.ExecuteNonQuery();
- //写订单日志
- updCMD.CommandText = "insert into CE_ErpTradeLog(tid,OrderState,UserId,OperateTime,Con) select ctid,OrderState,0,getdate(),'自动派单' from ce_erptradecell where ctid in(" + ctids + ")";
- updCMD.ExecuteNonQuery();
- updCMD.Transaction.Commit();//提交事务(真正的从数据库中修改了数据)
- }
- catch (Exception ee)
- {
- updCMD.Transaction.Rollback();
- }
- }
- }
- string sql1 = "select ctid from view_ErpTradeCell where orderstate=3 and DesignUserId = 2125 and ctid in ('" + string.Join(",", ids) + "');";
- /* string sql1 = "select ctid from view_ErpTradeCell where orderstate=3 and DesignUserId = 2125 ";*/
- DataTable dt1 = SqlHelper.ExecuteDataSet(sql1).Tables[0];
- foreach (DataRow dr1 in dt1.Rows)
- {
- apiDesign.API_GetPrintData_CreateOrder(CeErpTradeCell.GetByCtid(dr1["ctid"].ToString()));
- WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "开始派单" + dr1["ctid"].ToString() + "至设计系统!"));
- Thread.Sleep(1000); // 添加五秒延迟
- }
- WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "结束自动派单!"));
- }
- catch (Exception ed)
- {
- WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), ed.Message));
- }
- finally
- {
- if (sqlCnt.State == ConnectionState.Open)
- sqlCnt.Close();
- }
- }
- }
- public static string getSameTradeByTid(string tid)
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("select ctid from view_ErpTradeCell where tid='{0}';", tid);
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- if (dt.Rows.Count > 0)
- {
- string ctids = "";
- foreach (DataRow dr in dt.Rows)
- {
- ctids += "'";
- ctids += dr["ctid"].ToString();
- ctids += "'";
- ctids += ",";
- }
- ctids = ctids.Substring(0, ctids.Length - 1);
- return ctids;
- }
- else
- return "";
- }
- public static void WriteLog(string LogText)
- {
- string sDir = System.IO.Path.GetTempPath() + @"Log\" + DateTime.Now.ToString("yyyyMM");
- if (!Directory.Exists(sDir))
- Directory.CreateDirectory(sDir);
- using (StreamWriter sw = new StreamWriter(sDir + @"\Log_" + DateTime.Now.ToString("dd") + ".txt", true, Encoding.UTF8))
- {
- sw.Write(LogText + System.Environment.NewLine);
- }
- }
- public static void UpdateRelationOrder(string ctid)
- {
- if (ctid.Length <= 0) return;
- CeErpTradeCell.UpdateRelationOrder(ctid);
- //try
- //{
- // //父订单变化,更新补差价订单
- // //List<string> lw = new List<string>();
- // //lw.Add(string.Format("OrderState={0}", father.OrderState));
- // //lw.Add(string.Format("CustomerUserId={0}", father.CustomerUserId));
- // //lw.Add(string.Format("DesignUserId={0}", father.DesignUserId));
- // //lw.Add(string.Format("AfterSaleState={0}", father.AfterSaleState));
- // //lw.Add(string.Format("IsNeedBill={0}", father.IsNeedBill));
- // ////lw.Add(string.Format("IsUrgency={0}", father.IsUrgency == true ? 1 : 0));
- // //lw.Add(string.Format("IsRefund={0}", father.IsRefund));
- // //lw.Add(string.Format("WaitDesignTime='{0}'", father.WaitDesignTime.ToString()));
- // //lw.Add(string.Format("StartDesignTime='{0}'", father.StartDesignTime.ToString()));
- // //lw.Add(string.Format("FinishDesignTime='{0}'", father.FinishDesignTime.ToString()));
- // //lw.Add(string.Format("FinishPlaceTime='{0}'", father.FinishPlaceTime.ToString()));
- // //lw.Add(string.Format("FinishDeliveryTime='{0}'", father.FinishDeliveryTime.ToString()));
- // ////lw.Add(string.Format("IsReturn={0}", father.IsReturn));
- // //string sqlstr = string.Join(" , ", lw.ToArray());
- // //StringBuilder sql = new StringBuilder();
- // //sql.AppendFormat("update ce_erptradecell set " + sqlstr + " where ptid='{0}'", father.tid);
- // ////sql.AppendFormat("update view_erptrade set status={1} where ptid={0}", father.ctid, father.status);
- // //DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- // //StringBuilder sql = new StringBuilder();
- // //sql.Append("update ce_erptradecell set OrderState=b.OrderState,CustomerUserId=b.CustomerUserId,DesignUserId=b.DesignUserId,WaitDesignTime=b.WaitDesignTime,StartDesignTime=b.StartDesignTime,FinishDesignTime=b.FinishDesignTime,FinishPlaceTime=b.FinishPlaceTime,");
- // //sql.Append("AfterSaleState=b.AfterSaleState,IsNeedBill=b.IsNeedBill,IsRefund=b.IsRefund from ce_erptradecell,ce_erptradecell as b ");
- // //sql.AppendFormat("where ce_erptradecell.ptid =b.tid and ce_erptradecell.ptid='{0}'", tid);//='1827905618077154637'
- // //DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- // //SqlParameter[] sqlParameter ={
- // // new SqlParameter("@mainctids", SqlDbType.VarChar,100),
- // // new SqlParameter("@res", SqlDbType.VarChar, 4000)
- // //};
- // //sqlParameter[0].Value = ctid;
- // //sqlParameter[1].Direction = ParameterDirection.Output;
- // //DbHelper.DbConn.ExecuteNonQuery(CommandType.StoredProcedure, "sp_set_bucha", sqlParameter);
- //}
- //catch (Exception ex)
- //{
- // XLog.SaveLog(0, "commmonHelper:UpdateRelationOrder" + ex.Message);
- //}
- }
- public static void UpdateSameOrderToDesigner(CeErpTradeCell entity, int designId)
- {
- CeErpTrade trade = CeErpTrade.Get(entity.tid);
- if (trade != null)
- {
- StringBuilder sql = new StringBuilder();
- if (trade.type == "PDD" || trade.type == "JD")
- {
- sql.AppendFormat("update view_ErpTradeCell with(rowlock) set OrderState=3,WaitDesignTime=getDate(),DesignUserId={0} where buyer_nick='{1}' and tid='{4}' and seller_nick='{2}' and ABS(DATEDIFF(HH,'{3}',pay_time))<24 and orderstate=2 and productid<>0 and designuserid=0 and payment>0 and IsRefund=0;", designId, trade.buyer_nick, trade.seller_nick, trade.pay_time, trade.tid);
- }
- else
- sql.AppendFormat("update view_ErpTradeCell with(rowlock) set OrderState=3,WaitDesignTime=getDate(),DesignUserId={0} where buyer_nick='{1}' and seller_nick='{2}' and ABS(DATEDIFF(HH,'{3}',pay_time))<24 and orderstate=2 and productid<>0 and designuserid=0 and payment>0 and IsRefund=0;", designId, trade.buyer_nick, trade.seller_nick, trade.pay_time);
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- }
- }
- public static void SetSameSupplierToOrder(CeErpTradeCell entity, int supId)
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("update CE_ErpTradeCell with(rowlock) set SupplierId={0} where orderstate=5 and tid='{1}';", supId, entity.tid);
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- }
- public static string MidStrEx(string sourse, string startstr, string endstr)
- {
- string result = string.Empty;
- int startindex, endindex;
- try
- {
- startindex = sourse.IndexOf(startstr);
- if (startindex == -1)
- return result;
- string tmpstr = sourse.Substring(startindex + startstr.Length);
- endindex = tmpstr.IndexOf(endstr);
- if (endindex == -1)
- return result;
- result = tmpstr.Remove(endindex);
- }
- catch (Exception ex)
- {
- Console.WriteLine("MidStrEx Err:" + ex.Message);
- }
- return result;
- }
- public static string KeepChinese(string str)
- {
- string chineseString = "";
- for (int i = 0; i < str.Length; i++)
- {
- if (str[i] >= 0x4E00 && str[i] <= 0x9FA5)
- {
- chineseString += str[i];
- }
- }
- return chineseString;
- }
- public static string GetD3ComCode(string code, string name)
- {
- string useStr = code;
- if (code.Length == 0)
- {
- useStr = name;
- }
- string sql = "select * from CE_ErpMailInfo";
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- foreach (DataRow dr in dt.Rows)
- {
- if (dr["cpCode"].ToString().IndexOf(useStr) != -1)
- {
- return dr["cpCode"].ToString();
- }
- }
- //声明存储结果的字符串
- //string codeStr = "YTO-CAINIAO,HTKY-CAINIAO-GZ,YUNDA-CAINIAO-GZ,STO-CAINIAO-SC,STO-CAINIAO-JS,STO-CAINIAO-LN,ZTO-CAINIAO-GZ,ZTO-CAINIAO-FS,ZTO-CAINIAO-KF,ZTO-CAINIAO-ZZ,DISTRIBUTOR_1710055-LY,STO-CAINIAO-AH," +
- // "EYB-CAINIAO-LY,EMS-CAINIAO-LY,POST-CAINIAO-LY,UC-CAINIAO-LY,DBL-CAINIAO-LY,DBKD-CAINIAO-LY,XFWL-CAINIAO-LY,AN-CAINIAO-LY,STO-CAINIAO-LY,DISTRIBUTOR_13222803-LY,BESTQJT-CAINIAO-LY,ZTO-CAINIAO-YW," +
- // "SF-CAINIAO-LY,SF-DF-CAINIAO-LY,SF-CAINIAO-HNXX,SF-CAINIAO-GDFS,SF-CAINIAO-JSTZ,SF-DF-CAINIAO-HNXX,SF-DF-CAINIAO-GDFS,SF-DF-CAINIAO-JSTZ,POSTB-CAINIAO-LY,ZTO-CAINIAO-JS,POSTB-CAINIAO-FS," +
- // "YUNDA-CAINIAO-JA,SF-CAINIAO-GDGZ,YUNDA-CAINIAO-GDFS,";
- //string[] codeList = codeStr.Split(',');
- ////将传入参数中的中文字符添加到结果字符串中
- //for (int i = 0; i < codeList.Length; i++)
- //{
- // if (codeList[i].IndexOf(useStr) != -1)
- // {
- // return codeList[i];
- // }
- //}
- //返回保留中文的处理结果
- return "";
- }
- public static int getRefundTagByState(string st, int isPart = 0)
- {
- int state = 0;
- if (st == "NO_REFUND" || st == "SELLER_REFUSE_BUYER" || st == "CLOSED" || st == "FAILED")
- {
- state = 0;
- }
- else if (st == "REFUNDING")
- {
- state = 1;
- }
- else if (st == "REFUNDED" || st == "SUCCESS")
- {
- state = 2;
- }
- else if (st == "PART_REFUNDED" || isPart == 1)
- {
- state = 3;
- }
- else if (st == "WAIT_BUYER_RETURN_GOODS")
- {
- state = 4;
- }
- else if (st == "REJECT_REFUNDED")
- {
- state = 5;
- }
- else if (st == "WAIT_SELLER_CONFIRM_GOODS")
- {
- state = 6;
- }
- return state;
- }
- public static string getRefundStringByState(string st)
- {
- string stateStr = "";
- if (st == "NOT_SHIPPED")
- {
- stateStr = "待发货";
- }
- else if (st == "PART_SHIPPED")
- {
- stateStr = "部分发货";
- }
- else if (st == "SHIPPED")
- {
- stateStr = "已发货";
- }
- else if (st == "COMPLETE")
- {
- stateStr = "已完成";
- }
- else if (st == "CLOSE")
- {
- stateStr = "已关闭";
- }
- else if (st == "REFUNDED")
- {
- stateStr = "退款成功";
- }
- else if (st == "PART_REFUNDED")
- {
- stateStr = "部分退款";
- }
- else if (st == "WAIT_BUYER_RETURN_GOODS")
- {
- stateStr = "等待买家退货";
- }
- else if (st == "REJECT_REFUNDED")
- {
- stateStr = "拒绝退货";
- }
- else if (st == "WAIT_SELLER_CONFIRM_GOODS")
- {
- stateStr = "等待卖家确认收货";
- }
- else if (st == "SELLER_REFUSE_BUYER")
- {
- stateStr = "卖家拒绝退款";
- }
- else if (st == "SUCCESS")
- {
- stateStr = "退款成功";
- }
- else if (st == "CLOSED")
- {
- stateStr = "退款关闭";
- }
- else if (st == "FAILED")
- {
- stateStr = "退款失败";
- }
- return stateStr;
- }
- public static void UpdateRefundOrderState(string tid, int rstate)
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("insert into S_BuChaJia(ctid,addtime,dotype,refundState) values('{0}',getdate(),'refund',{1}); ", tid, rstate);
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- }
- public static void checkBillResult(int billId)
- {
- CeErpBill entiy = CeErpBill.Get(billId);
- if (entiy != null)
- {
- try
- {
- string[] billOrderList = entiy.billOrderId.Split(',');
- int iTag = 0;
- entiy.fplsh = "";
- entiy.fpdm = "";
- entiy.fphm = "";
- foreach (string billOrderId in billOrderList)
- {
- iTag++;
- string res = taobaoHelper.get_invoicing(billId.ToString(), billOrderId);
- int fcount = StrCount(res, "c_orderno");
- if (res.IndexOf("success") != -1 && res.IndexOf("开票中") != -1)
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("insert into S_BuChaJia(ctid,addtime,dotype) values('{0}',getdate(),'billres'); ", billId.ToString());
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- return;
- }
- else if (res.IndexOf("success") != -1 && (res.IndexOf("开票成功") != -1 || res.IndexOf("开票完成") != -1))
- {
- //res = GetUTF8String2(Encoding.UTF8.GetBytes(res));
- try
- {
- Invoicing_get_response_Obj iObj = null;
- iObj = JsonConvert.DeserializeObject<Invoicing_get_response_Obj>(res);
- if (iObj != null)
- {
- if (fcount > 1)
- {
- entiy.state = 4; //红冲作废
- }
- else
- entiy.state = 2; //开票完成
- entiy.fplsh += iObj.list[0].c_fpqqlsh;
- entiy.fpdm += iObj.list[0].c_fpdm;
- entiy.fphm += iObj.list[0].c_fphm;
- if (iTag < billOrderList.Length)
- {
- entiy.fplsh += ",";
- entiy.fpdm += ",";
- entiy.fphm += ",";
- }
- entiy.Update();
- }
- if (fcount <= 1)
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("update CE_ErpTradeCell WITH(ROWLOCK) set IsNeedBill=2 where tid='{0}';", entiy.tid);
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- }
- }
- catch (Exception ex)
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("insert into S_BuChaJia(ctid,addtime,dotype) values('{0}',getdate(),'billres'); ", billId.ToString());
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- XLog.SaveLog(0, "查看开票结果,更新状态失败" + ex.Message + res);
- }
- return;
- }
- else
- {
- string redError = "";
- if (fcount > 1)
- {
- redError = "红冲失败";
- }
- int eidx = res.IndexOf("c_resultmsg");
- string emsg = KeepChinese(res.Substring(eidx, res.Length - eidx));
- //开票失败
- entiy.state = 5;
- entiy.failerror = entiy.failerror + (iTag + "&" + redError + emsg + "|");
- entiy.Update();
- return;
- }
- }
- }
- catch (Exception ex)
- {
- XLog.SaveLog(0, "buchajia查看开票结果错误," + ex.Message);
- }
- }
- }
- public static void insertToBuchaForDelivery(string Maintid, string posCode, string comCode, string outSid)
- {
- if (Maintid.Length <= 0) return;
- try
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("insert into S_BuChaJia(ctid,addtime,dotype,posCode,comCode,outSid) select tid,getdate(),'bucha_delivery','{1}','{2}','{3}' from ce_erptradecell where ptid='{0}'; ", Maintid, posCode, comCode, outSid);
- DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
- //}
- }
- catch (Exception ex)
- {
- XLog.SaveLog(0, "commhelper,insertToBuchaForDelivery,insert" + ex.Message);
- //}
- }
- }
- public static void setBuChaDelivery(string tid, string posCode, string comCode, string outSid)
- {
- outSid = outSid.Trim();
- posCode = posCode.Trim();
- comCode = comCode.Trim();
- CeErpTrade mainEn = CeErpTrade.Get(tid);
- if (mainEn != null)
- {
- if (mainEn.status == "SHIPPED" || mainEn.status == "PART_SHIPPED" || mainEn.status == "COMPLETE" || mainEn.status == "CLOSE") //已发货的不处理直接返回面单
- {
- return;
- //不处理
- }
- string apires = apiHelper.API_LogisticsDummySend(tid, posCode);
- if (apires.IndexOf("发货成功") == -1)
- {
- XLog.SaveLog(0, "补差价单虚拟发货失败," + tid + "," + posCode + "," + apires);
- string wures = apiHelper.API_LogisticsOnlineSend(tid, posCode, comCode, outSid);
- if (wures.IndexOf("发货成功") == -1)
- {
- XLog.SaveLog(0, "补差价单实物发货失败," + tid + "," + posCode + "," + wures);
- return;
- }
- else
- {
- LogHelper.addLog(tid, 0, "补差价发货-" + comCode + "-" + outSid);
- }
- return;
- }
- else
- {
- LogHelper.addLog(tid, 0, "补差价发货-" + comCode + "-" + outSid);
- }
- }
- }
- public static int StrCount(string str, string constr)
- {
- return System.Text.RegularExpressions.Regex.Matches(str, constr).Count;
- }
- public static void saveErpDesignerGather()
- {
- string date1 = DateTime.Now.AddDays(-1).ToString();
- string date2 = DateTime.Now.AddDays(-1).ToString();
- //string date1 = DateTime.Now.ToString();
- //string date2 = DateTime.Now.ToString();
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("select ID from view_ErpUser where (PostCode = 'Designer' or PostCode = 'DesignerMr'or PostCode = 'Designerhd' or PostCode = 'wxDesigner' or PostCode='wxDesignerMr') and isOpen = 1 and ID not in(select did from CE_ErpDesignerFinishRate where DATEDIFF(day, '{0}', CTime) = 0)", date1);
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- foreach (DataRow dr in dt.Rows)
- {
- SqlParameter[] sqlParameter ={
- new SqlParameter("@sDisDate", SqlDbType.DateTime, 20),
- new SqlParameter("@eDisDate", SqlDbType.DateTime, 20),
- new SqlParameter("@designid", SqlDbType.Int, 4)
- };
- sqlParameter[0].Value = date1;
- sqlParameter[1].Value = date2;
- sqlParameter[2].Value = Convert.ToInt32(dr["ID"]);
- //CeErpTradeCell.ExecuteNonQueryStore("sp_getdesigngather", sqlParameter);
- DbHelper.DbConn.ExecuteNonQuery(CommandType.StoredProcedure, "sp_savedesigngather", sqlParameter);
- }
- new_Designer_Rate(date1);
- }
- public static void new_Designer_Rate(String date1)
- {
- /*String date1 = DateTime.Now.ToString();*/
- /* if (date1 ==null) {
- date1 = DateTime.Now.ToString();
- }*/
- DateTime currentDate = DateTime.Parse(date1);
- // 获取指定日期的开始时间
- DateTime startTime = new DateTime(currentDate.Year, currentDate.Month, currentDate.Day, 0, 0, 0);//日
- // 获取指定日期的结束时间(即下一天的开始时间,减去1秒)
- DateTime endTime = new DateTime(currentDate.Year, currentDate.Month, currentDate.Day, 23, 59, 59).AddSeconds(-1);//日
- DateTime now = DateTime.Now; // 获取当前日期和时间
- DateTime dateOnly = now.Date; // 限制日期为年月日
- StringBuilder sql = new StringBuilder();
- CeErpDesignerFinishRateNew.Del(startTime.ToString("yyyy-MM-dd HH:mm:ss"));
- sql.AppendFormat("\t\tSELECT\r\n A.DesignUserId,\r\n B.OrgID,\r\n B.Name AS DesignerName,\r\nCOUNT(CASE WHEN CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' and A.IsRefund ='2' THEN 1 END) AS refund, SUM(CASE WHEN CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' THEN A.payment ELSE 0 END) AS Amount,\r\n COUNT(CASE WHEN CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' and A.ctid NOT LIKE 'C%' and A.ctid NOT LIKE 'S%' THEN 1 END) AS AllOrder,\r\n COUNT(CASE WHEN CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' AND A.OrderState ='3' THEN 1 END) AS WaitDesign,\r\n COUNT(CASE WHEN CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' AND A.OrderState ='4' THEN 1 END) AS Designing,\r\n COUNT(CASE WHEN CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' AND A.OrderState >='5' THEN 1 END) AS DesignFinish,\r\n COUNT(CASE WHEN CONVERT(date, A.WaitDesignTime) = CONVERT(date, A.FinishDesignTime) AND CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' and A.ctid NOT LIKE 'C%' and A.ctid NOT LIKE 'S%' THEN 1 END) AS FinalizationRate,\r\n (SELECT COUNT(*) FROM CE_ErpTradeCell WHERE ctid LIKE 'S%' AND WaitDesignTime BETWEEN '{0}' AND '{1}' and DesignUserId =A.DesignUserId) AS afterSaleSum,\r\n\t\t(SELECT COUNT(tid) \r\n FROM CE_ErpTradeCell \r\n WHERE ctid LIKE 'C%' \r\n AND WaitDesignTime BETWEEN '{0}' AND '{1}' \r\n AND DesignUserId = A.DesignUserId) AS resolutionSum,\r\n\t\t \t(SELECT COUNT(DISTINCT tid) \r\n FROM CE_ErpTradeCell \r\n WHERE ctid LIKE 'C%' \r\n AND WaitDesignTime BETWEEN '{0}' AND '{1}' \r\n AND DesignUserId = A.DesignUserId and FinishDesignTime BETWEEN '{0}' AND '{1}') AS splitSum,\r\n\t\t \t \t(SELECT COUNT(DISTINCT tid) \r\n FROM CE_ErpTradeCell \r\n WHERE ctid LIKE 'C%' \r\n AND WaitDesignTime BETWEEN '{0}' AND '{1}' \r\n AND DesignUserId = A.DesignUserId ) AS splitSum2 ,COUNT(CASE WHEN CONVERT(date, A.WaitDesignTime) = CONVERT(date, A.FinishDesignTime) AND CONVERT(date, A.WaitDesignTime) BETWEEN '{0}' AND '{1}' and A.ctid LIKE 'C%' THEN 1 END) AS FinalizationRate2 \r\nFROM\r\n dbo.CE_ErpTradeCell AS A\r\n LEFT OUTER JOIN dbo.view_ErpUser AS B ON A.DesignUserId = B.ID\r\nWHERE\r\n b.state = '0' and a.IsSample!=2\r\nGROUP BY\r\n A.DesignUserId, B.OrgID, B.Name\r\nORDER BY\r\n Amount DESC;", startTime.ToString("yyyy-MM-dd HH:mm:ss"), endTime.ToString("yyyy-MM-dd HH:mm:ss"));
- DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
- foreach (DataRow dr in dt.Rows)
- {
- CeErpDesignerFinishRateNew ceErpDesignerFinishRateNew = new CeErpDesignerFinishRateNew();
- if (!Convert.IsDBNull(dr["DesignUserId"]))
- {
- ceErpDesignerFinishRateNew.did = Convert.ToInt32(dr["DesignUserId"] == null ? 0 : dr["DesignUserId"]);
- }
- if (!Convert.IsDBNull(dr["OrgID"]))
- {
- ceErpDesignerFinishRateNew.orgid = Convert.ToInt32(dr["OrgID"] == null ? 0 : dr["OrgID"]);
- }
- if (!Convert.IsDBNull(dr["DesignerName"]))
- {
- ceErpDesignerFinishRateNew.name = dr["DesignerName"].ToString() == null ? "" : dr["DesignerName"].ToString();
- }
- if (!Convert.IsDBNull(dr["Amount"]))
- {
- ceErpDesignerFinishRateNew.Amount = dr["Amount"].ToString() == null ? "" : dr["Amount"].ToString();
- }
- if (!Convert.IsDBNull(dr["AllOrder"]))
- {
- ceErpDesignerFinishRateNew.AllOrder = Convert.ToInt32(dr["AllOrder"] == null ? 0 : dr["AllOrder"]);
- }
- if (!Convert.IsDBNull(dr["FinalizationRate"]))
- {
- ceErpDesignerFinishRateNew.FinalizationRate = Convert.ToInt32(dr["FinalizationRate"] == null ? 0 : dr["FinalizationRate"]);
- }
- if (!Convert.IsDBNull(dr["afterSaleSum"]))
- {
- ceErpDesignerFinishRateNew.afterSaleSum = Convert.ToInt32(dr["afterSaleSum"] == null ? 0 : dr["afterSaleSum"]);
- }
- if (!Convert.IsDBNull(dr["resolutionSum"]))
- {
- ceErpDesignerFinishRateNew.resolutionSum = Convert.ToInt32(dr["resolutionSum"] == null ? 0 : dr["resolutionSum"]);
- }
- if (!Convert.IsDBNull(dr["splitSum"]))
- {
- ceErpDesignerFinishRateNew.splitSum = Convert.ToInt32(dr["splitSum"] == null ? 0 : dr["splitSum"]);
- }
- if (!Convert.IsDBNull(dr["splitSum2"]))
- {
- ceErpDesignerFinishRateNew.csplitum = Convert.ToInt32(dr["splitSum2"] == null ? 0 : dr["splitSum2"]);
- }
- if (!Convert.IsDBNull(dr["FinalizationRate2"]))
- {
- ceErpDesignerFinishRateNew.FinalizationRate2 = Convert.ToInt32(dr["FinalizationRate2"] == null ? 0 : dr["FinalizationRate2"]);
- }
- if (!Convert.IsDBNull(dr["AllOrder"]) && !Convert.IsDBNull(dr["FinalizationRate"]) && !Convert.IsDBNull(dr["splitSum2"]) && !Convert.IsDBNull(dr["splitSum"]))
- {
- try
- {
- int num1 = Convert.ToInt32(dr["FinalizationRate"]) + Convert.ToInt32(dr["splitSum"]);
- int num2 = Convert.ToInt32(dr["AllOrder"]) + Convert.ToInt32(dr["splitSum2"]);
- if (num2 != 0)
- {
- double result = (double)num1 / num2;
- if (double.IsNaN(result))
- {
- result = 0;
- }
- double roundedResult = Math.Round(result, 4);
- ceErpDesignerFinishRateNew.onFinalizationRate = roundedResult.ToString();
- int num3 = Convert.ToInt32(dr["refund"]);
- double result2 = (double)num3 / num2;
- if (double.IsNaN(result2))
- {
- result2 = 0;
- }
- double roundedResult2 = Math.Round(result2, 4);
- ceErpDesignerFinishRateNew.onRefund = roundedResult2.ToString();
- }
- else
- {
- ceErpDesignerFinishRateNew.onFinalizationRate = "0.0000";
- ceErpDesignerFinishRateNew.onRefund = "0.0000";
- }
- }
- catch (Exception ex)
- {
- ceErpDesignerFinishRateNew.onFinalizationRate = "0";
- }
- }
- ceErpDesignerFinishRateNew.ctime = startTime;
- ceErpDesignerFinishRateNew.Createtime = now;
- if (!Convert.IsDBNull(dr["refund"]))
- {
- ceErpDesignerFinishRateNew.refund = Convert.ToInt32(dr["refund"] == null ? 0 : dr["refund"]);
- }
- ceErpDesignerFinishRateNew.Create();
- }
- }
- public static DateTime FirstDayOfMonth(DateTime datetime)
- {
- return datetime.AddDays(1 - datetime.Day);
- }
- public static DateTime LastDayOfMonth(DateTime datetime)
- {
- return datetime.AddDays(1 - datetime.Day).AddMonths(1).AddDays(-1);
- }
- public static DateTime GetDateTimeWeekFirstDaySun(DateTime dateTime)
- {
- DateTime firstWeekDay = DateTime.Now;
- try
- {
- //得到是星期几,然后从当前日期减去相应天数
- int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
- int daydiff = (-1) * weeknow;
- firstWeekDay = dateTime.AddDays(daydiff);
- }
- catch { }
- return firstWeekDay;
- }
- public static DateTime GetDateTimeWeekFirstDayMon(DateTime dateTime)
- {
- DateTime firstWeekDay = DateTime.Now;
- try
- {
- int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
- //星期一为第一天,weeknow等于0时,要向前推6天。
- weeknow = (weeknow == 0 ? (7 - 1) : (weeknow - 1));
- int daydiff = (-1) * weeknow;
- firstWeekDay = dateTime.AddDays(daydiff);
- }
- catch { }
- return firstWeekDay;
- }
- public static DateTime GetDateTimeWeekLastDaySat(DateTime dateTime)
- {
- DateTime lastWeekDay = DateTime.Now;
- try
- {
- int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
- int daydiff = (7 - weeknow) - 1;
- lastWeekDay = dateTime.AddDays(daydiff);
- }
- catch { }
- return lastWeekDay;
- }
- public static DateTime GetDateTimeWeekLastDaySun(DateTime dateTime)
- {
- DateTime lastWeekDay = DateTime.Now;
- try
- {
- int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
- weeknow = (weeknow == 0 ? 7 : weeknow);
- int daydiff = (7 - weeknow);
- lastWeekDay = dateTime.AddDays(daydiff);
- }
- catch { }
- return lastWeekDay;
- }
- public static void updateOrderStateForShipped(string ctid, int ost, string stateType)
- {
- try
- {
- CeErpTradeCell entity = CeErpTradeCell.GetByCtid(ctid);
- if (entity != null)
- {
- if (entity.isAfterSaleOrder == 1) return;
- if (stateType == "updatestate_complete")
- {
- if (entity.IsPreDelivery == 1) return;
- entity.OrderState = 8;
- entity.Update();
- if (entity.ProductId == 9 || entity.ProductId == 17 || entity.ProductId == 20 || entity.ProductId == 29 || entity.ProductId == 30)//卡片、手提袋价格自动核算
- {
- CeErpDesignerBill.updateDesignerBill(entity.ctid, entity.ProductId);
- LogHelper.addDesignerBillLog(entity.ctid, 0, "自动核算设计费", "系统", 1);
- }
- else if (entity.ProductId == 22)
- {
- CeErpDesignerBill.updateBill(entity.ctid, entity.ProductId, entity.seller_memo);
- LogHelper.addDesignerBillLog(entity.ctid, 0, "自动核算设计费", "系统", 1);
- }
- }
- else if (stateType == "updatestate_shipped")
- {
- if (entity.IsPreDelivery == 1) return;
- entity.OrderState = 7;
- entity.Update();
- }
- else if (stateType == "updatestate_close")
- {
- entity.OrderState = 9;
- entity.Update();
- }
- }
- else
- {
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("insert into S_BuChaJia(ctid,orderState,dotype,addtime) values('{0}',{1},'{2}',getdate());", ctid, ost, stateType);
- CeErpTradeCell.ExecuteNonQuery(sql.ToString());
- }
- }
- catch (Exception ex)
- {
- XLog.SaveLog(0, "updateOrderStateForShipped函数出错," + ctid + "," + ex.Message);
- StringBuilder sql = new StringBuilder();
- sql.AppendFormat("insert into S_BuChaJia(ctid,orderState,dotype,addtime) values('{0}',{1},'{2}',getdate());", ctid, ost, stateType);
- CeErpTradeCell.ExecuteNonQuery(sql.ToString());
- }
- }
- public static string changeCountFromChiness(string countStr)
- {
- try
- {
- return handleProductCount(countStr).ToString();
- }
- catch (Exception ex)
- {
- return countStr;
- }
- }
- public static int getIntCountFromString(string fstr)
- {
- try
- {
- string str = fstr;
- string r = @"[0-9]+";
- Regex reg = new Regex(r, RegexOptions.IgnoreCase | RegexOptions.Singleline, TimeSpan.FromSeconds(2));//2秒后超时
- MatchCollection mc = reg.Matches(str);//设定要查找的字符串
- int count = 0;
- foreach (Match m in mc)
- {
- string s = m.Groups[0].Value;
- int cc = Convert.ToInt32(s);
- if (count == 0)
- {
- count = cc;
- }
- else
- {
- count = count * cc;
- }
- }
- return count;
- }
- catch (Exception ex)
- {
- return 0;
- }
- }
- public static int getPlaceProductCount(string count_str)
- {
- count_str = count_str.Trim();
- string[] count_list = count_str.Split(',');
- int count = 0;
- foreach (string item in count_list)
- {
- int tem_count = getSingleIntCountFromString(item);
- if (tem_count > count)
- {
- count = tem_count;
- }
- }
- return count;
- }
- public static int getSingleIntCountFromString(string fstr)
- {
- try
- {
- string str = fstr;
- string r = @"[0-9]+";
- Regex reg = new Regex(r, RegexOptions.IgnoreCase | RegexOptions.Singleline, TimeSpan.FromSeconds(2));//2秒后超时
- MatchCollection mc = reg.Matches(str);//设定要查找的字符串
- if (mc.Count <= 0) return 0;
- if (mc.Count == 1)
- {
- string s = mc[0].Groups[0].Value;
- int cc = Convert.ToInt32(s);
- return cc;
- }
- else if (mc.Count > 1)
- {
- string s = mc[1].Groups[0].Value;
- int cc = Convert.ToInt32(s);
- return cc;
- }
- //foreach (Match m in mc)
- //{
- // string s = m.Groups[0].Value;
- // int cc = Convert.ToInt32(s);
- // if (count == 0)
- // {
- // count = cc;
- // }
- // else
- // {
- // count = count * cc;
- // }
- //}
- return 0;
- }
- catch (Exception ex)
- {
- return 0;
- }
- }
- public static int handleProductCount(string pCount, bool isSingle = false)
- {
- string cstr = pCount;
- if (cstr.IndexOf("百万") != -1)
- {
- cstr = cstr.Replace("百万", "000000");
- }
- else if (cstr.IndexOf("十万") != -1)
- {
- cstr = cstr.Replace("十万", "00000");
- }
- else if (cstr.IndexOf("万") != -1)
- {
- cstr = cstr.Replace("万", "0000");
- }
- else if (cstr.IndexOf("千") != -1)
- {
- cstr = cstr.Replace("千", "000");
- }
- else if (cstr.IndexOf("百") != -1)
- {
- cstr = cstr.Replace("百", "00");
- }
- else if (cstr.IndexOf("十") != -1)
- {
- cstr = cstr.Replace("十", "0");
- }
- int rCount = 0;
- if (isSingle) rCount = getSingleIntCountFromString(cstr);
- else rCount = getIntCountFromString(cstr);
- return rCount;
- }
- public static decimal getOrderSizeFromString(string size)
- {
- string rsize = size.Replace("mm", "");
- string[] sizeList = rsize.Split('x');
- if (sizeList.Length != 2) return 0;
- try
- {
- decimal mianji = Convert.ToDecimal(sizeList[0]) * Convert.ToDecimal(sizeList[1]);
- return mianji;
- }
- catch (Exception ex)
- {
- return 0;
- }
- return 0;
- }
- public static string getDateFromString(string fstr)
- {
- try
- {
- string str = fstr;
- string r = @"[0-9]+";
- Regex reg = new Regex(r, RegexOptions.IgnoreCase | RegexOptions.Singleline, TimeSpan.FromSeconds(2));//2秒后超时
- MatchCollection mc = reg.Matches(str);//设定要查找的字符串
- if (mc.Count < 3) return "";
- int tag = 0;
- string datestr = "";
- foreach (Match m in mc)
- {
- string s = m.Groups[0].Value;
- datestr += s;
- if (tag < 2) { datestr += "-"; }
- else break;
- tag++;
- }
- DateTime dd = Convert.ToDateTime(datestr);
- return datestr;
- }
- catch (Exception ex)
- {
- return "";
- }
- }
- public static void DeleteOriginalOrderIfIsSplitOrder(string tid, string splitTag)
- {
- if (splitTag.Length > 0)
- {
- CeErpTradeCell.DelByCtid(tid);
- }
- }
- public static void setOrderDummyDelivery(string tid)
- {
- try
- {
- CeErpTrade trade = CeErpTrade.Get(tid);
- if (trade != null)
- {
- string xuniapires = apiHelper.API_LogisticsDummySend(tid, trade.posCode);
- if (xuniapires.IndexOf("成功") != -1)
- {
- LogHelper.addLog(tid, 0, "电子稿自动发货");
- return;
- }
- else if (xuniapires.IndexOf("失败") != -1)
- {
- string chiness = KeepChinese(xuniapires);
- XLog.SaveLog(0, "setOrderDummyDelivery虚拟发货失败," + tid + "," + chiness);
- return;
- }
- }
- }
- catch (Exception ex)
- {
- XLog.SaveLog(0, "setOrderDummyDelivery虚拟发货出错," + tid + "," + ex.Message);
- return;
- }
- }
- public static void getuserId()
- {
- string createtime = "2024-01-01 00:50:39.000";
- string textContent = "";
- int row_num = 100;
- Dictionary<string, List<string>> shop_userNick = new Dictionary<string, List<string>>();
- while (row_num == 100)
- {
- string conSql = string.Format("SELECT TOP 100 posCode, buyer_nick,pay_time FROM [dbo].[CE_ErpTrade] WHERE pay_time > '{0}' AND ( buyer_id IS NULL OR buyer_id = '' ) AND posCode != '' AND buyer_nick != '' ORDER By pay_time ASC", createtime);
- DataTable table = DbHelper.DbConn.ExecuteDataset(conSql).Tables[0];
- if (table != null)
- {
- row_num = table.Rows.Count;
- foreach (DataRow row in table.Rows)
- {
- string posCode = row["posCode"].ToString();
- string buyer_nick = row["buyer_nick"].ToString();
- createtime = row["pay_time"].ToString();
- List<string> userNickName = new List<string>();
- if (shop_userNick.ContainsKey(posCode))
- {
- shop_userNick.TryGetValue(posCode, out userNickName);
- }
- userNickName.Add(buyer_nick);
- userNickName = userNickName.Distinct().ToList();
- if (userNickName.Count == 10)
- {
- sendApi(posCode, userNickName);
- userNickName = new List<string>();
- }
- if (shop_userNick.ContainsKey(posCode))
- {
- shop_userNick[posCode] = userNickName;
- }
- else
- {
- shop_userNick.Add(posCode, userNickName);
- }
- }
- }
- }
- foreach (string key in shop_userNick.Keys)
- {
- List<string> nameList = shop_userNick[key];
- sendApi(key, nameList);
- }
- }
- static void sendApi(string posCode, List<string> userNickName)
- {
- string textContent = "";
- List<api_userId_response.ContentItem> buyerIds = apiHelper.API_GetUserId(posCode, string.Join(",", userNickName));
- if (buyerIds != null && buyerIds.Count > 0)
- {
- foreach (api_userId_response.ContentItem item in buyerIds)
- {
- if (item != null && !string.IsNullOrEmpty(item.buyerOpenUid))
- {
- textContent += string.Format("update [dbo].[CE_ErpTrade] set buyer_id='{2}' WHERE posCode='{0}' and buyer_nick='{1}';\r\n", posCode, item.buyerNick, item.buyerOpenUid);
- }
- }
- try
- {
- StreamWriter fs = new StreamWriter("C:/Users/231010/Desktop/updateSql.txt", true);
- fs.WriteLine(textContent);
- fs.Close();
- }
- catch (Exception e)
- {
- }
- }
- }
- public static designApiResponseVo checkOrderListDesignInfo(string tid)
- {
- if (string.IsNullOrEmpty(tid))
- {
- return new designApiResponseVo(-1, "无订单信息");
- }
- string info_sql = string.Format("SELECT ctid,ProductId,seller_memo FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", tid);
- DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
- string check_info = "无订单信息";
- if (data.Rows.Count > 0)
- {
- bool need_send = false;
- bool has_design = false;
- foreach (DataRow row in data.Rows)
- {
- CeErpTradeCell cell = CeErpTradeCell.GetByCtid(row["ctid"].ToString());
- if (cell != null)
- {
- if (cell.DesignUserId == 0 || cell.DispatchSort == 2)
- {
- designApiResponseVo result = checkOrderDesignInfo(cell, "", data);
- check_info = result.msg;
- if (result.code == 200)
- {
- need_send = true;
- has_design = false;
- }
- }
- else
- {
- has_design = true;
- }
- }
- }
- if (need_send && !has_design)
- {
- return new designApiResponseVo(200, "");
- }
- }
- return new designApiResponseVo(-1, check_info);
- }
- static List<int> products = new List<int>() { 29, 2489, 2517, 2518, 2519, 2520, 2533, 2534, 2558, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2634, 2644, 2645, 2646, 2648, 2649, 2650 };
- static List<int> shops = new List<int>() { 2, 77, 121, 122, 65, 87, 26, 45, 17, 21, 52, 54, 103, 107, 108, 109, 118, 63, 64, 66, 49, 67, 105, 35, 57, 29, 53, 62 };
- public static designApiResponseVo checkOrderDesignInfo(CeErpTradeCell ceErpTradeCell, string post = "", DataTable dt = null)
- {
- if (ceErpTradeCell.DispatchSort == 2)
- {
- return new designApiResponseVo(200, "");
- }
- if (ceErpTradeCell.ProductId == 0)
- {
- return new designApiResponseVo(-1, "订单无品类");
- }
- if (ceErpTradeCell.ProductId == 1797 && ceErpTradeCell.seller_memo.Contains("手绘"))
- {
- return new designApiResponseVo(200, "");
- }
- if (ceErpTradeCell.isDianziOrder == 1)
- {
- return new designApiResponseVo(200, "");
- }
- if ((post != "SysAdmin" && post != "Summarize"))
- {
- if (ceErpTradeCell.DesignUserId != 0 && ceErpTradeCell.DispatchSort != 2)
- {
- return new designApiResponseVo(-1, "已有设计师无法指派");
- }
- string info_sql = string.Format("SELECT count(*) as total FROM [dbo].[Ce_ErpDesignInfo] WHERE type = 1 and tarId = 3542 and shopId = {0}", ceErpTradeCell.ShopId);
- DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
- int a = Convert.ToInt32(data.Rows[0]["total"]);
- bool drop = false;
- if (DateTime.Now.Hour >= 17 && DateTime.Now.Hour <= 7 && products.IndexOf(ceErpTradeCell.ProductId) > -1 && (ceErpTradeCell.ShopId == 14 || ceErpTradeCell.ShopId == 56))
- {
- drop = false;
- }
- if (!drop)
- {
- CeErpDesignInfo ceErpDesignInfo = CeErpDesignInfo.GetByShopDesign(3542, ceErpTradeCell.ShopId, ceErpTradeCell.ProductId);
- if (ceErpDesignInfo == null)
- {
- return new designApiResponseVo(-1, "该店铺无该技能权限");
- }
- }
- //卡片五款
- if (products.IndexOf(ceErpTradeCell.ProductId) > -1 && ceErpTradeCell.ShopId > 0)
- {
- bool num_bool = true;
- bool size_bool = false;
- int min_num = 2;
- int num = 0;
- if (shops.IndexOf(ceErpTradeCell.ShopId) == -1)//限制不是全品的店铺限制
- {
- /*if (ceErpTradeCell.payment >= 500)
- {
- return new designApiResponseVo(-1, "订单价格超出");
- }*/
- string pattern = @"\b(\d{1,5}[x\*]\d{1,5}(mm|cm))\b";
- string memo = ceErpTradeCell.seller_memo.Replace("MM", "mm").Replace("CM", "cm");
- Regex reg = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Multiline, TimeSpan.FromSeconds(2));//2秒后超时
- MatchCollection matches = reg.Matches(memo);//设定要查找的字符串
- string size = "";
- double min_width = 90;
- double min_height = 90;
- double width = 0;
- double height = 0;
- try
- {
- num = matches.Count;
- foreach (System.Text.RegularExpressions.Match match in matches)
- {
- if (match.Success)
- {
- size = match.Groups[0].Value;
- if (size.Contains("cm"))
- {
- size = size.Replace("cm", "");
- string[] size_list = size.Split('x');
- if (size_list.Length > 1)
- {
- width = Convert.ToDouble(size_list[0]) * 10;
- height = Convert.ToDouble(size_list[1]) * 10;
- }
- }
- else if (size.Contains("mm"))
- {
- size = size.Replace("mm", "");
- string[] size_list = size.Split('x');
- if (size_list.Length > 1)
- {
- width = Convert.ToDouble(size_list[0]);
- height = Convert.ToDouble(size_list[1]);
- }
- }
- if (width >= min_width && height >= min_height && height >= min_width && width >= min_height)
- {
- size_bool = true;
- break;
- }
- else
- {
- size_bool = false;
- }
- }
- }
- }
- catch (Exception ex)
- {
- }
- num = getSellerMemoNum(ceErpTradeCell.seller_memo);
- if (dt != null && dt.Rows != null && dt.Rows.Count > 0)
- {
- foreach (DataRow item in dt.Rows)
- {
- int tempNum = 0;
- if (!string.IsNullOrEmpty(item["ProductId"].ToString()))
- {
- if (Convert.ToInt32(item["ProductId"]) == ceErpTradeCell.ProductId)
- {
- tempNum = getSellerMemoNum(item["seller_memo"].ToString());
- tempNum = tempNum == 0 ? 1 : tempNum;
- }
- }
- num += tempNum;
- }
- }
- //2款不进
- if (num < min_num)
- {
- num_bool = false;
- }
- if (!num_bool && !size_bool)
- {
- return new designApiResponseVo(-1, "尺寸小于90x90或款数小于2");
- }
- }
- }
- }
- return new designApiResponseVo(200, "");
- }
- private static int getSellerMemoNum(string memo)
- {
- int num = 0;
- string pattern = @"\b(\d{1,5}[x\*]\d{1,5}(mm|cm))\b";
- Regex reg = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Multiline, TimeSpan.FromSeconds(2));//2秒后超时
- MatchCollection matches = reg.Matches(memo);//设定要查找的字符串
- if (memo.Contains("刮刮"))
- {
- num = Math.Max(num - 1, 1);
- }
- pattern = @"(\d+)款";
- matches = Regex.Matches(memo, pattern);
- try
- {
- num = Math.Max(num - matches.Count, 0);
- foreach (System.Text.RegularExpressions.Match match in matches)
- {
- if (match.Success)
- {
- num += Convert.ToInt32(match.Groups[1].Value);
- break;
- }
- }
- }
- catch (Exception ex)
- {
- }
- return num;
- }
- private static string cytUserId = "77886";
- public static void sendCytAfterSale(CeErpTradeCell entity)
- {
- try
- {
- CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(entity.ctid);
- string after = "";
- if (entity != null && entity.AfterSaleReason.Contains("质量问题"))
- {
- after = "质量问题";
- }
- else if (entity != null && entity.AfterSaleReason.Contains("发货问题"))
- {
- after = "没收到货";
- }
- else
- {
- after = "其他问题";
- }
- string refund_type = "退款退货";
- if (entity.supRefundType != null && entity.supRefundType == "重印" && (after == "质量问题" || after == "其他问题"))
- {
- refund_type = "补印";
- }
- JObject jsonObject12 = new JObject
- {
- { "Userid",cytUserId },
- //{ "pwd", "lt666888" },
- { "LTOrderId", entity.ctid },
- { "RefundType", refund_type },
- { "ReprintReasons", after },
- { "ReasonsImgUrls", entity.AfterSaleSupplierImg },
- { "ReasonRemarks", ceErpTradeAfterSaleExtend.supplierResponsible }
- };
- /**JObject jsonObject12 = new JObject
- {
- { "Userid", "10095" },
- { "pwd", "test123456" },
- { "LTOrderId", "test123456" },
- { "RefundType", "退款退货" },
- { "ReprintReasons", "其他问题" },
- { "ReasonRemarks", "测试" }
- };**/
- string response1 = HttpPost("http://www.kiy.cn/m-mobile/autobaojia/ApplyOrderRefund", jsonObject12.ToString());
- JObject jsonObjects1 = JObject.Parse(response1);
- string msg = (string)jsonObjects1["msg"];
- LogHelper.addLog(entity.ctid, 0, "CYT售后单推送:" + msg);
- }
- catch (Exception ex)
- {
- LogHelper.addLog(entity.ctid, 0, "CYT售后单推送:" + ex.ToString());
- }
- }
- public static void sendCytExpress(CeErpExpressInfo exinfo)
- {
- try
- {
- if (exinfo == null)
- {
- return;
- }
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(exinfo.tid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- JObject jsonObject12 = new JObject
- {
- { "Userid",cytUserId },
- //{ "pwd", "lt666888" },
- { "LTOrderId", ceErpTradeCell.OrderSn },
- { "CourierNumber", exinfo.out_sid },
- { "ExpressCompanyName", exinfo.company_name }
- };
- string response1 = HttpPost("http://www.kiy.cn/webapi/Himall.NewShop.UpdOrderExpress", jsonObject12.ToString());
- JObject jsonObjects1 = JObject.Parse(response1);
- string msg = (string)jsonObjects1["msg"];
- LogHelper.addLog(exinfo.tid, 0, "CYT售后单推送:" + msg);
- }
- catch (Exception ex)
- {
- LogHelper.addLog(exinfo.tid, 0, "CYT售后单推送:" + ex.ToString());
- }
- }
- public static void getCytPrice(CeErpTradeCell entity)
- {
- try
- {
- if (entity.seller_memo.IndexOf("种子纸") > -1)
- {
- return;
- }
- CeErpProduct cp = CeErpProduct.GetById(entity.ProductId);
- double price = 0;
- if (cp == null)
- {
- JObject jsonObject12 = new JObject
- {
- { "UserId", cytUserId },
- { "Pwd", "lt666888" },
- { "Filename", entity.seller_memo }
- };
- string response1 = HttpPost("http://www.kiy.cn/m-mobile/autobaojia/LTBaojia", jsonObject12.ToString());
- JObject jsonObjects1 = JObject.Parse(response1);
- string ms1g = (string)jsonObjects1["msg"];
- if (ms1g == "报价成功")
- {
- JObject jsonObject1 = (JObject)jsonObjects1["data"];
- string data = (string)jsonObject1["price"];
- string sql_pay = "INSERT INTO CE_CaiYingTongLog (ctid, ctime,type,msg) VALUES ('" + entity.ctid + "', '" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'," + 2 + ",'" + data + "');";
- CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
- price = Convert.ToDouble(data);
- }
- else
- {
- string sql_pay = "INSERT INTO CE_CaiYingTongLog (ctid, ctime,type,msg) VALUES ('" + entity.ctid + "', '" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'," + 2 + ",'" + response1 + "');";
- CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
- return;
- }
- }
- String[] beizhu = entity.seller_memo.Split('-');
- String chanp = "";
- if (beizhu.Length > 1)
- {
- chanp = "(" + entity.ctid + ")-" + entity.ProductSize + "-" + entity.ProductCount + "-" + entity.Material + cp.PSupType + entity.Craft + "-备注:" + beizhu[1];
- }
- else
- {
- chanp = "(" + entity.ctid + ")-" + entity.ProductSize + "-" + entity.ProductCount + "-" + entity.Material + cp.PSupType + entity.Craft;
- }
- JObject jsonObject = new JObject
- {
- { "UserId", cytUserId },
- { "Pwd", "lt666888" },
- { "Filename", chanp }
- };
- string response = HttpPost("http://www.kiy.cn/m-mobile/autobaojia/LTBaojia", jsonObject.ToString());
- JObject jsonObjects = JObject.Parse(response);
- string msg = (string)jsonObjects["msg"];
- if (msg == "报价成功")
- {
- JObject jsonObject1 = (JObject)jsonObjects["data"];
- string data = (string)jsonObject1["price"];
- string sql_pay = "INSERT INTO CE_CaiYingTongLog (ctid, ctime,type,msg) VALUES ('" + entity.ctid + "', '" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'," + 2 + ",'" + data + "');";
- CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
- price = Convert.ToDouble(data);
- }
- else
- {
- string sql_pay = "INSERT INTO CE_CaiYingTongLog (ctid, ctime,type,msg) VALUES ('" + entity.ctid + "', '" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'," + 2 + ",'" + response + "');";
- CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
- return;
- }
- if (price > 0)
- {
- CeErpTradeCellExtend ceErpTradeCellExtend = CeErpTradeCellExtend.getByTid(entity.ctid);
- if (ceErpTradeCellExtend == null)
- {
- ceErpTradeCellExtend = new CeErpTradeCellExtend();
- ceErpTradeCellExtend.ctid = entity.ctid;
- ceErpTradeCellExtend.payment_cyt = price;
- ceErpTradeCellExtend.Create();
- }
- else
- {
- ceErpTradeCellExtend.payment_cyt = price;
- ceErpTradeCellExtend.Update();
- }
- }
- }
- catch (Exception ex)
- {
- }
- return;
- }
- /// <summary>
- /// 更新设计信息
- /// </summary>
- /// <param name="ceErpTradeCell"></param>
- public static void updateDataTradeCellDesignInfo(string ctid)
- {
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- string info_sql = string.Format("SELECT ctid FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", ceErpTradeCell.tid);
- DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
- foreach (DataRow row in data.Rows)
- {
- ceErpTradeCell = CeErpTradeCell.GetByCtid(row["ctid"].ToString());
- if (ceErpTradeCell == null)
- {
- continue;
- }
- Dictionary<string, string> map = new Dictionary<string, string>();
- if (ceErpTradeCell.DesignUserId > 0)
- {
- string design_sql = string.Format("SELECT * FROM [dbo].[view_ErpUser] WHERE ID = {0}", ceErpTradeCell.DesignUserId);
- DataTable design_dt = DbHelper.DbConn.ExecuteDataset(design_sql).Tables[0];
- if (design_dt != null && design_dt.Rows.Count > 0)
- {
- map.Add("ShortText1717743889973", design_dt.Rows[0]["Name"].ToString());
- map.Add("ShortText1717743889516", design_dt.Rows[0]["OrgName"].ToString());
- if (!string.IsNullOrEmpty(design_dt.Rows[0]["OrgID"].ToString()))
- {
- int orgId = Convert.ToInt32(design_dt.Rows[0]["OrgID"]);
- if (orgId > 0)
- {
- string mDesign_sql = string.Format("SELECT Name FROM [dbo].[view_ErpUser] WHERE OrgId={0} and PostCode in ('wxDesignerhd','wxDesignerMr','DesignerMr','Designerhd')", design_dt.Rows[0]["OrgID"]);
- DataTable mDesign_dt = DbHelper.DbConn.ExecuteDataset(mDesign_sql).Tables[0];
- if (mDesign_dt != null && mDesign_dt.Rows.Count > 0)
- {
- map.Add("ShortText1717743890850", mDesign_dt.Rows[0]["Name"].ToString());
- }
- }
- }
- }
- map.Add("Date1717743893776", ceErpTradeCell.WaitDesignTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
- }
- dataHelper.updateErpTradeCell(map, ctid);
- }
- }
- /// <summary>
- /// 下单更新
- /// </summary>
- /// <param name="ceErpTradeCell"></param>
- public static void updateDataTradeCellPlaceInfo(string ctid)
- {
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- Dictionary<string, string> map = new Dictionary<string, string>();
- if (ceErpTradeCell.OrderState >= 6 && ceErpTradeCell.SupplierId > 0)
- {
- map.Add("Date1717743895362", ceErpTradeCell.FinishDesignTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- map.Add("Date1717744246168", ceErpTradeCell.FinishPlaceTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- string supplierId = dataHelper.getSupplerDataInfo(ceErpTradeCell.SupplierId.ToString());
- map.Add("RelevanceForm1718100412422", supplierId);
- CeErpTradeCellExtend ceErpTradeCellExtend = CeErpTradeCellExtend.getByTid(ceErpTradeCell.ctid);
- if (ceErpTradeCellExtend != null)
- {
- map.Add("Number1718099884613", ceErpTradeCellExtend.payment_cyt.ToString());
- }
- map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
- }
- dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
- }
- /// <summary>
- /// 发货更新
- /// </summary>
- /// <param name="ceErpTradeCell"></param>
- public static void updateDataTradeCellDeliveInfo(string ctid)
- {
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- string info_sql = string.Format("SELECT ctid FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", ceErpTradeCell.tid);
- DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
- foreach (DataRow row in data.Rows)
- {
- ceErpTradeCell = CeErpTradeCell.GetByCtid(row["ctid"].ToString());
- if (ceErpTradeCell == null)
- {
- continue;
- }
- Dictionary<string, string> map = new Dictionary<string, string>();
- if (ceErpTradeCell.OrderState >= 7 && ceErpTradeCell.SupplierId > 0)
- {
- map.Add("Date1717744254301", ceErpTradeCell.FinishDeliveryTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- map.Add("ShortText1717744255441", ceErpTradeCell.OutSid);
- map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
- }
- dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
- }
- }
- /// <summary>
- /// 打回
- /// </summary>
- /// <param name="ceErpTradeCell"></param>
- public static void updateDataTradeCellBackInfo(string ctid)
- {
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- Dictionary<string, string> map = new Dictionary<string, string>();
- map.Add("Date1717745436357", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
- map.Add("ShortText1717745435559", "是");
- map.Add("ShortText1717745481283", ceErpTradeCell.ReturnReason);
- map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
- dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
- }
- /// <summary>
- /// 查货
- /// </summary>
- /// <param name="ceErpTradeCell"></param>
- public static void updateDataTradeCellCheckGoodInfo(string ctid)
- {
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- Dictionary<string, string> map = new Dictionary<string, string>();
- map.Add("Date1717745495718", ceErpTradeCell.CheckOrderTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- map.Add("ShortText1717745492918", "是");
- map.Add("ShortText1717745497837", ceErpTradeCell.CheckMemo);
- map.Add("ShortText1717745499141", ceErpTradeCell.UnusualCon);
- dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
- }
- /// <summary>
- /// 加急
- /// </summary>
- /// <param name="ceErpTradeCell"></param>
- public static void updateDataTradeCellUrgentInfo(string ctid)
- {
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- Dictionary<string, string> map = new Dictionary<string, string>();
- map.Add("Date1717745535736", ceErpTradeCell.UrgencyTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- map.Add("ShortText1717745533062", "是");
- dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
- }
- /// <summary>
- /// 售后
- /// </summary>
- /// <param name="ceErpTradeCell"></param>
- public static void updateDataTradeCellAfterSaleInfo(string ctid)
- {
- CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
- if (ceErpTradeCell == null)
- {
- return;
- }
- Dictionary<string, string> map = new Dictionary<string, string>();
- map.Add("ShortText1717745540758", "是");
- map.Add("Date1717745544245", ceErpTradeCell.AfterSaleTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- if (ceErpTradeCell.AfterSaleResSupId > 0)
- {
- CeErpUser user = CeErpUser.Get(ceErpTradeCell.AfterSaleResSupId);
- if (user != null)
- {
- map.Add("ShortText1717745541664", user.Name);
- }
- }
- map.Add("Date1717745545841", ceErpTradeCell.FinishAfterSaleTime?.ToString("yyyy-MM-dd HH:mm:ss"));
- if (!string.IsNullOrEmpty(ceErpTradeCell.AfterSaleReason))
- {
- string[] list = ceErpTradeCell.AfterSaleReason.Split('|');
- for (int i = 0; i < list.Length; i++)
- {
- if (i == 0)
- {
- map.Add("ShortText1717745548220", list[i]);
- }
- if (i == 1)
- {
- map.Add("ShortText1717745549835", list[i]);
- }
- if (i == 2)
- {
- map.Add("ShortText1717745550687", list[i]);
- }
- }
- }
- if (!string.IsNullOrEmpty(ceErpTradeCell.ResponsibleUserId))
- {
- string[] list = ceErpTradeCell.ResponsibleUserId.Split(',');
- for (int i = 0; i < list.Length; i++)
- {
- string[] user = list[i].Split('_');
- if (user.Length > 0)
- {
- if (user[1] == "g")
- {
- CeErpSupplier ceErpSupplier = CeErpSupplier.Get(user[0]);
- if (i == 0)
- {
- map.Add("ShortText1717745553842", list[i]);
- map.Add("ShortText1717745554626", "");
- }
- if (i == 1)
- {
- map.Add("ShortText1717811042513", list[i]);
- map.Add("ShortText1717811049407", "");
- }
- }
- else if (user[1] == "w")
- {
- if (i == 0)
- {
- map.Add("ShortText1717745553842", "物流问题");
- map.Add("ShortText1717745554626", "");
- }
- if (i == 1)
- {
- map.Add("ShortText1717811042513", "物流问题");
- map.Add("ShortText1717811049407", "");
- }
- }
- else
- {
- string customer_sql = string.Format("SELECT * FROM [dbo].[view_ErpUser] WHERE ID = {0}", ceErpTradeCell.CustomerUserId);
- DataTable customer_dt = DbHelper.DbConn.ExecuteDataset(customer_sql).Tables[0];
- if (customer_dt.Rows.Count > 0)
- {
- if (i == 0)
- {
- map.Add("ShortText1717745553842", customer_dt.Rows[0]["Name"].ToString());
- map.Add("ShortText1717745554626", customer_dt.Rows[0]["OrgName"].ToString());
- }
- if (i == 1)
- {
- map.Add("ShortText1717811042513", customer_dt.Rows[0]["Name"].ToString());
- map.Add("ShortText1717811049407", customer_dt.Rows[0]["OrgName"].ToString());
- }
- }
- }
- }
- }
- }
- map.Add("number1717745810151", ceErpTradeCell.RefundFee.ToString());
- CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(ceErpTradeCell.ctid);
- if (ceErpTradeAfterSaleExtend != null && !string.IsNullOrEmpty(ceErpTradeAfterSaleExtend.RefundFees))
- {
- string[] list = ceErpTradeAfterSaleExtend.RefundFees.Split(',');
- for (int i = 0; i < list.Length; i++)
- {
- if (i == 0)
- {
- map.Add("Number1717745564936", list[i]);
- }
- if (i == 1)
- {
- map.Add("Number1717745565580", list[i]);
- }
- }
- }
- map.Add("ShortText1717745580986", ceErpTradeCell.AfterSaleSupplierState == 1 ? "认可" : "不认可");
- map.Add("ShortText1717745582613", ceErpTradeCell.AfterSaleSupplierMemo);
- map.Add("ShortText1717745583256", ceErpTradeCell.AfterSaleMethod);
- map.Add("ShortText1717745583810", ceErpTradeCell.AfterSaleMemo);
- dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
- }
- /// <summary>
- /// 退款
- /// </summary>
- /// <param name="content"></param>
- public static void updateDataTradeCellRefundInfo(Api_tmc_refund_info_Obj.Content content)
- {
- Dictionary<string, string> map = new Dictionary<string, string>();
- map.Add("Date1717745588048", StampToDateTime(content.createTime).ToString("yyyy-MM-dd HH:mm:ss"));
- map.Add("ShortText1717745585444", "是");
- map.Add("Number1717743148189", content.refundFee);
- map.Add("ShortText1717745591810", content.reason);
- map.Add("ShortText1717745592639", content.desc);
- string tid = content.refOid;
- string info_sql = string.Format("SELECT ctid FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", tid);
- DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
- foreach (DataRow row in data.Rows)
- {
- dataHelper.updateErpTradeCell(map, row["ctid"].ToString());
- }
- }
- /// <summary>
- /// 返现
- /// </summary>
- /// <param name="entity"></param>
- /// <param name="cash"></param>
- public static void updateDataTradeCellCashInfo(CeErpTradeCell entity, CeErpReturnCash cash)
- {
- Dictionary<string, string> map = new Dictionary<string, string>();
- map.Add("ShortText1717745601056", "是");
- map.Add("ShortText1717745602313", cash.rtype);
- map.Add("Number1717745604245", cash.payment.ToString());
- map.Add("ShortText1717745607208", cash.con);
- dataHelper.updateErpTradeCell(map, entity.ctid);
- }
- /// <summary>
- /// 推购
- /// </summary>
- /// <param name="entity"></param>
- public static void updateDataTradeCellStayInfo(CeErpTradeCell entity)
- {
- Dictionary<string, string> map = new Dictionary<string, string>();
- map.Add("ShortText1717745608381", "是");
- dataHelper.updateErpTradeCell(map, entity.ctid);
- }
- public static DateTime StampToDateTime(string timeStamp)
- {
- DateTime dateTimeStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));
- long lTime = long.Parse(timeStamp + "0000");
- TimeSpan toNow = new TimeSpan(lTime);
- return dateTimeStart.Add(toNow);
- }
- private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
- {
- return true; //总是接受
- }
- public static string HttpPost(string url, string param = null)
- {
- HttpWebRequest request;
- //如果是发送HTTPS请求
- if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
- {
- ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
- request = WebRequest.Create(url) as HttpWebRequest;
- request.ProtocolVersion = HttpVersion.Version10;
- }
- else
- {
- request = WebRequest.Create(url) as HttpWebRequest;
- }
- request.Method = "POST";
- request.ContentType = "application/json";
- request.Accept = "*/*";
- request.Timeout = 60000;
- request.AllowAutoRedirect = false;
- StreamWriter requestStream = null;
- WebResponse response = null;
- string responseStr = null;
- try
- {
- requestStream = new StreamWriter(request.GetRequestStream());
- requestStream.Write(param);
- requestStream.Close();
- response = request.GetResponse();
- if (response != null)
- {
- StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
- responseStr = reader.ReadToEnd();
- reader.Close();
- }
- }
- catch (Exception ex)
- {
- return ex.Message;
- }
- finally
- {
- request = null;
- requestStream = null;
- response = null;
- }
- return responseStr;
- }
- }
- }
|