Aatest.php 8.8 KB

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