commonHelper.cs 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532
  1. using BizCom;
  2. using Newtonsoft.Json;
  3. using SiteCore.taoObj;
  4. using SQLData;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Data;
  8. using System.Data.SqlClient;
  9. using System.IO;
  10. using System.Text;
  11. using System.Text.RegularExpressions;
  12. using Match = System.Text.RegularExpressions.Match;
  13. using SiteCore.Handler;
  14. using System.Threading;
  15. using Newtonsoft.Json.Linq;
  16. using System.Net.Security;
  17. using System.Net;
  18. using System.Security.Cryptography.X509Certificates;
  19. using System.Security.Policy;
  20. using NHibernate.Engine;
  21. using static NHibernate.Linq.Visitors.LeftJoinDetector;
  22. using NHibernate.Loader.Custom;
  23. using System.Runtime.Remoting.Metadata.W3cXsd2001;
  24. using NPOI.OpenXmlFormats.Shared;
  25. using static SiteCore.taoObj.work_core_vo;
  26. namespace SiteCore
  27. {
  28. public class commonHelper
  29. {
  30. public static void autoRefreshRefundState()
  31. {
  32. StringBuilder sql = new StringBuilder();
  33. sql.AppendFormat("update CE_ErpTradeRefund set RefundState=3 where RefundState=2 and DATEDIFF(hh,modified,getdate())>=72;");
  34. //sql.AppendFormat("update ce_erptradecell with(rowlock) set AfterSaleState=4,FinishAfterSaleTime=getdate() where AfterSaleState=3 and IsArbitrate=0 and DATEDIFF(hh,AfterSalePreTime,getdate())>=168;");
  35. //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;");
  36. //sql.AppendFormat("update CE_ErpTradeResponsible set VerifyState=1 where VerifyState=0 and IsArbitrate=0 and DATEDIFF(hh,createdTime,getdate())>=168;");
  37. //DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  38. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  39. sql = new StringBuilder();
  40. 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;");
  41. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  42. foreach (DataRow dr in dt.Rows)
  43. {
  44. string state = dr["VerifyState"].ToString();
  45. string tid = dr["tid"].ToString();
  46. int userId = Convert.ToInt32(dr["UserId"]);
  47. int reasonId = Convert.ToInt32(dr["ID"]);
  48. int type = Convert.ToInt32(dr["type"]);
  49. if (type == 0)
  50. {
  51. if (state == "0")//主管审核超时
  52. {
  53. CeErpTradeResponsible ceErpTradeResponsible = CeErpTradeResponsible.GetById(dr["ID"].ToString());
  54. if (ceErpTradeResponsible != null)
  55. {
  56. ceErpTradeResponsible.VerifyTime = DateTime.Now;
  57. ceErpTradeResponsible.VerifyState = 3;
  58. ceErpTradeResponsible.Update();
  59. LogHelper.AddAfterSaleLog(tid, reasonId, "主管审核超时", userId);
  60. LogHelper.addLog(tid, 0, "主管审核超时", 4, 4);
  61. }
  62. }
  63. if (state == "3")//责任人审核超时
  64. {
  65. CeErpTradeResponsible ceErpTradeResponsible = CeErpTradeResponsible.GetById(dr["ID"].ToString());
  66. if (ceErpTradeResponsible != null)
  67. {
  68. ceErpTradeResponsible.VerifyTime = DateTime.Now;
  69. ceErpTradeResponsible.VerifyState = 1;
  70. ceErpTradeResponsible.Update();
  71. LogHelper.AddAfterSaleLog(tid, reasonId, "责任人审核超时", userId);
  72. LogHelper.addLog(tid, 0, "责任人审核超时", 4, 4);
  73. CeErpTradeCell entity = CeErpTradeCell.GetByCtid(ceErpTradeResponsible.tid);
  74. bool isAll = tradeResponsibleAll(entity);
  75. if (isAll)
  76. {
  77. entity.AfterSaleState = 4;
  78. entity.FinishAfterSaleTime = DateTime.Now;
  79. entity.AfterSaleSupplierState = 1;
  80. ApiVo apiVo = new ApiVo();
  81. apiVo.orderNumber = entity.ctid;
  82. apiVo.actionName = "afterOver";
  83. designHelper.API_WorkCore(apiVo); //afterOver
  84. entity.Update();
  85. }
  86. }
  87. }
  88. }
  89. else
  90. {
  91. if (type == 2)
  92. {
  93. DateTime date = DateTime.Parse(dr["VerifyTime"].ToString());
  94. if (DateTime.Compare(DateTime.Now, date.AddHours(96)) <= 0)
  95. {
  96. continue;
  97. }
  98. }
  99. if (state == "0")
  100. {
  101. CeErpTradeResponsible ceErpTradeResponsible = CeErpTradeResponsible.GetById(dr["ID"].ToString());
  102. if (ceErpTradeResponsible != null)
  103. {
  104. ceErpTradeResponsible.VerifyTime = DateTime.Now;
  105. ceErpTradeResponsible.VerifyState = 1;
  106. ceErpTradeResponsible.Update();
  107. CeErpTradeCell entity = CeErpTradeCell.GetByCtid(ceErpTradeResponsible.tid);
  108. bool isAll = tradeResponsibleAll(entity);
  109. if (isAll)
  110. {
  111. entity.AfterSaleState = 4;
  112. entity.FinishAfterSaleTime = DateTime.Now;
  113. if (entity.AfterSaleResSupId > 0)
  114. {
  115. entity.AfterSaleSupplierState = 1;
  116. }
  117. entity.Update();
  118. ApiVo apiVo = new ApiVo();
  119. apiVo.orderNumber = entity.ctid;
  120. apiVo.actionName = "afterOver";
  121. designHelper.API_WorkCore(apiVo); //afterOver
  122. }
  123. CeErpSukuraData.createInfo(entity.ctid, 8);
  124. LogHelper.addLog(tid, 0, "审核超时,自动完成售后", 4, 4);
  125. }
  126. }
  127. }
  128. }
  129. }
  130. public static void tradeSaleState(CeErpTradeCell ceErpTradeCell)
  131. {
  132. string sql = "select * from ce_erptraderesponsible where tid='" + ceErpTradeCell.ctid + "' and VerifyState != -1";
  133. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql).Tables[0];
  134. CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(ceErpTradeCell.ctid);
  135. if (ceErpTradeAfterSaleExtend == null)
  136. {
  137. ceErpTradeAfterSaleExtend = new CeErpTradeAfterSaleExtend();
  138. ceErpTradeAfterSaleExtend.tid = ceErpTradeCell.ctid;
  139. ceErpTradeAfterSaleExtend.Create();
  140. }
  141. List<string> list = new List<string>();
  142. foreach (DataRow row in dt.Rows)
  143. {
  144. list.Add(row["VerifyState"].ToString());
  145. }
  146. ceErpTradeAfterSaleExtend.VerifyStates = String.Join(",", list);
  147. ceErpTradeAfterSaleExtend.Update();
  148. }
  149. public static bool tradeResponsibleAll(CeErpTradeCell ceErpTradeCell)
  150. {
  151. //判断是否全部处理完成
  152. string sql = "select * from ce_erptraderesponsible where tid='" + ceErpTradeCell.ctid + "' and VerifyState != -1";
  153. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql).Tables[0];
  154. bool isAll = true;
  155. if (dt.Rows.Count > 0 && dt.Rows.Count == 1)
  156. {
  157. }
  158. else if (dt.Rows.Count > 1)
  159. {
  160. foreach (DataRow row in dt.Rows)
  161. {
  162. if (row["VerifyState"].ToString() != "1")
  163. {
  164. isAll = false;
  165. break;
  166. }
  167. }
  168. }
  169. return isAll;
  170. }
  171. public static string getSupplierNameById(int sid)
  172. {
  173. CeErpSupplier sup = CeErpSupplier.Get(sid);
  174. if (sup != null)
  175. {
  176. return sup.ComName;
  177. }
  178. else
  179. {
  180. return "";
  181. }
  182. }
  183. public static void aftersaleSend(string ctid, string cpCode, string curUseWayBillCode)
  184. {
  185. if (ctid.IndexOf("S_") > -1)
  186. {
  187. try
  188. {
  189. string tradeCtid = ctid.Remove(0, 2);
  190. CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(tradeCtid);
  191. if (ceErpTradeAfterSaleExtend == null)
  192. {
  193. ceErpTradeAfterSaleExtend = new CeErpTradeAfterSaleExtend();
  194. ceErpTradeAfterSaleExtend.tid = tradeCtid;
  195. ceErpTradeAfterSaleExtend.ExpressNo = cpCode + "-" + curUseWayBillCode;
  196. ceErpTradeAfterSaleExtend.Create();
  197. }
  198. else
  199. {
  200. ceErpTradeAfterSaleExtend.ExpressNo = cpCode + "-" + curUseWayBillCode;
  201. ceErpTradeAfterSaleExtend.Update();
  202. }
  203. }
  204. catch (Exception ex)
  205. {
  206. }
  207. }
  208. }
  209. public static string getUserNameById(int sid)
  210. {
  211. CeErpUser sup = CeErpUser.Get(sid);
  212. if (sup != null)
  213. {
  214. return sup.Name;
  215. }
  216. else
  217. {
  218. return "";
  219. }
  220. }
  221. public static int getSupplierIDByName(string name)
  222. {
  223. StringBuilder sql2 = new StringBuilder();
  224. sql2.AppendFormat("select top 1 * from CE_ErpSupplier where ComName='{0}';", name);
  225. DataTable dt2 = DbHelper.DbConn.ExecuteDataset(sql2.ToString()).Tables[0];
  226. if (dt2.Rows.Count > 0)
  227. {
  228. return Convert.ToInt32(dt2.Rows[0]["ID"]);
  229. }
  230. return 0;
  231. }
  232. public static int autoDistributeToSupplier(CeErpTradeCell trade)
  233. {
  234. if (trade.seller_memo.IndexOf("电子稿") != -1) return 0;
  235. int count = 0;
  236. string sc = trade.ProductCount;
  237. count = handleProductCount(sc, true);
  238. //string needSc = System.Text.RegularExpressions.Regex.Replace(sc, @"[^0-9]+", "");
  239. //if (!int.TryParse(needSc, out count))
  240. //{
  241. // XLog.SaveLog(0, "autoDistributeToSupplier:获取数量[" + trade.ProductCount + "]转换出错");
  242. //}
  243. //老客户指派之前供应商
  244. if (trade.IsOldCustomer == 1 && (trade.seller_memo.IndexOf("改稿") != -1 || trade.OtherMemo.IndexOf("老客户") != -1))
  245. {
  246. CeErpTrade ceErpTrade = CeErpTrade.Get(trade.tid);
  247. if (ceErpTrade != null)
  248. {
  249. //用昵称找之前的订单
  250. string name = ceErpTrade.buyer_nick;
  251. StringBuilder CeErpTradeSql = new StringBuilder();
  252. CeErpTradeSql.AppendFormat("select top 1 * from ce_erptrade where buyer_nick='{0}' and tid <> '{1}' order by created desc;", name, trade.tid);
  253. DataSet data = DbHelper.DbConn.ExecuteDataset(CeErpTradeSql.ToString());
  254. DataTable datatable = data.Tables[0];
  255. if (datatable.Rows.Count > 0)
  256. {
  257. CeErpTradeCell oldOrder = CeErpTradeCell.GetByTid(datatable.Rows[0]["tid"].ToString());
  258. if (oldOrder != null)
  259. {
  260. CeErpSupplier ceErpSupplier = CeErpSupplier.Get(oldOrder.SupplierId);
  261. if (ceErpSupplier != null && ceErpSupplier.IsClose == 0)
  262. {
  263. return oldOrder.SupplierId;
  264. }
  265. }
  266. }
  267. }
  268. }
  269. if (trade.Craft.IndexOf("门挂卡") != -1)
  270. {
  271. return 7;// ljl
  272. }
  273. else if (trade.Craft.IndexOf("打印") != -1 || trade.Craft.IndexOf("专版") != -1)
  274. {
  275. return 10; //得力
  276. }
  277. else if (trade.Craft.IndexOf("打码") != -1 || trade.Craft.IndexOf("压点线") != -1)
  278. {
  279. if (count < 300)
  280. {
  281. return 10;
  282. }
  283. else
  284. return 25;
  285. }
  286. if (trade.seller_memo.Contains("金属标") && (trade.ShopId == 26 || trade.ShopId == 45))
  287. {
  288. return 9;
  289. }
  290. //if (trade.IsOldCustomer == 1)
  291. //{
  292. // StringBuilder oldsql = new StringBuilder();
  293. // oldsql.AppendFormat("select top 1 SupplierId from view_erptradecell where buyer_nick={0} and IsAutoDistribute=1 ;",trad, trade.ProductId);
  294. //}
  295. StringBuilder sql = new StringBuilder();
  296. sql.AppendFormat("select count(0) from ce_erpproduct where id={0} and IsAutoDistribute=1 ;", trade.ProductId);
  297. sql.AppendFormat("select top 1 * from ce_erptrade where tid='{0}';", trade.tid);
  298. DataSet oDs = DbHelper.DbConn.ExecuteDataset(sql.ToString());
  299. DataTable pDt = oDs.Tables[0];
  300. DataTable rDt = oDs.Tables[1];
  301. string material = trade.Material;
  302. material = material.Replace("铜板纸", "铜版纸");
  303. string crafts = trade.Craft;
  304. string supplierCrafts = trade.MakeSupplier;
  305. if (supplierCrafts == "")
  306. {
  307. supplierCrafts = "123123";
  308. }
  309. decimal size = getOrderSizeFromString(trade.ProductSize);
  310. if (pDt != null && pDt.Rows.Count > 0)
  311. {
  312. string receiver_state = "";
  313. if (rDt != null || rDt.Rows.Count > 0)
  314. {
  315. receiver_state = rDt.Rows[0]["receiver_state"].ToString();
  316. if (trade.IsOldCustomer == 1)
  317. {
  318. StringBuilder oldsql = new StringBuilder();
  319. 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);
  320. DataTable oldDt = DbHelper.DbConn.ExecuteDataset(oldsql.ToString()).Tables[0];
  321. if (oldDt.Rows.Count > 0)
  322. {
  323. CeErpSupplier ceErpSupplier = CeErpSupplier.Get(Convert.ToInt32(oldDt.Rows[0]["SupplierId"]));
  324. if (ceErpSupplier != null && ceErpSupplier.IsClose == 0)
  325. {
  326. return Convert.ToInt32(oldDt.Rows[0]["SupplierId"]);
  327. }
  328. }
  329. }
  330. }
  331. try
  332. {
  333. //CHARINDEX(','+'{0}'+',',','+ProductID+',')>0
  334. sql = new StringBuilder();
  335. 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);
  336. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  337. if (dt == null || dt.Rows.Count < 1) return 0;
  338. DataView dv = new DataView(dt);
  339. int topOneProductSupplier = Convert.ToInt32(dv[0]["SupplierID"]);
  340. if (receiver_state.Length > 0)
  341. {
  342. 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);
  343. if (dv.Count > 0)
  344. {
  345. return Convert.ToInt32(dv[0]["SupplierID"]);
  346. }
  347. }
  348. if (count > 0)
  349. {
  350. if (size > 0)
  351. {
  352. dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1} and SizeL<={2} and SizeW>={2} ", material, count, size);
  353. if (dv.Count > 0)
  354. {
  355. return Convert.ToInt32(dv[0]["SupplierID"]);
  356. }
  357. }
  358. dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1}", material, count);
  359. if (dv.Count > 0)
  360. {
  361. LogHelper.addLog(trade.ctid, 0, "筛选供应商:产品 材质 工艺 数量 符合!"); return Convert.ToInt32(dv[0]["SupplierID"]);
  362. }
  363. }
  364. if (size > 0)
  365. {
  366. dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1} and SizeL<={2} and SizeW>={2}", material, count, size);
  367. if (dv.Count > 0)
  368. {
  369. return Convert.ToInt32(dv[0]["SupplierID"]);
  370. }
  371. dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and SizeL<={1} and SizeW>={1}", material, size);
  372. if (dv.Count > 0)
  373. {
  374. return Convert.ToInt32(dv[0]["SupplierID"]);
  375. }
  376. }
  377. dv.RowFilter = string.Format("ProductCrafts like '%{0}%'", material);
  378. if (count > 0)
  379. {
  380. dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and MinNum<={1} and MaxNum>={1}", material, count);
  381. if (dv.Count > 0)
  382. {
  383. return Convert.ToInt32(dv[0]["SupplierID"]);
  384. }
  385. dv.RowFilter = string.Format("MinNum<={0} and MaxNum>={0}", count);
  386. if (dv.Count > 0)
  387. {
  388. return Convert.ToInt32(dv[0]["SupplierID"]);
  389. }
  390. }
  391. if (size > 0)
  392. {
  393. dv.RowFilter = string.Format("ProductCrafts like '%{0}%' and SizeL<={1} and SizeW>={1}", material, size);
  394. if (dv.Count > 0)
  395. {
  396. return Convert.ToInt32(dv[0]["SupplierID"]);
  397. }
  398. dv.RowFilter = string.Format(" SizeL<={0} and SizeW>={0}", size);
  399. if (dv.Count > 0)
  400. {
  401. return Convert.ToInt32(dv[0]["SupplierID"]);
  402. }
  403. }
  404. dv.RowFilter = string.Format("Crafts like '%{0}%' or Crafts like '%{1}%'", crafts, supplierCrafts);
  405. if (dv.Count > 0)
  406. {
  407. return Convert.ToInt32(dv[0]["SupplierID"]);
  408. }
  409. //产品 材质符合
  410. dv.RowFilter = string.Format("ProductCrafts like '%{0}%' ", material);
  411. if (dv.Count > 0)
  412. {
  413. return Convert.ToInt32(dv[0]["SupplierID"]);
  414. }
  415. else
  416. {
  417. return topOneProductSupplier;
  418. }
  419. }
  420. catch (Exception ex)
  421. {
  422. XLog.SaveLog(0, "commmonHelper:autoDistributeToSupplier" + ex.Message);
  423. }
  424. }
  425. return 0;
  426. }
  427. public static void setDeliveryUnusualOrder()
  428. {
  429. try
  430. {
  431. StringBuilder sql = new StringBuilder();
  432. 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);");
  433. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  434. List<string> tLst = new List<string>();
  435. if (dt.Rows.Count > 0)
  436. {
  437. foreach (DataRow dr in dt.Rows)
  438. {
  439. double hour = 0;
  440. string fptime = dr["FinishPlaceTime"].ToString();
  441. if (fptime.Length > 0)
  442. {
  443. hour = DateTime.Now.Subtract(Convert.ToDateTime(fptime)).TotalHours;
  444. }
  445. else
  446. continue;
  447. int useHour = 10000;
  448. StringBuilder sqlhour = new StringBuilder();
  449. 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());
  450. DataTable dthour = DbHelper.DbConn.ExecuteDataset(sqlhour.ToString()).Tables[0];
  451. if (dthour.Rows.Count > 0)
  452. {
  453. useHour = Convert.ToInt32(dthour.Rows[0]["fhTime"]);
  454. }
  455. else
  456. {
  457. sqlhour = new StringBuilder();
  458. sqlhour.AppendFormat("select top 1 * from CE_ErpProductHour where ProductID={0} and (CHARINDEX(Craft,'{1}')>0 or Craft='*');", dr["ProductId"].ToString(), dr["Craft"].ToString());
  459. dthour = DbHelper.DbConn.ExecuteDataset(sqlhour.ToString()).Tables[0];
  460. if (dthour.Rows.Count > 0)
  461. {
  462. useHour = Convert.ToInt32(dthour.Rows[0]["fhTime"]);
  463. }
  464. else
  465. {
  466. sqlhour = new StringBuilder();
  467. sqlhour.AppendFormat("select top 1 * from CE_ErpProductHour where ProductID={0};", dr["ProductId"].ToString());
  468. dthour = DbHelper.DbConn.ExecuteDataset(sqlhour.ToString()).Tables[0];
  469. if (dthour.Rows.Count > 0)
  470. {
  471. useHour = Convert.ToInt32(dthour.Rows[0]["fhTime"]);
  472. }
  473. }
  474. }
  475. if (hour > useHour)
  476. {
  477. tLst.Add("'" + dr["ctid"].ToString() + "'");
  478. }
  479. }
  480. }
  481. sql = new StringBuilder();
  482. 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 ;");
  483. dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  484. if (dt.Rows.Count > 0)
  485. {
  486. foreach (DataRow dr in dt.Rows)
  487. {
  488. double hour = 0;
  489. string fptime = dr["FinishPlaceTime"].ToString();
  490. string paytime = dr["pay_time"].ToString();
  491. DateTime dtPaytime = Convert.ToDateTime(paytime);
  492. if (fptime.Length > 0)
  493. {
  494. hour = DateTime.Now.Subtract(Convert.ToDateTime(paytime)).TotalHours;
  495. }
  496. else
  497. continue;
  498. DateTime nowtime = DateTime.Now;
  499. if (hour > 18)
  500. {
  501. tLst.Add("'" + dr["ctid"].ToString() + "'");
  502. }
  503. //if (hour > 72 && Convert.ToInt32(dr["ShopId"])==34)//公司自用
  504. //{
  505. // tLst.Add("'" + dr["ctid"].ToString() + "'");
  506. //}
  507. //else if (nowtime.Hour >= 17)
  508. //{
  509. // if((dtPaytime.Hour >= 14 && dtPaytime.Hour < 17) || (dtPaytime.Hour == 17 && dtPaytime.Minute < 40))
  510. // {
  511. // string sptime = nowtime.Year + "/" + nowtime.Month + "/" + nowtime.Day + " 17:40:00";
  512. // DateTime spDatetime = Convert.ToDateTime(sptime);
  513. // if (spDatetime.Subtract(Convert.ToDateTime(paytime)).TotalMinutes > 0)
  514. // {
  515. // tLst.Add("'" + dr["ctid"].ToString() + "'");
  516. // }
  517. // }
  518. //}
  519. //else if (nowtime.Hour >= 14)
  520. //{
  521. // if(dtPaytime.Hour >= 10 && dtPaytime.Hour < 14)
  522. // {
  523. // string sptime = nowtime.Year + "/" + nowtime.Month + "/" + nowtime.Day + " 14:00:00";
  524. // DateTime spDatetime = Convert.ToDateTime(sptime);
  525. // if (spDatetime.Subtract(Convert.ToDateTime(paytime)).TotalMinutes > 0)
  526. // {
  527. // tLst.Add("'" + dr["ctid"].ToString() + "'");
  528. // }
  529. // }
  530. //}
  531. //else if (nowtime.Hour >= 10)
  532. //{
  533. // if (dtPaytime.Hour >= 18 || dtPaytime.Hour < 10)
  534. // {
  535. // string sptime = nowtime.Year + "/" + nowtime.Month + "/" + nowtime.Day + " 10:00:00";
  536. // DateTime spDatetime = Convert.ToDateTime(sptime);
  537. // if (spDatetime.Subtract(Convert.ToDateTime(paytime)).TotalMinutes > 0)
  538. // {
  539. // tLst.Add("'" + dr["ctid"].ToString() + "'");
  540. // }
  541. // }
  542. //}
  543. }
  544. }
  545. if (tLst.Count > 0)
  546. {
  547. string needctids = string.Join(",", tLst.ToArray());
  548. StringBuilder updsql = new StringBuilder();
  549. //DateTime unusualTime = new DateTime();
  550. updsql.AppendFormat("update ce_erptradecell with(rowlock) set unusualTag=5,UnusualTime=getDate() where ctid in ({0});", needctids);
  551. DbHelper.DbConn.ExecuteNonQuery(updsql.ToString());
  552. }
  553. }
  554. catch (Exception ex)
  555. {
  556. XLog.SaveLog(0, "更新发货异常订单错误:" + ex.Message);
  557. }
  558. splitCell2AllPlaceOrder();
  559. }
  560. public static void splitCell2AllPlaceOrder()
  561. {
  562. //
  563. int spid = 0;
  564. try
  565. {
  566. StringBuilder sql = new StringBuilder();
  567. sql.AppendFormat("select * from CE_ErpTradeCell2 where DATEDIFF(DAY, FinishPlaceTime, GETDATE())<5 and MakeSupplier like '%,%';");
  568. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  569. List<string> idList = new List<string>();
  570. foreach (DataRow dr in dt.Rows)
  571. {
  572. string msup = dr["MakeSupplier"].ToString();
  573. string[] suplist = msup.Split(',');
  574. spid = Convert.ToInt32(dr["ID"]);
  575. foreach (string supItem in suplist)
  576. {
  577. StringBuilder newsql = new StringBuilder();
  578. newsql.AppendFormat(" insert into CE_ErpTradeCell2 ([ctid],[tid],[DesignUserId],[OrderState],[CustomerUserId],[IsUrgency],[IsRefund],[IsReturn],[IsNeedBill]," +
  579. "[SupplierId],[DeliveryAddress],[CallTimes],[NoteTimes],[OvertimeUserId],[UnusualTag],[UnusualCon],[ReturnReason],[MemoOpt],[AfterSaleTime],[AfterSaleUserId]," +
  580. "[AfterSaleReason],[PlaceUserId],[AfterSaleState],[AfterSaleMethod],[AfterSaleMemo],[AfterSaleResponsible],[AfterSalePreTime],[FinishAfterSaleTime],[DeductFee]," +
  581. "[RefundFee],[HandleTime],[IsHaveNewOrder],[ResponsibleUserId],[ptid],[IsPreDelivery],[IsSample],[seller_memo],[ProductId],[WaitDesignTime],[StartDesignTime]," +
  582. "[FinishDesignTime],[FinishPlaceTime],[FinishDeliveryTime],[DesignSelfMemo],[DesignPrice],[Material],[Craft],[ProductSize],[ProductCount],[UnusualTime],[IsAutoDispatch]," +
  583. "[IsVerifyToSupplier],[CustomerMemo],[payment],[OutSid],[AfterSalePayment],[ShopId],[SplitTag],[isAfterSaleOrder],[isDianziOrder],[LastBillCpCode],[LastBillWaybillCode]," +
  584. "[pay_time],[IsSF],[IsXianHuo],[ReturnTime],[OtherMemo],[AfterSaleBackReason],[CheckMemo],[IsOldCustomer],[IsSupplierRefund],[IsReadTag],[AfterSaleMemoType]," +
  585. "[UrgencyTime],[IsOffLineOrder],[PayProofImg],[wechatTag],[MakeSupplier]) select [ctid],[tid],[DesignUserId],[OrderState],[CustomerUserId],[IsUrgency],[IsRefund]," +
  586. "[IsReturn],[IsNeedBill],[SupplierId],[DeliveryAddress],[CallTimes],[NoteTimes],[OvertimeUserId],[UnusualTag],[UnusualCon],[ReturnReason],[MemoOpt],[AfterSaleTime]," +
  587. "[AfterSaleUserId],[AfterSaleReason],[PlaceUserId],[AfterSaleState],[AfterSaleMethod],[AfterSaleMemo],[AfterSaleResponsible],[AfterSalePreTime],[FinishAfterSaleTime]," +
  588. "[DeductFee],[RefundFee],[HandleTime],[IsHaveNewOrder],[ResponsibleUserId],[ptid],[IsPreDelivery],[IsSample],[seller_memo],[ProductId],[WaitDesignTime],[StartDesignTime]," +
  589. "[FinishDesignTime],[FinishPlaceTime],[FinishDeliveryTime],[DesignSelfMemo],[DesignPrice],[Material],[Craft],[ProductSize],[ProductCount],[UnusualTime],[IsAutoDispatch]," +
  590. "[IsVerifyToSupplier],[CustomerMemo],[payment],[OutSid],[AfterSalePayment],[ShopId],[SplitTag],[isAfterSaleOrder],[isDianziOrder],[LastBillCpCode],[LastBillWaybillCode]," +
  591. "[pay_time],[IsSF],[IsXianHuo],[ReturnTime],[OtherMemo],[AfterSaleBackReason],[CheckMemo],[IsOldCustomer],[IsSupplierRefund],[IsReadTag],[AfterSaleMemoType],[UrgencyTime]," +
  592. "[IsOffLineOrder],[PayProofImg],[wechatTag],'{1}' from CE_ErpTradeCell2 where ID={0}", Convert.ToInt32(dr["ID"]), supItem);
  593. DbHelper.DbConn.ExecuteNonQuery(newsql.ToString());
  594. }
  595. idList.Add(dr["ID"].ToString());
  596. }
  597. string idsstr = string.Join(",", idList.ToArray());
  598. sql.AppendFormat("delete from CE_ErpTradeCell2 where ID in ({0})", idsstr);
  599. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  600. }
  601. catch (Exception ex)
  602. {
  603. XLog.SaveLog(0, "拆分ce_erptradecell2表的制作车间出错:" + spid + ex.Message);
  604. }
  605. }
  606. public static void DoAutoDispatch(string conn)
  607. {
  608. if (webConfig.Dispatch_TimeList.Contains(DateTime.Now.ToString("HH:mm")))
  609. {
  610. WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "开始自动派单!"));
  611. SqlParameter[] sqlParameter ={
  612. new SqlParameter("@res", SqlDbType.VarChar, 50)};
  613. sqlParameter[0].Direction = ParameterDirection.Output;
  614. CeErpOpt.ExecuteNonQueryStore("sp_autodispatch", sqlParameter);
  615. string res = sqlParameter[0].Value.ToString();
  616. if (res == "派单完成") WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "结束自动派单!"));
  617. else WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "无法成功派单"));
  618. }
  619. //sp_autodispatch
  620. }
  621. public static void DoAutoDispatch2(string conn)
  622. {
  623. if (webConfig.Dispatch_TimeList.Contains(DateTime.Now.ToString("HH:mm")))
  624. {
  625. WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "开始自动派单!"));
  626. SqlConnection sqlCnt = new SqlConnection(conn);
  627. try
  628. {
  629. sqlCnt.Open();
  630. string sql = "select * from view_ErpTradeCell where OrderState = 2 and ProductId <> 0";
  631. SqlDataAdapter myDataAdapter = new SqlDataAdapter(sql, sqlCnt);
  632. DataSet myDataSet = new DataSet();
  633. myDataAdapter.Fill(myDataSet, "Trade");
  634. DataTable myTable = myDataSet.Tables[0];
  635. List<string> ids = new List<string>();
  636. foreach (DataRow Dr in myTable.Rows)
  637. {
  638. if (Convert.ToInt32(Dr["OrderState"]) > 2 || Convert.ToInt32(Dr["DesignUserId"]) > 0)
  639. {
  640. continue;
  641. }
  642. ids.Add(Dr["ctid"].ToString());
  643. CeErpShop nShop = CeErpShop.GetShopIdByName(Dr["seller_nick"].ToString());
  644. string shopId = "0";
  645. if (nShop != null)
  646. {
  647. shopId = nShop.ID.ToString();
  648. }
  649. string proId = Dr["ProductId"].ToString();
  650. string Amount = Dr["payment"].ToString();
  651. string ctid = Dr["ctid"].ToString();
  652. string ctids = "";
  653. if (ctid.IndexOf("C") != -1)
  654. {
  655. ctids = getSameTradeByTid(Dr["tid"].ToString());
  656. if (ctids.Length <= 0)
  657. {
  658. continue;
  659. }
  660. }
  661. else
  662. {
  663. ctids = "'" + ctid + "'";
  664. }
  665. sql = "select top 1 * from view_ErpUser " +
  666. "where PostCode = 'Designer' and " + //设计师
  667. "OnDuty = 1 and " + //上班状态
  668. "DayOrderReceive < DayOrderLimit and " + //当日接单数小于可接单数量上限
  669. "OrderAmountLimit >= " + Amount + " and " + //额度上限大于付款金额
  670. "CHARINDEX('," + shopId + ",',','+OrgShop+ ',')>0 and " + //部门关联店铺
  671. "CHARINDEX('," + shopId + ",',','+pemShop+ ',')>0 and " + //个人关联店铺
  672. "CHARINDEX('," + proId + ",',','+pemDesign+ ',')>0 " + //个人关联产品
  673. "order by DayOrderPer, PostLevel desc, Id";
  674. SqlDataAdapter userAdapter = new SqlDataAdapter(sql, sqlCnt);
  675. DataSet userSet = new DataSet();
  676. userAdapter.Fill(userSet, "user");
  677. DataTable userTable = userSet.Tables[0];
  678. //有满足条件的设计师
  679. if (userTable.Rows.Count > 0)
  680. {
  681. SqlCommand updCMD = sqlCnt.CreateCommand();
  682. try
  683. {
  684. updCMD.Transaction = sqlCnt.BeginTransaction();//开启事务
  685. //派单
  686. updCMD.CommandText = "update CE_ErpTradeCell set OrderState = 3, IsAutoDispatch = 1, WaitDesignTime = getdate(), DesignUserId = " + userTable.Rows[0]["ID"].ToString() + " where ctid in (" + ctids + ")";
  687. updCMD.ExecuteNonQuery();
  688. //更新日数量上限和可接单比例
  689. 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();
  690. updCMD.ExecuteNonQuery();
  691. //写订单日志
  692. updCMD.CommandText = "insert into CE_ErpTradeLog(tid,OrderState,UserId,OperateTime,Con) select ctid,OrderState,0,getdate(),'自动派单' from ce_erptradecell where ctid in(" + ctids + ")";
  693. updCMD.ExecuteNonQuery();
  694. updCMD.Transaction.Commit();//提交事务(真正的从数据库中修改了数据)
  695. }
  696. catch (Exception ee)
  697. {
  698. updCMD.Transaction.Rollback();
  699. }
  700. }
  701. }
  702. string sql1 = "select ctid from view_ErpTradeCell where orderstate=3 and DesignUserId = 2125 and ctid in ('" + string.Join(",", ids) + "');";
  703. /* string sql1 = "select ctid from view_ErpTradeCell where orderstate=3 and DesignUserId = 2125 ";*/
  704. DataTable dt1 = SqlHelper.ExecuteDataSet(sql1).Tables[0];
  705. foreach (DataRow dr1 in dt1.Rows)
  706. {
  707. apiDesign.API_GetPrintData_CreateOrder(CeErpTradeCell.GetByCtid(dr1["ctid"].ToString()));
  708. WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "开始派单" + dr1["ctid"].ToString() + "至设计系统!"));
  709. Thread.Sleep(1000); // 添加五秒延迟
  710. }
  711. WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), "结束自动派单!"));
  712. }
  713. catch (Exception ed)
  714. {
  715. WriteLog(string.Format("派单 | {0} | {1}", DateTime.Now.ToString(), ed.Message));
  716. }
  717. finally
  718. {
  719. if (sqlCnt.State == ConnectionState.Open)
  720. sqlCnt.Close();
  721. }
  722. }
  723. }
  724. public static string getSameTradeByTid(string tid)
  725. {
  726. StringBuilder sql = new StringBuilder();
  727. sql.AppendFormat("select ctid from view_ErpTradeCell where tid='{0}';", tid);
  728. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  729. if (dt.Rows.Count > 0)
  730. {
  731. string ctids = "";
  732. foreach (DataRow dr in dt.Rows)
  733. {
  734. ctids += "'";
  735. ctids += dr["ctid"].ToString();
  736. ctids += "'";
  737. ctids += ",";
  738. }
  739. ctids = ctids.Substring(0, ctids.Length - 1);
  740. return ctids;
  741. }
  742. else
  743. return "";
  744. }
  745. public static void WriteLog(string LogText)
  746. {
  747. string sDir = System.IO.Path.GetTempPath() + @"Log\" + DateTime.Now.ToString("yyyyMM");
  748. if (!Directory.Exists(sDir))
  749. Directory.CreateDirectory(sDir);
  750. using (StreamWriter sw = new StreamWriter(sDir + @"\Log_" + DateTime.Now.ToString("dd") + ".txt", true, Encoding.UTF8))
  751. {
  752. sw.Write(LogText + System.Environment.NewLine);
  753. }
  754. }
  755. public static void UpdateRelationOrder(string ctid)
  756. {
  757. if (ctid.Length <= 0) return;
  758. CeErpTradeCell.UpdateRelationOrder(ctid);
  759. //try
  760. //{
  761. // //父订单变化,更新补差价订单
  762. // //List<string> lw = new List<string>();
  763. // //lw.Add(string.Format("OrderState={0}", father.OrderState));
  764. // //lw.Add(string.Format("CustomerUserId={0}", father.CustomerUserId));
  765. // //lw.Add(string.Format("DesignUserId={0}", father.DesignUserId));
  766. // //lw.Add(string.Format("AfterSaleState={0}", father.AfterSaleState));
  767. // //lw.Add(string.Format("IsNeedBill={0}", father.IsNeedBill));
  768. // ////lw.Add(string.Format("IsUrgency={0}", father.IsUrgency == true ? 1 : 0));
  769. // //lw.Add(string.Format("IsRefund={0}", father.IsRefund));
  770. // //lw.Add(string.Format("WaitDesignTime='{0}'", father.WaitDesignTime.ToString()));
  771. // //lw.Add(string.Format("StartDesignTime='{0}'", father.StartDesignTime.ToString()));
  772. // //lw.Add(string.Format("FinishDesignTime='{0}'", father.FinishDesignTime.ToString()));
  773. // //lw.Add(string.Format("FinishPlaceTime='{0}'", father.FinishPlaceTime.ToString()));
  774. // //lw.Add(string.Format("FinishDeliveryTime='{0}'", father.FinishDeliveryTime.ToString()));
  775. // ////lw.Add(string.Format("IsReturn={0}", father.IsReturn));
  776. // //string sqlstr = string.Join(" , ", lw.ToArray());
  777. // //StringBuilder sql = new StringBuilder();
  778. // //sql.AppendFormat("update ce_erptradecell set " + sqlstr + " where ptid='{0}'", father.tid);
  779. // ////sql.AppendFormat("update view_erptrade set status={1} where ptid={0}", father.ctid, father.status);
  780. // //DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  781. // //StringBuilder sql = new StringBuilder();
  782. // //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,");
  783. // //sql.Append("AfterSaleState=b.AfterSaleState,IsNeedBill=b.IsNeedBill,IsRefund=b.IsRefund from ce_erptradecell,ce_erptradecell as b ");
  784. // //sql.AppendFormat("where ce_erptradecell.ptid =b.tid and ce_erptradecell.ptid='{0}'", tid);//='1827905618077154637'
  785. // //DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  786. // //SqlParameter[] sqlParameter ={
  787. // // new SqlParameter("@mainctids", SqlDbType.VarChar,100),
  788. // // new SqlParameter("@res", SqlDbType.VarChar, 4000)
  789. // //};
  790. // //sqlParameter[0].Value = ctid;
  791. // //sqlParameter[1].Direction = ParameterDirection.Output;
  792. // //DbHelper.DbConn.ExecuteNonQuery(CommandType.StoredProcedure, "sp_set_bucha", sqlParameter);
  793. //}
  794. //catch (Exception ex)
  795. //{
  796. // XLog.SaveLog(0, "commmonHelper:UpdateRelationOrder" + ex.Message);
  797. //}
  798. }
  799. public static void UpdateSameOrderToDesigner(CeErpTradeCell entity, int designId)
  800. {
  801. CeErpTrade trade = CeErpTrade.Get(entity.tid);
  802. if (trade != null)
  803. {
  804. StringBuilder sql = new StringBuilder();
  805. if (trade.type == "PDD" || trade.type == "JD")
  806. {
  807. 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);
  808. }
  809. else
  810. 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);
  811. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  812. }
  813. }
  814. public static void SetSameSupplierToOrder(CeErpTradeCell entity, int supId)
  815. {
  816. StringBuilder sql = new StringBuilder();
  817. sql.AppendFormat("update CE_ErpTradeCell with(rowlock) set SupplierId={0} where orderstate=5 and tid='{1}';", supId, entity.tid);
  818. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  819. }
  820. public static string MidStrEx(string sourse, string startstr, string endstr)
  821. {
  822. string result = string.Empty;
  823. int startindex, endindex;
  824. try
  825. {
  826. startindex = sourse.IndexOf(startstr);
  827. if (startindex == -1)
  828. return result;
  829. string tmpstr = sourse.Substring(startindex + startstr.Length);
  830. endindex = tmpstr.IndexOf(endstr);
  831. if (endindex == -1)
  832. return result;
  833. result = tmpstr.Remove(endindex);
  834. }
  835. catch (Exception ex)
  836. {
  837. Console.WriteLine("MidStrEx Err:" + ex.Message);
  838. }
  839. return result;
  840. }
  841. public static string KeepChinese(string str)
  842. {
  843. string chineseString = "";
  844. for (int i = 0; i < str.Length; i++)
  845. {
  846. if (str[i] >= 0x4E00 && str[i] <= 0x9FA5)
  847. {
  848. chineseString += str[i];
  849. }
  850. }
  851. return chineseString;
  852. }
  853. public static string GetD3ComCode(string code, string name)
  854. {
  855. string useStr = code;
  856. if (code.Length == 0)
  857. {
  858. useStr = name;
  859. }
  860. string sql = "select * from CE_ErpMailInfo";
  861. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  862. foreach (DataRow dr in dt.Rows)
  863. {
  864. if (dr["cpCode"].ToString().IndexOf(useStr) != -1)
  865. {
  866. return dr["cpCode"].ToString();
  867. }
  868. }
  869. //声明存储结果的字符串
  870. //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," +
  871. // "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," +
  872. // "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," +
  873. // "YUNDA-CAINIAO-JA,SF-CAINIAO-GDGZ,YUNDA-CAINIAO-GDFS,";
  874. //string[] codeList = codeStr.Split(',');
  875. ////将传入参数中的中文字符添加到结果字符串中
  876. //for (int i = 0; i < codeList.Length; i++)
  877. //{
  878. // if (codeList[i].IndexOf(useStr) != -1)
  879. // {
  880. // return codeList[i];
  881. // }
  882. //}
  883. //返回保留中文的处理结果
  884. return "";
  885. }
  886. public static int getRefundTagByState(string st, int isPart = 0)
  887. {
  888. int state = 0;
  889. if (st == "NO_REFUND" || st == "SELLER_REFUSE_BUYER" || st == "CLOSED" || st == "FAILED")
  890. {
  891. state = 0;
  892. }
  893. else if (st == "REFUNDING")
  894. {
  895. state = 1;
  896. }
  897. else if (st == "REFUNDED" || st == "SUCCESS")
  898. {
  899. state = 2;
  900. }
  901. else if (st == "PART_REFUNDED" || isPart == 1)
  902. {
  903. state = 3;
  904. }
  905. else if (st == "WAIT_BUYER_RETURN_GOODS")
  906. {
  907. state = 4;
  908. }
  909. else if (st == "REJECT_REFUNDED")
  910. {
  911. state = 5;
  912. }
  913. else if (st == "WAIT_SELLER_CONFIRM_GOODS")
  914. {
  915. state = 6;
  916. }
  917. return state;
  918. }
  919. public static string getRefundStringByState(string st)
  920. {
  921. string stateStr = "";
  922. if (st == "NOT_SHIPPED")
  923. {
  924. stateStr = "待发货";
  925. }
  926. else if (st == "PART_SHIPPED")
  927. {
  928. stateStr = "部分发货";
  929. }
  930. else if (st == "SHIPPED")
  931. {
  932. stateStr = "已发货";
  933. }
  934. else if (st == "COMPLETE")
  935. {
  936. stateStr = "已完成";
  937. }
  938. else if (st == "CLOSE")
  939. {
  940. stateStr = "已关闭";
  941. }
  942. else if (st == "REFUNDED")
  943. {
  944. stateStr = "退款成功";
  945. }
  946. else if (st == "PART_REFUNDED")
  947. {
  948. stateStr = "部分退款";
  949. }
  950. else if (st == "WAIT_BUYER_RETURN_GOODS")
  951. {
  952. stateStr = "等待买家退货";
  953. }
  954. else if (st == "REJECT_REFUNDED")
  955. {
  956. stateStr = "拒绝退货";
  957. }
  958. else if (st == "WAIT_SELLER_CONFIRM_GOODS")
  959. {
  960. stateStr = "等待卖家确认收货";
  961. }
  962. else if (st == "SELLER_REFUSE_BUYER")
  963. {
  964. stateStr = "卖家拒绝退款";
  965. }
  966. else if (st == "SUCCESS")
  967. {
  968. stateStr = "退款成功";
  969. }
  970. else if (st == "CLOSED")
  971. {
  972. stateStr = "退款关闭";
  973. }
  974. else if (st == "FAILED")
  975. {
  976. stateStr = "退款失败";
  977. }
  978. return stateStr;
  979. }
  980. public static void UpdateRefundOrderState(string tid, int rstate)
  981. {
  982. StringBuilder sql = new StringBuilder();
  983. sql.AppendFormat("insert into S_BuChaJia(ctid,addtime,dotype,refundState) values('{0}',getdate(),'refund',{1}); ", tid, rstate);
  984. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  985. }
  986. public static void checkBillResult(int billId)
  987. {
  988. CeErpBill entiy = CeErpBill.Get(billId);
  989. if (entiy != null)
  990. {
  991. try
  992. {
  993. string[] billOrderList = entiy.billOrderId.Split(',');
  994. int iTag = 0;
  995. entiy.fplsh = "";
  996. entiy.fpdm = "";
  997. entiy.fphm = "";
  998. foreach (string billOrderId in billOrderList)
  999. {
  1000. iTag++;
  1001. string res = taobaoHelper.get_invoicing(billId.ToString(), billOrderId);
  1002. int fcount = StrCount(res, "c_orderno");
  1003. if (res.IndexOf("success") != -1 && res.IndexOf("开票中") != -1)
  1004. {
  1005. StringBuilder sql = new StringBuilder();
  1006. sql.AppendFormat("insert into S_BuChaJia(ctid,addtime,dotype) values('{0}',getdate(),'billres'); ", billId.ToString());
  1007. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  1008. return;
  1009. }
  1010. else if (res.IndexOf("success") != -1 && (res.IndexOf("开票成功") != -1 || res.IndexOf("开票完成") != -1))
  1011. {
  1012. //res = GetUTF8String2(Encoding.UTF8.GetBytes(res));
  1013. try
  1014. {
  1015. Invoicing_get_response_Obj iObj = null;
  1016. iObj = JsonConvert.DeserializeObject<Invoicing_get_response_Obj>(res);
  1017. if (iObj != null)
  1018. {
  1019. if (fcount > 1)
  1020. {
  1021. entiy.state = 4; //红冲作废
  1022. }
  1023. else
  1024. entiy.state = 2; //开票完成
  1025. entiy.fplsh += iObj.list[0].c_fpqqlsh;
  1026. entiy.fpdm += iObj.list[0].c_fpdm;
  1027. entiy.fphm += iObj.list[0].c_fphm;
  1028. if (iTag < billOrderList.Length)
  1029. {
  1030. entiy.fplsh += ",";
  1031. entiy.fpdm += ",";
  1032. entiy.fphm += ",";
  1033. }
  1034. entiy.Update();
  1035. }
  1036. if (fcount <= 1)
  1037. {
  1038. StringBuilder sql = new StringBuilder();
  1039. sql.AppendFormat("update CE_ErpTradeCell WITH(ROWLOCK) set IsNeedBill=2 where tid='{0}';", entiy.tid);
  1040. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  1041. }
  1042. }
  1043. catch (Exception ex)
  1044. {
  1045. StringBuilder sql = new StringBuilder();
  1046. sql.AppendFormat("insert into S_BuChaJia(ctid,addtime,dotype) values('{0}',getdate(),'billres'); ", billId.ToString());
  1047. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  1048. XLog.SaveLog(0, "查看开票结果,更新状态失败" + ex.Message + res);
  1049. }
  1050. return;
  1051. }
  1052. else
  1053. {
  1054. string redError = "";
  1055. if (fcount > 1)
  1056. {
  1057. redError = "红冲失败";
  1058. }
  1059. int eidx = res.IndexOf("c_resultmsg");
  1060. string emsg = KeepChinese(res.Substring(eidx, res.Length - eidx));
  1061. //开票失败
  1062. entiy.state = 5;
  1063. entiy.failerror = entiy.failerror + (iTag + "&" + redError + emsg + "|");
  1064. entiy.Update();
  1065. return;
  1066. }
  1067. }
  1068. }
  1069. catch (Exception ex)
  1070. {
  1071. XLog.SaveLog(0, "buchajia查看开票结果错误," + ex.Message);
  1072. }
  1073. }
  1074. }
  1075. public static void insertToBuchaForDelivery(string Maintid, string posCode, string comCode, string outSid)
  1076. {
  1077. if (Maintid.Length <= 0) return;
  1078. try
  1079. {
  1080. StringBuilder sql = new StringBuilder();
  1081. 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);
  1082. DbHelper.DbConn.ExecuteNonQuery(sql.ToString());
  1083. //}
  1084. }
  1085. catch (Exception ex)
  1086. {
  1087. XLog.SaveLog(0, "commhelper,insertToBuchaForDelivery,insert" + ex.Message);
  1088. //}
  1089. }
  1090. }
  1091. public static void setBuChaDelivery(string tid, string posCode, string comCode, string outSid)
  1092. {
  1093. outSid = outSid.Trim();
  1094. posCode = posCode.Trim();
  1095. comCode = comCode.Trim();
  1096. CeErpTrade mainEn = CeErpTrade.Get(tid);
  1097. if (mainEn != null)
  1098. {
  1099. if (mainEn.status == "SHIPPED" || mainEn.status == "PART_SHIPPED" || mainEn.status == "COMPLETE" || mainEn.status == "CLOSE") //已发货的不处理直接返回面单
  1100. {
  1101. return;
  1102. //不处理
  1103. }
  1104. string apires = apiHelper.API_LogisticsDummySend(tid, posCode);
  1105. if (apires.IndexOf("发货成功") == -1)
  1106. {
  1107. XLog.SaveLog(0, "补差价单虚拟发货失败," + tid + "," + posCode + "," + apires);
  1108. string wures = apiHelper.API_LogisticsOnlineSend(tid, posCode, comCode, outSid);
  1109. if (wures.IndexOf("发货成功") == -1)
  1110. {
  1111. XLog.SaveLog(0, "补差价单实物发货失败," + tid + "," + posCode + "," + wures);
  1112. return;
  1113. }
  1114. else
  1115. {
  1116. LogHelper.addLog(tid, 0, "补差价发货-" + comCode + "-" + outSid);
  1117. }
  1118. return;
  1119. }
  1120. else
  1121. {
  1122. LogHelper.addLog(tid, 0, "补差价发货-" + comCode + "-" + outSid);
  1123. }
  1124. }
  1125. }
  1126. public static int StrCount(string str, string constr)
  1127. {
  1128. return System.Text.RegularExpressions.Regex.Matches(str, constr).Count;
  1129. }
  1130. public static void saveErpDesignerGather()
  1131. {
  1132. string date1 = DateTime.Now.AddDays(-1).ToString();
  1133. string date2 = DateTime.Now.AddDays(-1).ToString();
  1134. //string date1 = DateTime.Now.ToString();
  1135. //string date2 = DateTime.Now.ToString();
  1136. StringBuilder sql = new StringBuilder();
  1137. 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);
  1138. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  1139. foreach (DataRow dr in dt.Rows)
  1140. {
  1141. SqlParameter[] sqlParameter ={
  1142. new SqlParameter("@sDisDate", SqlDbType.DateTime, 20),
  1143. new SqlParameter("@eDisDate", SqlDbType.DateTime, 20),
  1144. new SqlParameter("@designid", SqlDbType.Int, 4)
  1145. };
  1146. sqlParameter[0].Value = date1;
  1147. sqlParameter[1].Value = date2;
  1148. sqlParameter[2].Value = Convert.ToInt32(dr["ID"]);
  1149. //CeErpTradeCell.ExecuteNonQueryStore("sp_getdesigngather", sqlParameter);
  1150. DbHelper.DbConn.ExecuteNonQuery(CommandType.StoredProcedure, "sp_savedesigngather", sqlParameter);
  1151. }
  1152. new_Designer_Rate(date1);
  1153. }
  1154. public static void new_Designer_Rate(String date1)
  1155. {
  1156. /*String date1 = DateTime.Now.ToString();*/
  1157. /* if (date1 ==null) {
  1158. date1 = DateTime.Now.ToString();
  1159. }*/
  1160. DateTime currentDate = DateTime.Parse(date1);
  1161. // 获取指定日期的开始时间
  1162. DateTime startTime = new DateTime(currentDate.Year, currentDate.Month, currentDate.Day, 0, 0, 0);//日
  1163. // 获取指定日期的结束时间(即下一天的开始时间,减去1秒)
  1164. DateTime endTime = new DateTime(currentDate.Year, currentDate.Month, currentDate.Day, 23, 59, 59).AddSeconds(-1);//日
  1165. DateTime now = DateTime.Now; // 获取当前日期和时间
  1166. DateTime dateOnly = now.Date; // 限制日期为年月日
  1167. StringBuilder sql = new StringBuilder();
  1168. CeErpDesignerFinishRateNew.Del(startTime.ToString("yyyy-MM-dd HH:mm:ss"));
  1169. 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"));
  1170. DataTable dt = DbHelper.DbConn.ExecuteDataset(sql.ToString()).Tables[0];
  1171. foreach (DataRow dr in dt.Rows)
  1172. {
  1173. CeErpDesignerFinishRateNew ceErpDesignerFinishRateNew = new CeErpDesignerFinishRateNew();
  1174. if (!Convert.IsDBNull(dr["DesignUserId"]))
  1175. {
  1176. ceErpDesignerFinishRateNew.did = Convert.ToInt32(dr["DesignUserId"] == null ? 0 : dr["DesignUserId"]);
  1177. }
  1178. if (!Convert.IsDBNull(dr["OrgID"]))
  1179. {
  1180. ceErpDesignerFinishRateNew.orgid = Convert.ToInt32(dr["OrgID"] == null ? 0 : dr["OrgID"]);
  1181. }
  1182. if (!Convert.IsDBNull(dr["DesignerName"]))
  1183. {
  1184. ceErpDesignerFinishRateNew.name = dr["DesignerName"].ToString() == null ? "" : dr["DesignerName"].ToString();
  1185. }
  1186. if (!Convert.IsDBNull(dr["Amount"]))
  1187. {
  1188. ceErpDesignerFinishRateNew.Amount = dr["Amount"].ToString() == null ? "" : dr["Amount"].ToString();
  1189. }
  1190. if (!Convert.IsDBNull(dr["AllOrder"]))
  1191. {
  1192. ceErpDesignerFinishRateNew.AllOrder = Convert.ToInt32(dr["AllOrder"] == null ? 0 : dr["AllOrder"]);
  1193. }
  1194. if (!Convert.IsDBNull(dr["FinalizationRate"]))
  1195. {
  1196. ceErpDesignerFinishRateNew.FinalizationRate = Convert.ToInt32(dr["FinalizationRate"] == null ? 0 : dr["FinalizationRate"]);
  1197. }
  1198. if (!Convert.IsDBNull(dr["afterSaleSum"]))
  1199. {
  1200. ceErpDesignerFinishRateNew.afterSaleSum = Convert.ToInt32(dr["afterSaleSum"] == null ? 0 : dr["afterSaleSum"]);
  1201. }
  1202. if (!Convert.IsDBNull(dr["resolutionSum"]))
  1203. {
  1204. ceErpDesignerFinishRateNew.resolutionSum = Convert.ToInt32(dr["resolutionSum"] == null ? 0 : dr["resolutionSum"]);
  1205. }
  1206. if (!Convert.IsDBNull(dr["splitSum"]))
  1207. {
  1208. ceErpDesignerFinishRateNew.splitSum = Convert.ToInt32(dr["splitSum"] == null ? 0 : dr["splitSum"]);
  1209. }
  1210. if (!Convert.IsDBNull(dr["splitSum2"]))
  1211. {
  1212. ceErpDesignerFinishRateNew.csplitum = Convert.ToInt32(dr["splitSum2"] == null ? 0 : dr["splitSum2"]);
  1213. }
  1214. if (!Convert.IsDBNull(dr["FinalizationRate2"]))
  1215. {
  1216. ceErpDesignerFinishRateNew.FinalizationRate2 = Convert.ToInt32(dr["FinalizationRate2"] == null ? 0 : dr["FinalizationRate2"]);
  1217. }
  1218. if (!Convert.IsDBNull(dr["AllOrder"]) && !Convert.IsDBNull(dr["FinalizationRate"]) && !Convert.IsDBNull(dr["splitSum2"]) && !Convert.IsDBNull(dr["splitSum"]))
  1219. {
  1220. try
  1221. {
  1222. int num1 = Convert.ToInt32(dr["FinalizationRate"]) + Convert.ToInt32(dr["splitSum"]);
  1223. int num2 = Convert.ToInt32(dr["AllOrder"]) + Convert.ToInt32(dr["splitSum2"]);
  1224. if (num2 != 0)
  1225. {
  1226. double result = (double)num1 / num2;
  1227. if (double.IsNaN(result))
  1228. {
  1229. result = 0;
  1230. }
  1231. double roundedResult = Math.Round(result, 4);
  1232. ceErpDesignerFinishRateNew.onFinalizationRate = roundedResult.ToString();
  1233. int num3 = Convert.ToInt32(dr["refund"]);
  1234. double result2 = (double)num3 / num2;
  1235. if (double.IsNaN(result2))
  1236. {
  1237. result2 = 0;
  1238. }
  1239. double roundedResult2 = Math.Round(result2, 4);
  1240. ceErpDesignerFinishRateNew.onRefund = roundedResult2.ToString();
  1241. }
  1242. else
  1243. {
  1244. ceErpDesignerFinishRateNew.onFinalizationRate = "0.0000";
  1245. ceErpDesignerFinishRateNew.onRefund = "0.0000";
  1246. }
  1247. }
  1248. catch (Exception ex)
  1249. {
  1250. ceErpDesignerFinishRateNew.onFinalizationRate = "0";
  1251. }
  1252. }
  1253. ceErpDesignerFinishRateNew.ctime = startTime;
  1254. ceErpDesignerFinishRateNew.Createtime = now;
  1255. if (!Convert.IsDBNull(dr["refund"]))
  1256. {
  1257. ceErpDesignerFinishRateNew.refund = Convert.ToInt32(dr["refund"] == null ? 0 : dr["refund"]);
  1258. }
  1259. ceErpDesignerFinishRateNew.Create();
  1260. }
  1261. }
  1262. public static DateTime FirstDayOfMonth(DateTime datetime)
  1263. {
  1264. return datetime.AddDays(1 - datetime.Day);
  1265. }
  1266. public static DateTime LastDayOfMonth(DateTime datetime)
  1267. {
  1268. return datetime.AddDays(1 - datetime.Day).AddMonths(1).AddDays(-1);
  1269. }
  1270. public static DateTime GetDateTimeWeekFirstDaySun(DateTime dateTime)
  1271. {
  1272. DateTime firstWeekDay = DateTime.Now;
  1273. try
  1274. {
  1275. //得到是星期几,然后从当前日期减去相应天数
  1276. int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
  1277. int daydiff = (-1) * weeknow;
  1278. firstWeekDay = dateTime.AddDays(daydiff);
  1279. }
  1280. catch { }
  1281. return firstWeekDay;
  1282. }
  1283. public static DateTime GetDateTimeWeekFirstDayMon(DateTime dateTime)
  1284. {
  1285. DateTime firstWeekDay = DateTime.Now;
  1286. try
  1287. {
  1288. int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
  1289. //星期一为第一天,weeknow等于0时,要向前推6天。
  1290. weeknow = (weeknow == 0 ? (7 - 1) : (weeknow - 1));
  1291. int daydiff = (-1) * weeknow;
  1292. firstWeekDay = dateTime.AddDays(daydiff);
  1293. }
  1294. catch { }
  1295. return firstWeekDay;
  1296. }
  1297. public static DateTime GetDateTimeWeekLastDaySat(DateTime dateTime)
  1298. {
  1299. DateTime lastWeekDay = DateTime.Now;
  1300. try
  1301. {
  1302. int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
  1303. int daydiff = (7 - weeknow) - 1;
  1304. lastWeekDay = dateTime.AddDays(daydiff);
  1305. }
  1306. catch { }
  1307. return lastWeekDay;
  1308. }
  1309. public static DateTime GetDateTimeWeekLastDaySun(DateTime dateTime)
  1310. {
  1311. DateTime lastWeekDay = DateTime.Now;
  1312. try
  1313. {
  1314. int weeknow = Convert.ToInt32(dateTime.DayOfWeek);
  1315. weeknow = (weeknow == 0 ? 7 : weeknow);
  1316. int daydiff = (7 - weeknow);
  1317. lastWeekDay = dateTime.AddDays(daydiff);
  1318. }
  1319. catch { }
  1320. return lastWeekDay;
  1321. }
  1322. public static void updateOrderStateForShipped(string ctid, int ost, string stateType)
  1323. {
  1324. try
  1325. {
  1326. CeErpTradeCell entity = CeErpTradeCell.GetByCtid(ctid);
  1327. if (entity != null)
  1328. {
  1329. if (entity.isAfterSaleOrder == 1) return;
  1330. if (stateType == "updatestate_complete")
  1331. {
  1332. if (entity.IsPreDelivery == 1) return;
  1333. entity.OrderState = 8;
  1334. entity.Update();
  1335. if (entity.ProductId == 9 || entity.ProductId == 17 || entity.ProductId == 20 || entity.ProductId == 29 || entity.ProductId == 30)//卡片、手提袋价格自动核算
  1336. {
  1337. CeErpDesignerBill.updateDesignerBill(entity.ctid, entity.ProductId);
  1338. LogHelper.addDesignerBillLog(entity.ctid, 0, "自动核算设计费", "系统", 1);
  1339. }
  1340. else if (entity.ProductId == 22)
  1341. {
  1342. CeErpDesignerBill.updateBill(entity.ctid, entity.ProductId, entity.seller_memo);
  1343. LogHelper.addDesignerBillLog(entity.ctid, 0, "自动核算设计费", "系统", 1);
  1344. }
  1345. }
  1346. else if (stateType == "updatestate_shipped")
  1347. {
  1348. if (entity.IsPreDelivery == 1) return;
  1349. entity.OrderState = 7;
  1350. entity.Update();
  1351. }
  1352. else if (stateType == "updatestate_close")
  1353. {
  1354. entity.OrderState = 9;
  1355. entity.Update();
  1356. }
  1357. }
  1358. else
  1359. {
  1360. StringBuilder sql = new StringBuilder();
  1361. sql.AppendFormat("insert into S_BuChaJia(ctid,orderState,dotype,addtime) values('{0}',{1},'{2}',getdate());", ctid, ost, stateType);
  1362. CeErpTradeCell.ExecuteNonQuery(sql.ToString());
  1363. }
  1364. }
  1365. catch (Exception ex)
  1366. {
  1367. XLog.SaveLog(0, "updateOrderStateForShipped函数出错," + ctid + "," + ex.Message);
  1368. StringBuilder sql = new StringBuilder();
  1369. sql.AppendFormat("insert into S_BuChaJia(ctid,orderState,dotype,addtime) values('{0}',{1},'{2}',getdate());", ctid, ost, stateType);
  1370. CeErpTradeCell.ExecuteNonQuery(sql.ToString());
  1371. }
  1372. }
  1373. public static string changeCountFromChiness(string countStr)
  1374. {
  1375. try
  1376. {
  1377. return handleProductCount(countStr).ToString();
  1378. }
  1379. catch (Exception ex)
  1380. {
  1381. return countStr;
  1382. }
  1383. }
  1384. public static int getIntCountFromString(string fstr)
  1385. {
  1386. try
  1387. {
  1388. string str = fstr;
  1389. string r = @"[0-9]+";
  1390. Regex reg = new Regex(r, RegexOptions.IgnoreCase | RegexOptions.Singleline, TimeSpan.FromSeconds(2));//2秒后超时
  1391. MatchCollection mc = reg.Matches(str);//设定要查找的字符串
  1392. int count = 0;
  1393. foreach (Match m in mc)
  1394. {
  1395. string s = m.Groups[0].Value;
  1396. int cc = Convert.ToInt32(s);
  1397. if (count == 0)
  1398. {
  1399. count = cc;
  1400. }
  1401. else
  1402. {
  1403. count = count * cc;
  1404. }
  1405. }
  1406. return count;
  1407. }
  1408. catch (Exception ex)
  1409. {
  1410. return 0;
  1411. }
  1412. }
  1413. public static int getPlaceProductCount(string count_str)
  1414. {
  1415. count_str = count_str.Trim();
  1416. string[] count_list = count_str.Split(',');
  1417. int count = 0;
  1418. foreach (string item in count_list)
  1419. {
  1420. int tem_count = getSingleIntCountFromString(item);
  1421. if (tem_count > count)
  1422. {
  1423. count = tem_count;
  1424. }
  1425. }
  1426. return count;
  1427. }
  1428. public static int getSingleIntCountFromString(string fstr)
  1429. {
  1430. try
  1431. {
  1432. string str = fstr;
  1433. string r = @"[0-9]+";
  1434. Regex reg = new Regex(r, RegexOptions.IgnoreCase | RegexOptions.Singleline, TimeSpan.FromSeconds(2));//2秒后超时
  1435. MatchCollection mc = reg.Matches(str);//设定要查找的字符串
  1436. if (mc.Count <= 0) return 0;
  1437. if (mc.Count == 1)
  1438. {
  1439. string s = mc[0].Groups[0].Value;
  1440. int cc = Convert.ToInt32(s);
  1441. return cc;
  1442. }
  1443. else if (mc.Count > 1)
  1444. {
  1445. string s = mc[1].Groups[0].Value;
  1446. int cc = Convert.ToInt32(s);
  1447. return cc;
  1448. }
  1449. //foreach (Match m in mc)
  1450. //{
  1451. // string s = m.Groups[0].Value;
  1452. // int cc = Convert.ToInt32(s);
  1453. // if (count == 0)
  1454. // {
  1455. // count = cc;
  1456. // }
  1457. // else
  1458. // {
  1459. // count = count * cc;
  1460. // }
  1461. //}
  1462. return 0;
  1463. }
  1464. catch (Exception ex)
  1465. {
  1466. return 0;
  1467. }
  1468. }
  1469. public static int handleProductCount(string pCount, bool isSingle = false)
  1470. {
  1471. string cstr = pCount;
  1472. if (cstr.IndexOf("百万") != -1)
  1473. {
  1474. cstr = cstr.Replace("百万", "000000");
  1475. }
  1476. else if (cstr.IndexOf("十万") != -1)
  1477. {
  1478. cstr = cstr.Replace("十万", "00000");
  1479. }
  1480. else if (cstr.IndexOf("万") != -1)
  1481. {
  1482. cstr = cstr.Replace("万", "0000");
  1483. }
  1484. else if (cstr.IndexOf("千") != -1)
  1485. {
  1486. cstr = cstr.Replace("千", "000");
  1487. }
  1488. else if (cstr.IndexOf("百") != -1)
  1489. {
  1490. cstr = cstr.Replace("百", "00");
  1491. }
  1492. else if (cstr.IndexOf("十") != -1)
  1493. {
  1494. cstr = cstr.Replace("十", "0");
  1495. }
  1496. int rCount = 0;
  1497. if (isSingle) rCount = getSingleIntCountFromString(cstr);
  1498. else rCount = getIntCountFromString(cstr);
  1499. return rCount;
  1500. }
  1501. public static decimal getOrderSizeFromString(string size)
  1502. {
  1503. string rsize = size.Replace("mm", "");
  1504. string[] sizeList = rsize.Split('x');
  1505. if (sizeList.Length != 2) return 0;
  1506. try
  1507. {
  1508. decimal mianji = Convert.ToDecimal(sizeList[0]) * Convert.ToDecimal(sizeList[1]);
  1509. return mianji;
  1510. }
  1511. catch (Exception ex)
  1512. {
  1513. return 0;
  1514. }
  1515. return 0;
  1516. }
  1517. public static string getDateFromString(string fstr)
  1518. {
  1519. try
  1520. {
  1521. string str = fstr;
  1522. string r = @"[0-9]+";
  1523. Regex reg = new Regex(r, RegexOptions.IgnoreCase | RegexOptions.Singleline, TimeSpan.FromSeconds(2));//2秒后超时
  1524. MatchCollection mc = reg.Matches(str);//设定要查找的字符串
  1525. if (mc.Count < 3) return "";
  1526. int tag = 0;
  1527. string datestr = "";
  1528. foreach (Match m in mc)
  1529. {
  1530. string s = m.Groups[0].Value;
  1531. datestr += s;
  1532. if (tag < 2) { datestr += "-"; }
  1533. else break;
  1534. tag++;
  1535. }
  1536. DateTime dd = Convert.ToDateTime(datestr);
  1537. return datestr;
  1538. }
  1539. catch (Exception ex)
  1540. {
  1541. return "";
  1542. }
  1543. }
  1544. public static void DeleteOriginalOrderIfIsSplitOrder(string tid, string splitTag)
  1545. {
  1546. if (splitTag.Length > 0)
  1547. {
  1548. CeErpTradeCell.DelByCtid(tid);
  1549. }
  1550. }
  1551. public static void setOrderDummyDelivery(string tid)
  1552. {
  1553. try
  1554. {
  1555. CeErpTrade trade = CeErpTrade.Get(tid);
  1556. if (trade != null)
  1557. {
  1558. string xuniapires = apiHelper.API_LogisticsDummySend(tid, trade.posCode);
  1559. if (xuniapires.IndexOf("成功") != -1)
  1560. {
  1561. LogHelper.addLog(tid, 0, "电子稿自动发货");
  1562. return;
  1563. }
  1564. else if (xuniapires.IndexOf("失败") != -1)
  1565. {
  1566. string chiness = KeepChinese(xuniapires);
  1567. XLog.SaveLog(0, "setOrderDummyDelivery虚拟发货失败," + tid + "," + chiness);
  1568. return;
  1569. }
  1570. }
  1571. }
  1572. catch (Exception ex)
  1573. {
  1574. XLog.SaveLog(0, "setOrderDummyDelivery虚拟发货出错," + tid + "," + ex.Message);
  1575. return;
  1576. }
  1577. }
  1578. public static designApiResponseVo checkOrderListDesignInfo(string tid)
  1579. {
  1580. if (string.IsNullOrEmpty(tid))
  1581. {
  1582. return new designApiResponseVo(-1, "无订单信息");
  1583. }
  1584. string info_sql = string.Format("SELECT ctid FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", tid);
  1585. DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
  1586. string check_info = "无订单信息";
  1587. if (data.Rows.Count > 0)
  1588. {
  1589. bool need_send = false;
  1590. bool has_design = false;
  1591. foreach (DataRow row in data.Rows)
  1592. {
  1593. CeErpTradeCell cell = CeErpTradeCell.GetByCtid(row["ctid"].ToString());
  1594. if (cell != null)
  1595. {
  1596. if (cell.DesignUserId == 0 || cell.DispatchSort == 2)
  1597. {
  1598. designApiResponseVo result = checkOrderDesignInfo(cell, "");
  1599. check_info = result.msg;
  1600. if (result.code == 200)
  1601. {
  1602. need_send = true;
  1603. has_design = false;
  1604. }
  1605. }
  1606. else
  1607. {
  1608. has_design = true;
  1609. }
  1610. }
  1611. }
  1612. if (need_send && !has_design)
  1613. {
  1614. return new designApiResponseVo(200, "");
  1615. }
  1616. }
  1617. return new designApiResponseVo(-1, check_info);
  1618. }
  1619. 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 };
  1620. public static designApiResponseVo checkOrderDesignInfo(CeErpTradeCell ceErpTradeCell, string post = "")
  1621. {
  1622. if (ceErpTradeCell.DispatchSort == 2)
  1623. {
  1624. return new designApiResponseVo(200, "");
  1625. }
  1626. if (ceErpTradeCell.ProductId == 0)
  1627. {
  1628. return new designApiResponseVo(-1, "订单无品类");
  1629. }
  1630. if (ceErpTradeCell.ProductId == 1797 && ceErpTradeCell.seller_memo.Contains("手绘"))
  1631. {
  1632. return new designApiResponseVo(200, "");
  1633. }
  1634. if (ceErpTradeCell.isDianziOrder == 1)
  1635. {
  1636. return new designApiResponseVo(200, "");
  1637. }
  1638. if ((post != "SysAdmin" && post != "Summarize"))
  1639. {
  1640. if (ceErpTradeCell.DesignUserId != 0 && ceErpTradeCell.DispatchSort != 2)
  1641. {
  1642. return new designApiResponseVo(-1, "已有设计师无法指派");
  1643. }
  1644. string info_sql = string.Format("SELECT count(*) as total FROM [dbo].[Ce_ErpDesignInfo] WHERE type = 1 and tarId = 3542 and shopId = {0}", ceErpTradeCell.ShopId);
  1645. DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
  1646. int a = Convert.ToInt32(data.Rows[0]["total"]);
  1647. bool drop = false;
  1648. if (DateTime.Now.Hour >= 17 && DateTime.Now.Hour <= 7 && products.IndexOf(ceErpTradeCell.ProductId) > -1 && (ceErpTradeCell.ShopId == 14 || ceErpTradeCell.ShopId == 56))
  1649. {
  1650. drop = false;
  1651. }
  1652. if (!drop)
  1653. {
  1654. CeErpDesignInfo ceErpDesignInfo = CeErpDesignInfo.GetByShopDesign(3542, ceErpTradeCell.ShopId, ceErpTradeCell.ProductId);
  1655. if (ceErpDesignInfo == null)
  1656. {
  1657. return new designApiResponseVo(-1, "该店铺无该技能权限");
  1658. }
  1659. }
  1660. //卡片五款
  1661. if (products.IndexOf(ceErpTradeCell.ProductId) > -1 && ceErpTradeCell.ShopId > 0)
  1662. {
  1663. bool num_bool = true;
  1664. bool size_bool = false;
  1665. int min_num = 2;
  1666. int num = 0;
  1667. /*if (a < 15)//限制不是全品的店铺限制
  1668. {*/
  1669. /*if (ceErpTradeCell.payment >= 500)
  1670. {
  1671. return new designApiResponseVo(-1, "订单价格超出");
  1672. }*/
  1673. string pattern = @"\b(\d{1,5}[x\*]\d{1,5}(mm|cm))\b";
  1674. string memo = ceErpTradeCell.seller_memo.Replace("MM", "mm").Replace("CM", "cm");
  1675. Regex reg = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Multiline, TimeSpan.FromSeconds(2));//2秒后超时
  1676. MatchCollection matches = reg.Matches(memo);//设定要查找的字符串
  1677. string size = "";
  1678. double min_width = 90;
  1679. double min_height = 90;
  1680. double width = 0;
  1681. double height = 0;
  1682. try
  1683. {
  1684. num = matches.Count;
  1685. foreach (System.Text.RegularExpressions.Match match in matches)
  1686. {
  1687. if (match.Success)
  1688. {
  1689. size = match.Groups[0].Value;
  1690. if (size.Contains("cm"))
  1691. {
  1692. size = size.Replace("cm", "");
  1693. string[] size_list = size.Split('x');
  1694. if (size_list.Length > 1)
  1695. {
  1696. width = Convert.ToDouble(size_list[0]) * 10;
  1697. height = Convert.ToDouble(size_list[1]) * 10;
  1698. }
  1699. }
  1700. else if (size.Contains("mm"))
  1701. {
  1702. size = size.Replace("mm", "");
  1703. string[] size_list = size.Split('x');
  1704. if (size_list.Length > 1)
  1705. {
  1706. width = Convert.ToDouble(size_list[0]);
  1707. height = Convert.ToDouble(size_list[1]);
  1708. }
  1709. }
  1710. if (width >= min_width && height >= min_height && height >= min_width && width >= min_height)
  1711. {
  1712. size_bool = true;
  1713. break;
  1714. }
  1715. else
  1716. {
  1717. size_bool = false;
  1718. }
  1719. }
  1720. }
  1721. }
  1722. catch (Exception ex)
  1723. {
  1724. }
  1725. if (ceErpTradeCell.seller_memo.Contains("刮刮"))
  1726. {
  1727. num = Math.Max(num - 1, 1);
  1728. }
  1729. pattern = @"(\d+)款";
  1730. matches = Regex.Matches(ceErpTradeCell.seller_memo, pattern);
  1731. try
  1732. {
  1733. num = Math.Max(num - matches.Count, 0);
  1734. foreach (System.Text.RegularExpressions.Match match in matches)
  1735. {
  1736. if (match.Success)
  1737. {
  1738. num += Convert.ToInt32(match.Groups[1].Value);
  1739. break;
  1740. }
  1741. }
  1742. }
  1743. catch (Exception ex)
  1744. {
  1745. }
  1746. //2款不进
  1747. if (num < min_num)
  1748. {
  1749. num_bool = false;
  1750. }
  1751. if (!num_bool && !size_bool)
  1752. {
  1753. return new designApiResponseVo(-1, "尺寸小于90x90或款数小于2");
  1754. }
  1755. /*}*/
  1756. }
  1757. }
  1758. return new designApiResponseVo(200, "");
  1759. }
  1760. public static void sendCytAfterSale(CeErpTradeCell entity)
  1761. {
  1762. try
  1763. {
  1764. CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(entity.ctid);
  1765. string after = "";
  1766. if (entity != null && entity.AfterSaleReason.Contains("质量问题"))
  1767. {
  1768. after = "质量问题";
  1769. }
  1770. else if (entity != null && entity.AfterSaleReason.Contains("发货问题"))
  1771. {
  1772. after = "没收到货";
  1773. }
  1774. else
  1775. {
  1776. after = "其他问题";
  1777. }
  1778. string refund_type = "退款退货";
  1779. if (entity.supRefundType != null && entity.supRefundType == "重印" && (after == "质量问题" || after == "其他问题"))
  1780. {
  1781. refund_type = "补印";
  1782. }
  1783. JObject jsonObject12 = new JObject
  1784. {
  1785. { "Userid", "77886" },
  1786. //{ "pwd", "lt666888" },
  1787. { "LTOrderId", entity.ctid },
  1788. { "RefundType", refund_type },
  1789. { "ReprintReasons", after },
  1790. { "ReasonsImgUrls", entity.AfterSaleSupplierImg },
  1791. { "ReasonRemarks", ceErpTradeAfterSaleExtend.supplierResponsible }
  1792. };
  1793. /**JObject jsonObject12 = new JObject
  1794. {
  1795. { "Userid", "10095" },
  1796. { "pwd", "test123456" },
  1797. { "LTOrderId", "test123456" },
  1798. { "RefundType", "退款退货" },
  1799. { "ReprintReasons", "其他问题" },
  1800. { "ReasonRemarks", "测试" }
  1801. };**/
  1802. string response1 = HttpPost("http://www.kiy.cn/m-mobile/autobaojia/ApplyOrderRefund", jsonObject12.ToString());
  1803. JObject jsonObjects1 = JObject.Parse(response1);
  1804. string msg = (string)jsonObjects1["msg"];
  1805. LogHelper.addLog(entity.ctid, 0, "CYT售后单推送:" + msg);
  1806. }
  1807. catch (Exception ex)
  1808. {
  1809. LogHelper.addLog(entity.ctid, 0, "CYT售后单推送:" + ex.ToString());
  1810. }
  1811. }
  1812. public static void getCytPrice(CeErpTradeCell entity)
  1813. {
  1814. try
  1815. {
  1816. if (entity.seller_memo.IndexOf("种子纸") > -1)
  1817. {
  1818. return;
  1819. }
  1820. CeErpProduct cp = CeErpProduct.GetById(entity.ProductId);
  1821. double price = 0;
  1822. if (cp == null)
  1823. {
  1824. JObject jsonObject12 = new JObject
  1825. {
  1826. { "UserId", "77886" },
  1827. { "Pwd", "lt666888" },
  1828. { "Filename", entity.seller_memo }
  1829. };
  1830. string response1 = HttpPost("http://www.kiy.cn/m-mobile/autobaojia/LTBaojia", jsonObject12.ToString());
  1831. JObject jsonObjects1 = JObject.Parse(response1);
  1832. string ms1g = (string)jsonObjects1["msg"];
  1833. if (ms1g == "报价成功")
  1834. {
  1835. JObject jsonObject1 = (JObject)jsonObjects1["data"];
  1836. string data = (string)jsonObject1["price"];
  1837. 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 + "');";
  1838. CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
  1839. price = Convert.ToDouble(data);
  1840. }
  1841. else
  1842. {
  1843. 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 + "');";
  1844. CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
  1845. return;
  1846. }
  1847. }
  1848. String[] beizhu = entity.seller_memo.Split('-');
  1849. String chanp = "";
  1850. if (beizhu.Length > 1)
  1851. {
  1852. chanp = "(" + entity.ctid + ")-" + entity.ProductSize + "-" + entity.ProductCount + "-" + entity.Material + cp.PSupType + entity.Craft + "-备注:" + beizhu[1];
  1853. }
  1854. else
  1855. {
  1856. chanp = "(" + entity.ctid + ")-" + entity.ProductSize + "-" + entity.ProductCount + "-" + entity.Material + cp.PSupType + entity.Craft;
  1857. }
  1858. JObject jsonObject = new JObject
  1859. {
  1860. { "UserId", "77886" },
  1861. { "Pwd", "lt666888" },
  1862. { "Filename", chanp }
  1863. };
  1864. string response = HttpPost("http://www.kiy.cn/m-mobile/autobaojia/LTBaojia", jsonObject.ToString());
  1865. JObject jsonObjects = JObject.Parse(response);
  1866. string msg = (string)jsonObjects["msg"];
  1867. if (msg == "报价成功")
  1868. {
  1869. JObject jsonObject1 = (JObject)jsonObjects["data"];
  1870. string data = (string)jsonObject1["price"];
  1871. 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 + "');";
  1872. CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
  1873. price = Convert.ToDouble(data);
  1874. }
  1875. else
  1876. {
  1877. 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 + "');";
  1878. CeErpTradeCell.ExecuteNonQuery(sql_pay.ToString());
  1879. return;
  1880. }
  1881. if (price > 0)
  1882. {
  1883. CeErpTradeCellExtend ceErpTradeCellExtend = CeErpTradeCellExtend.getByTid(entity.ctid);
  1884. if (ceErpTradeCellExtend == null)
  1885. {
  1886. ceErpTradeCellExtend = new CeErpTradeCellExtend();
  1887. ceErpTradeCellExtend.ctid = entity.ctid;
  1888. ceErpTradeCellExtend.payment_cyt = price;
  1889. ceErpTradeCellExtend.Create();
  1890. }
  1891. else
  1892. {
  1893. ceErpTradeCellExtend.payment_cyt = price;
  1894. ceErpTradeCellExtend.Update();
  1895. }
  1896. }
  1897. }
  1898. catch (Exception ex)
  1899. {
  1900. }
  1901. return;
  1902. }
  1903. /// <summary>
  1904. /// 更新设计信息
  1905. /// </summary>
  1906. /// <param name="ceErpTradeCell"></param>
  1907. public static void updateDataTradeCellDesignInfo(string ctid)
  1908. {
  1909. CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
  1910. if (ceErpTradeCell == null)
  1911. {
  1912. return;
  1913. }
  1914. string info_sql = string.Format("SELECT ctid FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", ceErpTradeCell.tid);
  1915. DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
  1916. foreach (DataRow row in data.Rows)
  1917. {
  1918. ceErpTradeCell = CeErpTradeCell.GetByCtid(row["ctid"].ToString());
  1919. if (ceErpTradeCell == null)
  1920. {
  1921. continue;
  1922. }
  1923. Dictionary<string, string> map = new Dictionary<string, string>();
  1924. if (ceErpTradeCell.DesignUserId > 0)
  1925. {
  1926. string design_sql = string.Format("SELECT * FROM [dbo].[view_ErpUser] WHERE ID = {0}", ceErpTradeCell.DesignUserId);
  1927. DataTable design_dt = DbHelper.DbConn.ExecuteDataset(design_sql).Tables[0];
  1928. if (design_dt != null && design_dt.Rows.Count > 0)
  1929. {
  1930. map.Add("ShortText1717743889973", design_dt.Rows[0]["Name"].ToString());
  1931. map.Add("ShortText1717743889516", design_dt.Rows[0]["OrgName"].ToString());
  1932. if (!string.IsNullOrEmpty(design_dt.Rows[0]["OrgID"].ToString()))
  1933. {
  1934. int orgId = Convert.ToInt32(design_dt.Rows[0]["OrgID"]);
  1935. if (orgId > 0)
  1936. {
  1937. 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"]);
  1938. DataTable mDesign_dt = DbHelper.DbConn.ExecuteDataset(mDesign_sql).Tables[0];
  1939. if (mDesign_dt != null && mDesign_dt.Rows.Count > 0)
  1940. {
  1941. map.Add("ShortText1717743890850", mDesign_dt.Rows[0]["Name"].ToString());
  1942. }
  1943. }
  1944. }
  1945. }
  1946. map.Add("Date1717743893776", ceErpTradeCell.WaitDesignTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  1947. map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
  1948. }
  1949. dataHelper.updateErpTradeCell(map, ctid);
  1950. }
  1951. }
  1952. /// <summary>
  1953. /// 下单更新
  1954. /// </summary>
  1955. /// <param name="ceErpTradeCell"></param>
  1956. public static void updateDataTradeCellPlaceInfo(string ctid)
  1957. {
  1958. CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
  1959. if (ceErpTradeCell == null)
  1960. {
  1961. return;
  1962. }
  1963. Dictionary<string, string> map = new Dictionary<string, string>();
  1964. if (ceErpTradeCell.OrderState >= 6 && ceErpTradeCell.SupplierId > 0)
  1965. {
  1966. map.Add("Date1717743895362", ceErpTradeCell.FinishDesignTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  1967. map.Add("Date1717744246168", ceErpTradeCell.FinishPlaceTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  1968. string supplierId = dataHelper.getSupplerDataInfo(ceErpTradeCell.SupplierId.ToString());
  1969. map.Add("RelevanceForm1718100412422", supplierId);
  1970. CeErpTradeCellExtend ceErpTradeCellExtend = CeErpTradeCellExtend.getByTid(ceErpTradeCell.ctid);
  1971. if (ceErpTradeCellExtend != null)
  1972. {
  1973. map.Add("Number1718099884613", ceErpTradeCellExtend.payment_cyt.ToString());
  1974. }
  1975. map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
  1976. }
  1977. dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
  1978. }
  1979. /// <summary>
  1980. /// 发货更新
  1981. /// </summary>
  1982. /// <param name="ceErpTradeCell"></param>
  1983. public static void updateDataTradeCellDeliveInfo(string ctid)
  1984. {
  1985. CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
  1986. if (ceErpTradeCell == null)
  1987. {
  1988. return;
  1989. }
  1990. string info_sql = string.Format("SELECT ctid FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", ceErpTradeCell.tid);
  1991. DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
  1992. foreach (DataRow row in data.Rows)
  1993. {
  1994. ceErpTradeCell = CeErpTradeCell.GetByCtid(row["ctid"].ToString());
  1995. if (ceErpTradeCell == null)
  1996. {
  1997. continue;
  1998. }
  1999. Dictionary<string, string> map = new Dictionary<string, string>();
  2000. if (ceErpTradeCell.OrderState >= 7 && ceErpTradeCell.SupplierId > 0)
  2001. {
  2002. map.Add("Date1717744254301", ceErpTradeCell.FinishDeliveryTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  2003. map.Add("ShortText1717744255441", ceErpTradeCell.OutSid);
  2004. map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
  2005. }
  2006. dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
  2007. }
  2008. }
  2009. /// <summary>
  2010. /// 打回
  2011. /// </summary>
  2012. /// <param name="ceErpTradeCell"></param>
  2013. public static void updateDataTradeCellBackInfo(string ctid)
  2014. {
  2015. CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
  2016. if (ceErpTradeCell == null)
  2017. {
  2018. return;
  2019. }
  2020. Dictionary<string, string> map = new Dictionary<string, string>();
  2021. map.Add("Date1717745436357", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  2022. map.Add("ShortText1717745435559", "是");
  2023. map.Add("ShortText1717745481283", ceErpTradeCell.ReturnReason);
  2024. map.Add("ShortText1717743882604", ((OrderState)ceErpTradeCell.OrderState).ToString());
  2025. dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
  2026. }
  2027. /// <summary>
  2028. /// 查货
  2029. /// </summary>
  2030. /// <param name="ceErpTradeCell"></param>
  2031. public static void updateDataTradeCellCheckGoodInfo(string ctid)
  2032. {
  2033. CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
  2034. if (ceErpTradeCell == null)
  2035. {
  2036. return;
  2037. }
  2038. Dictionary<string, string> map = new Dictionary<string, string>();
  2039. map.Add("Date1717745495718", ceErpTradeCell.CheckOrderTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  2040. map.Add("ShortText1717745492918", "是");
  2041. map.Add("ShortText1717745497837", ceErpTradeCell.CheckMemo);
  2042. map.Add("ShortText1717745499141", ceErpTradeCell.UnusualCon);
  2043. dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
  2044. }
  2045. /// <summary>
  2046. /// 加急
  2047. /// </summary>
  2048. /// <param name="ceErpTradeCell"></param>
  2049. public static void updateDataTradeCellUrgentInfo(string ctid)
  2050. {
  2051. CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
  2052. if (ceErpTradeCell == null)
  2053. {
  2054. return;
  2055. }
  2056. Dictionary<string, string> map = new Dictionary<string, string>();
  2057. map.Add("Date1717745535736", ceErpTradeCell.UrgencyTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  2058. map.Add("ShortText1717745533062", "是");
  2059. dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
  2060. }
  2061. /// <summary>
  2062. /// 售后
  2063. /// </summary>
  2064. /// <param name="ceErpTradeCell"></param>
  2065. public static void updateDataTradeCellAfterSaleInfo(string ctid)
  2066. {
  2067. CeErpTradeCell ceErpTradeCell = CeErpTradeCell.GetByCtid(ctid);
  2068. if (ceErpTradeCell == null)
  2069. {
  2070. return;
  2071. }
  2072. Dictionary<string, string> map = new Dictionary<string, string>();
  2073. map.Add("ShortText1717745540758", "是");
  2074. map.Add("Date1717745544245", ceErpTradeCell.AfterSaleTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  2075. if (ceErpTradeCell.AfterSaleResSupId > 0)
  2076. {
  2077. CeErpUser user = CeErpUser.Get(ceErpTradeCell.AfterSaleResSupId);
  2078. if (user != null)
  2079. {
  2080. map.Add("ShortText1717745541664", user.Name);
  2081. }
  2082. }
  2083. map.Add("Date1717745545841", ceErpTradeCell.FinishAfterSaleTime?.ToString("yyyy-MM-dd HH:mm:ss"));
  2084. if (!string.IsNullOrEmpty(ceErpTradeCell.AfterSaleReason))
  2085. {
  2086. string[] list = ceErpTradeCell.AfterSaleReason.Split('|');
  2087. for (int i = 0; i < list.Length; i++)
  2088. {
  2089. if (i == 0)
  2090. {
  2091. map.Add("ShortText1717745548220", list[i]);
  2092. }
  2093. if (i == 1)
  2094. {
  2095. map.Add("ShortText1717745549835", list[i]);
  2096. }
  2097. if (i == 2)
  2098. {
  2099. map.Add("ShortText1717745550687", list[i]);
  2100. }
  2101. }
  2102. }
  2103. if (!string.IsNullOrEmpty(ceErpTradeCell.ResponsibleUserId))
  2104. {
  2105. string[] list = ceErpTradeCell.ResponsibleUserId.Split(',');
  2106. for (int i = 0; i < list.Length; i++)
  2107. {
  2108. string[] user = list[i].Split('_');
  2109. if (user.Length > 0)
  2110. {
  2111. if (user[1] == "g")
  2112. {
  2113. CeErpSupplier ceErpSupplier = CeErpSupplier.Get(user[0]);
  2114. if (i == 0)
  2115. {
  2116. map.Add("ShortText1717745553842", list[i]);
  2117. map.Add("ShortText1717745554626", "");
  2118. }
  2119. if (i == 1)
  2120. {
  2121. map.Add("ShortText1717811042513", list[i]);
  2122. map.Add("ShortText1717811049407", "");
  2123. }
  2124. }
  2125. else if (user[1] == "w")
  2126. {
  2127. if (i == 0)
  2128. {
  2129. map.Add("ShortText1717745553842", "物流问题");
  2130. map.Add("ShortText1717745554626", "");
  2131. }
  2132. if (i == 1)
  2133. {
  2134. map.Add("ShortText1717811042513", "物流问题");
  2135. map.Add("ShortText1717811049407", "");
  2136. }
  2137. }
  2138. else
  2139. {
  2140. string customer_sql = string.Format("SELECT * FROM [dbo].[view_ErpUser] WHERE ID = {0}", ceErpTradeCell.CustomerUserId);
  2141. DataTable customer_dt = DbHelper.DbConn.ExecuteDataset(customer_sql).Tables[0];
  2142. if (customer_dt.Rows.Count > 0)
  2143. {
  2144. if (i == 0)
  2145. {
  2146. map.Add("ShortText1717745553842", customer_dt.Rows[0]["Name"].ToString());
  2147. map.Add("ShortText1717745554626", customer_dt.Rows[0]["OrgName"].ToString());
  2148. }
  2149. if (i == 1)
  2150. {
  2151. map.Add("ShortText1717811042513", customer_dt.Rows[0]["Name"].ToString());
  2152. map.Add("ShortText1717811049407", customer_dt.Rows[0]["OrgName"].ToString());
  2153. }
  2154. }
  2155. }
  2156. }
  2157. }
  2158. }
  2159. map.Add("number1717745810151", ceErpTradeCell.RefundFee.ToString());
  2160. CeErpTradeAfterSaleExtend ceErpTradeAfterSaleExtend = CeErpTradeAfterSaleExtend.getByTid(ceErpTradeCell.ctid);
  2161. if (ceErpTradeAfterSaleExtend != null && !string.IsNullOrEmpty(ceErpTradeAfterSaleExtend.RefundFees))
  2162. {
  2163. string[] list = ceErpTradeAfterSaleExtend.RefundFees.Split(',');
  2164. for (int i = 0; i < list.Length; i++)
  2165. {
  2166. if (i == 0)
  2167. {
  2168. map.Add("Number1717745564936", list[i]);
  2169. }
  2170. if (i == 1)
  2171. {
  2172. map.Add("Number1717745565580", list[i]);
  2173. }
  2174. }
  2175. }
  2176. map.Add("ShortText1717745580986", ceErpTradeCell.AfterSaleSupplierState == 1 ? "认可" : "不认可");
  2177. map.Add("ShortText1717745582613", ceErpTradeCell.AfterSaleSupplierMemo);
  2178. map.Add("ShortText1717745583256", ceErpTradeCell.AfterSaleMethod);
  2179. map.Add("ShortText1717745583810", ceErpTradeCell.AfterSaleMemo);
  2180. dataHelper.updateErpTradeCell(map, ceErpTradeCell.ctid);
  2181. }
  2182. /// <summary>
  2183. /// 退款
  2184. /// </summary>
  2185. /// <param name="content"></param>
  2186. public static void updateDataTradeCellRefundInfo(Api_tmc_refund_info_Obj.Content content)
  2187. {
  2188. Dictionary<string, string> map = new Dictionary<string, string>();
  2189. map.Add("Date1717745588048", StampToDateTime(content.createTime).ToString("yyyy-MM-dd HH:mm:ss"));
  2190. map.Add("ShortText1717745585444", "是");
  2191. map.Add("Number1717743148189", content.refundFee);
  2192. map.Add("ShortText1717745591810", content.reason);
  2193. map.Add("ShortText1717745592639", content.desc);
  2194. string tid = content.refOid;
  2195. string info_sql = string.Format("SELECT ctid FROM [dbo].[CE_ErpTradeCell] WHERE tid ='{0}'", tid);
  2196. DataTable data = DbHelper.DbConn.ExecuteDataset(info_sql).Tables[0];
  2197. foreach (DataRow row in data.Rows)
  2198. {
  2199. dataHelper.updateErpTradeCell(map, row["ctid"].ToString());
  2200. }
  2201. }
  2202. /// <summary>
  2203. /// 返现
  2204. /// </summary>
  2205. /// <param name="entity"></param>
  2206. /// <param name="cash"></param>
  2207. public static void updateDataTradeCellCashInfo(CeErpTradeCell entity, CeErpReturnCash cash)
  2208. {
  2209. Dictionary<string, string> map = new Dictionary<string, string>();
  2210. map.Add("ShortText1717745601056", "是");
  2211. map.Add("ShortText1717745602313", cash.rtype);
  2212. map.Add("Number1717745604245", cash.payment.ToString());
  2213. map.Add("ShortText1717745607208", cash.con);
  2214. dataHelper.updateErpTradeCell(map, entity.ctid);
  2215. }
  2216. /// <summary>
  2217. /// 推购
  2218. /// </summary>
  2219. /// <param name="entity"></param>
  2220. public static void updateDataTradeCellStayInfo(CeErpTradeCell entity)
  2221. {
  2222. Dictionary<string, string> map = new Dictionary<string, string>();
  2223. map.Add("ShortText1717745608381", "是");
  2224. dataHelper.updateErpTradeCell(map, entity.ctid);
  2225. }
  2226. public static DateTime StampToDateTime(string timeStamp)
  2227. {
  2228. DateTime dateTimeStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));
  2229. long lTime = long.Parse(timeStamp + "0000");
  2230. TimeSpan toNow = new TimeSpan(lTime);
  2231. return dateTimeStart.Add(toNow);
  2232. }
  2233. private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
  2234. {
  2235. return true; //总是接受
  2236. }
  2237. public static string HttpPost(string url, string param = null)
  2238. {
  2239. HttpWebRequest request;
  2240. //如果是发送HTTPS请求
  2241. if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
  2242. {
  2243. ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
  2244. request = WebRequest.Create(url) as HttpWebRequest;
  2245. request.ProtocolVersion = HttpVersion.Version10;
  2246. }
  2247. else
  2248. {
  2249. request = WebRequest.Create(url) as HttpWebRequest;
  2250. }
  2251. request.Method = "POST";
  2252. request.ContentType = "application/json";
  2253. request.Accept = "*/*";
  2254. request.Timeout = 60000;
  2255. request.AllowAutoRedirect = false;
  2256. StreamWriter requestStream = null;
  2257. WebResponse response = null;
  2258. string responseStr = null;
  2259. try
  2260. {
  2261. requestStream = new StreamWriter(request.GetRequestStream());
  2262. requestStream.Write(param);
  2263. requestStream.Close();
  2264. response = request.GetResponse();
  2265. if (response != null)
  2266. {
  2267. StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
  2268. responseStr = reader.ReadToEnd();
  2269. reader.Close();
  2270. }
  2271. }
  2272. catch (Exception ex)
  2273. {
  2274. return ex.Message;
  2275. }
  2276. finally
  2277. {
  2278. request = null;
  2279. requestStream = null;
  2280. response = null;
  2281. }
  2282. return responseStr;
  2283. }
  2284. }
  2285. }