Aatest.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?php defined('BASEPATH') OR exit('No direct script access allowed');
  2. class Aatest extends Start_Controller {
  3. public function __construct(){
  4. parent::__construct();
  5. $this->load->library('session');
  6. $this->load->_model('Model_whlabel','whlabel');
  7. $this->load->_model('Model_warehouse','warehouse');
  8. $this->load->_model('Model_productprice','productprice');
  9. $this->load->_model('Model_excel','excel');
  10. $this->load->_model('Model_fullorder','fullorder');
  11. $this->load->_model('Model_fullordertt','fullordertt');
  12. $this->load->_model('Model_fullordersmt','fullordersmt');
  13. $this->load->_model('Model_outbound','outbound');
  14. $this->load->_model('Model_express','express');
  15. $this->load->_model('Model_shop','shop');
  16. $this->load->_model('Model_typeclass','typeclass');
  17. $this->load->_model('Model_country','country');
  18. $this->load->_model('Model_kdniao','kdniao');
  19. $this->load->_model('Model_notice','notice');
  20. $this->load->_model('Model_dhl','dhl');
  21. $this->load->_model('Model_dhlhz','dhlhz');
  22. $this->load->_model('Model_usps','usps');
  23. $this->load->_model('Model_fedex','fedex');
  24. $this->load->_model('Model_fedex_cby','fedex_cby');
  25. $this->load->_model('Model_ups','ups');
  26. $this->load->_model('Model_ali','ali');
  27. $this->load->_model('Model_dpd','dpd');
  28. $this->load->_model('Model_shop','shop');
  29. $this->load->_model('Model_user','user');
  30. $this->load->_model('Model_whlabel','whlabel');
  31. $this->load->_model('Model_specialstock','specialstock');
  32. $this->load->_model('Model_ck','ck');
  33. $this->load->_model('Model_whlabellabel','whlabellabel');
  34. $this->load->_model('Model_apiyy','apiyy');
  35. $this->load->helper('url');
  36. $this->load->_model('Model_whlabel_fc','whlabel_fc');
  37. $this->load->_model('Model_systemtransfer','systemtransfer');
  38. $this->load->_model('Model_classid','classid');
  39. $this->load->_model('Model_allocation','allocation');
  40. $this->load->_model('Model_fullorderxw','fullorderxw');
  41. $this->load->_model('Model_fullorderpaypal','fullorderpaypal');
  42. //$this->load->_model('Model_fedexv1','fedexv1');
  43. $this->load->_model('Model_logic_crm','logic_crm');
  44. $this->load->_model("Model_fullorder","fullorder");
  45. $this->load->_model("Model_express","express");
  46. $this->load->_model("Model_logic_ding","logic_ding");
  47. $this->load->_model("Model_api",'api');
  48. $this->load->_model("Model_usps",'usps');
  49. $this->load->_model('Model_emaildata','emaildata');
  50. $this->load->_model('Model_logic_tools','logic_tools');
  51. }
  52. //定义方法的调用规则 获取URI第二段值
  53. public function _remap($arg,$arg_array)
  54. {
  55. if($arg == 'fout')
  56. {
  57. $this->_fout();
  58. }else if($arg == 'waybillemail'){
  59. $this->_waybillemail();
  60. }else{
  61. $this->_a($arg_array);
  62. }
  63. }
  64. public function _a($arg_array){
  65. echo json_encode([
  66. 'shop'=>3,
  67. 'waybill'=>'283786008019',
  68. 'time'=>time(),
  69. 'key'=>"cZhFn38GcK+UXpwEV8VTLA==",
  70. ]);
  71. die;
  72. $dtc = array();
  73. /* 订单号加入键值-j */
  74. /* 匹配加入 */
  75. $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');
  76. // 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)
  77. foreach ($dictionaries as $v)
  78. {
  79. if(stripos($v['spare'],'|') !== false)//如果有多个值
  80. {
  81. $v['spare'] = explode('|',$v['spare']);
  82. foreach ($v['spare'] as $k=>$vs)
  83. {
  84. if(stripos($v['zh'],'|') !== false)
  85. {
  86. $vzh = explode('|',$v['zh']);
  87. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$vzh[$k],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  88. }
  89. else
  90. {
  91. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  92. }
  93. }
  94. }
  95. else
  96. {
  97. $dtc[strtolower($v['spare'])] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$v['spare']);
  98. }
  99. }
  100. $dtctitle = [];
  101. $dictionaries2 = $this->typeclass->find_all();
  102. foreach ($dictionaries2 as $v)
  103. {
  104. $dtctitle[$v['id']] = $v['title'];
  105. }
  106. echo "<pre>";
  107. $sku = "Free,Gift--PackQQS,NW--3+Ori6*6C-22 24 26-20-6*6C";
  108. $sl = "1;1;1;";
  109. $r = $this->api->matching($sl,$sku,$dtc,"","",$dtctitle,$shop=[],$extra = [
  110. "price"=>"565.7700",
  111. "row_total"=>"565.7700"
  112. ]);
  113. var_dump($r['title']);
  114. $r = $r['product'];
  115. $rr = explode(";",$r);
  116. print_r($rr);
  117. }
  118. public function _fout()
  119. {
  120. $waybill = $this->input->get('waybill');
  121. $this->usps->get_new_logistics($waybill);
  122. //$this->fedexv1->makeAccessToken();
  123. }
  124. public function _waybillemail()
  125. {
  126. $urls = array();$sl = 0;$time = time();
  127. $wid = 2;
  128. // if(date("H",time()) == '8' && date("i",time()) > '20' && date("i",time()) < '39')//USPS-USA单
  129. // {
  130. // $wid = 1;
  131. // }
  132. // else if(date("H",time()) == '20' && date("i",time()) > '20' && date("i",time()) < '39')//其他快递
  133. // {
  134. // $wid = 2;
  135. // }
  136. // else
  137. // {
  138. // exit;
  139. // }
  140. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");//已有自动发送,这个是物流发送
  141. foreach ($notice as $key=>$var)
  142. {
  143. $this->_waybillfs([
  144. 'var'=>$var,
  145. 'wid'=>$wid
  146. ]);
  147. }
  148. }
  149. public function _waybillfs($data)
  150. {
  151. if($data)
  152. {
  153. $notice = $data['var'];
  154. $notice['email'] = $this->emaildata->read($notice['email']);
  155. $wid = $data['wid'];
  156. $fsjs = "";
  157. if($wid == 1 && (stripos($notice['express'],',2,') !== false || stripos($notice['express'],',63,') !== false || stripos($notice['express'],',64,') !== false))
  158. {
  159. $js = explode(',',trim($notice['js'],','));
  160. if(count($js) > 1)
  161. {
  162. $fsjs = " and (";
  163. foreach ($js as $v)
  164. {
  165. $fsjs .= "js = '$v' or ";
  166. }
  167. $fsjs = trim($fsjs,' or ').")" ;
  168. }
  169. else if(count($js) == 1)
  170. {
  171. $fsjs = " and js = '$js[0]'";
  172. }
  173. $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
  174. }
  175. else if($wid == 2 && stripos($notice['express'],',1,') !== false)
  176. {
  177. $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
  178. }
  179. else
  180. {
  181. exit;
  182. }
  183. $this->logic_ding->sendToDing("source != '1' and dlzemail < '1' and shop = '".$notice['shop']."' and library = 2 and ".$where);
  184. // $wlfs = array();
  185. // $dd = $this->fullorder->find_all("source != '1' and dlzemail < '1' and shop = '".$notice['shop']."' and library = 2 and ".$where);
  186. // foreach($dd as $v){
  187. // $this->logic_ding->sendToDing($v['orderinfo']."监听邮件发送的异常:订单信息【".json_encode($v,JSON_UNESCAPED_UNICODE)."】");
  188. // }
  189. // foreach ($dd as $v)
  190. // {
  191. // $shop = $this->shop->read($v['shop']);
  192. // $express = $this->express->read($v['express']);
  193. // $fs = $this->notice->get_god($v,$shop,$express,$notice);
  194. // $this->logic_ding->sendToDing($v['orderinfo']."监听邮件发送的异常:订单信息【".json_encode($v,JSON_UNESCAPED_UNICODE)."】获取快递信息【".json_encode($notice,JSON_UNESCAPED_UNICODE)."】返回的信息".json_encode($fs));
  195. // if($fs == 1)
  196. // {
  197. // $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$v['id']);
  198. // //给crm发送信息 先存储数据 后续定时任务执行
  199. // if($v['shop'] < 10){
  200. // $this->zztmpdata->insert([
  201. // 'type'=>2,
  202. // 'act_name'=>'crm_order',
  203. // 'content'=>json_encode($v),
  204. // 'create_time'=>time()
  205. // ]);
  206. // }
  207. // }
  208. // else
  209. // {
  210. // //$pdtime = date('Y-m-d',time());
  211. // //$folderPath = './data/dlzemail/'.$pdtime; // 文件夹路径
  212. // //$permissions = 0777; // 权限设置
  213. // //if (!file_exists($folderPath)) { mkdir($folderPath, $permissions); }//创建文件夹
  214. // //file_exists($folderPath);
  215. // if(!is_file("./data/dlzemail/".$v['number'].".txt"))
  216. // {
  217. // $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "w") or die("Unable to open file!");
  218. // fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  219. // fclose($myfile);
  220. // }
  221. // else
  222. // {
  223. // $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "a+") or die("Unable to open file!");
  224. // fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  225. // fclose($myfile);
  226. // }
  227. // $this->fullorder->save(array('dlzemail'=>2,'dlzemailtime'=>time()),$v['id']);
  228. // }
  229. // sleep(50);
  230. // }
  231. }
  232. }
  233. }