Aatest.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. }
  51. //定义方法的调用规则 获取URI第二段值
  52. public function _remap($arg,$arg_array)
  53. {
  54. if($arg == 'fout')
  55. {
  56. $this->_fout();
  57. }else if($arg == 'waybillemail'){
  58. $this->_waybillemail();
  59. }else{
  60. $this->_a($arg_array);
  61. }
  62. }
  63. public function _a($arg_array){
  64. $dtc = array();
  65. /* 订单号加入键值-j */
  66. /* 匹配加入 */
  67. $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');
  68. // 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)
  69. foreach ($dictionaries as $v)
  70. {
  71. if(stripos($v['spare'],'|') !== false)//如果有多个值
  72. {
  73. $v['spare'] = explode('|',$v['spare']);
  74. foreach ($v['spare'] as $k=>$vs)
  75. {
  76. if(stripos($v['zh'],'|') !== false)
  77. {
  78. $vzh = explode('|',$v['zh']);
  79. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$vzh[$k],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  80. }
  81. else
  82. {
  83. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  84. }
  85. }
  86. }
  87. else
  88. {
  89. $dtc[strtolower($v['spare'])] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$v['spare']);
  90. }
  91. }
  92. $dtctitle = [];
  93. $dictionaries2 = $this->typeclass->find_all();
  94. foreach ($dictionaries2 as $v)
  95. {
  96. $dtctitle[$v['id']] = $v['title'];
  97. }
  98. echo "<pre>";
  99. $sku = "Free,Gift--PackQQS,NW--3+Ori6*6C-22 24 26-20-6*6C";
  100. $sl = "1;1;1;";
  101. $r = $this->api->matching($sl,$sku,$dtc,"","",$dtctitle,$shop=[],$extra = [
  102. "price"=>"565.7700",
  103. "row_total"=>"565.7700"
  104. ]);
  105. var_dump($r['title']);
  106. $r = $r['product'];
  107. $rr = explode(";",$r);
  108. print_r($rr);
  109. }
  110. public function _fout()
  111. {
  112. $waybill = $this->input->get('waybill');
  113. $this->usps->get_new_logistics($waybill);
  114. //$this->fedexv1->makeAccessToken();
  115. }
  116. public function _waybillemail()
  117. {
  118. $urls = array();$sl = 0;$time = time();
  119. $wid = 2;
  120. // if(date("H",time()) == '8' && date("i",time()) > '20' && date("i",time()) < '39')//USPS-USA单
  121. // {
  122. // $wid = 1;
  123. // }
  124. // else if(date("H",time()) == '20' && date("i",time()) > '20' && date("i",time()) < '39')//其他快递
  125. // {
  126. // $wid = 2;
  127. // }
  128. // else
  129. // {
  130. // exit;
  131. // }
  132. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");//已有自动发送,这个是物流发送
  133. foreach ($notice as $key=>$var)
  134. {
  135. $this->_waybillfs([
  136. 'var'=>$var,
  137. 'wid'=>$wid
  138. ]);
  139. }
  140. }
  141. public function _waybillfs($data)
  142. {
  143. if($data)
  144. {
  145. $notice = $data['var'];
  146. $notice['email'] = $this->emaildata->read($notice['email']);
  147. $wid = $data['wid'];
  148. $fsjs = "";
  149. if($wid == 1 && (stripos($notice['express'],',2,') !== false || stripos($notice['express'],',63,') !== false || stripos($notice['express'],',64,') !== false))
  150. {
  151. $js = explode(',',trim($notice['js'],','));
  152. if(count($js) > 1)
  153. {
  154. $fsjs = " and (";
  155. foreach ($js as $v)
  156. {
  157. $fsjs .= "js = '$v' or ";
  158. }
  159. $fsjs = trim($fsjs,' or ').")" ;
  160. }
  161. else if(count($js) == 1)
  162. {
  163. $fsjs = " and js = '$js[0]'";
  164. }
  165. $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
  166. }
  167. else if($wid == 2 && stripos($notice['express'],',1,') !== false)
  168. {
  169. $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
  170. }
  171. else
  172. {
  173. exit;
  174. }
  175. $wlfs = array();
  176. $dd = $this->fullorder->find_all("source != '1' and dlzemail < '1' and shop = '".$notice['shop']."' and library = 2 and ".$where);
  177. foreach($dd as $v){
  178. $this->logic_ding->sendToDing($v['orderinfo']."监听邮件发送的异常:订单信息【".json_encode($v,JSON_UNESCAPED_UNICODE)."】");
  179. }
  180. // foreach ($dd as $v)
  181. // {
  182. // $shop = $this->shop->read($v['shop']);
  183. // $express = $this->express->read($v['express']);
  184. // $fs = $this->notice->get_god($v,$shop,$express,$notice);
  185. // $this->logic_ding->sendToDing($v['orderinfo']."监听邮件发送的异常:订单信息【".json_encode($v,JSON_UNESCAPED_UNICODE)."】获取快递信息【".json_encode($notice,JSON_UNESCAPED_UNICODE)."】返回的信息".json_encode($fs));
  186. // if($fs == 1)
  187. // {
  188. // $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$v['id']);
  189. // //给crm发送信息 先存储数据 后续定时任务执行
  190. // if($v['shop'] < 10){
  191. // $this->zztmpdata->insert([
  192. // 'type'=>2,
  193. // 'act_name'=>'crm_order',
  194. // 'content'=>json_encode($v),
  195. // 'create_time'=>time()
  196. // ]);
  197. // }
  198. // }
  199. // else
  200. // {
  201. // //$pdtime = date('Y-m-d',time());
  202. // //$folderPath = './data/dlzemail/'.$pdtime; // 文件夹路径
  203. // //$permissions = 0777; // 权限设置
  204. // //if (!file_exists($folderPath)) { mkdir($folderPath, $permissions); }//创建文件夹
  205. // //file_exists($folderPath);
  206. // if(!is_file("./data/dlzemail/".$v['number'].".txt"))
  207. // {
  208. // $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "w") or die("Unable to open file!");
  209. // fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  210. // fclose($myfile);
  211. // }
  212. // else
  213. // {
  214. // $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "a+") or die("Unable to open file!");
  215. // fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  216. // fclose($myfile);
  217. // }
  218. // $this->fullorder->save(array('dlzemail'=>2,'dlzemailtime'=>time()),$v['id']);
  219. // }
  220. // sleep(50);
  221. // }
  222. }
  223. }
  224. }