Api.php 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586
  1. <?php defined('BASEPATH') OR exit('No direct script access allowed');
  2. class Api extends Start_Controller {
  3. public function __construct(){
  4. parent::__construct();
  5. $this->load->library('session');
  6. $this->load->_model('Model_api','api');
  7. $this->load->_model('Model_shop','shop');
  8. $this->load->_model('Model_fullorder','fullorder');
  9. $this->load->_model('Model_fullordertt','fullordertt');
  10. $this->load->_model('Model_fullorder_smt','fullorder_smt');
  11. $this->load->_model('Model_fullordersmt','fullordersmt');
  12. $this->load->_model('Model_country','country');
  13. $this->load->_model('Model_hl','hl');
  14. $this->load->_model('Model_is','is');
  15. $this->load->_model('Model_kdniao','kdniao');
  16. $this->load->_model('Model_typeclass','typeclass');
  17. $this->load->_model('Model_warehouse','warehouse');
  18. $this->load->_model('Model_fullorderexcel','fullorderexcel');
  19. $this->load->_model('Model_dhl','dhl');
  20. $this->load->_model('Model_usps','usps');
  21. $this->load->_model('Model_ups','ups');
  22. $this->load->_model('Model_dhltest','dhltest');
  23. $this->load->_model('Model_customer','customer');
  24. $this->load->_model('Model_express','express');
  25. $this->load->_model('Model_notice','notice');
  26. $this->load->_model('Model_emaildata','emaildata');
  27. $this->load->_model('Model_whlabel','whlabel');
  28. $this->load->_model('Model_productdescribe','productdescribe');
  29. $this->load->_model('Model_ljg','ljg');
  30. $this->load->_model('Model_commodityread','commodityread');
  31. $this->load->_model('Model_service','service');
  32. $this->load->_model('Model_fedex','fedex');
  33. $this->load->_model('Model_apismt','apismt');
  34. $this->load->_model('Model_cne','cne');
  35. $this->load->_model('Model_specialstock','specialstock');
  36. $this->load->_model('Model_whlabellabel','whlabellabel');
  37. $this->load->_model('Model_allocation','allocation');
  38. $this->load->_model('Model_yswaybill','yswaybill');
  39. $this->load->_model('Model_paypal','paypal');
  40. $this->load->_model('Model_17track','17track');
  41. $this->load->_model('Model_ck','ck');
  42. $this->load->_model('Model_weight','weight');
  43. $this->load->_model('Model_pay','pay');
  44. $this->load->_model('Model_setting','setting');
  45. $this->load->_model('Model_classid','classid');
  46. $this->load->_model('Model_apiyy','apiyy');
  47. $this->load->_model('Model_whlabel_fc','whlabel_fc');
  48. $this->load->_model('Model_shopsku','shopsku');
  49. $this->load->_model('Model_awlgx','awlgx');
  50. $this->load->_model('Model_apitt','apitt');
  51. $this->load->_model('Model_producttitle','producttitle');
  52. $this->load->_model('Model_afspaypal','afspaypal');
  53. $this->load->_model('Model_message','message');
  54. $this->load->_model("Model_zztmpdata",'zztmpdata');
  55. $this->load->_model("Model_logic_ding","logic_ding");
  56. $this->load->_model("Model_customsdeclaration","customsdeclaration");
  57. $this->load->_model("Model_zzjobs","zzjobs");
  58. }
  59. //定义方法的调用规则 获取URI第二段值
  60. public function _remap($arg,$arg_array)
  61. {
  62. if($arg == 'isorder')//添加
  63. {
  64. $this->_isorder();
  65. }
  66. else if($arg == 'tb')//同步独立站
  67. {
  68. $this->_tb();
  69. }
  70. else if($arg == 'waybill')//运单上传独立站
  71. {
  72. $this->_waybill($arg_array);
  73. }
  74. else if($arg == 'waybillemail')
  75. {
  76. $this->_waybillemail($arg_array);
  77. }
  78. else if($arg == 'waybillfs')
  79. {
  80. $this->_waybillfs($arg_array);
  81. }
  82. else if($arg == 'headgear')//传输头套信息
  83. {
  84. $this->_headgear($arg_array);
  85. }
  86. else if($arg == 'fsstate')
  87. {
  88. $this->_fsstate();
  89. }
  90. else if($arg == 'fswaybillemail')
  91. {
  92. $this->_fswaybillemail();
  93. }
  94. else if($arg == 'zz')
  95. {
  96. $this->_zz();
  97. }
  98. else if($arg == 'zzcs')
  99. {
  100. $this->_zzcs();
  101. }
  102. else if($arg == 'cangku')
  103. {
  104. $this->_cangku();
  105. }
  106. else if($arg == 'kc')
  107. {
  108. $this->_kc();
  109. }
  110. else if($arg == 'wlfs')
  111. {
  112. $this->_wlfs();
  113. }
  114. else if($arg == 'query')
  115. {
  116. $this->_query();
  117. }
  118. else if($arg == 'kcjc')
  119. {
  120. $this->_kcjc();
  121. }
  122. else if($arg == 'klarna')
  123. {
  124. $this->_klarna();
  125. }
  126. else if($arg == 'logistics')
  127. {
  128. $this->_logistics();
  129. }
  130. else if($arg == 'hqpaypal')
  131. {
  132. $this->_hqpaypal();
  133. }
  134. else if($arg == 'hqstripe')
  135. {
  136. $this->_hqstripe();
  137. }
  138. else if($arg == 'htmlstock')
  139. {
  140. $this->_htmlstock();
  141. }
  142. else if($arg == 'dhl')
  143. {
  144. $this->_dhl();
  145. }
  146. else if($arg == '17track')
  147. {
  148. $this->_17track();
  149. }
  150. else if($arg == 'zc17track')
  151. {
  152. $this->_zc17track();
  153. }
  154. }
  155. //通过地址直接获取独立站订单信息
  156. public function _isorder()
  157. {
  158. $sid = '';$sd = array();
  159. if(isset($_SESSION['api']))
  160. {
  161. $user = $this->user->get_api($_SESSION['api']);
  162. $user = explode('|',trim($user['shop'],'|'));
  163. foreach ($user as $value)
  164. {
  165. $sid .= " id = '$value' or";
  166. }
  167. $sid = " and (".rtrim($sid,'or').")";
  168. }
  169. $post = $this->input->post(NULL, TRUE);
  170. $api = $this->input->get('api',true);
  171. $dshop = $this->input->get('dshop',true);
  172. //@$gethl = $this->hl->get_hl();//获取即时汇率
  173. $gethl = array();
  174. /* 订单号加入键值-k */
  175. /**
  176. $dataorder = array();
  177. $fdata = $this->fullorder->find_all('dtime > "'.(time()-96*3600).'"','orderinfo');
  178. foreach ($fdata as $v)
  179. {
  180. $dataorder[$v['orderinfo']] = "";//获取到单号
  181. }
  182. **/
  183. /* 订单号加入键值-j */
  184. /* 匹配加入 */
  185. $dictionaries = $this->typeclass->find_all('spare!= "" and classid != 1 and classid != 2 and classid != 3 and classid != 4 and classid != 5 and classid != 11 and classid != 16 and classid != 17 and classid != 20 and classid != 21 and classid != 23 and classid != 24 and classid != 29 and classid != 30 and classid != 31 and classid != 32 and classid != 36');
  186. // and (classid=13 or classid=22 or classid=8 or classid=15 or classid=27 or classid=25 or classid=26 or classid=18 or classid=14 or classid=9 or classid=12 or classid=10 or classid=6 or classid=100 or classid=999)
  187. $dtc = array();
  188. foreach ($dictionaries as $v)
  189. {
  190. if(stripos($v['spare'],'|') !== false)//如果有多个值
  191. {
  192. $v['spare'] = explode('|',$v['spare']);
  193. foreach ($v['spare'] as $k=>$vs)
  194. {
  195. if(stripos($v['zh'],'|') !== false)
  196. {
  197. $vzh = explode('|',$v['zh']);
  198. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$vzh[$k],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  199. }
  200. else
  201. {
  202. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  203. }
  204. }
  205. }
  206. else
  207. {
  208. $dtc[strtolower($v['spare'])] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$v['spare']);
  209. }
  210. }
  211. $dictionaries2 = $this->typeclass->find_all();
  212. foreach ($dictionaries2 as $v)
  213. {
  214. $dtctitle[$v['id']] = $v['title'];
  215. }
  216. /* 匹配结束 */
  217. /* 价格加入 */
  218. /**
  219. $money = array();
  220. $productdescribe = $this->productdescribe->find_all('1=1','number,purchase,cost,salesprice,title');
  221. foreach ($productdescribe as $v)
  222. {
  223. $money[$v['number']] = array('purchase'=>$v['purchase'],'cost'=>$v['cost'],'salesprice'=>$v['salesprice'],'title'=>$v['title']);
  224. }
  225. **/
  226. /* 价格加入 */
  227. /* 匹配ID加入 */
  228. $int = array();
  229. $intdata = $this->typeclass->find_all('classid=14','id,spare');
  230. foreach ($intdata as $v)
  231. {
  232. $v['spare'] = explode('|',$v['spare']);
  233. $int[$v['id']] = $v['spare'][0];
  234. }
  235. /* 匹配ID结束 */
  236. /* 国家加入键值-k */
  237. $cuy = array();
  238. $cuydata = $this->country->find_all('1=1','lb,id');
  239. foreach ($cuydata as $v)
  240. {
  241. $cuy[$v['lb']] = $v['id'];//获取到国家ID
  242. }
  243. /* 国家加入键值-j */
  244. /* 币种加入键值-k */
  245. $typeclass = array();
  246. $tdata = $this->typeclass->find_all('classid=30','id,title');
  247. foreach ($tdata as $v)
  248. {
  249. $typeclass[$v['title']] = $v['id'];
  250. }
  251. /* 币种加入键值-j */
  252. /* 支付方式-k */
  253. $pay = array();
  254. $tdata = $this->typeclass->find_all('classid=4','id,spare');
  255. foreach ($tdata as $v)
  256. {
  257. $paytype = $this->pay->get_typeclass($v['id']);
  258. if(isset($paytype['estimaterate']))
  259. {
  260. $estimaterate = $paytype['estimaterate'];
  261. }
  262. else
  263. {
  264. $estimaterate = 0;
  265. }
  266. if(stripos($v['spare'],'|') !== false)//如果有多个值
  267. {
  268. $v['spare'] = explode('|',$v['spare']);
  269. foreach ($v['spare'] as $k=>$vs)
  270. {
  271. $pay[$vs] = array('id'=>$v['id'],'estimaterate'=>$estimaterate);
  272. }
  273. }
  274. else
  275. {
  276. $pay[$v['spare']] = array('id'=>$v['id'],'estimaterate'=>$estimaterate);
  277. }
  278. }
  279. $pay['stripeios'] = $pay['stripe_payments'];
  280. /* 支付方式-j */
  281. /* 新增SKU-k */
  282. $zjsku = array();
  283. $shopsku = $this->shopsku->find_all();
  284. foreach ($shopsku as $val)
  285. {
  286. $ss = explode(',',trim($val['shop'],','));
  287. foreach ($ss as $v)
  288. {
  289. if(isset($zjsku[$v]))
  290. {
  291. $zjsku[$v] .= ','.trim($val['sku'],',');
  292. }
  293. else
  294. {
  295. $zjsku[$v] = trim($val['sku'],',');
  296. }
  297. }
  298. }
  299. /* 新增SKU-j */
  300. $is = $this->is->find_all('1=1','*','number asc');//获取仓库平匹配表
  301. if(isset($post['is']) || (isset($api) && $api = '89757'))
  302. {
  303. $tb = 0;
  304. if($dshop)
  305. {
  306. $shop = $this->shop->find_all("id = '$dshop'");
  307. }
  308. else
  309. {
  310. $shop = $this->shop->find_all("type = 269 and tb = 1".$sid);//获取独立站信息
  311. }
  312. foreach ($shop as $value)
  313. {
  314. if((time()-$value['tbtime']) < 600)
  315. {
  316. $tb = 1;//正在同步中
  317. break;
  318. }
  319. else
  320. {
  321. $this->shop->save(array('tbtime'=>time()),$value['id']);
  322. }
  323. $setting = $this->setting->get_settings();
  324. $this->db->trans_begin();
  325. $res = $this->api->get_hq($value['brandname'],$value['shopadmin'],$value);
  326. $sd[] = $res;
  327. $sjc = $setting['sctime'];//时间差 之前是3600 现在为0
  328. if($res)
  329. {
  330. foreach ($res as $v)
  331. {
  332. if(!isset($v['order_id']))
  333. {
  334. continue;
  335. }
  336. if($value['token'] == 'SU')
  337. {
  338. $time = $v['purchased_on']-7*3600-$sjc;//之前是+$sjc
  339. }
  340. else if($value['program'] == 'Shopify')
  341. {
  342. $time = $v['purchased_on'];
  343. }
  344. else
  345. {
  346. if($value['id'] == 1)
  347. {
  348. $time = strtotime($v['purchased_on'])-7*3600-$sjc;//-$sjc;//之前是+$sjc
  349. }
  350. else
  351. {
  352. $time = strtotime($v['purchased_on'])-7*3600-$sjc;//订单时间更为时间戳 //之前是+$sjc
  353. }
  354. }
  355. $num = $this->fullorder->find_count('gtime = "'.date('Ymd',$time).'" and shop = "'.$value['id'].'"');
  356. $order_id = $value['id'].$v['order_id'];
  357. $tc = 0;
  358. if(isset($v['global_currency_code']))
  359. {
  360. $tc = isset($typeclass[$v['global_currency_code']])?$typeclass[$v['global_currency_code']]:0;
  361. }
  362. $dataorder = $this->fullorder->get_orderinfo($order_id);
  363. $hmdid = '';
  364. if($value['program'] == 'Shopify' && isset($dataorder['id']))
  365. {
  366. if($v['order_comment'] != $dataorder['clientremarks'])
  367. {
  368. $this->fullorder->save(array('clientremarks'=>$v['order_comment']),$dataorder['id']);
  369. }
  370. }
  371. if(!isset($dataorder['id']))
  372. //现在为所有订单都获取。!$ord && strcasecmp($v['isstatus'],'processing') == 0如果没有此订单并且订单状态为等待发货则继续
  373. {
  374. if(!isset($cuy[$v['country']]))
  375. {
  376. $cuy[$v['country']] = 1004;
  377. }
  378. $post = $this->api->get_data($value,$v,$gethl,$time,$cuy[$v['country']],$is,$num,$v['country'],$tc,$dtc,array(),$int,$dtctitle,$pay,$zjsku);
  379. $kn = explode('-',$post['paypal']);
  380. if($post['pay'] == 23 && $value['klarnaname'] != '' && $value['klarnapass'] != '')
  381. {
  382. $klarna = $this->_klarnadata($post['paypal'],$value['klarnaname'],$value['klarnapass']);
  383. if($klarna != '')
  384. {
  385. $post['klarnadata'] = $klarna;
  386. }
  387. }
  388. if($post['pay'] == 26 && $value['afterpayname'] != '' && $value['afterpaypass'] != '')
  389. {
  390. $afterpay = $this->_afterpay($post['paypal'],$value['afterpayname'],$value['afterpaypass']);
  391. if($afterpay != '')
  392. {
  393. $post['klarnadata'] = $afterpay;
  394. }
  395. }
  396. if($post['pay'] == 27 && $value['clearpayname'] != '' && $value['clearpaypass'] != '')
  397. {
  398. $clearpay = $this->_clearpay($post['paypal'],$value['clearpayname'],$value['clearpaypass']);
  399. if($clearpay != '')
  400. {
  401. $post['klarnadata'] = $clearpay;
  402. }
  403. }
  404. if($post['pay'] == '28' && $post['state'] != '207')
  405. {
  406. continue;
  407. }
  408. if($post['state'] == '217' || $post['state'] == '203')
  409. {
  410. continue;
  411. }
  412. /**
  413. else if($post['pay'] == 22 && $value['paypalname'] != '' && $value['paypalpass'] != '')
  414. {
  415. $paypal = $this->_paypaldata($post['paypal'],$value['paypalname'],$value['paypalpass']);
  416. if($paypal != '')
  417. {
  418. $post['klarnadata'] = $paypal;
  419. }
  420. }
  421. **/
  422. /** 启用自动分配仓库 **/
  423. $post['express'] = 0;
  424. $warehouse = $this->warehouse->find_all("fpzd = '1'",'*','fpsx desc');
  425. foreach ($warehouse as $v)
  426. {
  427. if($v['bdcountry'] != 0 && $v['bdcountry'] != $post['country'])
  428. {
  429. continue;
  430. }
  431. $yx = 'get_yx_'.$v['bdck'];
  432. $kczd = $this->ck->$yx($post['state'],$v,$post['shop'],$post['number'],$post['whlabel'],$post['fpdata']);
  433. if($kczd['t'] == 0)
  434. {
  435. $country = $this->country->read($post['country']);//获取国家中配置物流
  436. if($country['express'] != 0)
  437. {
  438. $post['express'] = $country['express'];
  439. }
  440. if($v['express'] != 0)//优先使用仓库指定物流,替换掉上面的国家配置物流
  441. {
  442. $post['express'] = $v['express'];
  443. }
  444. $post['type'] = $v['id'];
  445. $post['whlabel'] = $kczd['whlabel'];
  446. $post['fpdata'] = $kczd['fpdata'];
  447. if(stripos($kczd['whlabel'],$v['hz']) !== false)
  448. {
  449. break 1;
  450. }
  451. }
  452. }
  453. $qdw = $this->warehouse->read($post['type']);
  454. $fl = $this->ck->get_fl($qdw['hz'],$post['whlabel'],$post['fpdata']);
  455. $post['sfxh'] = $fl['sfxh'];
  456. $post['ckfl'] = $fl['ckfl'];
  457. $zipcode = substr($post['zipcode'],0,1);
  458. if($post['type'] == 5 && $zipcode > 4)
  459. {
  460. $post['express'] = 63;
  461. }
  462. if($post['express'] > 0)
  463. {
  464. $xze = $this->express->read($post['express']);
  465. $post['printtype'] = $xze['type'];
  466. }
  467. //自动写位置 开始
  468. $zclp = array();$pxsl = array();
  469. $slpx = explode('|',$post['slpx']);//排序
  470. //监听报错原因
  471. //解决礼物类没有slpx的数据
  472. if(!empty($post['slpx'])){
  473. foreach ($slpx as $k=>$v)
  474. {
  475. $v = explode('-',$v);
  476. if(!isset($v[1]))
  477. {
  478. $v[1] == 1;
  479. }
  480. for($i=$v[0];$i<$v[1];$i++)
  481. {
  482. $pxsl[$i] = $k;
  483. }
  484. }
  485. }
  486. $mc = $qdw['bdck'];$zdidjl = '';$zdwzjl = '';
  487. if($qdw['wz'] == 1)
  488. {
  489. $pm = explode(';',trim($post['shipremarks'],';'));
  490. foreach ($pm as $k=>$vv)
  491. {
  492. $vv = trim($vv,' ');
  493. $tmp_vv = str_replace("'","",$vv);
  494. $lp = $this->typeclass->find_all("zh = '$tmp_vv'");
  495. if(isset($lp[0]['classid']))
  496. {
  497. $zclp[] = $vv;
  498. unset($pm[$k]);
  499. }
  500. }
  501. $pm = array_values($pm);
  502. $w = explode('|',trim($post['whlabel'],'|'));
  503. foreach ($w as $k=>$val)
  504. {
  505. $hwm = '';
  506. if(stripos($val,$qdw['hz']) !== false)
  507. {
  508. $num = explode('-',trim($val,'-'));
  509. $xq = explode('~',trim($num[2],'~'));
  510. $pmxq = '(';
  511. foreach ($xq as $v)
  512. {
  513. $zdidjl .= '('.trim($v,$qdw['hz']).')';
  514. $h = $this->$mc->read(trim($v,$qdw['hz']));
  515. if($h['details'] != '')
  516. {
  517. $pmxq .= $qdw['title'].':'.$h['details'].(($h['cpid']>0)?'-'.$h['cpid']:'').',';
  518. }
  519. }
  520. $xrid = ($h['cpid']>0)?'-'.$h['cpid']:'';
  521. if(isset($pxsl[$k]))
  522. {
  523. if(stripos($pm[$pxsl[$k]],$qdw['title'].':'.$h['details'].$xrid) === false)
  524. {
  525. $pm[$pxsl[$k]] .= trim($pmxq,',').')';
  526. }
  527. }
  528. $zdwzjl .= $h['details'].(($h['cpid']>0)?'-'.$h['cpid']:'');
  529. }
  530. }
  531. if($zclp)
  532. {
  533. $zclp = ';'.implode(";",$zclp);
  534. }
  535. else
  536. {
  537. $zclp = '';
  538. }
  539. $post['shipremarks'] = implode(";",$pm).$zclp;
  540. $post['contents'] = $zdidjl.' - '.$zdwzjl;
  541. }
  542. //自动写位置 结束
  543. //条数及申报
  544. $ts = 0;
  545. $dtsbjz = 0;
  546. $zsbjz = 0;
  547. $w = explode('|',trim($post['whlabel'],'|'));
  548. foreach ($w as $k=>$val)
  549. {
  550. $num = explode('-',trim($val,'-'));
  551. //$ts += $num[1];
  552. //判断是否是礼物 礼物不计数
  553. $is_gift_str = substr($num[0], 0, 3);
  554. if($is_gift_str != '131'){
  555. $ts += $num[1];
  556. }
  557. }
  558. if($ts > 0 && $ts < 6 && $post['country'] == 192)
  559. {
  560. $dtsbjz = ($ts==3)?sprintf("%.2f",100/$ts):100/$ts;
  561. $zsbjz = sprintf("%.2f",$dtsbjz*$ts);
  562. }
  563. $post['ts'] = $ts;
  564. $post['dtsbjz'] = $dtsbjz;
  565. $post['zsbjz'] = $zsbjz;
  566. /** **/
  567. //合并重复项
  568. $hbcfw = explode('|',trim($post['whlabel'],'|'));
  569. $hbcff = explode(';',trim($post['fpdata'],';'));
  570. $c = 0;
  571. $hbw = array();
  572. $hbf = array();
  573. for($i=0;$i<count($hbcfw);$i++)
  574. {
  575. $w = explode('-',$hbcfw[$i]);
  576. $f = explode('|',$hbcff[$i]);
  577. $w2 = ($w[2]==0)?0:'';
  578. if(!isset($hbw[$w[0].$w2]))
  579. {
  580. $hbw[$w[0].$w2] = $hbcfw[$i];
  581. $hbf[$w[0].$w2] = $hbcff[$i];
  582. }
  583. else
  584. {
  585. $c++;
  586. $cw = explode('-',$hbw[$w[0].$w2]);
  587. $cf = explode('|',$hbf[$w[0].$w2]);
  588. if($cw[2] != 0 && $w[2] != 0)
  589. {
  590. $cf[2] += $f[2];
  591. $cf[9] .= '~'.$f[9];
  592. $hbf[$w[0].$w2] = implode("|",$cf);
  593. $cw[1] += $f[2];
  594. $cw[2] .= '~'.$f[9];
  595. $hbw[$w[0].$w2] = implode("-",$cw);
  596. }
  597. else if($cw[2] == 0 && $w[2] == 0)
  598. {
  599. $cf[2] += $f[2];
  600. $hbf[$w[0].$w2] = implode("|",$cf);
  601. $cw[1] += $f[2];
  602. $hbw[$w[0].$w2] = implode("-",$cw);
  603. }
  604. else
  605. {
  606. $hbw[] = $hbcfw[$i];
  607. $hbf[] = $hbcff[$i];
  608. }
  609. }
  610. }
  611. if($c > 0)
  612. {
  613. $post['fpdata'] = implode(";",$hbf).';';
  614. $post['whlabel'] = '|'.implode("|",$hbw).'|';
  615. }
  616. //合并重复项结束
  617. //非占单设置为禁止占单开始
  618. $hbw = explode('|',trim($post['whlabel'],'|'));
  619. $hbf = explode(';',trim($post['fpdata'],';'));
  620. foreach ($hbw as $k=>$val)
  621. {
  622. $w = explode('-',$val);
  623. $f = explode('|',$hbf[$k]);
  624. if(!isset($w[2]) || $w[2] == 0)
  625. {
  626. $w[2] = "DNOTO";
  627. $f[9] = "DNOTO";
  628. $hbf[$k] = implode("|",$f);
  629. $hbw[$k] = implode("-",$w);
  630. }
  631. }
  632. $post['fpdata'] = implode(";",$hbf).';';
  633. $post['whlabel'] = '|'.implode("|",$hbw).'|';
  634. //非占单设置为禁止占单结束
  635. //查询净重开始
  636. $post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
  637. $post['zzl'] = ($post['jweight']+100)/1000;
  638. if($post['express'] == 2)
  639. {
  640. $post['zzl'] = intval(($post['jweight']+100)*0.035);
  641. }
  642. //查询净重结束
  643. $tjid = $this->fullorder->insert($post);
  644. if($post['email'] == '')
  645. {
  646. $post['email'] = $post['name'].'@qq.com';
  647. }
  648. $adrs = $this->customer->get_email($post['email'],$post['shop']);
  649. preg_match_all('/[0-9]/u',$post['phone'],$result);
  650. $numphone = join('',$result[0]);
  651. $hmdaddress1 = str_replace(array(' parkway',' drive',' street',' road',' avenue',' boulevard',' alley',' court',' place',' lane',' manor',' terrace',' trail',' view',' cove'),array(' pkwy',' dr',' st',' rd',' av',' blvd',' aly',' ct',' pl',' ln',' mnr',' ter',' trl',' vw',' cv'),strtolower($post['address']));
  652. $hmdaddress2 = str_replace(array(' pkwy',' dr',' st',' rd',' av',' blvd',' aly',' ct',' pl',' ln',' mnr',' ter',' trl',' vw',' cv'),array(' parkway',' drive',' street',' road',' avenue',' boulevard',' alley',' court',' place',' lane',' manor',' terrace',' trail',' view',' cove'),strtolower($post['address']));
  653. $hmdaddress3 = str_replace(array(' avenue',' ave',' av'),array(' ave',' avenue',' ave'),strtolower($post['address']));
  654. $hmdid = '';
  655. $customerb = $this->customer->find_all("type = 2 and (email = '".$post['email']."' or address = '".$post['address']."' or address = '".$hmdaddress1."' or address = '".$hmdaddress2."' or address = '".$hmdaddress3."' or numphone = '".$numphone."')",'*','id desc');
  656. $lkh = (isset($customerb[0]['id']))?2:1;//白名单1黑名单2
  657. if($lkh == 2)
  658. {
  659. $hmdid = $customerb[0]['id'].'-('.$post['email'].'|'.$post['address'].'|'.$numphone.')'.'('.$customerb[0]['email'].'|'.$customerb[0]['address'].$customerb[0]['numphone'].')';
  660. }
  661. if($adrs)
  662. {
  663. $pdlkh = 1;//这个是判断是否老客户
  664. $this->customer->save(array('time'=>$post['dtime'],'is_tb'=>0,'num'=>$adrs['num']+1,'money'=>$adrs['money']+$post['shouldmoney']),$adrs['id']);
  665. $khid = $adrs['id'];
  666. }
  667. else
  668. {
  669. $str = $post['phone'];
  670. preg_match_all('/[0-9]/u',$str,$result);
  671. $numphone = join('',$result[0]);
  672. $ct['shop'] = $post['shop'];
  673. $ct['source'] = 10;
  674. $ct['level'] = 5;
  675. $ct['country'] = $post['country'];
  676. $ct['time'] = $post['dtime'];
  677. $ct['num'] = 1;
  678. $ct['money'] = $post['shouldmoney'];
  679. $ct['zipcode'] = $post['zipcode'];
  680. $ct['name'] = $post['name'];
  681. $ct['phone'] = $post['phone'];
  682. $ct['numphone'] = $numphone;
  683. $ct['email'] = preg_replace('/( | | |\s)+/','',$post['email']);
  684. $ct['province'] = $post['province'];
  685. $ct['city'] = $post['city'];
  686. $ct['address'] = $post['address'];
  687. $ct['zhcx'] = $post['shop'].'-'.$ct['email'];
  688. $ct['is_tb'] = 0;
  689. $khid = $this->customer->insert($ct);
  690. $pdlkh = 0;
  691. }
  692. $this->_znxc($post,$order_id,$lkh,$pdlkh,$hmdid);
  693. /**
  694. if($post['shop'] == '1' || $post['shop'] == '2' || $post['shop'] == '6' || $post['shop'] == '5')
  695. {
  696. $this->_znxc($post,$order_id,$lkh);
  697. }
  698. else
  699. {
  700. $this->_znx($post,$order_id,$lkh);
  701. }
  702. **/
  703. }//else{}如果有此订单
  704. }
  705. }
  706. if ($this->db->trans_status() === FALSE)
  707. {
  708. $this->db->trans_commit();
  709. }
  710. else
  711. {
  712. $this->db->trans_commit();
  713. }
  714. usleep(50);//停留2秒
  715. }
  716. if($tb == 1)
  717. {
  718. echo json_encode(array('msg'=>'有店铺正在同步中,请5分钟后再试!','success'=>true));exit;
  719. }
  720. echo json_encode(array('msg'=>'OK!','success'=>true));exit;
  721. }
  722. }
  723. public function _tb()
  724. {
  725. $api = $this->input->get('api',true);
  726. if(isset($api) && $api = '89757')
  727. {
  728. $data = $this->fullorder->find_all('dlz < 1 and source != 1 and waybill != "" and dtime > "'.(time()-48*3600).'"');
  729. $dataorder = array();$datashop = array();$dataex = array();$datack = array();
  730. /* 店铺加入键值-j */
  731. $fshop = $this->shop->find_all('1=1');
  732. foreach ($fshop as $v)
  733. {
  734. $datashop[$v['id']] = $v;
  735. }
  736. /* 店铺加入键值-k */
  737. /* 快递加入键值-j */
  738. $fex = $this->express->find_all('1=1');
  739. foreach ($fex as $v)
  740. {
  741. $dataex[$v['id']] = $v;
  742. }
  743. /* 快递加入键值-k */
  744. /* 仓库加入键值-k */
  745. $fwh = $this->warehouse->find_all('1=1');
  746. foreach ($fwh as $v)
  747. {
  748. $datack[$v['id']] = $v;
  749. }
  750. /* 仓库加入键值-j */
  751. //$fs = $this->notice->get_ordertatus(216);//216成功状态
  752. foreach ($data as $v)
  753. {
  754. $ddh = substr($v['orderinfo'],1);
  755. $ydh = $v['waybill'];
  756. $xg = $v;//此订单数据
  757. $shop = $datashop[$xg['shop']];//此订单店铺
  758. $ex = $dataex[$xg['express']];//此订单快递
  759. $warehouse = $datack[$xg['type']];//此订单仓库
  760. $shopifyid = $v['shopify'];
  761. if($xg['shop'] < 7)
  762. {
  763. $xg['iscode'] = $ex['title'];
  764. $xg['url'] = $shop['shopname'];
  765. @$fs = $this->api->get_paypal($xg);
  766. $this->afspaypal->insert(array('number'=>$xg['number'],'cs'=>$fs));
  767. }
  768. $ms = $this->message->find_all("express like '%,".$xg['express'].",%'");
  769. if(!isset($ms[0]))
  770. {
  771. $ms = $this->message->read(2);
  772. }
  773. else
  774. {
  775. $ms = $ms[0];
  776. }
  777. $shopname = $shop['brandname']; //店铺名
  778. $buyername = $xg['bname']; //Bill Name
  779. $email_call = $shop['shopid']; //发货人邮箱;
  780. $phone = $shop['shopphone']; //发货人电话
  781. $track_type = $ex['title']; //快递名称
  782. $service = $ex['title']; //快递追踪名称
  783. $track_link = $ex['url']; //快递查询网址
  784. $logistics_number = $ydh; //运单号
  785. $t= array('%buyername%','%email_call%','%track_type%','%service%','%track_link%','%logistics_number%','%shop%','%phone%','%jtime%');
  786. $h= array($buyername,$email_call,$track_type,$service,$track_link,$logistics_number,$shopname,$phone,$ex['yjtime']);
  787. $remark = str_replace($t,$h,$ms['content']);
  788. @$gx = $this->api->get_gx($ddh,$ydh,$xg,$shop,$ex,$remark,$shopifyid);
  789. if(!isset($gx['res']))
  790. {
  791. continue;
  792. }
  793. $this->fullorder->save(array('dlz'=>$gx['res'],'state'=>$gx['state']),$v['id']);
  794. }
  795. }
  796. }
  797. //更新独立站运单信息
  798. public function _waybill($arg_array)
  799. {
  800. $where = "dlz < '1' and state = '207' and shop != '19' and ";
  801. if(date("H",time()) == '8' && date("i",time()) > '20' && date("i",time()) < '39')//USPS-USA单,已出库——使用模板3 每天早上8点半 触发发送【昨天早上7点-今天早上7点】出库的
  802. {
  803. $where .= "(express = '2' or express = '63' or express = '64') and librarytime > '".strtotime(date("Y-m-d 7:00:0",strtotime("-1 day")))."' and librarytime < '".strtotime(date("Y-m-d 7:00:0",time()))."'";
  804. $readid = 3;
  805. }
  806. else if(date("H",time()) == '21' && date("w",time()) != '0')//二、杭州联邦+杭州联邦-不报关,单独用一个模板—新模板2 每天晚上9点半 触发发送 【昨天晚上9:30——今天晚上9:30】出库的
  807. {
  808. if(date("w",time()) == '1')//周一执行:周六晚上9点半——周一晚上9点半 之间出库的
  809. {
  810. $where .= "(express = '24' or express = '31') and librarytime > '".strtotime(date("Y-m-d 21:00:0",strtotime("-2 day")))."' and librarytime < '".strtotime(date("Y-m-d 21:00:0",time()))."'";
  811. }
  812. else //周二到周六: 前一天晚上9点半——当天晚上9点半之间出库的
  813. {
  814. $where .= "(express = '24' or express = '31') and librarytime > '".strtotime(date("Y-m-d 21:00:0",strtotime("-1 day")))."' and librarytime < '".strtotime(date("Y-m-d 21:00:0",time()))."'";
  815. }
  816. $readid = 2;
  817. }
  818. else if(date("H",time()) == '19' && date("w",time()) != '0')//其他快递-使用模板1 DHL官方、UPS、DPEX 等系统里打印运单自动有运单号的,出库后当天晚上7点执行。
  819. {
  820. if(date("w",time()) == '1')//周一执行:周六晚上9点半——周一晚上9点半 之间出库的
  821. {
  822. $where .= "express != '2' and express != '24' and express != '31' and printtype = '1' and waybill != '' and librarytime > '".strtotime(date("Y-m-d 19:00:0",strtotime("-2 day")))."' and librarytime < '".strtotime(date("Y-m-d 19:00:0",time()))."'";
  823. }
  824. else //周二到周六: 前一天晚上9点半——当天晚上9点半之间出库的
  825. {
  826. $where .= "express != '2' and express != '24' and express != '31' and printtype = '1' and waybill != '' and librarytime > '".strtotime(date("Y-m-d 19:00:0",strtotime("-1 day")))."' and librarytime < '".strtotime(date("Y-m-d 19:00:0",time()))."'";
  827. }
  828. $readid = 1;
  829. }
  830. else
  831. {
  832. exit;
  833. }
  834. $dataorder = array();$datashop = array();$dataex = array();$datack = array();
  835. // 订单加入键值-k
  836. $fdata = $this->fullorder->find_all($where);//,'source,id,orderinfo,waybill,shop,express,type,msg,bname,state,client,name,phone,zipcode,address,email,shopify'
  837. //* 订单加入键值-j
  838. //* 店铺加入键值-j
  839. $fshop = $this->shop->find_all('1=1');
  840. foreach ($fshop as $v)
  841. {
  842. $datashop[$v['id']] = $v;
  843. }
  844. //* 店铺加入键值-k
  845. //* 快递加入键值-j
  846. $fex = $this->express->find_all('1=1');
  847. foreach ($fex as $v)
  848. {
  849. $dataex[$v['id']] = $v;
  850. }
  851. //* 快递加入键值-k
  852. //* 仓库加入键值-k
  853. $fwh = $this->warehouse->find_all('1=1');
  854. foreach ($fwh as $v)
  855. {
  856. $datack[$v['id']] = $v;
  857. }
  858. //* 仓库加入键值-j
  859. $i = 0;$j = 0;$ed = array();
  860. foreach ($fdata as $key=>$value)
  861. {
  862. if($value['source'] == 1)
  863. {
  864. $this->fullorder->save(array('dlz'=>3,'state'=>216),$value['id']);
  865. }
  866. else
  867. {
  868. $ddh = substr($value['orderinfo'],1);
  869. $ydh = $value['waybill'];
  870. $xg = $value;//此订单数据
  871. $shop = $datashop[$xg['shop']];//此订单店铺
  872. $ex = $dataex[$xg['express']];//此订单快递
  873. $warehouse = $datack[$xg['type']];//此订单仓库
  874. $shopifyid = $value['shopify'];
  875. if($xg['shop'] < 7)
  876. {
  877. $xg['iscode'] = $ex['title'];
  878. $xg['url'] = $shop['shopname'];
  879. @$fs = $this->api->get_paypal($xg);
  880. $this->afspaypal->insert(array('number'=>$xg['number'],'cs'=>$fs));
  881. }
  882. $ms = $this->message->find_all("express like '%,".$xg['express'].",%'");
  883. if(!isset($ms[0]))
  884. {
  885. $ms = $this->message->read(2);
  886. }
  887. else
  888. {
  889. $ms = $ms[0];
  890. }
  891. $shopname = $shop['brandname']; //店铺名
  892. $buyername = $xg['bname']; //Bill Name
  893. $email_call = $shop['shopid']; //发货人邮箱;
  894. $phone = $shop['shopphone']; //发货人电话
  895. $track_type = $ex['title']; //快递名称
  896. $service = $ex['title']; //快递追踪名称
  897. $track_link = $ex['url']; //快递查询网址
  898. $logistics_number = $ydh; //运单号
  899. $t= array('%buyername%','%email_call%','%track_type%','%service%','%track_link%','%logistics_number%','%shop%','%phone%','%jtime%');
  900. $h= array($buyername,$email_call,$track_type,$service,$track_link,$logistics_number,$shopname,$phone,$ex['yjtime']);
  901. $remark = str_replace($t,$h,$ms['content']);
  902. @$gx = $this->api->get_gx($ddh,$ydh,$xg,$shop,$ex,$remark,$shopifyid);
  903. if(!isset($gx['res']))
  904. {
  905. continue;
  906. }
  907. $this->fullorder->save(array('dlz'=>$gx['res'],'state'=>$gx['state']),$value['id']);
  908. }
  909. //sleep(4);
  910. }
  911. //同步更新 淘宝的运单号
  912. $this->_taobao();
  913. $this->_kcjc();
  914. }
  915. public function _taobao()
  916. {
  917. $data = $this->fullorder->find_all("shop = 19 and dlz != '3' and state = '207' and librarytime > 0");
  918. foreach ($data as $k=>$v)
  919. {
  920. $this->fullorder->save(array('dlz'=>3,'state'=>216),$v['id']);
  921. }
  922. }
  923. public function _kcjc()
  924. {
  925. $gethl = $this->whlabel->find_all("zd != '' and state = '0'");
  926. $b = array();
  927. foreach ($gethl as $k=>$v)
  928. {
  929. $a = $this->fullorder->get_number($v['zd']);
  930. if($a['librarytime'] > 0 && $a['library'] == 2)
  931. {
  932. //$b[] = array($v['sku'],$v['zd']);
  933. $this->whlabel->save(array('state'=>1,'orderinfo'=>$a['orderinfo'],'waybill'=>$a['waybill'],'outk'=>$a['librarytime'],'time'=>$a['librarytime']),$v['id']);
  934. }
  935. }
  936. }
  937. public function _waybillemail($arg_array)
  938. {
  939. $urls = array();$sl = 0;$time = time();
  940. /**
  941. if(date("H",time()) == '8' && date("i",time()) > '20' && date("i",time()) < '39')//USPS-USA单
  942. {
  943. $wid = 1;
  944. }
  945. else if(date("H",time()) == '22' && date("w",time()) != '0' && date("i",time()) > '20' && date("i",time()) < '39')//二、杭州联邦+杭州联邦-不报关
  946. {
  947. if(date("w",time()) == '1')//周一执行:周六晚上9点半——周一晚上9点半 之间出库的
  948. {
  949. $wid = 2;
  950. }
  951. else //周二到周六: 前一天晚上9点半——当天晚上9点半之间出库的
  952. {
  953. $wid = 3;
  954. }
  955. }
  956. else if(date("H",time()) == '20' && date("w",time()) != '0' && date("i",time()) > '20' && date("i",time()) < '39')//其他快递
  957. {
  958. if(date("w",time()) != '1')
  959. {
  960. $wid = 4;
  961. }
  962. else
  963. {
  964. $wid = 5;
  965. }
  966. }
  967. **/
  968. if(date("H",time()) == '8' && date("i",time()) > '20' && date("i",time()) < '39')//USPS-USA单
  969. {
  970. $wid = 1;
  971. }
  972. else if(date("H",time()) == '20' && date("i",time()) > '20' && date("i",time()) < '39')//其他快递
  973. {
  974. $wid = 2;
  975. }
  976. else if(date("H",time()) == '21' && date("i",time()) > '20' && date("i",time()) < '39')//其他快递
  977. {
  978. $wid = 3;
  979. }
  980. else
  981. {
  982. exit;
  983. }
  984. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");//已有自动发送,这个是物流发送
  985. foreach ($notice as $key=>$var)
  986. {
  987. $urls[] = array('url'=>'http://1.wepolicy.cn/api/waybillfs?v='.$var['id'],'data'=>array('var'=>$var,'wid'=>$wid));
  988. }
  989. foreach($urls as $value) {
  990. $ch = curl_init();
  991. $url = $value['url'];
  992. curl_setopt($ch,CURLOPT_URL,$url);
  993. curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
  994. curl_setopt($ch,CURLOPT_HEADER,0);
  995. curl_setopt($ch,CURLOPT_POST, 1);
  996. curl_setopt($ch,CURLOPT_TIMEOUT,1);
  997. //设置post数据
  998. $post = array();
  999. $post['data'] = $value['data'];
  1000. curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($post));
  1001. $res = curl_exec($ch);
  1002. curl_close($ch);
  1003. $sl++;
  1004. }
  1005. echo $sl;
  1006. echo "<pre>";
  1007. print_r($urls);
  1008. }
  1009. public function _waybillfs()
  1010. {
  1011. $post = $this->input->post(NULL, TRUE);
  1012. $data = $this->input->post('data',true);
  1013. if($data)
  1014. {
  1015. $notice = $data['var'];
  1016. $notice['email'] = $this->emaildata->read($notice['email']);
  1017. $wid = $data['wid'];
  1018. $fsjs = "";
  1019. if($wid == 1 && (stripos($notice['express'],',2,') !== false || stripos($notice['express'],',63,') !== false || stripos($notice['express'],',64,') !== false))
  1020. {
  1021. $js = explode(',',trim($notice['js'],','));
  1022. if(count($js) > 1)
  1023. {
  1024. $fsjs = " and (";
  1025. foreach ($js as $v)
  1026. {
  1027. $fsjs .= "js = '$v' or ";
  1028. }
  1029. $fsjs = trim($fsjs,' or ').")" ;
  1030. }
  1031. else if(count($js) == 1)
  1032. {
  1033. $fsjs = " and js = '$js[0]'";
  1034. }
  1035. $where = "(express = '2' or express = '63' or express = '64') and librarytime > '".strtotime(date("Y-m-d 8:30:0",strtotime("-6 day")))."' and librarytime < '".strtotime(date("Y-m-d 8:30:0",time()))."'".$fsjs;//3
  1036. }
  1037. /**
  1038. else if($wid == 2 && stripos($notice['express'],',1,') !== false)
  1039. {
  1040. $where = "(express = '24' or express = '31') and librarytime > '".strtotime(date("Y-m-d 22:00:0",strtotime("-6 day")))."' and librarytime < '".strtotime(date("Y-m-d 22:00:0",time()))."'";//4
  1041. }
  1042. else if($wid == 3 && stripos($notice['express'],',1,') !== false)
  1043. {
  1044. $where = "(express = '24' or express = '31') and librarytime > '".strtotime(date("Y-m-d 22:00:0",strtotime("-6 day")))."' and librarytime < '".strtotime(date("Y-m-d 22:00:0",time()))."'";//3
  1045. }
  1046. else if($wid == 4 && stripos($notice['express'],',1,') !== false)
  1047. {
  1048. $where = "express != '2' and express != '24' and express != '31' and printtype = '1' and waybill != '' and librarytime > '".strtotime(date("Y-m-d 20:00:0",strtotime("-6 day")))."' and librarytime < '".strtotime(date("Y-m-d 20:00:0",time()))."'";//3
  1049. }
  1050. else if($wid == 5 && stripos($notice['express'],',1,') !== false)
  1051. {
  1052. $where = "express != '2' and express != '24' and express != '31' and printtype = '1' and waybill != '' and librarytime > '".strtotime(date("Y-m-d 20:00:0",strtotime("-6 day")))."' and librarytime < '".strtotime(date("Y-m-d 20:00:0",time()))."'";//4
  1053. }
  1054. **/
  1055. else if($wid == 2 && stripos($notice['express'],',1,') !== false)
  1056. {
  1057. $where = "express != '2' and express != '63' and express != '64' and printtype = '1' and waybill != '' and librarytime > '".strtotime(date("Y-m-d 20:00:0",strtotime("-6 day")))."' and librarytime < '".strtotime(date("Y-m-d 20:00:0",time()))."'";//4
  1058. }
  1059. else if($wid == 3 && stripos($notice['express'],',1,') !== false)
  1060. {
  1061. $where = "express = '71' and printtype = '2' and waybill != '' and librarytime > '".strtotime(date("Y-m-d 20:00:0",strtotime("-6 day")))."' and librarytime < '".strtotime(date("Y-m-d 20:00:0",time()))."'";//4
  1062. }
  1063. else
  1064. {
  1065. exit;
  1066. }
  1067. $wlfs = array();
  1068. $dd = $this->fullorder->find_all("source != '1' and dlzemail < '1' and shop = '".$notice['shop']."' and library = 2 and ".$where);
  1069. $this->logic_ding->sendToDing("获取发送快件的快递条件"."source != '1' and dlzemail < '1' and shop = '".$notice['shop']."' and library = 2 and ".$where);
  1070. foreach ($dd as $v)
  1071. {
  1072. $shop = $this->shop->read($v['shop']);
  1073. $express = $this->express->read($v['express']);
  1074. $fs = $this->notice->get_god($v,$shop,$express,$notice);
  1075. $this->logic_ding->sendToDing($v['orderinfo']."监听邮件发送的异常:订单信息【".json_encode($v,JSON_UNESCAPED_UNICODE)."】获取快递信息【".json_encode($notice,JSON_UNESCAPED_UNICODE)."】返回的信息".json_encode($fs));
  1076. if($fs == 1)
  1077. {
  1078. $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$v['id']);
  1079. //给crm发送信息 先存储数据 后续定时任务执行
  1080. if($v['shop'] < 10){
  1081. $this->zztmpdata->insert([
  1082. 'type'=>2,
  1083. 'act_name'=>'crm_order',
  1084. 'content'=>json_encode($v),
  1085. 'create_time'=>time()
  1086. ]);
  1087. }
  1088. }
  1089. else
  1090. {
  1091. //$pdtime = date('Y-m-d',time());
  1092. //$folderPath = './data/dlzemail/'.$pdtime; // 文件夹路径
  1093. //$permissions = 0777; // 权限设置
  1094. //if (!file_exists($folderPath)) { mkdir($folderPath, $permissions); }//创建文件夹
  1095. //file_exists($folderPath);
  1096. if(!is_file("./data/dlzemail/".$v['number'].".txt"))
  1097. {
  1098. $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "w") or die("Unable to open file!");
  1099. fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  1100. fclose($myfile);
  1101. }
  1102. else
  1103. {
  1104. $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "a+") or die("Unable to open file!");
  1105. fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  1106. fclose($myfile);
  1107. }
  1108. $this->fullorder->save(array('dlzemail'=>2,'dlzemailtime'=>time()),$v['id']);
  1109. }
  1110. sleep(50);
  1111. }
  1112. }
  1113. }
  1114. /**
  1115. //更新独立站运单信息
  1116. public function _waybill($arg_array)
  1117. {
  1118. //这里订单索引需要修改 8点是出已打印已出库 11点是已打印未出库
  1119. if(!isset($arg_array[0]) || !isset($arg_array[1]))
  1120. {
  1121. exit;
  1122. }
  1123. if(date("w",time()) == '0' && $arg_array[0] != '3')//非usps周日不更新
  1124. {
  1125. echo 7;exit;
  1126. }
  1127. if($arg_array[0] == 3)
  1128. {
  1129. $argarray = 2;
  1130. $typec = ' and express = 2 and printtime > "'.strtotime("-3 day").'"';//更新usps-usa快递的订单
  1131. }
  1132. else
  1133. {
  1134. $argarray = $arg_array[0];
  1135. $typec = ' and librarytime > "'.strtotime(date("Y-m-d 16:30:0",strtotime("-5 day"))).'" and librarytime < "'.strtotime(date("Y-m-d 18:0:0",time())).'"';//更新快递的订单
  1136. }
  1137. $dataorder = array();$datashop = array();$dataex = array();$datack = array();
  1138. // 订单加入键值-k
  1139. $fdata = $this->fullorder->find_all('state = "207" and print = "3" and dlz < "1" and libraryconfirm = "2" and library = "'.$argarray.'" and waybill != ""'.$typec,'source,id,orderinfo,waybill,shop,express,type,msg,bname,state,client,name,phone,zipcode,address,email');
  1140. //* 订单加入键值-j
  1141. //* 店铺加入键值-j
  1142. $fshop = $this->shop->find_all('1=1');
  1143. foreach ($fshop as $v)
  1144. {
  1145. $datashop[$v['id']] = $v;
  1146. }
  1147. //* 店铺加入键值-k
  1148. //* 快递加入键值-j
  1149. $fex = $this->express->find_all('1=1');
  1150. foreach ($fex as $v)
  1151. {
  1152. $dataex[$v['id']] = $v;
  1153. }
  1154. //* 快递加入键值-k
  1155. //* 仓库加入键值-k
  1156. $fwh = $this->warehouse->find_all('1=1');
  1157. foreach ($fwh as $v)
  1158. {
  1159. $datack[$v['id']] = $v;
  1160. }
  1161. //* 仓库加入键值-j
  1162. //$fs = $this->notice->get_ordertatus(216);//216成功状态
  1163. $i = 0;$j = 0;$ed = array();
  1164. foreach ($fdata as $key=>$value)
  1165. {
  1166. if($value['source'] == 1)
  1167. {
  1168. $this->fullorder->save(array('dlz'=>3,'state'=>216),$value['id']);
  1169. }
  1170. else
  1171. {
  1172. $ddh = substr($value['orderinfo'],1);
  1173. $ydh = $value['waybill'];
  1174. $xg = $value;//此订单数据
  1175. $shop = $datashop[$xg['shop']];//此订单店铺
  1176. $ex = $dataex[$xg['express']];//此订单快递
  1177. $warehouse = $datack[$xg['type']];//此订单仓库
  1178. //独立站地址更新订单状态、物流信息
  1179. if($arg_array[0] == 1)//23点更新用留言2
  1180. {
  1181. $readid = 2;
  1182. }
  1183. else if($arg_array[0] == 3)//7点更新用留言3
  1184. {
  1185. $readid = 3;
  1186. }
  1187. else //20点更新用默认留言(默认留言为1)
  1188. {
  1189. $readid = $xg['msg'];
  1190. }
  1191. @$gx = $this->api->get_gx($ddh,$ydh,$xg,$shop,$ex,$readid);
  1192. if(!isset($gx['res']))
  1193. {
  1194. exit;
  1195. }
  1196. $this->fullorder->save(array('dlz'=>$gx['res'],'state'=>$gx['state']),$xg['id']);
  1197. }
  1198. //if($gx['res'] == 1 && $fs)
  1199. //{
  1200. // $ck = $this->_email($fs['content'],$xg,$warehouse['company']);
  1201. //}
  1202. sleep(2);//停留2秒
  1203. }
  1204. }
  1205. **/
  1206. public function _headgear($arg_array)
  1207. {
  1208. $ip = $this->input->ip_address();
  1209. if(!isset($arg_array[0]) || !isset($arg_array[1]))
  1210. {
  1211. exit;
  1212. }
  1213. if(!is_numeric($arg_array[0]) || !is_numeric($arg_array[1]))
  1214. {
  1215. exit;
  1216. }
  1217. $where = 'printtime > "'.strtotime(date('Y-m-d',$arg_array[0])).'" and print = 3 and library = 1 and (type = 4 or type = 13 or type = 11 or type = 12 or type = 16)';//(type = 4 or type = 7)
  1218. if($arg_array[1] == 1)
  1219. {
  1220. $data = $this->fullordersmt->find_all($where,'express,number,orderinfo,shipremarks,printtime');
  1221. }
  1222. else
  1223. {
  1224. $data = $this->fullorder->find_all($where,'express,number,orderinfo,shipremarks,printtime');
  1225. }
  1226. foreach ($data as $k=>$v)
  1227. {
  1228. $express = $this->express->read($v['express']);
  1229. $data[$k]['express'] = $express['servicename'];
  1230. if($data[$k]['printtime'] > 0)
  1231. {
  1232. $data[$k]['printtime'] = date('Y-m-d H:i:s',$v['printtime']);
  1233. }
  1234. }
  1235. //$state = $this->api->get_headgear($data);
  1236. echo json_encode($data);
  1237. }
  1238. public function _kc_old()
  1239. {
  1240. $post = $this->input->post(NULL, TRUE);
  1241. if(isset($post['sku']))
  1242. {
  1243. $sku = $this->input->post('sku',true);
  1244. $warehouse = $this->warehouse->find_all();
  1245. $data = array();
  1246. foreach ($sku as $val)
  1247. {
  1248. $datasku = array();
  1249. foreach ($warehouse as $v)
  1250. {
  1251. $z = $this->whlabel->find_count('sku = "'.$val.'" and zd = "" and state = 0 and warehouse = "'.$v['id'].'"');
  1252. $datasku[] = array('name'=>$v['title'],'number'=>$z);
  1253. }
  1254. $data[$val] = $datasku;
  1255. }
  1256. }
  1257. echo json_encode($data);
  1258. }
  1259. public function _kc()
  1260. {
  1261. $datasku = array();
  1262. $info_list = $this->whlabel->find_pc("warehouse = '5'",'sku,features,warehouse','sku');
  1263. foreach ($info_list as $val)
  1264. {
  1265. $z = $this->whlabel->find_count('sku = "'.$val['sku'].'" and zd = "" and state = 0 and warehouse = "5"');
  1266. $datasku[] = array('sku'=>$val['sku'],'number'=>$z);
  1267. }
  1268. echo json_encode($datasku);
  1269. }
  1270. public function _fsstate()//订单消息页手动发送
  1271. {
  1272. $post = $this->input->post(NULL, TRUE);
  1273. if(isset($post['s']))
  1274. {
  1275. $id_arr = $this->input->post('s');
  1276. $notice = $this->input->post('notice');
  1277. $noticeid = $this->input->post('noticeid');
  1278. $id_arr = explode(',',trim($id_arr,','));
  1279. if(!$id_arr)
  1280. {
  1281. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  1282. }
  1283. if($notice == '1' || $notice == '')
  1284. {
  1285. foreach ($id_arr as $v)
  1286. {
  1287. $data = $this->fullorder->read($v);
  1288. $adrs = $this->customer->get_email($data['email'],$data['shop']);
  1289. //$lkh = ($adrs['type'] == 1)?1:2;//白名单1黑名单2
  1290. $lkh = 1;
  1291. $pdlkh = ($adrs['num'] > 1)?1:0;//判断是否老客户
  1292. $fs = $this->_znxc($data,$data['orderinfo'],$lkh,$pdlkh);
  1293. if($fs == 1)
  1294. {
  1295. $this->fullorder->save(array('exstateerror'=>''),$data['id']);
  1296. }
  1297. sleep(40);
  1298. }
  1299. }
  1300. else
  1301. {
  1302. foreach ($id_arr as $v)
  1303. {
  1304. $data = $this->fullorder->read($v);
  1305. $fs = $this->_sdfs($data,$noticeid);
  1306. sleep(40);
  1307. }
  1308. }
  1309. echo json_encode(array('msg'=>'发送完成!','id'=>$id_arr,'success'=>true));exit;
  1310. }
  1311. }
  1312. public function _fswaybillemail()//运单号通知页手动发送
  1313. {
  1314. $post = $this->input->post(NULL, TRUE);
  1315. if(isset($post['s']))
  1316. {
  1317. $time = time();
  1318. $id_arr = $this->input->post('s');
  1319. $id_arr = explode(',',trim($id_arr,','));
  1320. if(!$id_arr)
  1321. {
  1322. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  1323. }
  1324. foreach ($id_arr as $v)
  1325. {
  1326. $d = $this->fullorder->read($v);
  1327. $shop = $this->shop->read($d['shop']);
  1328. $ex = $this->express->read($d['express']);
  1329. $fs = $this->notice->find_all("shop = '".$d['shop']."' and message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");
  1330. $fs = $fs[0];
  1331. $fs['email'] = $this->emaildata->read($fs['email']);
  1332. $ck = $this->notice->get_god($d,$shop,$ex,$fs);
  1333. if($ck == 1)
  1334. {
  1335. $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$v);
  1336. }
  1337. sleep(1);
  1338. }
  1339. echo json_encode(array('msg'=>'发送完成!请检查是否成功','id'=>$id_arr,'success'=>true));exit;
  1340. }
  1341. }
  1342. /**
  1343. public function _fsstate()//订单消息页手动发送 _znxc 针对模板对应类型发送
  1344. {
  1345. $post = $this->input->post(NULL, TRUE);
  1346. if(isset($post['s']))
  1347. {
  1348. $id_arr = $this->input->post('s');
  1349. $id_arr = explode(',',$id_arr);
  1350. if(!$id_arr)
  1351. {
  1352. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  1353. }
  1354. foreach ($id_arr as $v)
  1355. {
  1356. $data = $this->fullorder->read($v);
  1357. $adrs = $this->customer->get_email($data['email'],$data['shop']);
  1358. $lkh = ($adrs['type'] == 1)?1:2;//白名单1黑名单2
  1359. $fs = $this->_znxc($data,$data['orderinfo'],$lkh);
  1360. if($fs == 1)
  1361. {
  1362. $this->fullorder->save(array('exstateerror'=>''),$data['id']);
  1363. }
  1364. }
  1365. echo json_encode(array('msg'=>'发送完成!','id'=>$id_arr[0],'success'=>true));exit;
  1366. }
  1367. }
  1368. **/
  1369. public function _cangku()
  1370. {
  1371. $post = $this->input->post(NULL, TRUE);
  1372. if(isset($post['tk']))
  1373. {
  1374. $tk = $this->input->post('tk');
  1375. $tj = $this->input->post('tj');
  1376. $d = $this->fullorder->find_all("dtime > '$tk' and dtime < '$tj'");
  1377. $k = $this->customer->find_all("time > '$tk' and time < '$tj'");
  1378. echo json_encode(array('d'=>$d,'k'=>$k));exit;
  1379. }
  1380. }
  1381. public function _znxc($fullorder,$order_id,$lkh,$pdlkh,$hmdid='')
  1382. {
  1383. $time = time();
  1384. $sl = explode(';',$fullorder['quantity']);
  1385. $quantity = 0;
  1386. foreach ($sl as $v)
  1387. {
  1388. if($v > 1)
  1389. {
  1390. $quantity = 1;
  1391. }
  1392. }
  1393. $fid = $this->fullorder->get_orderinfo($order_id);
  1394. if($lkh == 2 || (count($sl) > 1 && $quantity == 1) || stripos($fullorder['address'],'PO ') !== false || stripos($fullorder['address'],'P.O.') !== false || stripos($fullorder['address'],'P. O.') !== false || stripos($fullorder['address'],'PO.') !== false || stripos($fullorder['address'],'P.O') !== false || stripos($fullorder['address'],' APO ') !== false)//如果是黑名单客户、多产品的、有用户留言的、包含PO BOX、包含APO //留言的正常发$fullorder['clientremarks'] != '' ||
  1395. {
  1396. $asdasd = 0;
  1397. if($lkh == 2)
  1398. {
  1399. $asdasd = 1;
  1400. }
  1401. if(count($sl) > 1 && $quantity == 1)
  1402. {
  1403. $asdasd = 2;
  1404. }
  1405. if(stripos($fullorder['address'],'PO ') !== false || stripos($fullorder['address'],'P.O.') !== false || stripos($fullorder['address'],'P. O.') !== false || stripos($fullorder['address'],'PO.') !== false || stripos($fullorder['address'],'P.O') !== false || stripos($fullorder['address'],' APO ') !== false)
  1406. {
  1407. $asdasd = 3;
  1408. }
  1409. $this->fullorder->save(array('content'=>$fid['content'].'黑名单客户、多产品的、包含PO BOX、包含APO的不发送-'.$asdasd.(($hmdid)?'['.$hmdid.']':''),'zdstate'=>$fid['zdstate'].'1-x|'),$fid['id']);//留言的现在正常发
  1410. return 'a';
  1411. }
  1412. else
  1413. {
  1414. if(count($sl) == '1' && $fullorder['quantity'] > 1)//如果item(产品)是1,但quantity大于等于2
  1415. {
  1416. $tab = 2;
  1417. }
  1418. else if($fullorder['shouldmoney'] > '400' && $fullorder['guarantee'] == 'Ineligible')//如果金额大于400美元并且无卖家保障
  1419. {
  1420. $tab = 1;
  1421. }
  1422. /**
  1423. else if(count($sl) == '1' && $fullorder['quantity'] > 1 && $fullorder['baddress'] != $fullorder['saddress'])//如果item(产品)是1,但quantity大于等于2并且Bill Address不等于Ship Address
  1424. {
  1425. $tab = 4;
  1426. }
  1427. else if($fullorder['baddress'] != $fullorder['saddress'])//如果Bill Address不等于Ship Address
  1428. {
  1429. $tab = 3;
  1430. }
  1431. **/
  1432. else//常规模板
  1433. {
  1434. $tab = 0;
  1435. }
  1436. $notice = $this->notice->find_all("shop = '".$fullorder['shop']."' and ordertatus = '".$fullorder['state']."' and tab = '$tab' and message = '1' and state = '1' and ktime < '$time' and jtime > '$time'");//有条件不同模板匹配
  1437. if(isset($notice[0]['content']))
  1438. {
  1439. if($pdlkh == '1' && $notice[0]['thq'] != ''&& $notice[0]['thh'] != '')//非常规和老客户模板,如果是老客户并且需要替换的话
  1440. {
  1441. $notice[0]['content'] = str_replace($notice[0]['thq'],$notice[0]['thh'],$notice[0]['content']);
  1442. }
  1443. $shop = $this->shop->read($fullorder['shop']);
  1444. //$express = $this->express->read($fullorder['express']);
  1445. //$service = $this->service->read($express['service']);
  1446. $country = $this->country->read($fullorder['country']);
  1447. $fullorder['country'] = $country['ename'];
  1448. //$express['servicename'] =$service['title'];//增加快递名称
  1449. $express = array();
  1450. $notice[0]['email'] = $this->emaildata->read($notice[0]['email']);
  1451. $go = $this->notice->get_god($fullorder,$shop,$express,$notice[0]);
  1452. if($go == 1)
  1453. {
  1454. $this->fullorder->save(array('content'=>$fid['content'].'自动发送-成功;','zdstate'=>$fid['zdstate'].$notice[0]['type'].'-'.$notice[0]['tab'].'|','exstateerror'=>''),$fid['id']);
  1455. return 1;
  1456. }
  1457. else
  1458. {
  1459. $this->fullorder->save(array('exstateerror'=>'自动发送失败1:'.date('Y-m-d H',time()).'-'.$go.'('.$notice[0]['type'].'-'.$notice[0]['message'].')'),$fid['id']);
  1460. }
  1461. }
  1462. else
  1463. {
  1464. $this->fullorder->save(array('exstateerror'=>'当前订单状态无匹配模板'),$fid['id']);
  1465. }
  1466. }
  1467. }
  1468. public function _sdfs($fullorder,$id)//手动发送信息
  1469. {
  1470. $time = time();
  1471. $notice = $this->notice->read($id);//无条件同模板匹配
  1472. $notice['email'] = $this->emaildata->read($notice['email']);
  1473. $shop = $this->shop->read($fullorder['shop']);
  1474. $express = $this->express->read($fullorder['express']);
  1475. if($notice['type'] == '1')
  1476. {
  1477. $fslx = 'tab';
  1478. $content = '自动发送';
  1479. $stripos = '1-';
  1480. }
  1481. else if ($notice['type'] == '2')
  1482. {
  1483. $fslx = 'logisticstatus';
  1484. $content = $notice['title'];
  1485. $stripos = $notice['type'].'-'.$notice[$fslx].'|';
  1486. }
  1487. if(stripos($fullorder['zdstate'],$stripos) === false && $fullorder['wltype'] == '0')//如果没发送过并且允许发送
  1488. {
  1489. $go = $this->notice->get_god($fullorder,$shop,$express,$notice);
  1490. if($go == 1)
  1491. {
  1492. if($notice['type'] == '1')
  1493. {
  1494. $this->fullorder->save(array('content'=>$fullorder['content'].$content.'-成功;','zdstate'=>$fullorder['zdstate'].$notice['type'].'-'.$notice[$fslx].'|','exstateerror'=>'','wlerror'=>''),$fullorder['id']);
  1495. }
  1496. else if ($notice['type'] == '2')
  1497. {
  1498. $this->fullorder->save(array('wlcontent'=>$fullorder['wlcontent'].$content.'-成功;','wlfstime'=>time(),'zdstate'=>$fullorder['zdstate'].$notice['type'].'-'.$notice[$fslx].'|','exstateerror'=>'','wlerror'=>''),$fullorder['id']);
  1499. }
  1500. return 1;
  1501. }
  1502. else
  1503. {
  1504. if($notice['type'] == '1')
  1505. {
  1506. $this->fullorder->save(array('exstateerror'=>$content.'发送失败1:'.date('Y-m-d H',time()).'-'.$go.'('.$notice['type'].'-'.$notice[$fslx].')'),$fullorder['id']);
  1507. }
  1508. else if ($notice['type'] == '2')
  1509. {
  1510. $this->fullorder->save(array('wlerror'=>$content.'发送失败2:'.date('Y-m-d H',time()).'-'.$go.'('.$notice['type'].'-'.$notice[$fslx].')'),$fullorder['id']);
  1511. }
  1512. }
  1513. }
  1514. }
  1515. public function _zz()
  1516. {
  1517. //$f = $this->fullorder->find_all("1=1",'wlfstime','wlfstime desc',0,2);
  1518. if(date("w") == '0')
  1519. {
  1520. exit;
  1521. }
  1522. $f17 = array();
  1523. $time = time();
  1524. $tjlike = array();
  1525. $urls = array();$sl = 0;
  1526. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '2' and ktime < '$time' and jtime > '$time'");//已有自动发送,这个是物流发送
  1527. foreach ($notice as $key=>$var)
  1528. {
  1529. $urls[] = array('url'=>'http://a'.rand(10,50).'.wepolicy.cn/api/wlfs?v='.$var['id'],'data'=>array('where'=>array('shop'=>$var['shop'],'expressstate'=>$var['logisticstatus'],'wlcontent'=>$var['title']),'var'=>$var));
  1530. }
  1531. foreach($urls as $value) {
  1532. $tjlike[] = $value['url'];
  1533. $ch = curl_init();
  1534. $url = $value['url'];
  1535. curl_setopt($ch,CURLOPT_URL,$url);
  1536. curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
  1537. curl_setopt($ch,CURLOPT_HEADER,0);
  1538. curl_setopt($ch,CURLOPT_POST, 1);
  1539. curl_setopt($ch,CURLOPT_TIMEOUT,5);
  1540. //设置post数据
  1541. $post = array();
  1542. $post['data'] = $value['data'];
  1543. curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($post));
  1544. $res = curl_exec($ch);
  1545. curl_close($ch);
  1546. $sl++;
  1547. }
  1548. echo "<pre>";
  1549. print_r($tjlike);
  1550. echo $sl;
  1551. /**
  1552. $urls = array();
  1553. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '2' and ktime < '$time' and jtime > '$time'");//已有自动发送,这个是物流发送
  1554. foreach ($notice as $key=>$var)
  1555. {
  1556. $urls[] = array('url'=>'http://1.wepolicy.cn/api/wlfs?v='.$var['id'],'data'=>array('where'=>array('shop'=>$var['shop'],'expressstate'=>$var['logisticstatus'],'wlcontent'=>$var['title']),'var'=>$var));
  1557. }
  1558. $mh = curl_multi_init();
  1559. $urlHandlers = array();
  1560. $urlData = array();
  1561. // 初始化多个请求句柄为一个
  1562. foreach($urls as $value) {
  1563. $ch = curl_init();
  1564. $url = $value['url'];
  1565. $url .= strpos($url, '?') ? '&' : '?';
  1566. curl_setopt($ch, CURLOPT_URL, $url);
  1567. // 设置数据通过字符串返回,而不是直接输出
  1568. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  1569. curl_setopt($ch,CURLOPT_HEADER,0);
  1570. curl_setopt($ch,CURLOPT_POST, 1);
  1571. $post = array();
  1572. $post['data'] = $value['data'];
  1573. curl_setopt($ch,CURLOPT_POSTFIELDS,http_build_query($post));
  1574. $urlHandlers[] = $ch;
  1575. curl_multi_add_handle($mh, $ch);
  1576. }
  1577. $active = null;
  1578. // 检测操作的初始状态是否OK,CURLM_CALL_MULTI_PERFORM为常量值-1
  1579. do {
  1580. // 返回的$active是活跃连接的数量,$mrc是返回值,正常为0,异常为-1
  1581. $mrc = curl_multi_exec($mh, $active);
  1582. } while ($mrc == CURLM_CALL_MULTI_PERFORM);
  1583. // 如果还有活动的请求,同时操作状态OK,CURLM_OK为常量值0
  1584. while ($active && $mrc == CURLM_OK) {
  1585. // 持续查询状态并不利于处理任务,每60ms检查一次,此时释放CPU,降低机器负载
  1586. usleep(50000);
  1587. // 如果批处理句柄OK,重复检查操作状态直至OK。select返回值异常时为-1,正常为1(因为只有1个批处理句柄)
  1588. if (curl_multi_select($mh) != -1) {
  1589. do {
  1590. $mrc = curl_multi_exec($mh, $active);
  1591. } while ($mrc == CURLM_CALL_MULTI_PERFORM);
  1592. }
  1593. }
  1594. // 获取返回结果
  1595. foreach($urlHandlers as $index => $ch) {
  1596. $urlData[$index] = curl_multi_getcontent($ch);
  1597. // 移除单个curl句柄
  1598. curl_multi_remove_handle($mh, $ch);
  1599. }
  1600. curl_multi_close($mh);
  1601. print_r($urlData);
  1602. **/
  1603. /**
  1604. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '2' and ktime < '$time' and jtime > '$time'");//已有自动发送,这个是物流发送
  1605. foreach ($notice as $key=>$var)
  1606. {
  1607. $where = "shop = '".$var['shop']."' and waybill != '' and library = '2' and expressstate <= '".$var['logisticstatus']."' and librarytime > '".(time()-15*24*3600)."' and wlcontent not like '%".$var['title']."%'";//正式发送的时候开启这个"'
  1608. //$where = "shop = '2' and waybill != '' and library = '2' and librarytime > '".(time()-15*24*3600)."'";
  1609. $ch = curl_init();
  1610. curl_setopt($ch,CURLOPT_URL,'http://'.$_SERVER['HTTP_HOST'].'/api/wlfs?v='.$var['id']);
  1611. curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
  1612. curl_setopt($ch,CURLOPT_HEADER,0);
  1613. curl_setopt($ch,CURLOPT_POST, 1);
  1614. curl_setopt($ch,CURLOPT_TIMEOUT,1);
  1615. //设置post数据
  1616. $post = array();
  1617. $post['data'] = array('where'=>$where,'var'=>$var);
  1618. curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($post));
  1619. $res = curl_exec($ch);
  1620. curl_close($ch);
  1621. //$this->_wlfs($where,$var);
  1622. }
  1623. **/
  1624. /**
  1625. $var = $this->notice->read(63);//已有自动发送,这个是物流发送
  1626. $where = "shop = '".$var['shop']."' and waybill != '' and library = '2' and expressstate <= '".$var['logisticstatus']."' and librarytime > '".(time()-15*24*3600)."' and wlcontent not like '%".$var['title']."%'";//正式发送的时候开启这个"'
  1627. $this->_wlfs($where,$var);
  1628. **/
  1629. }
  1630. public function _wlfs()
  1631. {
  1632. $webhookregister = 0;
  1633. $post = $this->input->post(NULL, TRUE);
  1634. $data = $this->input->post('data',true);
  1635. $where = $data['where'];
  1636. $var = $data['var'];
  1637. $wlfs = array();
  1638. $shopid = $where['shop'];
  1639. @$this->allocation->insert(array('title'=>date('Y-m-d',time()).'-'.$shopid));
  1640. $where = "shop = '".$where['shop']."' and waybill != '' and library = '2' and expressstate <= '".$where['expressstate']."' and librarytime > '".(time()-22*24*3600)."' and wlcontent not like '%".$where['wlcontent']."%'";//正式发送的时候开启这个"'
  1641. //$where = "shop = '".$where['shop']."' and waybill != '' and library = '2' and express = '3' and librarytime > '1636300800' and wlcontent not like '%".$where['wlcontent']."%'";//正式发送的时候开启这个"'
  1642. $this->logic_ding->sendToDing("wlfs执行信息".json_encode($data,JSON_UNESCAPED_UNICODE));
  1643. $data = $this->fullorder->find_all($where);
  1644. $csck = array();
  1645. foreach ($data as $k=>$v)
  1646. {
  1647. //$this->logic_ding->sendToDing("获取订单的物流信息".$v['number']);
  1648. $vexpress = $v['express'];
  1649. $shop = $this->shop->read($v['shop']);
  1650. $express = $this->express->read($v['express']);
  1651. $service = $this->service->read($express['service']);
  1652. $country = $this->country->read($v['country']);
  1653. $v['country'] = $country['ename'];
  1654. $express['servicename'] =$service['title'];//增加快递名称
  1655. $v['cxcode'] = strtolower($express['cxcode']);//增加快递服务商码
  1656. if($v['expressstate'] == $var['logisticstatus'] && $v['wlyc'] == '0' && $v['wltype'] != '1' && $v['source'] != '1')//获取快递状态等于模板状态、订单状态等于模板状态、出库时间大于-、未加入物流异常、允许发送邮件状态、非线下单
  1657. {
  1658. if($v['shop'] < '7')// && $v['shouldmoney'] > 100)
  1659. {
  1660. $wlfs[] = array('v'=>$v,'id'=>$var['id']);
  1661. //$go = $this->_sdfs($v,$var['id']);//更新顺带发送
  1662. }
  1663. continue;
  1664. }
  1665. if(($express['cxcode'] == '' && $v['exstateerror'] == '') || ($express['cxcode'] == '' && $v['exstateerror'] != ''))
  1666. {
  1667. continue;
  1668. }
  1669. else if($express['cxcode'] == 'usps')//$express['cxcode'] == 'fedex' || $express['cxcode'] == 'dhl' || $express['cxcode'] == 'cne' || $express['cxcode'] == 'dpex' || $express['cxcode'] == 'dpd'
  1670. {
  1671. /**
  1672. if($express['cxcode'] == 'dpex' || $express['cxcode'] == 'dpd')
  1673. {
  1674. $express['cxcode'] = 'cne';
  1675. }
  1676. **/
  1677. $logistics = $express['cxcode'];
  1678. }
  1679. // else if($express['cxcode'] == 'yscx'){
  1680. // //由于云尚接口老是返回状态异常 或者是物流已经签收 但是云尚的却是只有中国阶段的轨迹不符合要求 就此废除
  1681. // $v['servicename'] =$service['title'];//增加快递名称
  1682. // $v['url'] = $express['url'];//增加快递链接
  1683. // $v['express'] = $vexpress;
  1684. // $this->zzjobs->insert([
  1685. // 'status'=>0,
  1686. // 'quque'=>'ysgjcx',//云尚轨迹查询
  1687. // 'payload'=>json_encode([
  1688. // 'v'=>$v,
  1689. // 'id'=>$var['id']
  1690. // ],JSON_UNESCAPED_UNICODE),
  1691. // 'do_interval'=>1,
  1692. // 'create_time'=>time()
  1693. // ]);
  1694. // continue;
  1695. // }
  1696. else if(($express['cxcode'] == 'ups' && $v['webhookregister'] == 1) || $express['cxcode'] == '17track')
  1697. {
  1698. continue;
  1699. }
  1700. else if($express['cxcode'] == 'ups' && $v['webhookregister'] < 1)//使用webhook注册模式 || $express['cxcode'] == '17track'
  1701. {
  1702. $logistics = $express['cxcode'];
  1703. $webhookregister = 1;
  1704. }
  1705. else
  1706. {
  1707. //暂时不启用第三方,这里直接跳出
  1708. $this->fullorder->save(array('expressstate'=>'99'),$v['id']);
  1709. continue;
  1710. //$logistics = 'apismt';
  1711. //$v['express'] = strtolower($express['cxcode']);//替换为快递服务商码
  1712. }
  1713. $this->logic_ding->sendToDing("检测是否检测--".$v['number']."--执行的轨迹追踪信息--".$logistics);
  1714. $v['servicename'] =$service['title'];//增加快递名称
  1715. $v['url'] = $express['url'];//增加快递链接
  1716. @$fs = $this->$logistics->get_logistics($v);
  1717. $csck[] = array($v['number'],$fs['f'],$fs['content']);
  1718. if(!isset($fs['f']))
  1719. {
  1720. $fs = $this->$logistics->get_logistics($v);
  1721. if(!isset($fs['f']))
  1722. {
  1723. continue;
  1724. }
  1725. if($fs['f'] == '1')
  1726. {
  1727. $v['express'] = $vexpress;
  1728. if($fs['exstate'] > $v['expressstate'] || isset($fs['webhookregister']))
  1729. {
  1730. $this->fullorder->save(array('expressstate'=>$fs['exstate'],'excontent'=>$fs['data'],'webhookregister'=>$webhookregister,'wlerror'=>''),$v['id']);
  1731. }
  1732. if($fs['exstate'] == $var['logisticstatus'] && $v['wlyc'] == '0' && $v['wltype'] != '1' && $v['source'] != '1')//获取快递状态等于模板状态、订单状态等于模板状态、出库时间大于-、未加入物流异常、允许发送邮件状态、非线下单
  1733. {
  1734. if($v['shop'] < '7')// && $v['shouldmoney'] > 100)
  1735. {
  1736. $wlfs[] = array('v'=>$v,'id'=>$var['id']);
  1737. //$go = $this->_sdfs($v,$var['id']);//更新顺带发送
  1738. }
  1739. }
  1740. }
  1741. /**
  1742. if($logistics == 'apismt')//第三方未购买,第三方查询直接进入无法查询状态
  1743. {
  1744. $this->fullorder->save(array('expressstate'=>'99'),$v['id']);
  1745. }
  1746. **/
  1747. }
  1748. else
  1749. {
  1750. if($fs['f'] == '1')
  1751. {
  1752. $v['express'] = $vexpress;
  1753. if($fs['exstate'] > $v['expressstate'] || isset($fs['webhookregister']))
  1754. {
  1755. $this->fullorder->save(array('expressstate'=>$fs['exstate'],'excontent'=>$fs['data'],'webhookregister'=>$webhookregister,'wlerror'=>''),$v['id']);
  1756. }
  1757. if($fs['exstate'] == $var['logisticstatus'] && $v['wlyc'] == '0' && $v['wltype'] != '1' && $v['source'] != '1')//获取快递状态等于模板状态、订单状态等于模板状态、出库时间大于-、未加入物流异常、允许发送邮件状态、非线下单
  1758. {
  1759. if($v['shop'] < '7')// && $v['shouldmoney'] > 100)
  1760. {
  1761. $wlfs[] = array('v'=>$v,'id'=>$var['id']);
  1762. //$go = $this->_sdfs($v,$var['id']);//更新顺带发送
  1763. }
  1764. }
  1765. }
  1766. else
  1767. {
  1768. $this->fullorder->save(array('wlerror'=>$fs['content']),$v['id']);
  1769. }
  1770. }
  1771. }
  1772. @$this->allocation->insert(array('title'=>$shopid.'-'.json_encode($csck)));
  1773. if($wlfs)
  1774. {
  1775. foreach ($wlfs as $k=>$v)
  1776. {
  1777. $t1 = microtime(true);
  1778. $this->_sdfs($v['v'],$v['id']);
  1779. $t2 = microtime(true);
  1780. $t3 = (40-($t2-$t1) < 1)?1:round(40-($t2-$t1));
  1781. sleep($t3);
  1782. }
  1783. }
  1784. }
  1785. public function _zzold()
  1786. {
  1787. $data = $this->fullorder->find_all("library = '2' and waybill != '' and exstate != '4' and exstate != '5' and dtime > '1580486400'");
  1788. foreach ($data as $k=>$v)
  1789. {
  1790. $shop = $this->shop->read($v['shop']);
  1791. $express = $this->express->read($v['express']);
  1792. $service = $this->service->read($express['service']);
  1793. $country = $this->country->read($v['country']);
  1794. $v['country'] = $country['ename'];
  1795. $express['servicename'] =$service['title'];//增加快递名称
  1796. if($express['cxcode'] == '' && $v['exstateerror'] == '')
  1797. {
  1798. continue;
  1799. }
  1800. else if($express['cxcode'] == '' && $v['exstateerror'] != '')
  1801. {
  1802. continue;
  1803. }
  1804. else if($express['cxcode'] == 'fedex' || $express['cxcode'] == 'usps' || $express['cxcode'] == 'dhl' || $express['cxcode'] == 'cne' || $express['cxcode'] == 'dpex' || $express['cxcode'] == 'dpd')
  1805. {
  1806. $logistics = $express['cxcode'];
  1807. }
  1808. else
  1809. {
  1810. $logistics = 'apismt';
  1811. }
  1812. $v['express'] = strtolower($express['cxcode']);//替换为快递服务商码
  1813. $v['servicename'] =$service['title'];//增加快递名称
  1814. $v['url'] = $express['url'];//增加快递链接
  1815. $fs = $this->$logistics->get_logistics($v);
  1816. if(!isset($fs['f']))
  1817. {
  1818. $this->fullorder->save(array('exstate'=>'99'),$v['id']);
  1819. }
  1820. else
  1821. {
  1822. if($fs['f'] == '0')
  1823. {
  1824. $this->fullorder->save(array('excontent'=>$fs['content']),$v['id']);
  1825. }
  1826. if($fs['f'] == '2')
  1827. {
  1828. }
  1829. else
  1830. {
  1831. $this->fullorder->save(array('exstate'=>$fs['exstate'],'excontent'=>$fs['data']),$v['id']);
  1832. }
  1833. }
  1834. }
  1835. }
  1836. public function _query()
  1837. {
  1838. header('Access-Control-Allow-Origin: *');
  1839. $post = $this->input->post(NULL, TRUE);
  1840. if(isset($post['orderinfo']))
  1841. {
  1842. $list = array();
  1843. $orderinfo = $this->input->post('orderinfo',true);
  1844. $orderinfo = explode(',',trim($orderinfo,','));
  1845. foreach ($orderinfo as $v)
  1846. {
  1847. $exp="/^([0-9A-Za-z\\-_\\.]+)@([0-9a-z]+\\.[a-z]{2,3}(\\.[a-z]{2})?)$/i";
  1848. if(is_numeric($v) && mb_strlen($v) > 8)
  1849. {
  1850. $w = "orderinfo like '%$v%'";
  1851. }
  1852. else if(filter_var($v, FILTER_VALIDATE_EMAIL))
  1853. {
  1854. $w = "email like '%$v%'";
  1855. }
  1856. else
  1857. {
  1858. echo json_encode(array('site'=>0,'success'=>true));exit;
  1859. }
  1860. $data = $this->fullorder->find_all($w." and dtime > '1577811600'");
  1861. if(isset($data[0]))
  1862. {
  1863. if($data[0]['library'] != '2')
  1864. {
  1865. $list[] = array('orderinfo'=>$v,'site'=>1);
  1866. }
  1867. else if($data[0]['library'] == '2' && $data[0]['exstate'] == '99')
  1868. {
  1869. $list[] = array('orderinfo'=>$v,'site'=>2);
  1870. }
  1871. else if($data[0]['library'] == '2' && $data[0]['exstate'] != '99')
  1872. {
  1873. if($data[0]['excontent'] != '成功;' && $data[0]['excontent'] != '')
  1874. {
  1875. $list[] = array('orderinfo'=>$v,'site'=>3,'data'=>$data[0]['excontent']);
  1876. }
  1877. else
  1878. {
  1879. $list[] = array('orderinfo'=>$v,'site'=>2);
  1880. }
  1881. }
  1882. }
  1883. else
  1884. {
  1885. $list[] = array('orderinfo'=>$v,'site'=>0);
  1886. }
  1887. }
  1888. echo json_encode(array('t'=>count($orderinfo),'list'=>$list,'success'=>true));exit;
  1889. }
  1890. }
  1891. public function _logistics()
  1892. {
  1893. if(isset($_GET['waybill']))
  1894. {
  1895. $waybill = $this->input->get('waybill',true);
  1896. $s = $this->input->get('shop',true);
  1897. //$express = $this->input->get('express',true);
  1898. $data = $this->fullorder->get_waybill($waybill);
  1899. if(isset($data['excontent']) && $data['excontent'] != '')
  1900. {
  1901. //$a = $this->$express->get_logistics(array('waybill'=>$waybill));
  1902. echo json_encode(array('track'=>array('f'=>1,'data'=>$data['excontent']),'msg'=>'','success'=>1));exit;
  1903. }
  1904. else
  1905. {
  1906. $shop = $this->shop->get_shopname($s);
  1907. if(!$shop)
  1908. {
  1909. echo json_encode(array('track'=>'','msg'=>'No logistics information','success'=>0));exit;
  1910. }
  1911. $data = $this->fullorder->get_orderinfo($shop.$waybill);
  1912. if(isset($data['excontent']) && $data['excontent'] != '')
  1913. {
  1914. echo json_encode(array('track'=>array('f'=>1,'data'=>$data['excontent']),'msg'=>'','success'=>1));exit;
  1915. }
  1916. echo json_encode(array('track'=>'','msg'=>'No logistics information','success'=>0));exit;
  1917. }
  1918. }
  1919. }
  1920. public function _klarna()
  1921. {
  1922. $shop = array();$cg = array();$sb = array();
  1923. $ftime = strtotime(date("Y-m-d 0:00:0",strtotime("-10 day")))+8*3600;
  1924. $ttime = strtotime(date("Y-m-d 8:00:0",time()));
  1925. $shopdata = $this->shop->find_all("type = '269' and klarnaname != '' and klarnapass != ''");
  1926. foreach($shopdata as $v)
  1927. {
  1928. $data = $this->fullorder->find_all("paypal like '%-%-%-%' and librarytime > '$ftime' and librarytime < '$ttime' and pay = '23' and library = '2' and source != '1' and klarna < '2' and shop = '".$v['id']."'","id,number,orderinfo,paypal,shouldmoney,shop");
  1929. foreach($data as $val)
  1930. {
  1931. $api = $this->_klarnaapi($val['paypal'],$val['shouldmoney'],$v['klarnaname'],$v['klarnapass']);
  1932. $header = $api['header'];
  1933. $api = $api['res'];
  1934. if(isset($api['error_messages'][0]))
  1935. {
  1936. if(stripos($api['error_messages'][0],'amount is 0 for') !== false)
  1937. {
  1938. $this->fullorder->save(array('klarna'=>3),$val['id']);
  1939. $sb[] = array($val['number'],$val['orderinfo'],'oooo3');
  1940. }
  1941. else
  1942. {
  1943. $this->fullorder->save(array('klarna'=>1,'klarnaerror'=>$api['error_messages'][0]),$val['id']);
  1944. $sb[] = array($val['number'],$val['orderinfo'],'oooo1');
  1945. }
  1946. }
  1947. else if($api == '')
  1948. {
  1949. if(isset($header['http_code']) && $header['http_code'] == 201)
  1950. {
  1951. $this->fullorder->save(array('klarna'=>2),$val['id']);
  1952. $cg[] = array($val['number'],$val['orderinfo'],'oooo2');
  1953. }
  1954. else
  1955. {
  1956. $this->fullorder->save(array('klarna'=>1,'klarnaerror'=>'未知错误'),$val['id']);
  1957. $sb[] = array($val['number'],$val['orderinfo'],'oooo0');
  1958. }
  1959. }
  1960. else if(isset($api['cs']))
  1961. {
  1962. $this->fullorder->save(array('klarna'=>1,'klarnaerror'=>'超时'),$val['id']);
  1963. $sb[] = array($val['number'],$val['orderinfo'],'oooo0');
  1964. }
  1965. else
  1966. {
  1967. $this->fullorder->save(array('klarna'=>1,'klarnaerror'=>'未知错误'),$val['id']);
  1968. $sb[] = array($val['number'],$val['orderinfo'],'oooo0');
  1969. }
  1970. }
  1971. }
  1972. echo "<pre>";
  1973. print_r($cg);
  1974. echo "<pre>";
  1975. print_r($sb);
  1976. }
  1977. public function _klarnaapi($paypal,$shouldmoney,$name,$pass)
  1978. {
  1979. $url = 'https://api-na.klarna.com/ordermanagement/v1/orders/'.$paypal.'/captures';
  1980. $data = '{"captured_amount": '.str_replace('.','',$shouldmoney).'}';
  1981. $header[] = "Content-Type:application/json";
  1982. $header[] = "Authorization: Basic ".base64_encode($name.":".$pass);
  1983. $ch = curl_init();
  1984. curl_setopt($ch, CURLOPT_URL, $url);
  1985. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  1986. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  1987. curl_setopt($ch, CURLINFO_HEADER_OUT, TRUE);
  1988. curl_setopt($ch, CURLOPT_POST, 1);
  1989. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  1990. curl_setopt($ch, CURLOPT_TIMEOUT, 20);
  1991. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  1992. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  1993. $res = curl_exec($ch);
  1994. $header = curl_getinfo($ch);
  1995. if($res === false)
  1996. {
  1997. if(curl_errno($ch))
  1998. {
  1999. return array('res'=>'1','header'=>'','cs'=>1);
  2000. }
  2001. }
  2002. else
  2003. {
  2004. $res = json_decode($res,true);
  2005. return array('res'=>$res,'header'=>$header);
  2006. }
  2007. curl_close($ch);
  2008. }
  2009. public function _klarnadata($paypal,$name,$pass)
  2010. {
  2011. $url = 'https://api-na.klarna.com/ordermanagement/v1/orders/'.$paypal;
  2012. $header[] = "Content-Type:application/json";
  2013. $header[] = "Authorization: Basic ".base64_encode($name.":".$pass);
  2014. $ch = curl_init();
  2015. curl_setopt($ch, CURLOPT_URL, $url);
  2016. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  2017. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  2018. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  2019. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  2020. $res = curl_exec($ch);
  2021. curl_close($ch);
  2022. $res = json_decode($res,true);
  2023. $data = '';
  2024. if(isset($res['fraud_status']))
  2025. {
  2026. // $data = (($res['fraud_status'] == 'ACCEPTED')?1:2).'|<strong>'.$res['purchase_currency'].($res['order_amount']/100).'</strong> , '.(($res['fraud_status'] != 'ACCEPTED')?'<font style="color:#f00">'.$res['fraud_status'].'</font>':$res['fraud_status']).' , description:'.$res['initial_payment_method']['description'].' , number of installments:'.$res['initial_payment_method']['number_of_installments'].'|'.$res['billing_address']['street_address'].(($res['billing_address']['street_address2']!='')?' '.$res['billing_address']['street_address2']:'').','.$res['billing_address']['city'].','.$res['billing_address']['region'].','.$res['billing_address']['postal_code'].','.$res['billing_address']['country'].','.$res['billing_address']['given_name'].' '.$res['billing_address']['family_name'].','.$res['billing_address']['phone'].','.$res['billing_address']['email'].'|'.str_replace('|','&#124;',$res['shipping_address']['street_address']).(($res['shipping_address']['street_address2']!='')?' '.str_replace('|','&#124;',$res['shipping_address']['street_address2']):'').','.$res['shipping_address']['city'].','.$res['shipping_address']['region'].','.$res['shipping_address']['postal_code'].','.$res['shipping_address']['country'].','.$res['shipping_address']['given_name'].' '.$res['shipping_address']['family_name'].','.$res['shipping_address']['phone'].','.$res['shipping_address']['email'];
  2027. if(isset($res['initial_payment_method']['number_of_installments'])){
  2028. $number_of_installments = $res['initial_payment_method']['number_of_installments'];
  2029. }else{
  2030. $number_of_installments = 0;
  2031. }
  2032. $data = (($res['fraud_status'] == 'ACCEPTED')?1:2).'|<strong>'.$res['purchase_currency'].($res['order_amount']/100).'</strong> , '.(($res['fraud_status'] != 'ACCEPTED')?'<font style="color:#f00">'.$res['fraud_status'].'</font>':$res['fraud_status']).' , description:'.$res['initial_payment_method']['description'].' , number of installments:'.$number_of_installments.'|'.$res['billing_address']['street_address'].(($res['billing_address']['street_address2']!='')?' '.$res['billing_address']['street_address2']:'').','.$res['billing_address']['city'].','.$res['billing_address']['region'].','.$res['billing_address']['postal_code'].','.$res['billing_address']['country'].','.$res['billing_address']['given_name'].' '.$res['billing_address']['family_name'].','.$res['billing_address']['phone'].','.$res['billing_address']['email'].'|'.str_replace('|','&#124;',$res['shipping_address']['street_address']).(($res['shipping_address']['street_address2']!='')?' '.str_replace('|','&#124;',$res['shipping_address']['street_address2']):'').','.$res['shipping_address']['city'].','.$res['shipping_address']['region'].','.$res['shipping_address']['postal_code'].','.$res['shipping_address']['country'].','.$res['shipping_address']['given_name'].' '.$res['shipping_address']['family_name'].','.$res['shipping_address']['phone'].','.$res['shipping_address']['email'];
  2033. }
  2034. return $data;
  2035. }
  2036. public function _hqpaypal()
  2037. {
  2038. $shop = $this->shop->find_all("paypalname != ''");
  2039. foreach ($shop as $val)
  2040. {
  2041. $d = $this->fullorder->find_all("shop = '".$val['id']."' and dtime > '".(time()-(5*24*3600))."' and dtime < '".(time()-(3*3600))."' and (pay = '22' || pay = '7') and klarnadata = ''");
  2042. foreach ($d as $v)
  2043. {
  2044. $paypal = $this->paypal->data($v['paypal'],$val);
  2045. if($paypal != '')
  2046. {
  2047. $this->fullorder->save(array('klarnadata'=>$paypal),$v['id']);
  2048. }
  2049. }
  2050. }
  2051. }
  2052. public function _hqstripe()
  2053. {
  2054. $shop = $this->shop->find_all("stripe != ''");
  2055. foreach ($shop as $val)
  2056. {
  2057. $d = $this->fullorder->find_all("shop = '".$val['id']."' and dtime > '".(time()-(5*24*3600))."' and dtime < '".time()."' and pay = '1211' and klarnadata = ''");
  2058. foreach ($d as $v)
  2059. {
  2060. $paypal = $this->_stripe($v['paypal'],$val['stripe']);
  2061. if($paypal != '')
  2062. {
  2063. $this->fullorder->save(array('klarnadata'=>$paypal),$v['id']);
  2064. }
  2065. }
  2066. }
  2067. }
  2068. public function _stripe($pay,$stripe)
  2069. {
  2070. $url = 'https://api.stripe.com/v1/payment_intents/'.$pay;
  2071. $header[] = "Authorization:Bearer ".$stripe;
  2072. $ch = curl_init();
  2073. curl_setopt($ch, CURLOPT_URL, $url);
  2074. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  2075. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  2076. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  2077. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  2078. $res = curl_exec($ch);
  2079. curl_close($ch);
  2080. $res = json_decode($res,true);
  2081. $k = '';
  2082. if(isset($res['shipping']['name']))
  2083. {
  2084. $line = ($res['shipping']['address']['line2'] != '')?$res['shipping']['address']['line1'].' '.$res['shipping']['address']['line2']:$res['shipping']['address']['line1'];
  2085. $k = 'stripe|'.json_encode(array('name'=>$res['shipping']['name'],'email'=>$res['receipt_email'],'address'=>$line.','.$res['shipping']['address']['city'].','.$res['shipping']['address']['state'].','.$res['shipping']['address']['postal_code'].','.$res['shipping']['address']['country'].','.$res['shipping']['phone'],'shouldmoney'=>$res['amount']/100));
  2086. }
  2087. return $k;
  2088. }
  2089. public function _afterpay($paypal,$name,$pass)
  2090. {
  2091. $url = 'https://global-api.afterpay.com/v2/payments?ids='.$paypal;
  2092. $header[] = "Accept:application/json";
  2093. $header[] = "User-Agent: Readme.io API Simulator'";
  2094. $header[] = "Authorization: Basic ".base64_encode($name.":".$pass);
  2095. $ch = curl_init();
  2096. curl_setopt($ch, CURLOPT_URL, $url);
  2097. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  2098. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  2099. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  2100. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  2101. $res = curl_exec($ch);
  2102. curl_close($ch);
  2103. $res = json_decode($res,true);
  2104. $data = '';
  2105. if(isset($res['results'][0]['orderDetails']['consumer']['email']))
  2106. {
  2107. $data = $res['results'][0]['orderDetails']['consumer']['email'].'|'.str_replace('|','&#124;',$res['results'][0]['orderDetails']['billing']['line1']).','.str_replace('|','&#124;',$res['results'][0]['orderDetails']['billing']['line2']).','.$res['results'][0]['orderDetails']['billing']['area1'].','.$res['results'][0]['orderDetails']['billing']['region'].','.$res['results'][0]['orderDetails']['billing']['postcode'].','.$res['results'][0]['orderDetails']['billing']['countryCode'].','.$res['results'][0]['orderDetails']['billing']['name'].','.$res['results'][0]['orderDetails']['billing']['phoneNumber'].'|'.str_replace('|','&#124;',$res['results'][0]['orderDetails']['shipping']['line1']).','.str_replace('|','&#124;',$res['results'][0]['orderDetails']['shipping']['line2']).','.$res['results'][0]['orderDetails']['shipping']['area1'].','.$res['results'][0]['orderDetails']['shipping']['region'].','.$res['results'][0]['orderDetails']['shipping']['postcode'].','.$res['results'][0]['orderDetails']['shipping']['countryCode'].','.$res['results'][0]['orderDetails']['shipping']['name'].','.$res['results'][0]['orderDetails']['shipping']['phoneNumber'];
  2108. $data = str_replace(',,',',',$data);
  2109. }
  2110. return $data;
  2111. }
  2112. public function _clearpay($paypal,$name,$pass)
  2113. {
  2114. $url = 'https://global-api.afterpay.com/v2/payments?ids='.$paypal;
  2115. $header[] = "Accept:application/json";
  2116. $header[] = "User-Agent: Readme.io API Simulator'";
  2117. $header[] = "Authorization: Basic ".base64_encode($name.":".$pass);
  2118. $ch = curl_init();
  2119. curl_setopt($ch, CURLOPT_URL, $url);
  2120. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  2121. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  2122. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  2123. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  2124. $res = curl_exec($ch);
  2125. curl_close($ch);
  2126. $res = json_decode($res,true);
  2127. $data = '';
  2128. if(isset($res['results'][0]['orderDetails']['consumer']['email']))
  2129. {
  2130. $data = $res['results'][0]['orderDetails']['consumer']['email'].'|'.str_replace('|','&#124;',$res['results'][0]['orderDetails']['billing']['line1']).','.str_replace('|','&#124;',$res['results'][0]['orderDetails']['billing']['line2']).','.$res['results'][0]['orderDetails']['billing']['area1'].','.$res['results'][0]['orderDetails']['billing']['region'].','.$res['results'][0]['orderDetails']['billing']['postcode'].','.$res['results'][0]['orderDetails']['billing']['countryCode'].','.$res['results'][0]['orderDetails']['billing']['name'].','.$res['results'][0]['orderDetails']['billing']['phoneNumber'].'|'.str_replace('|','&#124;',$res['results'][0]['orderDetails']['shipping']['line1']).','.str_replace('|','&#124;',$res['results'][0]['orderDetails']['shipping']['line2']).','.$res['results'][0]['orderDetails']['shipping']['area1'].','.$res['results'][0]['orderDetails']['shipping']['region'].','.$res['results'][0]['orderDetails']['shipping']['postcode'].','.$res['results'][0]['orderDetails']['shipping']['countryCode'].','.$res['results'][0]['orderDetails']['shipping']['name'].','.$res['results'][0]['orderDetails']['shipping']['phoneNumber'];
  2131. $data = str_replace(',,',',',$data);
  2132. }
  2133. return $data;
  2134. }
  2135. public function _htmlstock()
  2136. {
  2137. if(isset($_GET['hq']))
  2138. {
  2139. $ProductsType = $this->typeclass->find_all("classid = '16' and hq = '1'",'id,title','sequence asc');
  2140. foreach ($ProductsType as $k=>$v)
  2141. {
  2142. if($v['title'] == 'Closure')
  2143. {
  2144. $ProductsType[$k]['title'] = 'Closure/Frontal';
  2145. }
  2146. }
  2147. $HairColor = $this->typeclass->find_all("classid = '8' and hq = '1'",'id,title','sequence asc');
  2148. $HairWavy = $this->typeclass->find_all("classid = '15' and hq = '1'",'id,title','sequence asc');
  2149. $WigType = $this->typeclass->find_all("classid = '18' and hq = '1'",'id,title','sequence asc');
  2150. $Length = $this->typeclass->find_all("classid = '14' and hq = '1'",'id,title','sequence asc');
  2151. echo json_encode(array('ProductsType'=>$ProductsType,'HairColor'=>$HairColor,'HairWavy'=>$HairWavy,'WigType'=>$WigType,'Length'=>$Length));exit;
  2152. //http://1.wepolicy.cn/api/htmlstock?hq=1
  2153. }
  2154. if(isset($_GET['page']))
  2155. {
  2156. $del = array();
  2157. $typeclass13 = $this->typeclass->find_all("classid = '13'");
  2158. $typeclass16 = $this->typeclass->find_all("classid = '16'");
  2159. foreach ($typeclass16 as $key=>$value)
  2160. {
  2161. foreach ($typeclass13 as $v)
  2162. {
  2163. $del[] = $value['title'].' '.$v['title'];
  2164. }
  2165. }
  2166. $page = $this->input->get('page',true);
  2167. $perpage = $this->input->get('perpage',true);
  2168. $category = $this->input->get('ProductsType',true);//类目
  2169. $color = $this->input->get('HairColor',true);//颜色
  2170. $lowe = $this->input->get('HairWavy',true);//花型
  2171. $lacetype = $this->input->get('WigType',true);//头套种类
  2172. $size = $this->input->get('Length',true);//长度
  2173. $title = $this->input->get('title',true);//传输文本
  2174. $warehouse = 5;
  2175. $state = $this->input->get('state',true);
  2176. $where = "warehouse = '5' and state = '0'";
  2177. if($category)
  2178. {
  2179. $where .= " and features like '%-$category-%'";
  2180. }
  2181. if($color)
  2182. {
  2183. $where .= " and features like '%-$color-%'";
  2184. }
  2185. if($lowe)
  2186. {
  2187. $where .= " and features like '%-$lowe-%'";
  2188. }
  2189. if($lacetype)
  2190. {
  2191. $where .= " and features like '%-$lacetype-%'";
  2192. }
  2193. if($size)
  2194. {
  2195. $where .= " and features like '%-$size-%'";
  2196. }
  2197. if($title)
  2198. {
  2199. $where .= " and title like '%$title%'";
  2200. }
  2201. $order_str = "id desc";
  2202. if(empty($page))
  2203. {
  2204. $start = 0;
  2205. $perpage = 1;
  2206. }
  2207. else
  2208. {
  2209. $start = ($page - 1)*$perpage;
  2210. }
  2211. $info_list = $this->whlabel->find_pc($where,'sku,features,warehouse','id,warehouse,sku,title,features,number',$order_str,$start,$perpage);
  2212. $data = array();
  2213. foreach ($info_list as $key=>$value)
  2214. {
  2215. $c = $this->whlabel->find_count($where.' and sku = "'.$value['sku'].'" and state = 0 and warehouse = "5" and features = "'.$value['features'].'" and zd = ""');
  2216. if($c > 1)
  2217. {
  2218. $data[] = array('Item'=>str_replace($del,'',$value['title']),'Stock'=>$c);
  2219. }
  2220. }
  2221. $total = count($this->whlabel->find_pc($where,'sku,features,warehouse','id,warehouse,sku,title,features,number'));
  2222. $pagenum = ceil($total/$perpage);
  2223. $over = $total-($start+$perpage);
  2224. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($data));//总数量,剩余数量,总页数,数据
  2225. echo json_encode($rows);exit;
  2226. ///api/htmlstock?page=1&perpage=50&ProductsType=&HairColor=&HairWavy=&WigType=&Length= //页数、每页数量、类目、颜色、花型、头套种类、尺寸
  2227. }
  2228. }
  2229. public function _zc17track()
  2230. {
  2231. $express = array();
  2232. $ex = $this->express->find_all("cxcode = '17track'");
  2233. foreach ($ex as $v)
  2234. {
  2235. $express[$v['id']] = $v['title'];
  2236. }
  2237. $time_threshold = time() - 12 * 24 * 3600;
  2238. $this->db->select('a.number, a.express,a.waybill');
  2239. $this->db->from('crowd_fullorder as a');
  2240. $this->db->join('express as b', 'a.express = b.id', 'inner');
  2241. $this->db->where('a.waybill !=', '');
  2242. $this->db->where('a.library', '2');
  2243. $this->db->where('a.librarytime >', $time_threshold);
  2244. $this->db->where('a.webhookregister <', 1);
  2245. $this->db->where('b.cxcode', '17track');
  2246. $query = $this->db->get();
  2247. $data = $query->result_array();
  2248. $fsdata = array();
  2249. foreach ($data as $v)
  2250. {
  2251. if(!isset($express[$v['express']]))
  2252. {
  2253. continue;
  2254. }
  2255. if(stripos($express[$v['express']],'DHL') !== false)
  2256. {
  2257. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'100001');
  2258. }
  2259. else if(stripos($express[$v['express']],'UPS') !== false)
  2260. {
  2261. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'100002');
  2262. }
  2263. else if((stripos($express[$v['express']],'FEDEX') !== false)||(stripos($express[$v['express']],'FedEx') !== false) )
  2264. {
  2265. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'100003');
  2266. }
  2267. else if(stripos($express[$v['express']],'TNT') !== false)
  2268. {
  2269. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'100004');
  2270. }
  2271. else if(stripos($express[$v['express']],'ARAMEX') !== false)
  2272. {
  2273. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'100006');
  2274. }
  2275. else if(stripos($express[$v['express']],'YunExpress') !== false){
  2276. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'190008');
  2277. }
  2278. else if(stripos($express[$v['express']],'DEPX') !== false){
  2279. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'100014');
  2280. }
  2281. else if(stripos($express[$v['express']],'EMS') !== false)
  2282. {
  2283. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'3013');
  2284. }
  2285. else if(stripos($express[$v['express']],'GES') !== false)
  2286. {
  2287. $fsdata[] = array('number'=>$v['waybill'],'carrier'=>'190258');
  2288. }
  2289. else
  2290. {
  2291. $fsdata[] = array('number'=>$v['waybill'],'auto_detection'=>'true');
  2292. }
  2293. }
  2294. $fsdata = array_chunk($fsdata, 40);
  2295. $logistics = '17track';
  2296. foreach ($fsdata as $v)
  2297. {
  2298. $fs = $this->$logistics->get_logistics(json_encode($v));
  2299. $this->logic_ding->sendToDing("监听17track注册为什么获取不到的原因,请求参数".json_encode($v));
  2300. $this->logic_ding->sendToDing("监听17track注册为什么获取不到的原因,返回参数".json_encode($fs));
  2301. if(isset($fs['f']))
  2302. {
  2303. $csck[] = array($v,$fs['f'],$fs['content']);
  2304. foreach ($v as $val)
  2305. {
  2306. $d = $this->fullorder->get_waybill($val['number']);
  2307. if($fs['f'] == '1')
  2308. {
  2309. $this->fullorder->save(array('webhookregister'=>1,'wlerror'=>''),$d['id']);
  2310. }
  2311. else
  2312. {
  2313. $this->fullorder->save(array('wlerror'=>$fs['content']),$d['id']);
  2314. }
  2315. }
  2316. }
  2317. else
  2318. {
  2319. $csck[] = array($v,'CW',"CS");
  2320. }
  2321. sleep(3);
  2322. }
  2323. @$this->allocation->insert(array('title'=>json_encode($csck)));
  2324. /**
  2325. $data = $this->fullorder->find_all("waybill != '' and library = '2' and librarytime > '".(time()-12*24*3600)."' and webhookregister < 1");
  2326. $csck = array();
  2327. foreach ($data as $k=>$v)
  2328. {
  2329. $express = $this->express->read($v['express']);
  2330. $service = $this->service->read($express['service']);
  2331. $v['servicename'] =$service['title'];//增加快递名称
  2332. $v['url'] = $express['url'];//增加快递链接
  2333. $logistics = '17track';
  2334. $fs = $this->$logistics->get_logistics($v);
  2335. if(isset($fs['f']))
  2336. {
  2337. $csck[] = array($v['number'],$fs['f'],$fs['content']);
  2338. if($fs['f'] == '1')
  2339. {
  2340. $this->fullorder->save(array('webhookregister'=>1,'wlerror'=>''),$v['id']);
  2341. }
  2342. else
  2343. {
  2344. $this->fullorder->save(array('wlerror'=>$fs['content']),$v['id']);
  2345. }
  2346. }
  2347. else
  2348. {
  2349. $csck[] = array($v['number'],'CW',"CS");
  2350. }
  2351. sleep(1);
  2352. }
  2353. @$this->allocation->insert(array('title'=>$shopid.'-'.json_encode($csck)));
  2354. **/
  2355. }
  2356. public function _17track()
  2357. {
  2358. $xq = array();
  2359. $j = file_get_contents('PHP://input');
  2360. $j = json_decode($j, true);
  2361. $j = $j['data'];
  2362. $express = array();
  2363. $expressdata = $this->express->find_all('1=1');
  2364. foreach ($expressdata as $v)
  2365. {
  2366. $express[$v['id']] = $v['title'];
  2367. }
  2368. //$sh = hash("sha256",$j['event'].'/'.json_encode($j).'/0811AC1711EAABB7D764D04B824F8C2D');
  2369. $f = 'fullorder';
  2370. $d = $this->fullorder->get_waybill($j['number']);
  2371. if(!$d)
  2372. {
  2373. $f = 'fullordersmt';
  2374. $d = $this->fullordersmt->get_waybill($j['number']);
  2375. if(!$d)
  2376. {
  2377. $f = 'fullordertt';
  2378. $d = $this->fullordertt->get_waybill($j['number']);
  2379. }
  2380. }
  2381. if(!$d)
  2382. {
  2383. exit;
  2384. }
  2385. $state = '';
  2386. $zxzt = array_reverse($j['track_info']['milestone']);
  2387. foreach ($zxzt as $v)
  2388. {
  2389. if($v['time_iso'] != NULL)
  2390. {
  2391. $state = $v['key_stage'];
  2392. break;
  2393. }
  2394. }
  2395. $exstate = 0;//无信息
  2396. if($state == 'InfoReceived' || $state == 'PickedUp' || $state == 'Departure' || $state == 'Arrival')//运输途中
  2397. {
  2398. $exstate = 3;//在途中
  2399. }
  2400. else if($state == 'OutForDelivery')//派送中
  2401. {
  2402. $exstate = 4;
  2403. }
  2404. else if($state == 'Returned' || $zxzt == 'Returning')//投递失败
  2405. {
  2406. $exstate = 1;//派送异常
  2407. }
  2408. else if($state == 'Delivered')//成功签收
  2409. {
  2410. $exstate = 6;//签收
  2411. }
  2412. $pd = array();$xq = '';
  2413. if(isset($j['track_info']['tracking']['providers'][0]['events']))
  2414. {
  2415. foreach ($j['track_info']['tracking']['providers'][0]['events'] as $k=>$v)
  2416. {
  2417. if($k == 0)
  2418. {
  2419. $pd = $v['description'];
  2420. }
  2421. $xq .= date('Y-m-d H:i:s',strtotime($v['time_iso'])).' ['.$v['location'].'] '.$v['description'].'<br />';// a日期 c地址 z状态
  2422. }
  2423. if(stripos($express[$d['express']],'Fedex') !== false && stripos($pd,'International shipment release - Import') !== false)
  2424. {
  2425. $exstate = 4;//即将派送
  2426. }
  2427. else if(stripos($express[$d['express']],'DHL') !== false && stripos($pd,'Clearance processing complete') !== false)
  2428. {
  2429. $exstate = 4;//即将派送
  2430. }
  2431. else if(stripos($express[$d['express']],'UPS') !== false && stripos($pd['c'],'Louisville, KY, US') !== false && stripos($pd,'Departed from Facility') !== false)
  2432. {
  2433. $exstate = 4;//即将派送
  2434. }
  2435. else if(stripos($express[$d['express']],'GES') !== false && stripos($pd,'Shipment picked up') !== false)
  2436. {
  2437. $exstate = 4;//即将派送
  2438. }
  2439. else if(stripos($pd,'Delivery exception') !== false || stripos($pd,'Addressee Unknown') !== false || stripos($pd,'Delivered to Agent for Final Delivery') !== false || stripos($pd,'Reminder to pick up your item') !== false || stripos($pd,'Available for Pickup') !== false || stripos($pd,'Processing Exception') !== false || stripos($pd,'Return to Sender Processed') !== false || stripos($pd,'Redelivery Scheduled') !== false || stripos($pd,'Notice Left') !== false || stripos($pd,'Delivery attempted but no response at Consignee address') !== false || stripos($pd,'Delivery attempt could not be completed') !== false || stripos($pd,'Forwarded to a third party agent') !== false || stripos($pd,'Awaiting collection by the consignee') !== false || stripos($pd,'Consignee has moved from the address provided') !== false || stripos($pd,'awaiting customer pickup') !== false)
  2440. {
  2441. $exstate = 1;//异常
  2442. }
  2443. }
  2444. $awlgx = $this->awlgx->get_number($d['number']);
  2445. if($awlgx)
  2446. {
  2447. $this->awlgx->save(array("content"=>$xq,"time"=>time(),'exstate'=>$exstate,'type'=>$f),$awlgx['id']);
  2448. }
  2449. else
  2450. {
  2451. $this->awlgx->insert(array("number"=>$d['number'],"content"=>$xq,"time"=>time(),'exstate'=>$exstate,'type'=>$f));
  2452. }
  2453. if($xq != '')
  2454. {
  2455. $this->$f->save(array('expressstate'=>$exstate,'excontent'=>$xq),$d['id']);
  2456. $time = time();
  2457. if($f == 'fullorder')
  2458. {
  2459. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '2' and ktime < '$time' and jtime > '$time' and shop = '".$d['shop']."' and logisticstatus = '".$exstate."'");
  2460. if($notice && $d['wlyc'] == '0' && $d['wltype'] != '1' && $d['source'] != '1' && stripos($d['wlcontent'],$notice[0]['title']) === false)
  2461. {
  2462. $this->_sdfs($d,$notice[0]['id']);
  2463. //给crm发送信息 先存储数据 后续定时任务执行
  2464. if($d['shop'] < 10){
  2465. //派送中
  2466. if($exstate == 4){
  2467. $this->zztmpdata->insert([
  2468. 'type'=>3,
  2469. 'act_name'=>'crm_order',
  2470. 'content'=>json_encode($d),
  2471. 'create_time'=>time()
  2472. ]);
  2473. }
  2474. //签收完成
  2475. if($exstate == 6){
  2476. $this->zztmpdata->insert([
  2477. 'type'=>4,
  2478. 'act_name'=>'crm_order',
  2479. 'content'=>json_encode($d),
  2480. 'create_time'=>time()
  2481. ]);
  2482. }
  2483. }
  2484. }
  2485. }
  2486. }
  2487. }
  2488. public function _dhl()//DHL
  2489. {
  2490. $data = $this->dhl->find_all("type != 1 and time > '".(time()-24*3600)."'");
  2491. foreach ($data as $v)
  2492. {
  2493. $y = $this->fullorder->get_number($v['number']);
  2494. if(!$y)
  2495. {
  2496. $y = $this->fullordertt->get_number($v['number']);
  2497. if(!$y)
  2498. {
  2499. $y = $this->fullordersmt->get_number($v['number']);
  2500. if(!$y)
  2501. {
  2502. continue;
  2503. }
  2504. }
  2505. }
  2506. //获取dhl规格
  2507. $dhl_gg_info = $this->customsdeclaration->get_ename($y['sbpm']);
  2508. if(empty($dhl_gg_info)){
  2509. continue;
  2510. }else{
  2511. $y['dhl_ggbm'] = $dhl_gg_info['dhlcode'];
  2512. }
  2513. $this->dhl->get_data_c($y,$v['id']);
  2514. }
  2515. }
  2516. }