Aatest.php 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233
  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. $this->load->_model('Model_logic_order','logic_order');
  52. $this->load->_model('Model_returngoods','returngoods');
  53. $this->load->_model('Model_returnlogs','returnlogs');
  54. $this->load->_model('Model_productdescribe','productdescribe');
  55. $this->load->_model('Model_logic_u9tools','logic_u9tools');
  56. $this->load->_model('Model_17track','17track');
  57. $this->load->_model('Model_customer','customer');
  58. $this->load->_model('Model_express','express');
  59. $this->load->_model('Model_weight','weight');
  60. $this->load->_model('Model_cne','cne');
  61. $this->load->_model("Model_zzjobs","zzjobs");
  62. $this->load->_model("Model_zzerrlog","zzerrlog");
  63. $this->load->_model("Model_zzhjobs","zzhjobs");
  64. $this->load->_model('Model_apiyy','apiyy');
  65. $this->load->_model('Model_systemtransfer','systemtransfer');
  66. $this->load->_model('Model_afspaypal','afspaypal');
  67. $this->load->_model('Model_message','message');
  68. $this->load->_model('Model_itsxb','itsxb');
  69. $this->load->_model("Model_logic_order","logic_order");
  70. $this->load->_model("Model_job_get3pewaybillid",'job_get3pewaybillid');
  71. $this->load->_model("Model_yuntu","yuntu");
  72. $this->load->_model("Model_job_getyuntuwaybillid","job_getyuntuwaybillid");
  73. $this->load->_model("Model_hualei",'hualei');
  74. $this->load->_model("Model_job_gethualeiwaybillid","job_gethualeiwaybillid");
  75. $this->load->_model("Model_apiyyv1","apiyyv1");
  76. $this->load->_model("Model_settingtest","settingtest");
  77. $this->load->_model("Model_cne","cne");
  78. $this->load->_model("Model_apismt","apismt");
  79. $this->load->_model("Model_notice","notice");
  80. $this->load->_model("Model_producttitle","producttitle");
  81. $this->load->_model("Model_apitt","apitt");
  82. $this->load->_model("Model_zzjobs","zzjobs");
  83. $this->load->_model("Model_logic_goods_replace","logic_goods_replace");
  84. $this->load->_model("Model_apittv1","apittv1");
  85. $this->load->_model("Model_express_tt","express_tt");
  86. }
  87. //定义方法的调用规则 获取URI第二段值
  88. public function _remap($arg,$arg_array)
  89. {
  90. $this->logic_ding->sendToDing("source != '1' and dlzemail < '1' and");
  91. // $product_id = 33204;
  92. // $r = $this->db->from("fullorder")->where('extra_price IS NOT NULL', NULL, FALSE)->where('number','ALIP-251105-082')->where("JSON_SEARCH(extra_price, 'one', '$product_id', NULL, '$[*].product_id') IS NOT NULL")->get()->result_array();
  93. // echo "<pre>";
  94. // print_r($r);
  95. die;
  96. // $r = $this->db->from("fullorder")->where('extra_price IS NOT NULL', NULL, FALSE)->where("JSON_SEARCH(extra_price, 'one', '$product_id', NULL, '$[*].product_id') IS NOT NULL")->get()->result_array();
  97. die;
  98. $where_arr = [
  99. "shop"=>35,//当前店铺为tt-wk
  100. "express"=>83,//快递为tt-cbt
  101. "print"=>2,//未打印
  102. "printnumber"=>0,//打印次数
  103. 'library'=>1,//未出库
  104. "review >"=>4,//审核通过或自动审核
  105. ];
  106. $list = $this->db->from("fullordertt")
  107. ->where($where_arr)
  108. ->where_not_in('state',[214,217])
  109. ->get()->result_array();
  110. echo "<pre>";
  111. print_r($list);
  112. die;
  113. $info = $this->logic_order->getInfo("number = '".$arg_array[0]."'");
  114. echo "<pre>";
  115. $res = $this->express_tt->get_data($info,'CBT');
  116. print_r($res);
  117. die;
  118. $info = $this->logic_order->getInfo("number = '".$arg_array[0]."'");
  119. $extra_text = json_decode($info['extra_text'],true);
  120. $packages = $extra_text['packages'];
  121. $package_id = $packages[0]['id'];
  122. $shop = $this->shop->read($info['shop']);
  123. //$r = $this->apitt->downloadLabel($package_id,$shop,$info);
  124. $r = $this->apittv1->ShipByTiktok($package_id,$shop,$info);
  125. var_dump($r);
  126. die;
  127. //$this->_print();
  128. exit('No direct script access allowed');
  129. if($arg == 'dayin')
  130. {
  131. $this->_a();
  132. //$this->_pdfurl("https://www.fedex.com/document/v1/cache/retrieve/SH,bfa0bef58beaa8cc884714432636_SHIPPING_Z?isLabel=true&autoPrint=false&retrievalMode=THERMAL",'ces','20210825155500');
  133. }elseif($arg == 'getorder'){
  134. $this->_getorder();
  135. }else{
  136. exit('No direct script access allowed');
  137. }
  138. }
  139. private function jiai($arg_array){
  140. $key = "6amg!pnfrlbpnjgirv"; //加密所需要到的key
  141. $iv = "6ook4k!2w94m6jtm";//加密所需要到的iv
  142. $time = time();
  143. $data = array(
  144. "order_no" => $arg_array[0],
  145. "shop" => "3",
  146. "time"=>time()
  147. );
  148. $decrypt = "alipearlhair+".$data['time'];
  149. $key = openssl_encrypt($decrypt,'AES-128-CBC',$key,0,$iv);
  150. $data['key'] = $key;
  151. // 将PHP数组编码为JSON字符串
  152. $jsonData = json_encode($data);
  153. $url = "https://1.wepolicy.cn/apiexpress/search";
  154. // 初始化cURL
  155. $ch = curl_init($url);
  156. // 设置cURL选项
  157. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  158. curl_setopt($ch, CURLOPT_POST, true);
  159. // 直接传入JSON字符串作为POST数据
  160. curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonData);
  161. // 关键:设置HTTP头,声明内容类型为JSON
  162. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  163. 'Content-Type: application/json',
  164. 'Content-Length: ' . strlen($jsonData) // 可选项,设置数据长度
  165. ));
  166. // 执行请求
  167. $response = curl_exec($ch);
  168. // 检查cURL执行是否出错
  169. if (curl_errno($ch)) {
  170. $error_msg = curl_error($ch);
  171. // 处理错误
  172. }
  173. // 关闭cURL会话
  174. curl_close($ch);
  175. // 处理API返回的JSON响应
  176. $responseData = json_decode($response, true);
  177. echo "<pre>";
  178. print_r($response);
  179. }
  180. private function _ttexpress(){
  181. $info = $this->logic_order->getInfo("number = 'TT-KISS-251021-001'");
  182. $res = $this->express_tt->get_data($info,'FBT');
  183. echo "<pre>";
  184. print_r($res);
  185. }
  186. private function dokucun(){
  187. //美仓 未出库
  188. // $info = $this->db->from("whlabel")->where([
  189. // "warehouse"=>13,
  190. // 'state'=>0
  191. // ])->select("id,number,sku,warehouse,title,details,cpid,COUNT(id) AS total_num,GROUP_CONCAT(IFNULL(details, '') SEPARATOR ',') AS total_details,GROUP_CONCAT(IFNULL(cpid, '') SEPARATOR ',') AS total_cpid")->group_by('number')->order_by('total_num','desc')->limit(10,0)->get();
  192. $info = $this->db->from("whlabel")->where([
  193. "warehouse"=>13,
  194. 'state'=>0
  195. ])->select("id,number,sku,warehouse,title,details,cpid,COUNT(id) AS total_num")->group_by('number')->order_by('total_num','desc')->limit(10,0)->get();
  196. echo "<pre>";
  197. print_r($info->result_array());
  198. die;
  199. }
  200. public function _pdfurl($pdf,$title,$bctime)
  201. {
  202. $pdf_path = './data/pdf/'.$bctime.'/';
  203. $pdf = fopen($pdf,"r");
  204. if(!is_dir($pdf_path))mkdir($pdf_path,0777); //上传目录不存在则创建
  205. file_put_contents($pdf_path.$title.'.pdf',$pdf);
  206. return $bctime;
  207. }
  208. public function _linshittmsg(){
  209. exit;
  210. $fullorder = $this->fullordertt->get_orderinfo("577118877757837357");
  211. $shop = $this->shop->read($fullorder['shop']);
  212. $express = $this->express->read($fullorder['express']);
  213. $notice = $this->notice->find_all("id = 134");
  214. echo "<pre>";
  215. // print_r($fullorder);
  216. // print_r($shop);
  217. // print_r($express);
  218. // print_r($notice);
  219. // die;
  220. // $list = $fullorder;
  221. // $ProductName = '';
  222. // if(empty($list['fpdata'])){
  223. // $st = [];
  224. // }else{
  225. // $st = explode(';',trim($list['fpdata'],';'));
  226. // }
  227. // foreach ($st as $v)
  228. // {
  229. // $v = explode('|',trim($v,'|'));
  230. // if(isset($v[1]))
  231. // {
  232. // $th = $this->producttitle->get_title($v[1]);
  233. // if($th)
  234. // {
  235. // $ProductName .= $th['th'].', ';
  236. // }
  237. // else
  238. // {
  239. // $ProductName .= $v[1].', ';
  240. // }
  241. // }
  242. // }
  243. // var_dump($ProductName);
  244. // die;
  245. $go = $this->notice->get_god($fullorder,$shop,$express,$notice[0]);
  246. echo "<pre>";
  247. print_r($go);
  248. die;
  249. }
  250. public function _u9dcd(){
  251. $token = $this->settingtest->get_yytoken_120();
  252. $doc_no = $this->input->get('doc_no',true);
  253. $res = $this->apiyyv1->cxScdStatus($doc_no,$token);
  254. echo "<pre>";
  255. var_dump($res);
  256. die;
  257. }
  258. public function _apismtOrder(){
  259. $post = $this->apismt->get_order("8204437130874932","50000601909fLFcsqEWGf1fd9756fw3q0TfklNpzHt1GHWEQtdwSvsNsWTa0WCkkIgJ");
  260. echo "<pre>";
  261. var_dump($post);
  262. die;
  263. }
  264. public function dock(){
  265. $fp = "87,-128-1620-80-2584-856-104-146-30-72-2071-|Wigs CR 9A LY065 HL1B/27#WK Deep Wave 13*4 Frontal Wig Medium 180% Ready to Go 18inch |1|0|0|18|0|0|0|0;-131-2247-|Gift HairElastic |1|0|0||0|0|0|0;-131-2236-|Gift WKElasticBand |1|0|0||0|0|0|0;-131-2492-|Gift PackTTWK |1|0|0||0|0|0|0;-131-2235-|Gift EdgeBrush |1|0|0||0|0|0|0;-131-2250-|Gift BoxWK |1|0|0||0|0|0|0;";
  266. $wh = "|1288087258485610414630722071-1-0|1312247-1-0|1312236-1-0|1312492-1-0|1312235-1-0|1312250-1-0|";
  267. $number = "TT-WK-250811-087";
  268. $warehouse = $this->warehouse->find_all("fpzd = '1'",'*','fpsx desc');
  269. echo "<pre>";
  270. foreach ($warehouse as $v)
  271. {
  272. $yx = 'get_yx_'.$v['bdck'];
  273. $kczd = $this->ck->$yx(207,$v,35,$number,$wh,$fp);
  274. var_dump($kczd);
  275. }
  276. }
  277. public function getToken($type){
  278. $name = "get_yytoken_".$type;
  279. $token = $this->settingtest->$name();
  280. return $token;
  281. }
  282. public function _notice(){
  283. $notice = $this->notice->read(30);
  284. $v = $this->fullorder->get_number('Y-50728-010');
  285. $shop = $this->shop->read($v['shop']);
  286. $express = $this->express->read($v['express']);
  287. echo "<pre>";
  288. print_r($notice);
  289. print_r($v);
  290. print_r($shop);
  291. die;
  292. $fs = $this->notice->get_god($v,$shop,$express,$notice);
  293. }
  294. public function _error(){
  295. // echo $c;
  296. set_error_handler(function($severity, $message, $file, $line) {
  297. // 自定义错误处理逻辑
  298. throw new ErrorException($message, 0, $severity, $file, $line);
  299. //return true; // 返回true表示已处理,阻止CI继续处理
  300. });
  301. set_exception_handler(function($exception) {
  302. // 自定义异常处理逻辑
  303. // 一般也就是处理一下抛出可允许的错误 允许往下执行 目前这里不做任何处理 只关注于 sql的错误和程序执行的异常
  304. });
  305. $this->db->db_debug = false;
  306. $this->db->trans_begin();
  307. try{
  308. $do_sql = $this->db->insert('table', []);
  309. if(!$do_sql){
  310. throw new Exception("sql error:【".$this->db->error()['message']."】");
  311. }
  312. }catch(Exception $e){
  313. $this->db->trans_rollback();
  314. exit(json_encode(['msg'=>$e->getMessage(),'success'=>false],JSON_UNESCAPED_UNICODE));
  315. }finally{
  316. if ($this->db->trans_status() === TRUE)
  317. {
  318. $this->db->trans_commit();
  319. exit(json_encode(['msg'=>"操作成功",'success'=>true],JSON_UNESCAPED_UNICODE));
  320. }
  321. else
  322. {
  323. $this->db->trans_rollback();
  324. exit(json_encode(['msg'=>"sql语句执行",'success'=>false],JSON_UNESCAPED_UNICODE));
  325. }
  326. }
  327. }
  328. public function _plcl(){
  329. $typeclass = [];
  330. $classid = $this->classid->sku();
  331. $tcall = $this->typeclass->find_all();
  332. foreach ($tcall as $v)
  333. {
  334. //$tcjm[$v['id']] = array($v['jm'],$v['classid']);
  335. $typeclass[$v['id']] = array('zh'=>$v['zh'],'classid'=>$v['classid'],'bm'=>$v['bm'],'title'=>$v['title'],'jm'=>$v['jm']);
  336. }
  337. $dtctitle = [];
  338. foreach($tcall as $v){
  339. $dtctitle[$v['id']] = $v['title'];
  340. }
  341. $dtc = [];
  342. foreach ($tcall as $v) {
  343. if (stripos($v['spare'], '|') !== false) //如果有多个值
  344. {
  345. $v['spare'] = explode('|', $v['spare']);
  346. foreach ($v['spare'] as $k => $vs) {
  347. if (stripos($v['zh'], '|') !== false) {
  348. $vzh = explode('|', $v['zh']);
  349. $dtc[strtolower($vs)] = array('classid' => $v['classid'], 'zh' => $vzh[$k], 'id' => $v['id'], 'jm' => $v['jm'], 'spare' => $vs);
  350. } else {
  351. $dtc[strtolower($vs)] = array('classid' => $v['classid'], 'zh' => $v['zh'], 'id' => $v['id'], 'jm' => $v['jm'], 'spare' => $vs);
  352. }
  353. }
  354. } else {
  355. $dtc[strtolower($v['spare'])] = array('classid' => $v['classid'], 'zh' => $v['zh'], 'id' => $v['id'], 'jm' => $v['jm'], 'spare' => $v['spare']);
  356. }
  357. }
  358. $tmp_sku ="RTG-A033-STW-13*4BobWig-250%-10";
  359. $u9_info = $this->logic_order->skuTransferFeatures($tmp_sku,$typeclass,$dtc,$dtctitle,$classid);
  360. echo "<pre>";
  361. var_dump($tmp_sku);
  362. var_dump($u9_info);
  363. die;
  364. }
  365. public function _print(){
  366. $this->_Template('aaadayin',$this->data);
  367. }
  368. public function _doWcCp(){
  369. $info = $this->zzhjobs->find("status = 0");
  370. $this->zzhjobs->save(['status'=>30],$info['id']);
  371. echo "<pre>";
  372. $info['payload'] = json_decode($info['payload'],true);
  373. //print_r($info);
  374. var_dump($info['payload']);
  375. $lb = $this->systemtransfer->read($info['payload']['fid']);
  376. $nu = $this->fullorder->get_number($lb['number']);
  377. if(!$nu)
  378. {
  379. $nu = $this->fullordersmt->get_number($lb['number']);
  380. if(!$nu)
  381. {
  382. $nu = $this->fullordertt->get_number($lb['number']);
  383. }
  384. }
  385. if(empty($nu)){
  386. echo "数据不存在";
  387. die;
  388. }
  389. $s = $this->shop->read($nu['shop']);
  390. $lb['kh'] = $s['yyid'];
  391. $lb['ts'] = 1;
  392. // var_dump($lb);
  393. $rk = $this->apiyy->_newrk($lb);
  394. var_dump($rk);
  395. // $list = $this->zzerrlog->find_all("content like '%检测货物流转打印情况13|2%' and time >= 1745881418 and time <= 1745967818 ");
  396. // echo "<pre>";
  397. // print_r(count($list));
  398. // foreach($list as $k=>$v){
  399. // $tmp_arr = explode("|",$v['content']);
  400. // $params = [
  401. // "transfer"=>13,
  402. // "type"=>2,
  403. // "number"=>$tmp_arr[2],
  404. // 'fid'=>$tmp_arr[3]
  405. // ];
  406. // $this->zzhjobs->insert(
  407. // [
  408. // 'status'=>0,
  409. // 'quque'=>'xgwsu9',
  410. // 'payload'=>json_encode($params),
  411. // 'do_interval'=>1,
  412. // 'create_time'=>time(),
  413. // ]
  414. // );
  415. // }
  416. }
  417. public function _th($arg_array){
  418. die;
  419. if(empty($arg_array)){
  420. die(1);
  421. }
  422. $order_no = $arg_array[0];
  423. var_dump($order_no);
  424. $data = $this->fullorder->get_number($order_no);
  425. if(empty($data)){
  426. echo 2;
  427. exit(2);
  428. }
  429. $r = $this->usps->get_return($data);
  430. echo "<pre>";
  431. print_r($r);
  432. }
  433. //物流轨迹
  434. public function _logistic(){
  435. echo "<pre>";
  436. $fs = $this->cne->get_logistics_yskx([
  437. [
  438. "TrackNumber"=>"880739284316",
  439. ]
  440. ]);
  441. print_r($fs);
  442. //$fs = $this->usps->get_logistics($v);
  443. die;
  444. }
  445. public function _getorder(){
  446. $name = 'Alipearl';
  447. $userKey = array(
  448. 'Alipearl' => array('username'=>'huchunmei','api_key'=>'huchunmei126_alipearl_erp888','url'=>'https://www.alipearlhair.com'),
  449. 'Asteria' => array('username'=>'huchunmei','api_key'=>'huchunmei126_asteria_erp888','url'=>'https://www.asteriahair.com'),
  450. 'WestKiss' => array('username'=>'huchunmei','api_key'=>'huchunmei126_westkiss_erp868','url'=>'https://www.westkiss.com'),
  451. 'SuperNova' => array('username'=>'huchunmei','api_key'=>'huchunmei126_supernova_erp6898','url'=>'https://www.supernovahair.com'),
  452. 'Wiggins' => array('username'=>'huchunmei','api_key'=>'huchunmei126_wiggins_erp652','url'=>'https://www.wigginshair.com'),
  453. 'Yolissa' => array('username'=>'huchunmei','api_key'=>'huchunmei126_yolissa_688','url'=>'https://www.yolissahair.com'),
  454. );
  455. $proxy = new SoapClient($userKey[$name]['url'].'/api/soap/?wsdl');
  456. try {
  457. $sessionId = $proxy->login($userKey[$name]['username'], $userKey[$name]['api_key']);
  458. }
  459. catch (Exception $e) {
  460. echo $e->getMessage();
  461. }
  462. $data = array('proxy'=>$proxy,'sessionId'=>$sessionId,'url'=>$userKey[$name]['url']);
  463. $fromTime = date('Y-m-d H:i:s',time()- 3600*24*6);
  464. $toTime = date('Y-m-d H:i:s',time());
  465. $filters = array(array('created_at'=>array('from'=>$fromTime,'to'=>$toTime)));
  466. $result = $data['proxy']->call($data['sessionId'],'sales_order.list',$filters);
  467. echo "<pre>";
  468. // print_r($result[0]);
  469. foreach($result as $item)
  470. {
  471. // print_r($item);exit;
  472. $iteminfo= $data['proxy']->call($data['sessionId'], 'sales_order.info', $item['increment_id']);
  473. print_r($iteminfo['items']);
  474. }
  475. }
  476. public function getDtc(){
  477. $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');
  478. $dtc = array();
  479. foreach ($dictionaries as $v)
  480. {
  481. if(stripos($v['spare'],'|') !== false)//如果有多个值
  482. {
  483. $v['spare'] = explode('|',$v['spare']);
  484. foreach ($v['spare'] as $k=>$vs)
  485. {
  486. if(stripos($v['zh'],'|') !== false)
  487. {
  488. $vzh = explode('|',$v['zh']);
  489. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$vzh[$k],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  490. }
  491. else
  492. {
  493. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  494. }
  495. }
  496. }
  497. else
  498. {
  499. $dtc[strtolower($v['spare'])] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$v['spare']);
  500. }
  501. }
  502. $dtctitle = [];
  503. $dictionaries2 = $this->typeclass->find_all();
  504. foreach ($dictionaries2 as $v)
  505. {
  506. $dtctitle[$v['id']] = $v['title'];
  507. }
  508. return [
  509. 'dtc'=>$dtc,
  510. 'dtctitle'=>$dtctitle
  511. ];
  512. }
  513. public function _a(){
  514. $list = [
  515. [
  516. 'sku2'=>'-1297-80-2602-1306-57-101-1283-',
  517. ]
  518. ];
  519. $r = $this->logic_u9tools->getU9bm($list,'sku2');
  520. echo "<pre>";
  521. var_dump($r);
  522. die;
  523. $data = $this->getDtc();
  524. $dtc = $data['dtc'];
  525. $dtctitle = $data['dtctitle'];
  526. //die;
  527. $quantity = '1';
  528. //$issku = 'NW-Ponytail-10-Accs-175g';
  529. $issku = "Accs-STW-Topper-6*7-8";
  530. $money = array();
  531. $productdescribe = $this->productdescribe->find_all('1=1');
  532. foreach ($productdescribe as $v)
  533. {
  534. $money[$v['number']] = array();
  535. }
  536. /* 价格加入 */
  537. /* 匹配ID加入 */
  538. $int = array();
  539. $intdata = $this->typeclass->find_all('classid=14','id,spare');
  540. foreach ($intdata as $v)
  541. {
  542. $v['spare'] = explode('|',$v['spare']);
  543. $int[$v['id']] = $v['spare'][0];
  544. }
  545. // var_dump($dtc);
  546. // var_dump($dtctitle);
  547. $r = $this->api->matching($quantity,$issku,$dtc,$money,$int,$dtctitle,[1],[
  548. ]);
  549. echo "<pre>";
  550. var_dump($r);
  551. die;
  552. $time = time();
  553. $jiami = "alipearlhair+".(string)$time;
  554. echo json_encode([
  555. 'shop'=>3,
  556. 'waybill'=>'283786008019',
  557. 'time'=>$time,
  558. 'key'=>$this->logic_tools->toolsjiami($jiami,"6amg!pnfrlbpnjgirv", "6ook4k!2w94m6jtm"),
  559. ]);
  560. die;
  561. $dtc = array();
  562. /* 订单号加入键值-j */
  563. /* 匹配加入 */
  564. $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');
  565. // 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)
  566. foreach ($dictionaries as $v)
  567. {
  568. if(stripos($v['spare'],'|') !== false)//如果有多个值
  569. {
  570. $v['spare'] = explode('|',$v['spare']);
  571. foreach ($v['spare'] as $k=>$vs)
  572. {
  573. if(stripos($v['zh'],'|') !== false)
  574. {
  575. $vzh = explode('|',$v['zh']);
  576. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$vzh[$k],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  577. }
  578. else
  579. {
  580. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  581. }
  582. }
  583. }
  584. else
  585. {
  586. $dtc[strtolower($v['spare'])] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$v['spare']);
  587. }
  588. }
  589. $dtctitle = [];
  590. $dictionaries2 = $this->typeclass->find_all();
  591. foreach ($dictionaries2 as $v)
  592. {
  593. $dtctitle[$v['id']] = $v['title'];
  594. }
  595. echo "<pre>";
  596. $sku = "Free,Gift--PackQQS,NW--3+Ori6*6C-22 24 26-20-6*6C";
  597. $sl = "1;1;1;";
  598. $r = $this->api->matching($sl,$sku,$dtc,"","",$dtctitle,$shop=[],$extra = [
  599. "price"=>"565.7700",
  600. "row_total"=>"565.7700"
  601. ]);
  602. var_dump($r['title']);
  603. $r = $r['product'];
  604. $rr = explode(";",$r);
  605. print_r($rr);
  606. }
  607. public function _fout()
  608. {
  609. $waybill = $this->input->get('waybill');
  610. $info = $this->fullorder->get_waybill($waybill);
  611. //$r = $this->usps->get_new_logistics($info);
  612. $r = $this->fedexv1->get_logistics(123);
  613. echo "<pre>";
  614. var_dump($r);
  615. //$this->fedexv1->makeAccessToken();
  616. }
  617. public function _waybillemail()
  618. {
  619. $urls = array();$sl = 0;$time = time();
  620. $wid = 2;
  621. // if(date("H",time()) == '8' && date("i",time()) > '20' && date("i",time()) < '39')//USPS-USA单
  622. // {
  623. // $wid = 1;
  624. // }
  625. // else if(date("H",time()) == '20' && date("i",time()) > '20' && date("i",time()) < '39')//其他快递
  626. // {
  627. // $wid = 2;
  628. // }
  629. // else
  630. // {
  631. // exit;
  632. // }
  633. $notice = $this->notice->find_all("message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");//已有自动发送,这个是物流发送
  634. foreach ($notice as $key=>$var)
  635. {
  636. $this->_waybillfs([
  637. 'var'=>$var,
  638. 'wid'=>$wid
  639. ]);
  640. }
  641. }
  642. public function upadtel(){
  643. $returngoods_id = 150;
  644. $insert_flag = 1217819;
  645. $number = 'KISS-50206-004';
  646. $returngoods_info = $this->returngoods->read($returngoods_id);
  647. $this->returngoods->save([
  648. 'status'=>80,
  649. 'back_no'=>$number,
  650. 'back_id'=>$insert_flag,
  651. 'update_time'=>date('Y-m-d H:i:s'),
  652. ],$returngoods_id);
  653. $this->returnlogs->insert([
  654. 'rg_id'=>(int)$returngoods_id,
  655. 'operat_id'=>10,
  656. 'operat_name'=>'admin',
  657. 'remark'=>"订单号:".$returngoods_info['orderinfo']."重新换货-换货新订单编码".$number,
  658. 'create_time'=>date('Y-m-d H:i:s'),
  659. ]);
  660. }
  661. public function _waybillfs($data)
  662. {
  663. if($data)
  664. {
  665. $notice = $data['var'];
  666. $notice['email'] = $this->emaildata->read($notice['email']);
  667. $wid = $data['wid'];
  668. $fsjs = "";
  669. if($wid == 1 && (stripos($notice['express'],',2,') !== false || stripos($notice['express'],',63,') !== false || stripos($notice['express'],',64,') !== false))
  670. {
  671. $js = explode(',',trim($notice['js'],','));
  672. if(count($js) > 1)
  673. {
  674. $fsjs = " and (";
  675. foreach ($js as $v)
  676. {
  677. $fsjs .= "js = '$v' or ";
  678. }
  679. $fsjs = trim($fsjs,' or ').")" ;
  680. }
  681. else if(count($js) == 1)
  682. {
  683. $fsjs = " and js = '$js[0]'";
  684. }
  685. $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
  686. }
  687. else if($wid == 2 && stripos($notice['express'],',1,') !== false)
  688. {
  689. $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
  690. }
  691. else
  692. {
  693. exit;
  694. }
  695. $this->logic_ding->sendToDing("source != '1' and dlzemail < '1' and shop = '".$notice['shop']."' and library = 2 and ".$where);
  696. // $wlfs = array();
  697. // $dd = $this->fullorder->find_all("source != '1' and dlzemail < '1' and shop = '".$notice['shop']."' and library = 2 and ".$where);
  698. // foreach($dd as $v){
  699. // $this->logic_ding->sendToDing($v['orderinfo']."监听邮件发送的异常:订单信息【".json_encode($v,JSON_UNESCAPED_UNICODE)."】");
  700. // }
  701. // foreach ($dd as $v)
  702. // {
  703. // $shop = $this->shop->read($v['shop']);
  704. // $express = $this->express->read($v['express']);
  705. // $fs = $this->notice->get_god($v,$shop,$express,$notice);
  706. // $this->logic_ding->sendToDing($v['orderinfo']."监听邮件发送的异常:订单信息【".json_encode($v,JSON_UNESCAPED_UNICODE)."】获取快递信息【".json_encode($notice,JSON_UNESCAPED_UNICODE)."】返回的信息".json_encode($fs));
  707. // if($fs == 1)
  708. // {
  709. // $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$v['id']);
  710. // //给crm发送信息 先存储数据 后续定时任务执行
  711. // if($v['shop'] < 10){
  712. // $this->zztmpdata->insert([
  713. // 'type'=>2,
  714. // 'act_name'=>'crm_order',
  715. // 'content'=>json_encode($v),
  716. // 'create_time'=>time()
  717. // ]);
  718. // }
  719. // }
  720. // else
  721. // {
  722. // //$pdtime = date('Y-m-d',time());
  723. // //$folderPath = './data/dlzemail/'.$pdtime; // 文件夹路径
  724. // //$permissions = 0777; // 权限设置
  725. // //if (!file_exists($folderPath)) { mkdir($folderPath, $permissions); }//创建文件夹
  726. // //file_exists($folderPath);
  727. // if(!is_file("./data/dlzemail/".$v['number'].".txt"))
  728. // {
  729. // $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "w") or die("Unable to open file!");
  730. // fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  731. // fclose($myfile);
  732. // }
  733. // else
  734. // {
  735. // $myfile = fopen("./data/dlzemail/".$v['number'].".txt", "a+") or die("Unable to open file!");
  736. // fwrite($myfile, json_encode($fs.';'.$v.';'.$shop.';'.$express.';'.$notice));
  737. // fclose($myfile);
  738. // }
  739. // $this->fullorder->save(array('dlzemail'=>2,'dlzemailtime'=>time()),$v['id']);
  740. // }
  741. // sleep(50);
  742. // }
  743. }
  744. }
  745. public function ll(){
  746. $str = 'sourcetype=2&warehouse=13&currency=219&capital=3&shop=52&pay=22&country=192&sbpm=Human Hair Wigs&zwpm=人发制假发*头套&hgbm=6704200000&express=1&printtype=1&msg=1&ioss=&qm=0&js=0&yc=0&orderinfo=&shouldmoney=1431.29&freight=0&expressmoney=0&insurance=0&paypal=0KE88673623148406&guarantee=无&quantity=1&buytime=2025-02-22&bname=Deidre Brown&sname=Deidre Brown&baddress=3854 Wordsworth Ave,Memphis,Tennessee,38128,US,9012890773&saddress=3854 Wordsworth Ave,Memphis,Tennessee,38128,US,9012890773&email=deidreb89.db@gmail.com&phone=9012890773&province=Tennessee&client=Deidre Brown&city=Memphis&name=Deidre Brown&zipcode=38128&address2=&address=3854 Wordsworth Ave&ts=8&dtsbjz=25&zsbjz=200.00&zzl=0.4&zjs=1&bx=0.00&freight=0&expressmoney=0&id=&purchase=0.00&cost=0.00&et=0&jgyc=1&customerid=1083429&shop=52&mdedit=&product=All+HD+lace+180%25density,+cap+size+21.5inch,+pre+plucked+and+pre+bleached.%0Acustom+black+mesh+cap,+only+1+comb+in+the+back,+no+tags%0A1.+16in+BW+5x5%0A2.+18IN+BW+6X6%0A3.+20in+BW+5x5%0A4.+24IN+BW+5x5%0A5.+24IN+BW+6x6%0A6.+22in+BW+5x5%0A7.+22in+BW+6x6%0A8.+20in+613+BW+5x5+%0AGifts:++HD+wig+cap,+Pink+Edge+Brushes&orderremarks=+%E6%89%B9%E5%8F%91%E5%AE%A2%E6%88%B7%EF%BC%88%E5%A4%A9%E5%AE%87%EF%BC%89&shipremarks=wig&jweight=0&whlabel=|12824698680571035402921382028-1-0|128246987805710321712921382028-1-0|12824698880571035402921382028-1-0|12824699080571035402921382028-1-0|128246990805710321712921382028-1-0|12824698980571035403021382028-1-0|128246989805710321712921382028-1-0|12824698881441035402921382028-1-0|&fpdata=86,-128-2469-80-57-103-540-29-2138-2028-%7CWigs+BenDang+9A+Natural+Black+Body+Wave+HD+5*5+Closure+Wig+Small+CustomizedDensity+HKK+16inch+%7C1%7C0.00%7C0.00%7C16%7C0.00%7C0.00%7C0%7C0;87,-128-2469-80-57-103-2171-29-2138-2028-%7CWigs+BenDang+9A+Natural+Black+Body+Wave+HD+6*6+Closure+Wig+Small+CustomizedDensity+HKK+18inch+%7C1%7C0.00%7C0.00%7C18%7C0.00%7C0.00%7C0%7C0;88,-128-2469-80-57-103-540-29-2138-2028-%7CWigs+BenDang+9A+Natural+Black+Body+Wave+HD+5*5+Closure+Wig+Small+CustomizedDensity+HKK+20inch+%7C1%7C0.00%7C0.00%7C20%7C0.00%7C0.00%7C0%7C0;90,-128-2469-80-57-103-540-29-2138-2028-%7CWigs+BenDang+9A+Natural+Black+Body+Wave+HD+5*5+Closure+Wig+Small+CustomizedDensity+HKK+24inch+%7C1%7C0.00%7C0.00%7C24%7C0.00%7C0.00%7C0%7C0;90,-128-2469-80-57-103-2171-29-2138-2028-%7CWigs+BenDang+9A+Natural+Black+Body+Wave+HD+6*6+Closure+Wig+Small+CustomizedDensity+HKK+24inch+%7C1%7C0.00%7C0.00%7C24%7C0.00%7C0.00%7C0%7C0;89,-128-2469-80-57-103-540-30-2138-2028-%7CWigs+BenDang+9A+Natural+Black+Body+Wave+HD+5*5+Closure+Wig+Medium+CustomizedDensity+HKK+22inch+%7C1%7C0.00%7C0.00%7C22%7C0.00%7C0.00%7C0%7C0;89,-128-2469-80-57-103-2171-29-2138-2028-%7CWigs+BenDang+9A+Natural+Black+Body+Wave+HD+6*6+Closure+Wig+Small+CustomizedDensity+HKK+22inch+%7C1%7C0.00%7C0.00%7C22%7C0.00%7C0.00%7C0%7C0;88,-128-2469-81-44-103-540-29-2138-2028-%7CWigs+BenDang+10A+#613+Body+Wave+HD+5*5+Closure+Wig+Small+CustomizedDensity+HKK+20inch+%7C1%7C0.00%7C0.00%7C20%7C0.00%7C0.00%7C0%7C0;&fpcount=-128-2469-86-80-57-103-540-29-2138-2028-|-128-2469-87-80-57-103-2171-29-2138-2028-|-128-2469-88-80-57-103-540-29-2138-2028-|-128-2469-90-80-57-103-540-29-2138-2028-|-128-2469-90-80-57-103-2171-29-2138-2028-|-128-2469-89-80-57-103-540-30-2138-2028-|-128-2469-89-80-57-103-2171-29-2138-2028-|-128-2469-88-81-44-103-540-29-2138-2028-|&budget=&
  747. ';
  748. parse_str($str, $output);
  749. return $output;
  750. }
  751. //修改客户分类
  752. public function _mdedit($arg_array)
  753. {
  754. die;
  755. $user = $this->user->read(10);
  756. $post = $this->ll();
  757. if(isset($post['shop']))
  758. {
  759. $fpcount = $post['fpcount'];
  760. if(!$fpcount)
  761. {
  762. echo json_encode(array('msg'=>'需要先清理浏览器缓存,刷新当前页面后再试!','success'=>false));exit;
  763. }
  764. $customerid = $post['customerid'];
  765. $shop = $post['shop'];
  766. $sp = $this->shop->read($shop);
  767. $num = $this->fullorder->find_count('shop = "'.$sp['id'].'" and gtime = "'.date('Ymd',time()).'"');
  768. $post['source'] = 1;//订单类型:1.线下订单2.PC3.手机
  769. $post['state'] = 207;//订单状态:207等待发货
  770. $post['review'] = 2;//审核状态:1.未送审2.待审核3.不通过4取消重审5.审核通过6.自动通过
  771. $post['print'] = 1;//打印状态:1.不可打印2.未打印3.已打印
  772. $post['library'] = 1;//出库状态:1.未出库2.已出库3.已退库
  773. $post['libraryconfirm'] = 1;//出库确认:1.不允许2.允许
  774. $post['link'] = $sp['link'];
  775. $post['issku'] = $sp['sku'];
  776. if($post['print'] != 3)
  777. {
  778. $post['librarynot'] = "订单未打印,未审核或未通过";//不能出库原因
  779. }
  780. $orderinfo = $post['orderinfo'];
  781. $post['shop'] = $sp['id'];
  782. $post['user'] = $sp['shopuser'];
  783. $post['number'] = $sp['shortname'].'-'.substr(date('ymd',time()),1).'-'.(substr(strval($num+1+1000),1,3));//编号
  784. if($orderinfo != "")
  785. {
  786. $ordefin = $this->fullorder->get_orderinfo($orderinfo);
  787. if($ordefin)
  788. {
  789. echo json_encode(array('msg'=>'订单号重复!','success'=>false));exit;
  790. }
  791. else
  792. {
  793. $post['orderinfo'] = $orderinfo;
  794. }
  795. }
  796. else
  797. {
  798. $post['orderinfo'] = $sp['id'].date('ymdHis',time()).rand(0,1);//订单号
  799. }
  800. if($post['paypal'] != '')
  801. {
  802. $pp = $this->fullorder->get_paypal($post['paypal']);
  803. if($pp)
  804. {
  805. echo json_encode(array('msg'=>'此交易号的订单已存在!','success'=>false));exit;
  806. }
  807. }
  808. $post['client'] = $post['client'];//客户名称
  809. $btime = $post['buytime'];//付款时间
  810. $post['buytime'] = strtotime($btime);//时间转UX
  811. $post['dtime'] = time();//订单时间
  812. $post['gtime'] = date('Ymd',time());//格式化时间
  813. $post['pay'] = $post['pay'];//支付方式
  814. $post['capital'] = $post['capital'];//资金状态
  815. $post['type'] = $post['warehouse'];//发货仓库
  816. $post['currency'] = $post['currency'];//币种
  817. $currency = $this->typeclass->read($post['currency']);
  818. $post['currencytitle'] = $currency['title'];//币种名称
  819. $post['freight'] = $post['freight'];//运费
  820. $post['expressmoney'] = $post['expressmoney'];//物流金额
  821. $post['shouldmoney'] = $post['shouldmoney'];//应收金额
  822. $post['skje'] = $post['shouldmoney'];//收款金额
  823. $product = $post['product'];//产品名称
  824. $product = str_replace(array('%26','%2B'),array('&','+'),$product);
  825. $post['product'] = preg_replace('/( | | |\s)/',' ',$product);
  826. $orderremarks = $post['orderremarks'];//订单备注
  827. $orderremarks = str_replace(array('%26','%2B'),array('&','+'),$orderremarks);
  828. $post['orderremarks'] = preg_replace('/( | | |\s)/',' ',$orderremarks);
  829. $shipremarks = $post['shipremarks'];//仓库品名
  830. $shipremarks = str_replace(array('%26','%2B'),array('&','+'),$shipremarks);//仓库品名
  831. $post['shipremarks'] = preg_replace('/( | | |\s)/',' ',$shipremarks);
  832. $post['email'] = $post['email'];//邮箱
  833. $name = $post['name'];//名称
  834. $post['name'] = preg_replace('/( | | |\s)/',' ',$name);
  835. $post['phone'] = $post['phone'];//电话
  836. $post['phone'] = preg_replace('/\D/s','',$post['phone']);
  837. $post['country'] = $post['country'];//国家
  838. $ct = $this->country->read($post['country']);//国家
  839. $post['al'] = $ct['lb'];//国家二字码
  840. $post['province'] = $post['province'];//省、州
  841. $post['province'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['province']); //替换开头空字符
  842. $post['province'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['province']); //替换结尾空字符
  843. $post['city'] = $post['city'];//城市
  844. $post['city'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['city']); //替换开头空字符
  845. $post['city'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['city']); //替换结尾空字符
  846. $post['zipcode'] = $post['zipcode'];//邮编
  847. $post['zipcode'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['zipcode']); //替换开头空字符
  848. $post['zipcode'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['zipcode']); //替换结尾空字符
  849. $post['address'] = $post['address'];//地址
  850. $post['printtype'] = $post['printtype'];//打印类型
  851. $fpdata = $post['fpdata'];//购买产品内容
  852. $fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
  853. $post['fpdata'] = $fpdata;
  854. $post['sbpm'] = $post['sbpm'];//申报品名
  855. $post['zwpm'] = $post['zwpm'];//中文品名
  856. $post['ts'] = $post['ts'];//条数
  857. $post['dtsbjz'] = $post['dtsbjz'];//单条申报价
  858. $post['zsbjz'] = $post['zsbjz'];//总申报价
  859. $post['zzl'] = $post['zzl'];//总重量
  860. $post['zjs'] = $post['zjs'];//总件数
  861. $post['express'] = $post['express'];//快递公司
  862. $post['printtype'] = $post['printtype'];//打印类型
  863. $post['quantity'] = $post['quantity'];//数量
  864. $post['paypal'] = $post['paypal'];//支付号
  865. $post['guarantee'] = $post['guarantee'];//卖家保障
  866. $post['msg'] = $post['msg'];//发送留言类型
  867. $post['ioss'] = $post['ioss'];
  868. $post['sbpm'] = $post['sbpm'];
  869. $pay = $this->pay->get_typeclass($post['pay']);
  870. $yga = $post['shouldmoney'];
  871. $post['budget'] = 0;
  872. if($pay)
  873. {
  874. $ygc = $pay['estimaterate'];//预估到账公式
  875. $ifbudget = eval("return $yga*1.$ygc;");
  876. $post['estimaterate'] = $pay['estimaterate'];
  877. if($ifbudget > 0)
  878. {
  879. $post['budget'] = eval("return $yga*1.$ygc;");//预估到帐金额
  880. }
  881. }
  882. else
  883. {
  884. $ygb = $sp['estimaterate'];//店铺默认到账公式
  885. $ifbudget = eval("return $yga*1.$ygb;");
  886. $post['estimaterate'] = $sp['estimaterate'];
  887. if($ifbudget > 0)
  888. {
  889. $post['budget'] = eval("return $yga*1.$ygb;");//预估到帐金额
  890. }
  891. }
  892. $baddress = $post['baddress'];
  893. $saddress = $post['saddress'];
  894. $baddress = array_reverse(explode(',',$baddress));
  895. $saddress = array_reverse(explode(',',$saddress));
  896. $bar = '';$sar = '';
  897. $cr = $this->country->read($post['country']);
  898. $baddress[1] = $cr['lb'];
  899. $saddress[1] = $cr['lb'];
  900. $baddress = array_reverse($baddress);
  901. $saddress = array_reverse($saddress);
  902. for($i=0;$i<count($baddress);$i++)
  903. {
  904. $bar .= $baddress[$i].',';
  905. }
  906. for($i=0;$i<count($saddress);$i++)
  907. {
  908. $sar .= $saddress[$i].',';
  909. }
  910. $post['baddress'] = rtrim($bar,',');//卖家保障
  911. $post['saddress'] = rtrim($sar,',');//卖家保障
  912. $whlabel = $post['whlabel'];
  913. if($post['express'] == 2 && (stripos($post['name'],'&') !== false || stripos($post['name'],"'") !== false))
  914. {
  915. echo json_encode(array('msg'=>'USPS收件人或公司名不可用特殊符号!','success'=>false));exit;
  916. }
  917. if(strlen($post['client']) > 35 || strlen($post['name']) > 35)//收件人姓名或公司名不允许超过35位
  918. {
  919. echo json_encode(array('msg'=>'收件人姓名或公司名不可超过35个字符!','success'=>false));exit;
  920. }
  921. if(($post['express'] == '5' || $post['express'] == '24' || $post['express'] == '42' || $post['express'] == '31') && $post['country'] != 192)
  922. {
  923. echo json_encode(array('msg'=>'非美国无法选择Fedex、DHL官方-美国!','success'=>false));exit;
  924. }
  925. if($post['express'] == '3' && $post['country'] != 192 && $post['country'] != 35)
  926. {
  927. echo json_encode(array('msg'=>'非美国和加拿大无法选择UPS!','success'=>false));exit;
  928. }
  929. if($post['express'] == '3' && $post['country'] == 35 && $post['zsbjz'] > 20)
  930. {
  931. echo json_encode(array('msg'=>'UPS加拿大最高申报不可超过20','success'=>false));exit;
  932. }
  933. if($post['express'] == '2' && $post['warehouse'] != 5)
  934. {
  935. echo json_encode(array('msg'=>'非美国仓无法选择USPS!','success'=>false));exit;
  936. }
  937. if($post['express'] == '99' && $post['bx'] > 0)
  938. {
  939. echo json_encode(array('msg'=>'此物流不允许购买保险','success'=>false));exit;
  940. }
  941. if($post['express'] == 42 && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 ||
  942. {
  943. echo json_encode(array('msg'=>'此快递方式必须选择Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
  944. }
  945. if($post['express'] == 24 && $post['sbpm'] != 'Hair Sample' && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 ||
  946. {
  947. echo json_encode(array('msg'=>'此快递方式必须选择Hair Sample/Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
  948. }
  949. if($post['country'] != 192 && $post['express'] == 1 && $post['sbpm'] != 'Synthetic Hair Wigs' && $post['sbpm'] != 'Synthetic Hair Goods')//$post['express'] == 3 ||
  950. {
  951. echo json_encode(array('msg'=>'非美国选择官方DHL必须选择Synthetic Hair Wigs/Synthetic Hair Goods','success'=>false));exit;
  952. }
  953. if($post['pay'] == '22' && ($post['paypal'] == '' || $post['guarantee'] == ''))
  954. {
  955. echo json_encode(array('msg'=>'交易号和卖家保障必须填写','success'=>false));exit;
  956. }
  957. if($post['pay'] == '23' && $post['paypal'] == '')
  958. {
  959. echo json_encode(array('msg'=>'交易号必须填写','success'=>false));exit;
  960. }
  961. $express = $this->express->read($post['express']);
  962. if($post['zsbjz'] > $express['sbjz'])
  963. {
  964. echo json_encode(array('msg'=>'总申报价值不可超出'.$express['sbjz'],'success'=>false));exit;
  965. }
  966. if($post['shouldmoney'] > $express['shouldmoney'] && $express['shouldmoney'] != 0)
  967. {
  968. echo json_encode(array('msg'=>'订单金额不可超出'.$express['shouldmoney'],'success'=>false));exit;
  969. }
  970. if($express['ioss'] == 1 && $post['ioss'] == '')
  971. {
  972. echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
  973. }
  974. if(strlen($post['address']) > $express['addresssize'] || strlen($post['address2']) > $express['addresssize'])
  975. {
  976. echo json_encode(array('msg'=>'此快递方地址不可超出'.$express['addresssize'].'个字符','success'=>false));exit;
  977. }
  978. if(strlen($post['address']) < 5)
  979. {
  980. echo json_encode(array('msg'=>'地址不可留空!','success'=>false));exit;
  981. }
  982. if($post['express'] == '2' && $post['zzl'] > '16' && $post['js'] == '0')
  983. {
  984. echo json_encode(array('msg'=>'重量大于16不可按Ground Advantage提交!','success'=>false));exit;
  985. }
  986. if($post['express'] == '2' && isset($post['js']) && $post['js'] == '0'&& $post['qm'] == '1')
  987. {
  988. echo json_encode(array('msg'=>'Ground Advantage不可使用签名服务!','success'=>false));exit;
  989. }
  990. if(($post['express'] == '3' || $post['express'] == '42' || $post['express'] == '24') && $post['shouldmoney'] < 1)
  991. {
  992. echo json_encode(array('msg'=>'零金额订单不可发 UPS/DHL官方-美国/Fedex(杭州)','success'=>false));exit;
  993. }
  994. if($post['express'] == '42' && $post['zsbjz'] < 1)
  995. {
  996. echo json_encode(array('msg'=>'零申报金额不可发 DHL官方-美国','success'=>false));exit;
  997. }
  998. if($post['express'] == '6' && $post['province'] == '')
  999. {
  1000. echo json_encode(array('msg'=>'选择DPEX必须填写州信息','success'=>false));exit;
  1001. }
  1002. $dtctitle = array();
  1003. $dictionaries = $this->typeclass->find_all();
  1004. foreach ($dictionaries as $v)
  1005. {
  1006. $dtctitle[$v['id']] = array($v['title'],$v['bqsku']);
  1007. }
  1008. $fpdata = $post['fpdata'];
  1009. if(stripos($fpdata,'-128-') !== false || stripos($fpdata,'-127-') !== false)
  1010. {
  1011. $dfp = explode(';',trim($fpdata,';'));
  1012. $fdata = '';
  1013. foreach ($dfp as $k=>$v)
  1014. {
  1015. $ptitleb = '';
  1016. $fp = explode('|',trim($v,'|'));
  1017. $fp0 = explode(',',$fp[0]);
  1018. if(isset($fp0[1]))
  1019. {
  1020. $fp1 = explode('-',trim($fp0[1],'-'));
  1021. }
  1022. else
  1023. {
  1024. $fp1 = explode('-',trim($fp[0],'-'));
  1025. }
  1026. foreach ($fp1 as $vv)
  1027. {
  1028. $ptitleb .= isset($dtctitle[$vv])?$dtctitle[$vv][0].' ':'';
  1029. }
  1030. if(isset($fp0[1]))
  1031. {
  1032. $ptitleb .= $dtctitle[$fp0[0]][1].'inch ';
  1033. $fp[1] = $ptitleb;
  1034. }
  1035. $fdata .= implode("|",$fp).";";
  1036. }
  1037. $fpdata = $fdata;
  1038. }
  1039. $warehouse = $this->warehouse->read($post['type']);
  1040. if($warehouse['bdcountry'] != 0 && $post['country'] != $warehouse['bdcountry'])
  1041. {
  1042. echo json_encode(array('msg'=>'当前国家无法选择'.$warehouse['title'].'!','success'=>false));exit;
  1043. }
  1044. // $kcyz = $this->ck->get_kc($post['state'],$warehouse,$post['shop'],$post['number'],$whlabel,$fpdata);
  1045. // if($kcyz['t'] > '0')
  1046. // {
  1047. // echo $kcyz['m'];exit;
  1048. // }
  1049. // else if($kcyz['fpdata'] != '')
  1050. // {
  1051. // $post['whlabel'] = $kcyz['whlabel'];
  1052. // $post['fpdata'] = $kcyz['fpdata'];
  1053. // }
  1054. // $fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
  1055. // $post['sfxh'] = $fl['sfxh'];
  1056. // $post['ckfl'] = $fl['ckfl'];
  1057. //查询净重开始
  1058. $post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
  1059. //查询净重结束
  1060. $cusnum = $this->customer->read($customerid);
  1061. // $this->customer->save(array('num'=>$cusnum['num']+1,'time'=>$post['buytime']),$customerid);
  1062. // $this->fullorder->insert($post);
  1063. echo json_encode(array('msg'=>'下单成功','success'=>true));exit;
  1064. }
  1065. echo "1";
  1066. die;
  1067. }
  1068. public function cc(){
  1069. $filename = date("Y-m-d") . "产品入库导出.xls";
  1070. $str = "<html xmlns:x=\"urn:schemas-microsoft-com:office:excel\">
  1071. <head>
  1072. <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
  1073. <!--[if gte mso 9]>
  1074. <xml>
  1075. <x:ExcelWorkbook>
  1076. <x:ExcelWorksheets>
  1077. <x:ExcelWorksheet>
  1078. <x:Name>产品入库</x:Name>
  1079. <x:WorksheetOptions>
  1080. <x:Print>
  1081. <x:ValidPrinterInfo />
  1082. </x:Print>
  1083. </x:WorksheetOptions>
  1084. </x:ExcelWorksheet>
  1085. </x:ExcelWorksheets>
  1086. </x:ExcelWorkbook>
  1087. </xml>
  1088. <![endif]-->
  1089. <style>
  1090. tr { mso-height-source: auto; }
  1091. .fixed-height {
  1092. height: 100px; /* 设置固定行高 */
  1093. mso-height-source: userset; /* 强制Excel使用设定高度 */
  1094. }
  1095. </style>
  1096. </head>
  1097. <body>";
  1098. $str .= "<table border='1' cellspacing='0' style='border-collapse: collapse; font-family: Microsoft Yahei; font-size: 13px;'>";
  1099. $str .= "<tr >"; // 应用固定高度类
  1100. $str .= "<td>产品ID</td>";
  1101. $str .= "<td>图片1</td>";
  1102. $str .= "</tr>";
  1103. $str .= "<tr class='fixed-height'>"; // 应用固定高度类
  1104. $str .= "<td>ceshi12321312312312312312312312312312312</td>";
  1105. $str .= '<td >
  1106. <table border="0">
  1107. <tr class="fixed-height" >
  1108. <td ><img class="excel-image" width="70" height="auto" src="http://1.wepolicy.cn/data/img/20250703/20250703_085106_9716.png"></td>
  1109. <td ><img class="excel-image" width="70" height="auto" src="http://1.wepolicy.cn/data/img/20250703/20250703_085106_9716.png"></td>
  1110. </tr>
  1111. </table>
  1112. </td>';
  1113. // $str .= '<td class="image-cell" style="width: 100px; height: 100px;"><img class="excel-image" width="80" height="auto" src="http://1.wepolicy.cn/data/img/20250703/20250703_085106_9716.png"></td>';
  1114. $str .= "</tr>";
  1115. $str .= "</table></body></html>";
  1116. header("Content-Type: application/vnd.ms-excel; charset=utf-8");
  1117. header("Content-Disposition: attachment; filename=".$filename);
  1118. header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
  1119. header("Pragma: no-cache");
  1120. header("Expires: 0");
  1121. exit($str);
  1122. }
  1123. }