Fullorderexcel.php 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269
  1. <?php defined('BASEPATH') OR exit('No direct script access allowed');
  2. class Fullorderexcel extends Start_Controller {
  3. public function __construct(){
  4. parent::__construct();
  5. $this->load->library('session');
  6. $this->load->_model('Model_fullorder','fullorder');
  7. $this->load->_model('Model_fullordertt','fullordertt');
  8. $this->load->_model('Model_fullorderxw','fullorderxw');
  9. $this->load->_model('Model_fullorder_smt','fullorder_smt');
  10. $this->load->_model('Model_fullordersmt','fullordersmt');
  11. $this->load->_model('Model_fullorderamz','fullorderamz');
  12. $this->load->_model('Model_fullorderexcel','fullorderexcel');
  13. $this->load->_model('Model_fullorderexcelclassid','fullorderexcelclassid');
  14. $this->load->_model('Model_shop','shop');
  15. $this->load->_model('Model_country','country');
  16. $this->load->_model('Model_warehouse','warehouse');
  17. $this->load->_model('Model_excel','excel');
  18. $this->load->_model('Model_notice','notice');
  19. $this->load->_model('Model_express','express');
  20. $this->load->_model('Model_api','api');
  21. $this->load->_model('Model_apismt','apismt');
  22. $this->load->_model('Model_usps','usps');
  23. $this->load->_model('Model_typeclass','typeclass');
  24. $this->load->_model('Model_systemwigsout','systemwigsout');
  25. $this->load->_model('Model_setting','setting');
  26. $this->load->_model('Model_customer','customer');
  27. $this->load->_model('Model_customersmt','customersmt');
  28. $this->load->_model('Model_orderurl','orderurl');
  29. $this->load->_model('Model_whlabel','whlabel');
  30. $this->load->_model('Model_whlabel_bh','whlabel_bh');
  31. $this->load->_model('Model_apiyy','apiyy');
  32. $this->load->_model('Model_classid','classid');
  33. $this->load->_model('Model_systemtransfer','systemtransfer');
  34. $this->load->_model('Model_transfer','transfer');
  35. $this->load->_model('Model_classid','classid');
  36. $this->load->_model('Model_whlabel_type','whlabel_type');
  37. $this->load->_model('Model_power','power');
  38. $this->load->_model('Model_productdescribe','productdescribe');
  39. $this->load->_model('Model_shopsku','shopsku');
  40. $this->load->_model('Model_is','is');
  41. $this->load->_model('Model_whlabel_qh','whlabel_qh');
  42. $this->load->_model('Model_emaildata','emaildata');
  43. $this->load->_model('Model_afspaypal','afspaypal');
  44. $this->load->_model('Model_producttitle','producttitle');
  45. $this->load->_model('Model_message','message');
  46. $this->load->_model("Model_logic_ding","logic_ding");
  47. $this->load->_model('Model_excelxh','excelxh');
  48. }
  49. //定义方法的调用规则 获取URI第二段值
  50. public function _remap($arg,$arg_array)
  51. {
  52. if($arg == 'excel')
  53. {
  54. $this->_excel();
  55. }
  56. else if($arg == 'excelhz')
  57. {
  58. $this->_excelhz();
  59. }
  60. else if($arg == 'add')
  61. {
  62. $this->_add();
  63. }
  64. else if($arg == 'edit')
  65. {
  66. $this->_edit($arg_array);
  67. }
  68. else if($arg == 'copy'){
  69. $this->_copy($arg_array);
  70. }
  71. else if($arg == 'del')
  72. {
  73. $this->_del();
  74. }
  75. else if($arg == 'rows')
  76. {
  77. $this->_rows();
  78. }
  79. else if($arg == 'waybill')
  80. {
  81. $this->_waybill($arg_array);
  82. }
  83. else if($arg == 'order')
  84. {
  85. $this->_order($arg_array);
  86. }
  87. else if($arg == 'xxpl')//线下批量导入
  88. {
  89. $this->_xxpl();
  90. }
  91. else if($arg == 'skuzh')//sku转中文
  92. {
  93. $this->_skuzh();
  94. }
  95. else if($arg == 'cs')
  96. {
  97. $this->_cs();
  98. }
  99. else if($arg == 'scwd')
  100. {
  101. $this->_scwd();
  102. }
  103. else if($arg == 'jmexcel')
  104. {
  105. $this->_jmexcel();
  106. }
  107. else if($arg == 'classid')
  108. {
  109. $this->_classid();
  110. }
  111. else if($arg == 'classidadd')
  112. {
  113. $this->_classidadd();
  114. }
  115. else if($arg == 'classidedit')
  116. {
  117. $this->_classidedit($arg_array);
  118. }
  119. else
  120. {
  121. $this->_index();
  122. }
  123. }
  124. //管理
  125. public function _index()
  126. {
  127. $post = $this->input->post(NULL, TRUE);
  128. if(isset($post['page']))
  129. {
  130. $page = $this->input->post('page',true);
  131. $perpage = $this->input->post('perpage',true);
  132. $type = $this->input->post('type',true);
  133. $where = "1=1 ";
  134. //数据排序
  135. $order_str = "id asc";
  136. if(empty($page))
  137. {
  138. $start = 0;
  139. $perpage = 1;
  140. }
  141. else
  142. {
  143. $start = ($page - 1)*$perpage;
  144. }
  145. if($type)
  146. {
  147. $where .= " and type = '$type'";
  148. }
  149. //取得信息列表
  150. $info_list = $this->fullorderexcel->find_all($where,'id,type,title',$order_str,$start,$perpage);
  151. foreach ($info_list as $k=>$v)
  152. {
  153. $classid = $this->fullorderexcelclassid->read($v['type']);
  154. $info_list[$k]['type'] = $classid['title'];
  155. $info_list[$k]['action'] = "<h9 class='window' data-h='/fullorderexcel/copy/".$v['id']."' style='color:#000'><span>复制表格</span></h9>";
  156. }
  157. $total = $this->fullorderexcel->find_count($where);
  158. $pagenum = ceil($total/$perpage);
  159. $over = $total-($start+$perpage);
  160. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  161. echo json_encode($rows);exit;
  162. }
  163. $classid = $this->fullorderexcelclassid->find_all();
  164. $this->data['classid'] = $classid;
  165. $this->_Template('fullorderexcel',$this->data);
  166. }
  167. //添加
  168. public function _add()
  169. {
  170. $post = $this->input->post(NULL, TRUE);
  171. if(isset($post['title']))
  172. {
  173. $post['title'] = $this->input->post('title',true);
  174. $post['type'] = $this->input->post('type',true);
  175. $post['content'] = $this->input->post('content',true);
  176. $post['contentzh'] = $this->input->post('contentzh',true);
  177. $addid = $this->fullorderexcel->insert($post);
  178. if($addid)
  179. {
  180. $adminid = $this->power->read(1);
  181. $this->power->save(array("excelid"=>$adminid['excelid'].$addid.'|',"exceltext"=>$adminid['exceltext'].$post['title'].'|'),$adminid['id']);
  182. echo json_encode(array('msg'=>'添加成功','success'=>true));exit;
  183. }
  184. else
  185. {
  186. echo json_encode(array('msg'=>'添加失败,请重试','success'=>false));exit;
  187. }
  188. }
  189. $classid = $this->fullorderexcelclassid->find_all();
  190. $this->data['classid'] = $classid;
  191. $this->_Template('fullorderexcel_add',$this->data);
  192. }
  193. //修改
  194. public function _edit($arg_array)
  195. {
  196. $post = $this->input->post(NULL, TRUE);
  197. if(isset($post['id']))
  198. {
  199. $id = $this->input->post('id',true);
  200. $post['title'] = $this->input->post('title',true);
  201. $post['type'] = $this->input->post('type',true);
  202. $post['content'] = $this->input->post('content',true);
  203. $post['contentzh'] = $this->input->post('contentzh',true);
  204. if($this->fullorderexcel->save($post,$id))
  205. {
  206. echo json_encode(array('msg'=>'修改成功','success'=>true));exit;
  207. }
  208. else
  209. {
  210. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  211. }
  212. }
  213. $arg_array = $arg_array[0];
  214. $fullorderexcel = $this->fullorderexcel->read($arg_array);
  215. $this->data['fullorderexcel'] = $fullorderexcel;
  216. $classid = $this->fullorderexcelclassid->find_all();
  217. $this->data['classid'] = $classid;
  218. $this->_Template('fullorderexcel_edit',$this->data);
  219. }
  220. public function _copy($arg_array)
  221. {
  222. $post = $this->input->post(NULL, TRUE);
  223. if(isset($post['id']))
  224. {
  225. $post['title'] = $this->input->post('title',true);
  226. $post['type'] = $this->input->post('type',true);
  227. $post['content'] = $this->input->post('content',true);
  228. $post['contentzh'] = $this->input->post('contentzh',true);
  229. unset($post['id']);
  230. $addid =$this->fullorderexcel->insert($post);
  231. if($addid)
  232. {
  233. $adminid = $this->power->read(1);
  234. $this->power->save(array("excelid"=>$adminid['excelid'].$addid.'|',"exceltext"=>$adminid['exceltext'].$post['title'].'|'),$adminid['id']);
  235. echo json_encode(array('msg'=>'添加成功','success'=>true));exit;
  236. }
  237. else
  238. {
  239. echo json_encode(array('msg'=>'添加失败,请重试','success'=>false));exit;
  240. }
  241. }
  242. $arg_array = $arg_array[0];
  243. $fullorderexcel = $this->fullorderexcel->read($arg_array);
  244. $this->data['fullorderexcel'] = $fullorderexcel;
  245. $classid = $this->fullorderexcelclassid->find_all();
  246. $this->data['classid'] = $classid;
  247. $this->_Template('fullorderexcel_copy',$this->data);
  248. }
  249. //删除
  250. public function _del()
  251. {
  252. $post = $this->input->post(NULL, TRUE);
  253. if(isset($post['s']))
  254. {
  255. $id_arr = $this->input->post('s');
  256. $id_arr = explode(',',$id_arr);
  257. if(!$id_arr)
  258. {
  259. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  260. }
  261. //循环删除记录
  262. foreach ($id_arr as $v)
  263. {
  264. $this->fullorderexcel->remove($v);
  265. }
  266. echo json_encode(array('del'=>$id_arr,'msg'=>'删除记录成功!','success'=>true));
  267. }
  268. }
  269. //获取数据
  270. public function _rows()
  271. {
  272. $post = $this->input->post(NULL, TRUE);
  273. if(isset($post['id']))
  274. {
  275. $id = $this->input->post('id',true);
  276. $fullorderexcel = $this->fullorderexcel->read($id);
  277. $content = explode('|',rtrim($fullorderexcel['content'],'|'));
  278. $contentzh = explode('|',rtrim($fullorderexcel['contentzh'],'|'));
  279. $data = array();
  280. for($i=0;$i<count($content);$i++)
  281. {
  282. $a = explode('-',$content[$i]);
  283. $b = explode('-',$contentzh[$i]);
  284. $data[] = array(0=>$a[1],1=>$b[1]);
  285. }
  286. echo json_encode(array('rows'=>($data),'success'=>true));
  287. }
  288. }
  289. //导出订单excel
  290. public function _excel()
  291. {
  292. $fgshop = "";$sid = "";$excelshop="";
  293. if(isset($_SESSION['api']))
  294. {
  295. $user = $this->user->get_api($_SESSION['api']);
  296. $usp = $user;
  297. $usersp = explode('|',trim($user['shop'],'|'));
  298. foreach ($usersp as $value)
  299. {
  300. $fgshop .= " shop = ".$value." or";
  301. $sid .= " id = ".$value." or";
  302. }
  303. $userexcel = explode('|',trim($user['excelshop'],'|'));
  304. if($user['excelshop'] == '')
  305. {
  306. echo "没有下载权限";exit;
  307. }
  308. foreach ($userexcel as $value)
  309. {
  310. $excelshop .= " shop = ".$value." or";
  311. }
  312. if($excelshop != "")
  313. {
  314. $excelshop = "(".rtrim($excelshop,'or').")";
  315. }
  316. }
  317. if(isset($_GET['fexcel']))
  318. {
  319. $typeclass = array();
  320. $tclass = $this->typeclass->find_all();
  321. foreach ($tclass as $v)
  322. {
  323. $typeclass[$v['id']] = $v;
  324. }
  325. $dowid = $this->input->get('a');
  326. $wid = "";
  327. if($dowid != "")
  328. {
  329. $id_arr = explode(',',rtrim($dowid,','));
  330. $wid .= " id = 0 or";
  331. foreach ($id_arr as $v)
  332. {
  333. $wid .= " id = '$v' or";
  334. }
  335. $wid = " and".rtrim($wid,'or');
  336. }
  337. $fexcel = $this->input->get('fexcel',true);
  338. $page = $this->input->get('page',true);
  339. $perpage = $this->input->get('perpage',true);
  340. $warehouse = $this->input->get('warehouse',true);
  341. $timetk = $this->input->get('timetk',true);
  342. $timetj = $this->input->get('timetj',true);
  343. $shop = $this->input->get('shop',true);
  344. $source = $this->input->get('source',true);
  345. $state = $this->input->get('state',true);
  346. $review = $this->input->get('review',true);
  347. $type = $this->input->get('type',true);
  348. $express = $this->input->get('express',true);
  349. $orderinfo = $this->input->get('orderinfo',true);
  350. $user = $this->input->get('user',true);
  351. $client = $this->input->get('name',true);
  352. $waybill = $this->input->get('waybill',true);
  353. $number = $this->input->get('number',true);
  354. $email = $this->input->get('email',true);
  355. $dlz = $this->input->get('dlz',true);
  356. $library = $this->input->get('library',true);
  357. $libraryconfirm = $this->input->get('libraryconfirm',true);
  358. $print = $this->input->get('print',true);
  359. $timetkk = $this->input->get('timetkk',true);
  360. $timetjj = $this->input->get('timetjj',true);
  361. $xztime = $this->input->get('xztime',true);
  362. $country = $this->input->get('country',true);
  363. $zf = $this->input->get('zf',true);
  364. $pay = $this->input->get('pay',true);
  365. $phone = $this->input->get('phone',true);
  366. $so = $this->input->get('so',true);
  367. $sfxh = $this->input->get('sfxh',true);
  368. $xdcs = $this->input->get('xdcs',true);
  369. $xdcs = $this->input->get('xdcs',true);
  370. $dbapi = $this->input->get('dbapi',true);
  371. $dbapinocc = $this->input->get('dbapinocc',true);
  372. $orderurl = $this->input->get('orderurl',true);
  373. $timetk = strtotime($timetk);
  374. $timetj = strtotime($timetj);
  375. $timetkk = strtotime($timetkk);
  376. $timetjj = strtotime($timetjj);
  377. $productid = $this->input->get('productid',true);
  378. $px = $this->input->get('px',true);
  379. $fexcel = $this->fullorderexcel->read($fexcel);
  380. $classid = $this->fullorderexcelclassid->read($fexcel['type']);
  381. $where = "1 = 1 and (".rtrim($fgshop,'or').")";
  382. if($warehouse)
  383. {
  384. $where .= " and type = '$warehouse'";
  385. }
  386. if($xztime)
  387. {
  388. if($timetk && $timetj)
  389. {
  390. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  391. }
  392. if($timetkk && $timetjj)
  393. {
  394. $where .= " and ".$xztime." > '$timetkk' and ".$xztime." < '$timetjj'";
  395. }
  396. }
  397. else
  398. {
  399. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  400. }
  401. if($productid){
  402. $where .= " and extra_price IS NOT NULL and JSON_SEARCH(extra_price, 'one', '".$productid."', NULL, '$[*].product_id') IS NOT NULL";
  403. }
  404. if($library)
  405. {
  406. $where .= " and library = '$library'";
  407. }
  408. if($print)
  409. {
  410. $where .= " and print = '$print'";
  411. }
  412. if($shop)
  413. {
  414. $where .= " and shop = '$shop'";
  415. }
  416. if($source)
  417. {
  418. if($source == '2d')
  419. {
  420. $where .= " and source >= '2'";
  421. }
  422. else
  423. {
  424. $where .= " and source = '$source'";
  425. }
  426. }
  427. if($state)
  428. {
  429. $where .= " and state = '$state'";
  430. }
  431. if($review)
  432. {
  433. $where .= " and review = '$review'";
  434. }
  435. if($type)
  436. {
  437. $where .= " and type = '$type'";
  438. }
  439. if($express)
  440. {
  441. $where .= " and express = '$express'";
  442. }
  443. if($orderinfo)
  444. {
  445. $where .= " and orderinfo = '$orderinfo'";
  446. }
  447. if($user)
  448. {
  449. $where .= " and user = '$user'";
  450. }
  451. if($client)
  452. {
  453. $where .= " and client like '%$client%'";
  454. }
  455. if($waybill)
  456. {
  457. $where .= " and waybill = '$waybill'";
  458. }
  459. if($number)
  460. {
  461. $where .= " and number = '$number'";
  462. }
  463. if($email)
  464. {
  465. $where .= " and email = '$email'";
  466. }
  467. if($country)
  468. {
  469. $where .= " and country = '$country'";
  470. }
  471. if($dlz)
  472. {
  473. $where .= " and waybill != '' and dlz = 0";
  474. }
  475. if($libraryconfirm)
  476. {
  477. $where .= " and libraryconfirm = '$libraryconfirm'";
  478. }
  479. if($so)
  480. {
  481. $where .= " and shipremarks like '%$so%'";
  482. }
  483. if($pay)
  484. {
  485. $where .= " and pay = '$pay'";
  486. }
  487. if($phone)
  488. {
  489. $where .= " and phone = '$phone'";
  490. }
  491. if($sfxh != '')
  492. {
  493. $where .= " and sfxh = '$sfxh'";
  494. }
  495. if($orderurl)
  496. {
  497. $url = $this->orderurl->read($orderurl);
  498. $where .= " and link like '%".$url['url']."%'";
  499. }
  500. if($zf)
  501. {
  502. if($zf == 1)
  503. {
  504. $where .= " and paypal not like '%-%-%-%'";
  505. }
  506. else
  507. {
  508. $where .= " and paypal like '%-%-%-%'";
  509. }
  510. }
  511. $sj = $this->input->get('sj',true);
  512. if($sj)
  513. {
  514. $sj = $this->input->get('sj',true);
  515. }
  516. else
  517. {
  518. $sj = $classid['type'];
  519. }
  520. $fexceleq = explode("|",rtrim($fexcel['content'],'|'));
  521. foreach ($fexceleq as $k=>$v)
  522. {
  523. $fexceleq[$k] = explode('-',$v);
  524. $num[$k] = $fexceleq[$k][0];
  525. }
  526. //array_multisort($num,SORT_ASC,$fexceleq);//重新排序
  527. $feq = "";$kong = array();$sku9610 = ''; $goods_sku_list = [];
  528. foreach ($fexceleq as $k=>$v)
  529. {
  530. if(isset($v[1]))
  531. {
  532. if($v[1] == 'klarnabill' || $v[1] == 'klarnaship' || $v[1] == 'PPname' || $v[1] == 'PPaddress' || $v[1] == 'PPemail' || $v[1] == 'afterpayship' || $v[1] == 'afterpaybill')
  533. {
  534. $feq .= 'klarnadata,';
  535. }
  536. if($v[1] == 'ccfpdata' || $v[1] == 'cpfpdata' || $v[1] == 'dbapi' || $v[1] == 'scapi')
  537. {
  538. $feq .= 'fpdata,';
  539. }
  540. if(in_array($v[1],['gradefpdata','colorfpdata','densityfpdata','hairnumberfpdata','lacetypefpdata','lowefpdata'])){
  541. $goods_sku_list[] = $v[1];
  542. continue;
  543. }
  544. if($v[1] != 'kong')//空值去除
  545. {
  546. if($v[1] == '9610sku' || $v[1] == 'issku' || $v[1] == 'sku')
  547. {
  548. if($v[1] == '9610sku')
  549. {
  550. $sku9610 = 1;
  551. }
  552. if($sj == 'fullordersmt')
  553. {
  554. $v[1] = 'sku';
  555. }
  556. else
  557. {
  558. $v[1] = 'issku';
  559. }
  560. }
  561. $feq .= $v[1].',';
  562. }
  563. else
  564. {
  565. $kong[$v[0]] = 1;
  566. }
  567. }
  568. }
  569. //处理额外加上的subtotal和rowtoal 但是不想在表中加太多字段 想着以后有关金额的都给怼到extra_price字段中
  570. if((strpos($feq,'subtotal')!= false)||(strpos($feq,'rowtotal')!= false) ||(strpos($feq,'product_id')!= false)){
  571. if(strpos($feq,'subtotal')!= false){
  572. $feq = str_replace('subtotal,',"extra_price as subtotal,",$feq);
  573. }
  574. if(strpos($feq,'rowtotal')!= false){
  575. $feq = str_replace('rowtotal,',"extra_price as rowtotal,",$feq);
  576. }
  577. if(strpos($feq,'product_id')!= false){
  578. $feq = str_replace('product_id,',"extra_price as product_id,",$feq);
  579. }
  580. }
  581. //添加订单前缀
  582. $shopqz_list = [];
  583. if(strpos($feq,'shopqz') !== false){
  584. $feq = str_replace('shopqz,',"shop as shopqz,",$feq);
  585. $shop_list = $this->shop->find_all("1 = 1","id,shortname");
  586. $shopqz_list = array_column($shop_list,'shortname','id');
  587. }
  588. $tt_cate_one = [];
  589. $tt_cate_two = [];
  590. if($sj == 'fullordertt'){
  591. if(strpos($feq,'ttcateone')!== false){
  592. $feq = str_replace('ttcateone,',"cate_one as ttcateone,",$feq);
  593. $tt_cate_one = $this->fullordertt->getCateOne();
  594. $tt_cate_two = $this->fullordertt->getCateTwo();
  595. }
  596. if(strpos($feq,'ttcatetwo')!== false){
  597. $feq = str_replace('ttcatetwo,',"cate_two as ttcatetwo,",$feq);
  598. }
  599. }
  600. //$dbapi_nocc
  601. if(strpos($feq,'dbapinocc')!= false){
  602. $feq = str_replace('dbapinocc,',"fpdata as dbapinocc,",$feq);
  603. }
  604. //商品的规格展示 如果前面没有fpdata 需要加上
  605. if(count($goods_sku_list) > 0){
  606. if(strpos($feq,'fpdata,') === false){
  607. $feq = "fpdata,".$feq;
  608. }
  609. }
  610. $typeclass_lpdl = [];
  611. //料品大类
  612. if(strpos($feq,'lpdl')!= false){
  613. $feq = str_replace('lpdl,',"fpdata as lpdl,",$feq);
  614. $tmp_typeclass_lpdl = $this->db->from('typeclass')->select("id,title,zh,classid")->where('classid',16)->get()->result_array();
  615. $typeclass_lpdl = array_column($tmp_typeclass_lpdl,'zh','id');
  616. }
  617. $typeclass_lhdycc = [];
  618. //料号对应尺寸
  619. if(strpos($feq,'lhdycc')!= false){
  620. $feq = str_replace('lhdycc,',"fpdata as lhdycc,",$feq);
  621. $tmp_typeclass_lhdycc = $this->db->from('typeclass')->select("id,title,zh,classid")->where('classid',14)->get()->result_array();
  622. $typeclass_lhdycc = array_column($tmp_typeclass_lhdycc,'zh','id');
  623. }
  624. $feq = rtrim($feq,',');
  625. $fexcelzhw = explode('|',rtrim($fexcel['contentzh'],'|'));
  626. foreach ($fexcelzhw as $k=>$v)
  627. {
  628. $fexcelzhw[$k] = explode('-',$v);
  629. $numb[$k] = $fexcelzhw[$k][0];
  630. }
  631. //array_multisort($numb,SORT_ASC,$fexcelzhw);//重新排序
  632. $fexcelzh = array();
  633. foreach ($fexcelzhw as $k=>$v)
  634. {
  635. $fexcelzh[] = $v[1];
  636. }
  637. if($px)
  638. {
  639. $order_str = $px." desc";
  640. }
  641. else
  642. {
  643. $order_str = "id desc";
  644. }
  645. // if($_GET['fexcel'] == '157'){
  646. // $this->logic_ding->sendToDing("excel导出的【".$where.$wid.' and '.$excelshop);
  647. // $this->logic_ding->sendToDing("excel导出的【".'id,'.$feq);
  648. // $this->logic_ding->sendToDing("excel导出的【".$order_str);
  649. // $this->logic_ding->sendToDing("excel导出的SJ【".$sj);
  650. // }
  651. //取得信息列表
  652. $info_list = $this->$sj->find_all($where.$wid.' and '.$excelshop,'id,'.$feq,$order_str);
  653. //格式化数据
  654. $i = 1;$shouldmoney = 0;$hl=1;
  655. foreach ($info_list as $key=>$value)
  656. {
  657. $data = $this->$sj->read($value['id']);
  658. $data = str_replace(array("'"),array("’"),$data);
  659. if(isset($value['email']) && $usp['excelpass'] == '1')
  660. {
  661. $emailpass = $this->setting->get_excelpass($value['email']);
  662. $info_list[$key]['email'] = $emailpass;
  663. }
  664. if(isset($value['phone']) && $usp['excelpass'] == '1')
  665. {
  666. $phonepass = $this->setting->get_excelpass($value['phone']);
  667. $info_list[$key]['phone'] = $phonepass;
  668. }
  669. if(isset($value['currencytitle']))
  670. {
  671. if($value['currencytitle'] != "CNY")
  672. {
  673. $hl=$value['hl'];
  674. }
  675. $shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
  676. $budget=$budget+($value['budget']*$hl);
  677. $currency=$currency+(($value['shouldmoney']-$value['budget'])*$hl);
  678. $refund=$refund+($value['refund']*$hl);
  679. }
  680. if(isset($value['shop']))
  681. {
  682. $shop = $this->shop->read($value['shop']);
  683. $info_list[$key]['shop'] = $shop['shopname'];
  684. }
  685. if(isset($value['dtime']))
  686. {
  687. $info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
  688. }
  689. if(isset($value['printtime']))
  690. {
  691. if($value['printtime'] > 0)
  692. {
  693. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  694. }
  695. }
  696. if(isset($value['sku']))
  697. {
  698. if($sku9610 == '1')
  699. {
  700. $aesku = explode(';',$value['sku']);
  701. $aesku = $aesku[0];
  702. $aesku = explode(':',$aesku);
  703. if(count($aesku) > 1)
  704. {
  705. $aesku = $aesku[1];
  706. $aesku = str_replace('--','~',$aesku);
  707. $aesku = explode('-',$aesku);
  708. $aesku = $aesku[0];
  709. $aesku = str_replace('~','--',$aesku);
  710. $info_list[$key]['sku'] = $aesku;
  711. }
  712. else
  713. {
  714. $info_list[$key]['sku'] = '';
  715. }
  716. }
  717. else
  718. {
  719. $info_list[$key]['sku'] = $value['sku'];
  720. }
  721. }
  722. if(isset($value['issku']))
  723. {
  724. $value['issku'] = str_replace(array('&lt;','&gt;'),array('<','>'),$value['issku']);
  725. if($sku9610 == '1')
  726. {
  727. $aesku = explode(';',$value['issku']);
  728. $aesku = $aesku[0];
  729. $aesku = str_replace('--','~',$aesku);
  730. $aesku = explode('-',$aesku);
  731. $aesku = $aesku[0];
  732. $aesku = str_replace('~','--',$aesku);
  733. $aesku = str_replace(array('<','>'),array('&lt;','&gt;'),$aesku);
  734. $info_list[$key]['issku'] = $aesku;
  735. }
  736. else
  737. {
  738. $value['issku'] = str_replace(array('<','>'),array('&lt;','&gt;'),$value['issku']);
  739. $info_list[$key]['issku'] = $value['issku'];
  740. }
  741. }
  742. if(isset($value['subtotal'])){
  743. $tmp_sub_str = "";
  744. $subtotal_list = json_decode($value['subtotal'],true);
  745. foreach($subtotal_list as $v){
  746. if(isset($v['sub_total'])){
  747. $tmp_sub_str .= sprintf( "%.2f",$v['sub_total'])."<br>";
  748. }else{
  749. $tmp_sub_str .= "0<br>";
  750. }
  751. }
  752. $info_list[$key]['subtotal'] = $tmp_sub_str;
  753. }
  754. if(isset($value['rowtotal'])){
  755. $tmp_sub_str = "";
  756. $subtotal_list = json_decode($value['rowtotal'],true);
  757. foreach($subtotal_list as $v){
  758. if(isset($v['row_total'])){
  759. $tmp_sub_str .= sprintf( "%.2f",$v['row_total'])."<br>";
  760. }else{
  761. $tmp_sub_str .= "0<br>";
  762. }
  763. }
  764. $info_list[$key]['rowtotal'] = $tmp_sub_str;
  765. }
  766. if(isset($value['shopqz'])){
  767. $info_list[$key]['shopqz'] = isset($shopqz_list[$value['shopqz']])?$shopqz_list[$value['shopqz']]:'';
  768. }
  769. if(isset($value['dbapinocc'])){
  770. $jmlist_nocc = '';
  771. $classid = $this->classid->sku();
  772. $dbapi = explode(';',trim($value['dbapinocc'],';'));
  773. foreach ($dbapi as $va)
  774. {
  775. $jm_nocc = $classid;
  776. unset($jm_nocc[14]);
  777. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  778. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  779. $ts = explode('|',trim($features,'|'));
  780. if(stripos($ts[0],',') !== false)
  781. {
  782. $ft = explode(',',$ts[0]);
  783. $features = explode('-',trim($ft[1],'-'));
  784. $features[] = $ft[0];
  785. }
  786. else
  787. {
  788. $features = explode('-',trim($ts[0],'-'));
  789. }
  790. foreach($features as $k=>$v)
  791. {
  792. if($v != 0 && isset($typeclass[$v]))
  793. {
  794. if(isset($jm_nocc[$typeclass[$v]['classid']]))
  795. {
  796. if($typeclass[$v]['jm'])
  797. {
  798. $jm_nocc[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  799. }
  800. }
  801. }
  802. }
  803. $jm_nocc = array_filter($jm_nocc);//去除空值
  804. $jm_nocc = implode("-",$jm_nocc);
  805. $jmlist_nocc .= $jm_nocc.'<br>';
  806. }
  807. $info_list[$key]['dbapinocc'] = $jmlist_nocc ;
  808. }
  809. if(isset($value['lpdl'])){
  810. $tmp_lpdl_str ="";
  811. $tmp_fpdata_arr = explode(';',trim($value['fpdata'],';'));
  812. $tmp_fpdata_arr = array_filter($tmp_fpdata_arr);
  813. foreach($tmp_fpdata_arr as $v){
  814. if(empty($v)){
  815. continue;
  816. }
  817. $tmp_arr = explode('-',$v);
  818. if(isset($typeclass_lpdl[$tmp_arr[1]])){
  819. $tmp_lpdl_str .= $typeclass_lpdl[$tmp_arr[1]]."<br>";
  820. }else{
  821. $tmp_lpdl_str .= " ";
  822. }
  823. }
  824. $info_list[$key]['lpdl'] = trim($tmp_lpdl_str,"<br>") ;
  825. }
  826. if(isset($value['lhdycc'])){
  827. $tmp_lhdycc_str ="";
  828. $tmp_fpdata_arr = explode(';',trim($value['fpdata'],';'));
  829. $tmp_fpdata_arr = array_filter($tmp_fpdata_arr);
  830. foreach($tmp_fpdata_arr as $v){
  831. if(empty($v)){
  832. continue;
  833. }
  834. if(stripos($v,',') !== false){
  835. $tmp_arr = explode(',',$v);
  836. if(isset($typeclass_lhdycc[$tmp_arr[0]])){
  837. $tmp_lhdycc_str .= $typeclass_lhdycc[$tmp_arr[0]]."<br>";
  838. }else{
  839. $tmp_lhdycc_str .= "异常 <br>";
  840. }
  841. }else{
  842. $tmp_lhdycc_str .= "无 <br>";
  843. }
  844. }
  845. $info_list[$key]['lhdycc'] = trim($tmp_lhdycc_str,"<br>") ;
  846. }
  847. if(isset($value['product_id'])){
  848. $tmp_product_id = "";
  849. $product_ids = json_decode($value['product_id'],true);
  850. foreach($product_ids as $v){
  851. if(isset($v['product_id'])){
  852. $tmp_product_id .= $v['product_id']."<br>";
  853. }else{
  854. $tmp_product_id .= "<br>";
  855. }
  856. }
  857. $info_list[$key]['product_id'] = $tmp_product_id;
  858. }
  859. if(isset($value['librarytime']))
  860. {
  861. if($value['librarytime'] > 0)
  862. {
  863. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  864. }
  865. }
  866. if(isset($value['buytime']))
  867. {
  868. if($value['buytime'] > 0)
  869. {
  870. $info_list[$key]['buytime'] = date('Y-m-d H:i:s',$value['buytime']);
  871. }
  872. }
  873. if(isset($value['country']))
  874. {
  875. $country = $this->country->read($value['country']);
  876. $info_list[$key]['country'] = $country['name'];
  877. }
  878. if(isset($value['street']))//暂时用街道导出州二字码
  879. {
  880. if($data['country'] == 192)//如果是美国
  881. {
  882. $ToState = array('alabama'=>'AL','alaska'=>'AK','arizona'=>'AZ','arkansas'=>'AR','california'=>'CA','colorado'=>'CO','connecticut'=>'CT','delaware'=>'DE','florida'=>'FL','georgia'=>'GA','hawaii'=>'HI','idaho'=>'ID','illinois'=>'IL','indiana'=>'IN','iowa'=>'IA','kansas'=>'KS','kentucky'=>'KY','louisiana'=>'LA','maine'=>'ME','maryland'=>'MD','massachusetts'=>'MA','michigan'=>'MI','minnesota'=>'MN','mississippi'=>'MS','missouri'=>'MO','montana'=>'MT','nebraska'=>'NE','nevada'=>'NV','new hampshire'=>'NH','new jersey'=>'NJ','new mexico'=>'NM','new york'=>'NY','north carolina'=>'NC','north dakota'=>'ND','ohio'=>'OH','oklahoma'=>'OK','oregon'=>'OR','pennsylvania'=>'PA','rhode island'=>'RI','south carolina'=>'SC','south dakota'=>'SD','tennessee'=>'TN','texas'=>'TX','utah'=>'UT','vermont'=>'VT','virginia'=>'VA','washington'=>'WA','west virginia'=>'WV','wisconsin'=>'WI','wyoming'=>'WY','district of columbia'=>'DC','virgin islands'=>'VI');
  883. $data['province'] = preg_replace('/( | |\s)/',' ',$data['province']);
  884. $data['province'] = trim($data['province'],' ');
  885. if(isset($ToState[strtolower($data['province'])]))
  886. {
  887. $dataprovince = strlen($data['province'])==2?$data['province']:$ToState[strtolower($data['province'])];
  888. }
  889. else
  890. {
  891. $dataprovince = '';
  892. }
  893. $info_list[$key]['street'] = $dataprovince;
  894. }
  895. else
  896. {
  897. $info_list[$key]['street'] = '';
  898. }
  899. }
  900. if(isset($value['pay']))
  901. {
  902. $pay = $this->typeclass->read($value['pay']);
  903. $info_list[$key]['pay'] = $pay['title'];
  904. }
  905. if(isset($value['type']))
  906. {
  907. $type = $this->warehouse->read($value['type']);
  908. $info_list[$key]['type'] = $type['title'];
  909. }
  910. if(isset($value['express']))
  911. {
  912. $express = $this->express->read($value['express']);
  913. if($express)
  914. {
  915. $info_list[$key]['express'] = $express['servicename'];
  916. }
  917. else
  918. {
  919. $info_list[$key]['express'] = '未选择';
  920. }
  921. }
  922. if(isset($value['ccfpdata']))
  923. {
  924. $ccfpdata = explode(';',$value['fpdata']);
  925. $inc = 0;
  926. foreach ($ccfpdata as $v)
  927. {
  928. if(stripos($v,',') !== false)
  929. {
  930. $cc = explode(',',$v);
  931. $inctype = $this->typeclass->read($cc[0]);
  932. if(is_numeric($inctype['spare']))
  933. {
  934. if($inctype['spare'] > $inc)
  935. {
  936. $inc = $inctype['spare'];
  937. }
  938. }
  939. }
  940. }
  941. $info_list[$key]['ccfpdata'] = $inc.'inch';
  942. }
  943. if(isset($value['printtype']))
  944. {
  945. if($value['printtype'] == 1)
  946. {
  947. $info_list[$key]['printtype'] = '运单';
  948. }
  949. else if($value['printtype'] == 2)
  950. {
  951. $info_list[$key]['printtype'] = '发货单';
  952. }
  953. else if($value['printtype'] == 3)
  954. {
  955. $info_list[$key]['printtype'] = '不打印单据';
  956. }
  957. else
  958. {
  959. $info_list[$key]['printtype'] = '未选择';
  960. }
  961. }
  962. if(isset($value['exstate']))
  963. {
  964. if($value['exstate'] == '99')
  965. {
  966. $info_list[$key]['exstate'] = '未获取到物流信息';
  967. }
  968. else if($value['exstate'] == '1')
  969. {
  970. $info_list[$key]['exstate'] = '已揽收';
  971. }
  972. else if($value['exstate'] == '2')
  973. {
  974. $info_list[$key]['exstate'] = '在途中';
  975. }
  976. else if($value['exstate'] == '3')
  977. {
  978. $info_list[$key]['exstate'] = '派送中';
  979. }
  980. else if($value['exstate'] == '4')
  981. {
  982. $info_list[$key]['exstate'] = '已签收';
  983. }
  984. else if($value['exstate'] == '5')
  985. {
  986. $info_list[$key]['exstate'] = '派送异常';
  987. }
  988. else
  989. {
  990. $info_list[$key]['exstate'] = '';
  991. }
  992. }
  993. if(isset($value['link']))
  994. {
  995. if($value['link'] != '')
  996. {
  997. $link = explode(',',$value['link']);
  998. $info_list[$key]['link'] = $link[0];
  999. }
  1000. else
  1001. {
  1002. $info_list[$key]['link'] = '';
  1003. }
  1004. }
  1005. if(isset($value['klarnabill']))
  1006. {
  1007. $klarnadata = explode('|',$value['klarnadata']);
  1008. if(isset($klarnadata[2]))
  1009. {
  1010. $info_list[$key]['klarnabill'] = $klarnadata[2];
  1011. }
  1012. else
  1013. {
  1014. $info_list[$key]['klarnabill'] = '';
  1015. }
  1016. }
  1017. if(isset($value['klarnaship']))
  1018. {
  1019. $klarnadata = explode('|',$value['klarnadata']);
  1020. if(isset($klarnadata[3]))
  1021. {
  1022. $info_list[$key]['klarnaship'] = $klarnadata[3];
  1023. }
  1024. else
  1025. {
  1026. $info_list[$key]['klarnaship'] = '';
  1027. }
  1028. }
  1029. if(isset($value['afterpaybill']))
  1030. {
  1031. $klarnadata = explode('|',$value['klarnadata']);
  1032. if(isset($klarnadata[1]))
  1033. {
  1034. $info_list[$key]['afterpaybill'] = $klarnadata[1];
  1035. }
  1036. else
  1037. {
  1038. $info_list[$key]['afterpaybill'] = '';
  1039. }
  1040. }
  1041. if(isset($value['afterpayship']))
  1042. {
  1043. $klarnadata = explode('|',$value['klarnadata']);
  1044. if(isset($klarnadata[2]))
  1045. {
  1046. $info_list[$key]['afterpayship'] = $klarnadata[2];
  1047. }
  1048. else
  1049. {
  1050. $info_list[$key]['afterpayship'] = '';
  1051. }
  1052. }
  1053. if(isset($value['PPname']))
  1054. {
  1055. $info_list[$key]['PPname'] = '';
  1056. $klarnadata = explode('|',$value['klarnadata']);
  1057. if(isset($klarnadata[1]))
  1058. {
  1059. $klarnadata = json_decode($klarnadata[1],true);
  1060. if(isset($klarnadata['name']))
  1061. {
  1062. $info_list[$key]['PPname'] = $klarnadata['name'];
  1063. }
  1064. }
  1065. }
  1066. if(isset($value['PPemail']))
  1067. {
  1068. $info_list[$key]['PPemail'] = '';
  1069. $klarnadata = explode('|',$value['klarnadata']);
  1070. if(isset($klarnadata[1]))
  1071. {
  1072. $klarnadata = json_decode($klarnadata[1],true);
  1073. if(isset($klarnadata['email']))
  1074. {
  1075. if($usp['excelpass'] == '1')
  1076. {
  1077. $ppemailpass = $this->setting->get_excelpass($klarnadata['email']);
  1078. }
  1079. else
  1080. {
  1081. $ppemailpass = $klarnadata['email'];
  1082. }
  1083. $info_list[$key]['PPemail'] = $ppemailpass;
  1084. }
  1085. }
  1086. }
  1087. if(isset($value['PPaddress']))
  1088. {
  1089. $info_list[$key]['PPaddress'] = '';
  1090. $klarnadata = explode('|',$value['klarnadata']);
  1091. if(isset($klarnadata[1]))
  1092. {
  1093. $klarnadata = json_decode($klarnadata[1],true);
  1094. if(isset($klarnadata['address']))
  1095. {
  1096. $info_list[$key]['PPaddress'] = $klarnadata['address'];
  1097. }
  1098. }
  1099. }
  1100. if(isset($value['klarnadata']))
  1101. {
  1102. unset($info_list[$key]['klarnadata']);
  1103. }
  1104. if(isset($value['shippingmethod']))
  1105. {
  1106. $tax = explode('Tax:',$value['shippingmethod']);
  1107. $info_list[$key]['shippingmethod'] = (isset($tax[1]))?trim($tax[1],';'):'';
  1108. }
  1109. if(isset($value['systemwigsout']))
  1110. {
  1111. $out = $this->systemtransfer->find_all("number = '".$data['number']."'");
  1112. $outread = '';
  1113. if($out)
  1114. {
  1115. foreach ($out as $val)
  1116. {
  1117. $list = '';
  1118. $rk = explode('|',trim($val['rk'],'|'));
  1119. $rktime = explode('|',trim($val['rktime'],'|'));
  1120. $zw = array();
  1121. $t = $this->transfer->find_all("1=1");
  1122. foreach ($t as $v)
  1123. {
  1124. $zw[$v['id']] = $v['title'];
  1125. }
  1126. if($val['rk'] != '' && count($rk) > 0)
  1127. {
  1128. for($i=0;$i<count($rk);$i++)
  1129. {
  1130. if(!isset($rktime[$i]))
  1131. {
  1132. $list .= $zw[$cz[$i]];
  1133. }
  1134. else
  1135. {
  1136. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  1137. }
  1138. }
  1139. }
  1140. $outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  1141. }
  1142. }
  1143. else
  1144. {
  1145. $systemwigsout = $this->systemwigsout->find_all("number = '".$data['number']."'");
  1146. if($systemwigsout)
  1147. {
  1148. foreach ($systemwigsout as $v)
  1149. {
  1150. $outread = '';
  1151. if($v['czwarehouse'] == 37)
  1152. {
  1153. $outread .= '华荣厂';
  1154. }
  1155. else if($v['czwarehouse'] == 0)
  1156. {
  1157. $outread .= '龙盈厂';
  1158. }
  1159. $cz = explode('|',trim($v['cz'],'|'));
  1160. $cztime = explode('|',trim($v['cztime'],'|'));
  1161. $zw = $this->transfer->get_list();
  1162. if($v['cz'] != '' && count($cz) > 0)
  1163. {
  1164. for($i=0;$i<count($cz);$i++)
  1165. {
  1166. if(!isset($cztime[$i]))
  1167. {
  1168. $outread .= $zw[$cz[$i]].' -&gt; ';
  1169. }
  1170. else
  1171. {
  1172. $outread .= $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  1173. }
  1174. }
  1175. $outread .= '<br>';
  1176. }
  1177. }
  1178. }
  1179. }
  1180. $info_list[$key]['systemwigsout'] = $outread;
  1181. }
  1182. if(isset($value['sourcetype']))
  1183. {
  1184. if($value['sourcetype'] == '1')
  1185. {
  1186. $info_list[$key]['sourcetype'] = '网红单';
  1187. }
  1188. else if($value['sourcetype'] == '2')
  1189. {
  1190. $info_list[$key]['sourcetype'] = '批发单';
  1191. }
  1192. else if($value['sourcetype'] == '3')
  1193. {
  1194. $info_list[$key]['sourcetype'] = '线下单';
  1195. }
  1196. else if($value['sourcetype'] == '4')
  1197. {
  1198. $info_list[$key]['sourcetype'] = '售后单';
  1199. }
  1200. else if($value['sourcetype'] == '5')
  1201. {
  1202. $info_list[$key]['sourcetype'] = '其它';
  1203. }
  1204. else
  1205. {
  1206. $info_list[$key]['sourcetype'] = '';
  1207. }
  1208. }
  1209. if(isset($value['js']))
  1210. {
  1211. if($value['js'] == '0')
  1212. {
  1213. $info_list[$key]['js'] = 'Ground Advantage';
  1214. }
  1215. else if($value['js'] == '1')
  1216. {
  1217. $info_list[$key]['js'] = 'PRIORITY';
  1218. }
  1219. else if($value['js'] == '2')
  1220. {
  1221. $info_list[$key]['js'] = 'EXPRESS';
  1222. }
  1223. else if($value['js'] == '3')
  1224. {
  1225. $info_list[$key]['js'] = 'IP';
  1226. }
  1227. else if($value['js'] == '4')
  1228. {
  1229. $info_list[$key]['js'] = 'FICP';
  1230. }
  1231. }
  1232. if(isset($value['ttcateone'])){
  1233. $info_list[$key]['ttcateone'] = isset($tt_cate_one[$value['ttcateone']])?$tt_cate_one[$value['ttcateone']]:'';
  1234. }
  1235. if(isset($value['ttcatetwo'])){
  1236. $str = "";
  1237. if(isset($tt_cate_two[$value['ttcateone']])){
  1238. if(isset($tt_cate_two[$value['ttcateone']][$value['ttcatetwo']])){
  1239. $str = $tt_cate_two[$value['ttcateone']][$value['ttcatetwo']];
  1240. }
  1241. }
  1242. $info_list[$key]['ttcatetwo'] = $str;
  1243. }
  1244. if(isset($value['type']))
  1245. {
  1246. $type = $this->warehouse->read($value['type']);
  1247. $info_list[$key]['type'] = $type['title'];
  1248. }
  1249. if(isset($value['xdcs']))
  1250. {
  1251. if($sj == 'fullorder')
  1252. {
  1253. $xdcs = $this->customer->get_email($data['email'],$data['shop']);
  1254. }
  1255. else
  1256. {
  1257. $xdcs = $this->customersmt->get_shopdata($data['shop'],$data['name'],$data['address']);
  1258. }
  1259. $info_list[$key]['xdcs'] = (isset($xdcs['num']))?(($xdcs['num']==0)?1:$xdcs['num']):1;
  1260. }
  1261. if(isset($value['dbapi']) || isset($value['scapi']))
  1262. {
  1263. $jmlist = '';$shuliang = '';
  1264. $classid = $this->classid->sku();
  1265. $dbapi = explode(';',trim($value['fpdata'],';'));
  1266. foreach ($dbapi as $va)
  1267. {
  1268. $pm = $classid;
  1269. $jm = $classid;
  1270. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  1271. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  1272. $ts = explode('|',trim($features,'|'));
  1273. if(stripos($ts[0],',') !== false)
  1274. {
  1275. $ft = explode(',',$ts[0]);
  1276. $features = explode('-',trim($ft[1],'-'));
  1277. $features[] = $ft[0];
  1278. }
  1279. else
  1280. {
  1281. $features = explode('-',trim($ts[0],'-'));
  1282. }
  1283. foreach($features as $k=>$v)
  1284. {
  1285. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  1286. {
  1287. if($typeclass[$v]['bm'] != '')
  1288. {
  1289. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  1290. }
  1291. }
  1292. if($v != 0 && isset($typeclass[$v]))
  1293. {
  1294. if($typeclass[$v]['classid'] == 13)
  1295. {
  1296. $dj = $typeclass[$v]['title'];
  1297. }
  1298. if($typeclass[$v]['classid'] == 8)
  1299. {
  1300. $ys = $typeclass[$v]['title'];
  1301. }
  1302. if($typeclass[$v]['classid'] == 15)
  1303. {
  1304. $hx = $typeclass[$v]['title'];
  1305. }
  1306. if(isset($pm[$typeclass[$v]['classid']]))
  1307. {
  1308. if($typeclass[$v]['title'] == '9A')
  1309. {
  1310. $pm[$typeclass[$v]['classid']] = '9A';
  1311. }
  1312. else if($typeclass[$v]['title'] == '10A')
  1313. {
  1314. $pm[$typeclass[$v]['classid']] = '10A';
  1315. }
  1316. else
  1317. {
  1318. $clzh = $typeclass[$v]['zh'];
  1319. if(stripos($typeclass[$v]['zh'],'|') !== false)
  1320. {
  1321. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  1322. $clzh = $clzh[0];
  1323. }
  1324. $pm[$typeclass[$v]['classid']] = $clzh;
  1325. }
  1326. }
  1327. if(isset($jm[$typeclass[$v]['classid']]))
  1328. {
  1329. if($typeclass[$v]['jm'])
  1330. {
  1331. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  1332. }
  1333. }
  1334. }
  1335. }
  1336. $jm = array_filter($jm);//去除空值
  1337. $jm = implode("-",$jm);
  1338. $jmlist .= $jm.'<br>';
  1339. $shuliang .= (isset($ts[2])?$ts[2]:'未知').'<br>';
  1340. $pm = array_filter($pm);//去除空值
  1341. $zh = implode(" ",$pm);
  1342. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  1343. }
  1344. if(isset($value['dbapi']))
  1345. {
  1346. $info_list[$key]['dbapi'] = $jmlist;
  1347. }
  1348. else
  1349. {
  1350. $info_list[$key]['scapi'] = $shuliang;
  1351. }
  1352. }
  1353. if(isset($value['dbapi']) && isset($value['scapi']))
  1354. {
  1355. $jmlist = '';$shuliang = '';
  1356. $classid = $this->classid->sku();
  1357. $dbapi = explode(';',trim($value['fpdata'],';'));
  1358. foreach ($dbapi as $va)
  1359. {
  1360. $pm = $classid;
  1361. $jm = $classid;
  1362. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  1363. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  1364. $ts = explode('|',trim($features,'|'));
  1365. if(stripos($ts[0],',') !== false)
  1366. {
  1367. $ft = explode(',',$ts[0]);
  1368. $features = explode('-',trim($ft[1],'-'));
  1369. $features[] = $ft[0];
  1370. }
  1371. else
  1372. {
  1373. $features = explode('-',trim($ts[0],'-'));
  1374. }
  1375. foreach($features as $k=>$v)
  1376. {
  1377. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  1378. {
  1379. if($typeclass[$v]['bm'] != '')
  1380. {
  1381. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  1382. }
  1383. }
  1384. if($v != 0 && isset($typeclass[$v]))
  1385. {
  1386. if($typeclass[$v]['classid'] == 13)
  1387. {
  1388. $dj = $typeclass[$v]['title'];
  1389. }
  1390. if($typeclass[$v]['classid'] == 8)
  1391. {
  1392. $ys = $typeclass[$v]['title'];
  1393. }
  1394. if($typeclass[$v]['classid'] == 15)
  1395. {
  1396. $hx = $typeclass[$v]['title'];
  1397. }
  1398. if(isset($pm[$typeclass[$v]['classid']]))
  1399. {
  1400. if($typeclass[$v]['title'] == '9A')
  1401. {
  1402. $pm[$typeclass[$v]['classid']] = '9A';
  1403. }
  1404. else if($typeclass[$v]['title'] == '10A')
  1405. {
  1406. $pm[$typeclass[$v]['classid']] = '10A';
  1407. }
  1408. else
  1409. {
  1410. $clzh = $typeclass[$v]['zh'];
  1411. if(stripos($typeclass[$v]['zh'],'|') !== false)
  1412. {
  1413. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  1414. $clzh = $clzh[0];
  1415. }
  1416. $pm[$typeclass[$v]['classid']] = $clzh;
  1417. }
  1418. }
  1419. if(isset($jm[$typeclass[$v]['classid']]))
  1420. {
  1421. if($typeclass[$v]['jm'])
  1422. {
  1423. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  1424. }
  1425. }
  1426. }
  1427. }
  1428. $jm = array_filter($jm);//去除空值
  1429. $jm = implode("-",$jm);
  1430. $jmlist .= $jm.'<br>';
  1431. $shuliang .= (isset($ts[2])?$ts[2]:'未知').'<br>';
  1432. $pm = array_filter($pm);//去除空值
  1433. $zh = implode(" ",$pm);
  1434. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  1435. }
  1436. $info_list[$key]['dbapi'] = $jmlist;
  1437. $info_list[$key]['scapi'] = $shuliang;
  1438. }
  1439. if(isset($value['cpfpdata']))
  1440. {
  1441. $fpread = '';
  1442. $cpfpdata = explode(';',trim($value['fpdata'],';'));
  1443. foreach ($cpfpdata as $v)
  1444. {
  1445. $va = explode('|',trim($v,'|'));
  1446. if(isset($va[1])){
  1447. $fpread .= $va[1].'; ';
  1448. }else{
  1449. $fpread .="合并单没有产品异常标记";
  1450. }
  1451. }
  1452. $info_list[$key]['cpfpdata'] = $fpread;
  1453. }
  1454. if(count($goods_sku_list) > 0){
  1455. $ret_goods_sku = $this->_getGoodsInfo($value,$goods_sku_list,$typeclass);
  1456. if(in_array("gradefpdata",$goods_sku_list)){
  1457. $info_list[$key]['gradefpdata'] = trim($ret_goods_sku['gradefpdata'],"<br>");
  1458. }
  1459. if(in_array("colorfpdata",$goods_sku_list)){
  1460. $info_list[$key]['colorfpdata'] = trim($ret_goods_sku['colorfpdata'],"<br>");
  1461. }
  1462. if(in_array("densityfpdata",$goods_sku_list)){
  1463. $info_list[$key]['densityfpdata'] = trim($ret_goods_sku['densityfpdata'],"<br>");
  1464. }
  1465. if(in_array("hairnumberfpdata",$goods_sku_list)){
  1466. $info_list[$key]['hairnumberfpdata'] = trim($ret_goods_sku['hairnumberfpdata'],"<br>");
  1467. }
  1468. if(in_array("lacetypefpdata",$goods_sku_list)){
  1469. $info_list[$key]['lacetypefpdata'] = trim($ret_goods_sku['lacetypefpdata'],"<br>");
  1470. }
  1471. //lowefpdata
  1472. if(in_array("lowefpdata",$goods_sku_list)){
  1473. $info_list[$key]['lowefpdata'] = trim($ret_goods_sku['lowefpdata'],"<br>");
  1474. }
  1475. }
  1476. unset($info_list[$key]['id']);
  1477. unset($info_list[$key]['fpdata']);
  1478. }
  1479. $fzh = "";
  1480. foreach ($fexcelzh as $v)
  1481. {
  1482. $fzh .= "<td>".$v."</td>";
  1483. }
  1484. $data = array($shouldmoney.' CNY');
  1485. $title = $fexcel['title'].'-'.date('Ymd',time());
  1486. $titlename = "<table border=1>
  1487. <tr>"
  1488. .$fzh.
  1489. "</tr>
  1490. </table>";
  1491. $tail = "\n";
  1492. $filename = $title.".xls";
  1493. $this->excelxh->get_fz5($info_list,$titlename,$filename,$tail,$kong);
  1494. }
  1495. }
  1496. //根据fpdata获取商品sku属性
  1497. private function _getGoodsInfo($value,$goods_sku_list,$typeclass){
  1498. $tmp_goods = explode(';',trim($value['fpdata'],';'));
  1499. $sku_gradefpdata_str = $sku_colorfpdata_str = $sku_densityfpdata_str = $sku_hairnumberfpdata_str = $sku_lacetypefpdata_str = $sku_lowefpdata_str = "";
  1500. foreach($tmp_goods as $tmp_goods_item){
  1501. $dq_goods_item = explode('|',trim($tmp_goods_item,'|'));
  1502. //'gradefpdata','colorfpdata','densityfpdata','hairnumberfpdata','lacetypefpdata'
  1503. $ddq_goods_item = explode('-',trim($dq_goods_item[0],'-'));
  1504. $now_good_sku_info = [];
  1505. foreach($ddq_goods_item as $ll){
  1506. if(!empty($typeclass[$ll])){
  1507. $now_good_sku_info[$typeclass[$ll]['classid']] = empty($typeclass[$ll]['jm'])? " --" : $typeclass[$ll]['jm'];
  1508. }
  1509. }
  1510. if(isset($now_good_sku_info[13])){
  1511. $sku_gradefpdata_str .= $now_good_sku_info[13]."<br/>";
  1512. }else{
  1513. $sku_gradefpdata_str .= " -- <br/>";
  1514. }
  1515. if(isset($now_good_sku_info[8])){
  1516. $sku_colorfpdata_str .= $now_good_sku_info[8]."<br/>";
  1517. }else{
  1518. $sku_colorfpdata_str .= " -- <br/>";
  1519. }
  1520. if(isset($now_good_sku_info[10])){
  1521. $sku_densityfpdata_str .= $now_good_sku_info[10]."<br/>";
  1522. }else{
  1523. $sku_densityfpdata_str .= " -- <br/>";
  1524. }
  1525. if(isset($now_good_sku_info[43])){
  1526. $sku_hairnumberfpdata_str .= $now_good_sku_info[43]."<br/>";
  1527. }else{
  1528. $sku_hairnumberfpdata_str .= " -- <br/>";
  1529. }
  1530. if(isset($now_good_sku_info[18])){
  1531. $sku_lacetypefpdata_str .= $now_good_sku_info[18]."<br/>";
  1532. }else{
  1533. $sku_lacetypefpdata_str .= " -- <br/>";
  1534. }
  1535. if(isset($now_good_sku_info[15])){
  1536. $sku_lowefpdata_str .= $now_good_sku_info[15]."<br/>";
  1537. }else{
  1538. $sku_lowefpdata_str .= " -- <br/>";
  1539. }
  1540. // if($typeclass[$ll]['classid'] == 13){
  1541. // //等级
  1542. // $sku_gradefpdata_str .= empty($typeclass[$ll]['title'])? " --<br/>" : $typeclass[$ll]['title']."<br/>";
  1543. // }elseif($typeclass[$ll]['classid'] == 8){
  1544. // //颜色
  1545. // $sku_colorfpdata_str .= empty($typeclass[$ll]['title'])? " --<br/>" : $typeclass[$ll]['title']."<br/>";
  1546. // }elseif($typeclass[$ll]['classid'] == 10){
  1547. // //密度
  1548. // $sku_densityfpdata_str .= empty($typeclass[$ll]['title'])? " --<br/>" : $typeclass[$ll]['title']."<br/>";
  1549. // }elseif($typeclass[$ll]['classid'] == 43){
  1550. // //人发头套编码
  1551. // $sku_hairnumberfpdata_str .= empty($typeclass[$ll]['title'])? " --<br/>" : $typeclass[$ll]['title']."<br/>";
  1552. // }elseif($typeclass[$ll]['classid'] == 18){
  1553. // //头套种类
  1554. // $sku_lacetypefpdata_str .= empty($typeclass[$ll]['title'])? " --<br/>" : $typeclass[$ll]['title']."<br/>";
  1555. // }
  1556. }
  1557. return [
  1558. 'gradefpdata' => trim($sku_gradefpdata_str,"<br/>"),
  1559. 'colorfpdata' => trim($sku_colorfpdata_str,"<br/>"),
  1560. 'densityfpdata' => trim($sku_densityfpdata_str,"<br/>"),
  1561. 'hairnumberfpdata' => trim($sku_hairnumberfpdata_str,"<br/>"),
  1562. 'lacetypefpdata' => trim($sku_lacetypefpdata_str,"<br/>"),
  1563. 'lowefpdata'=>trim($sku_lowefpdata_str,"<br/>"),
  1564. ];
  1565. }
  1566. //导出订单excel
  1567. public function _excelhz()
  1568. {
  1569. $fgshop = "";$sid = "";$excelshop="";
  1570. if(isset($_SESSION['api']))
  1571. {
  1572. $user = $this->user->get_api($_SESSION['api']);
  1573. $usp = $user;
  1574. $usersp = explode('|',trim($user['shop'],'|'));
  1575. foreach ($usersp as $value)
  1576. {
  1577. $fgshop .= " shop = ".$value." or";
  1578. $sid .= " id = ".$value." or";
  1579. }
  1580. $userexcel = explode('|',trim($user['excelshop'],'|'));
  1581. if($user['excelshop'] == '')
  1582. {
  1583. echo "没有下载权限";exit;
  1584. }
  1585. foreach ($userexcel as $value)
  1586. {
  1587. $excelshop .= " shop = ".$value." or";
  1588. }
  1589. if($excelshop != "")
  1590. {
  1591. $excelshop = "(".rtrim($excelshop,'or').")";
  1592. }
  1593. }
  1594. if(isset($_GET['fexcel']))
  1595. {
  1596. $typeclass = array();
  1597. $tclass = $this->typeclass->find_all();
  1598. foreach ($tclass as $v)
  1599. {
  1600. $typeclass[$v['id']] = $v;
  1601. }
  1602. $dowid = $this->input->get('a');
  1603. $wid = "";
  1604. if($dowid != "")
  1605. {
  1606. $id_arr = explode(',',rtrim($dowid,','));
  1607. $wid .= " id = 0 or";
  1608. foreach ($id_arr as $v)
  1609. {
  1610. $wid .= " id = '$v' or";
  1611. }
  1612. $wid = " and (".rtrim($wid,'or').") ";
  1613. }
  1614. $fexcel = $this->input->get('fexcel',true);
  1615. $page = $this->input->get('page',true);
  1616. $perpage = $this->input->get('perpage',true);
  1617. $warehouse = $this->input->get('warehouse',true);
  1618. $timetk = $this->input->get('timetk',true);
  1619. $timetj = $this->input->get('timetj',true);
  1620. $shop = $this->input->get('shop',true);
  1621. $source = $this->input->get('source',true);
  1622. $state = $this->input->get('state',true);
  1623. $review = $this->input->get('review',true);
  1624. $type = $this->input->get('type',true);
  1625. $express = $this->input->get('express',true);
  1626. $orderinfo = $this->input->get('orderinfo',true);
  1627. $user = $this->input->get('user',true);
  1628. $client = $this->input->get('name',true);
  1629. $waybill = $this->input->get('waybill',true);
  1630. $number = $this->input->get('number',true);
  1631. $email = $this->input->get('email',true);
  1632. $dlz = $this->input->get('dlz',true);
  1633. $library = $this->input->get('library',true);
  1634. $libraryconfirm = $this->input->get('libraryconfirm',true);
  1635. $print = $this->input->get('print',true);
  1636. $timetkk = $this->input->get('timetkk',true);
  1637. $timetjj = $this->input->get('timetjj',true);
  1638. $xztime = $this->input->get('xztime',true);
  1639. $country = $this->input->get('country',true);
  1640. $zf = $this->input->get('zf',true);
  1641. $pay = $this->input->get('pay',true);
  1642. $phone = $this->input->get('phone',true);
  1643. $so = $this->input->get('so',true);
  1644. $sfxh = $this->input->get('sfxh',true);
  1645. $xdcs = $this->input->get('xdcs',true);
  1646. $xdcs = $this->input->get('xdcs',true);
  1647. $dbapi = $this->input->get('dbapi',true);
  1648. $dbapinocc = $this->input->get('dbapinocc',true);
  1649. $orderurl = $this->input->get('orderurl',true);
  1650. $timetk = strtotime($timetk);
  1651. $timetj = strtotime($timetj);
  1652. $timetkk = strtotime($timetkk);
  1653. $timetjj = strtotime($timetjj);
  1654. $px = $this->input->get('px',true);
  1655. $fexcel = $this->fullorderexcel->read($fexcel);
  1656. $classid = $this->fullorderexcelclassid->read($fexcel['type']);
  1657. $where = "1 = 1 and (".rtrim($fgshop,'or').")";
  1658. if($warehouse)
  1659. {
  1660. $where .= " and type = '$warehouse'";
  1661. }
  1662. if($xztime)
  1663. {
  1664. if($timetk && $timetj)
  1665. {
  1666. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  1667. }
  1668. if($timetkk && $timetjj)
  1669. {
  1670. $where .= " and ".$xztime." > '$timetkk' and ".$xztime." < '$timetjj'";
  1671. }
  1672. }
  1673. else
  1674. {
  1675. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  1676. }
  1677. if($library)
  1678. {
  1679. $where .= " and library = '$library'";
  1680. }
  1681. if($print)
  1682. {
  1683. $where .= " and print = '$print'";
  1684. }
  1685. if($shop)
  1686. {
  1687. $where .= " and shop = '$shop'";
  1688. }
  1689. if($source)
  1690. {
  1691. if($source == '2d')
  1692. {
  1693. $where .= " and source >= '2'";
  1694. }
  1695. else
  1696. {
  1697. $where .= " and source = '$source'";
  1698. }
  1699. }
  1700. if($state)
  1701. {
  1702. $where .= " and state = '$state'";
  1703. }
  1704. if($review)
  1705. {
  1706. $where .= " and review = '$review'";
  1707. }
  1708. if($type)
  1709. {
  1710. $where .= " and type = '$type'";
  1711. }
  1712. if($express)
  1713. {
  1714. $where .= " and express = '$express'";
  1715. }
  1716. if($orderinfo)
  1717. {
  1718. $where .= " and orderinfo = '$orderinfo'";
  1719. }
  1720. if($user)
  1721. {
  1722. $where .= " and user = '$user'";
  1723. }
  1724. if($client)
  1725. {
  1726. $where .= " and client like '%$client%'";
  1727. }
  1728. if($waybill)
  1729. {
  1730. $where .= " and waybill = '$waybill'";
  1731. }
  1732. if($number)
  1733. {
  1734. $where .= " and number = '$number'";
  1735. }
  1736. if($email)
  1737. {
  1738. $where .= " and email = '$email'";
  1739. }
  1740. if($country)
  1741. {
  1742. $where .= " and country = '$country'";
  1743. }
  1744. if($dlz)
  1745. {
  1746. $where .= " and waybill != '' and dlz = 0";
  1747. }
  1748. if($libraryconfirm)
  1749. {
  1750. $where .= " and libraryconfirm = '$libraryconfirm'";
  1751. }
  1752. if($so)
  1753. {
  1754. $where .= " and shipremarks like '%$so%'";
  1755. }
  1756. if($pay)
  1757. {
  1758. $where .= " and pay = '$pay'";
  1759. }
  1760. if($phone)
  1761. {
  1762. $where .= " and phone = '$phone'";
  1763. }
  1764. if($sfxh != '')
  1765. {
  1766. $where .= " and sfxh = '$sfxh'";
  1767. }
  1768. if($orderurl)
  1769. {
  1770. $url = $this->orderurl->read($orderurl);
  1771. $where .= " and link like '%".$url['url']."%'";
  1772. }
  1773. if($zf)
  1774. {
  1775. if($zf == 1)
  1776. {
  1777. $where .= " and paypal not like '%-%-%-%'";
  1778. }
  1779. else
  1780. {
  1781. $where .= " and paypal like '%-%-%-%'";
  1782. }
  1783. }
  1784. $sj = $this->input->get('sj',true);
  1785. if($sj)
  1786. {
  1787. $sj = $this->input->get('sj',true);
  1788. }
  1789. else
  1790. {
  1791. $sj = $classid['type'];
  1792. }
  1793. $fexceleq = explode("|",rtrim($fexcel['content'],'|'));
  1794. foreach ($fexceleq as $k=>$v)
  1795. {
  1796. $fexceleq[$k] = explode('-',$v);
  1797. $num[$k] = $fexceleq[$k][0];
  1798. }
  1799. //array_multisort($num,SORT_ASC,$fexceleq);//重新排序
  1800. $feq = "";$kong = array();$sku9610 = '';
  1801. foreach ($fexceleq as $k=>$v)
  1802. {
  1803. if(isset($v[1]))
  1804. {
  1805. if($v[1] == 'klarnabill' || $v[1] == 'klarnaship' || $v[1] == 'PPname' || $v[1] == 'PPaddress' || $v[1] == 'PPemail' || $v[1] == 'afterpayship' || $v[1] == 'afterpaybill')
  1806. {
  1807. $feq .= 'klarnadata,';
  1808. }
  1809. if($v[1] == 'ccfpdata' || $v[1] == 'cpfpdata' || $v[1] == 'dbapi' || $v[1] == 'scapi')
  1810. {
  1811. $feq .= 'fpdata,';
  1812. }
  1813. if(in_array($v[1],['gradefpdata','colorfpdata','densityfpdata','hairnumberfpdata','lacetypefpdata','lowefpdata'])){
  1814. $goods_sku_list[] = $v[1];
  1815. continue;
  1816. }
  1817. if($v[1] != 'kong')//空值去除
  1818. {
  1819. if($v[1] == '9610sku' || $v[1] == 'issku' || $v[1] == 'sku')
  1820. {
  1821. if($v[1] == '9610sku')
  1822. {
  1823. $sku9610 = 1;
  1824. }
  1825. if($sj == 'fullordersmt')
  1826. {
  1827. $v[1] = 'sku';
  1828. }
  1829. else
  1830. {
  1831. $v[1] = 'issku';
  1832. }
  1833. }
  1834. $feq .= $v[1].',';
  1835. }
  1836. else
  1837. {
  1838. $kong[$v[0]] = 1;
  1839. }
  1840. }
  1841. }
  1842. //处理额外加上的subtotal和rowtoal 但是不想在表中加太多字段 想着以后有关金额的都给怼到extra_price字段中
  1843. if((strpos($feq,'subtotal')!= false)||(strpos($feq,'rowtotal')!= false) ||(strpos($feq,'product_id')!= false)){
  1844. if(strpos($feq,'subtotal')!= false){
  1845. $feq = str_replace('subtotal,',"extra_price as subtotal,",$feq);
  1846. }
  1847. if(strpos($feq,'rowtotal')!= false){
  1848. $feq = str_replace('rowtotal,',"extra_price as rowtotal,",$feq);
  1849. }
  1850. if(strpos($feq,'product_id')!= false){
  1851. $feq = str_replace('product_id,',"extra_price as product_id,",$feq);
  1852. }
  1853. }
  1854. //添加订单前缀
  1855. $shopqz_list = [];
  1856. if(strpos($feq,'shopqz') !== false){
  1857. $feq = str_replace('shopqz,',"shop as shopqz,",$feq);
  1858. $shop_list = $this->shop->find_all("1 = 1","id,shortname");
  1859. $shopqz_list = array_column($shop_list,'shortname','id');
  1860. }
  1861. //$dbapi_nocc
  1862. if(strpos($feq,'dbapinocc')!= false){
  1863. $feq = str_replace('dbapinocc,',"fpdata as dbapinocc,",$feq);
  1864. }
  1865. $typeclass_lpdl = [];
  1866. //料品大类
  1867. if(strpos($feq,'lpdl')!= false){
  1868. $feq = str_replace('lpdl,',"fpdata as lpdl,",$feq);
  1869. $tmp_typeclass_lpdl = $this->db->from('typeclass')->select("id,title,zh,classid")->where('classid',16)->get()->result_array();
  1870. $typeclass_lpdl = array_column($tmp_typeclass_lpdl,'zh','id');
  1871. }
  1872. $typeclass_lhdycc = [];
  1873. //料号对应尺寸
  1874. if(strpos($feq,'lhdycc')!= false){
  1875. $feq = str_replace('lhdycc,',"fpdata as lhdycc,",$feq);
  1876. $tmp_typeclass_lhdycc = $this->db->from('typeclass')->select("id,title,zh,classid")->where('classid',14)->get()->result_array();
  1877. $typeclass_lhdycc = array_column($tmp_typeclass_lhdycc,'zh','id');
  1878. }
  1879. $feq = rtrim($feq,',');
  1880. $fexcelzhw = explode('|',rtrim($fexcel['contentzh'],'|'));
  1881. foreach ($fexcelzhw as $k=>$v)
  1882. {
  1883. $fexcelzhw[$k] = explode('-',$v);
  1884. $numb[$k] = $fexcelzhw[$k][0];
  1885. }
  1886. //array_multisort($numb,SORT_ASC,$fexcelzhw);//重新排序
  1887. $fexcelzh = array();
  1888. foreach ($fexcelzhw as $k=>$v)
  1889. {
  1890. $fexcelzh[] = $v[1];
  1891. }
  1892. if($px)
  1893. {
  1894. $order_str = $px." desc";
  1895. }
  1896. else
  1897. {
  1898. $order_str = "id desc";
  1899. }
  1900. // if($_GET['fexcel'] == '157'){
  1901. // $this->logic_ding->sendToDing("excel导出的【".$where.$wid.' and '.$excelshop);
  1902. // $this->logic_ding->sendToDing("excel导出的【".'id,'.$feq);
  1903. // $this->logic_ding->sendToDing("excel导出的【".$order_str);
  1904. // $this->logic_ding->sendToDing("excel导出的SJ【".$sj);
  1905. // }
  1906. $extra = [
  1907. 'usp'=>$usp,
  1908. 'sku9610'=>$sku9610,
  1909. 'typeclass_lpdl'=>$typeclass_lpdl,
  1910. 'typeclass_lhdycc'=>$typeclass_lhdycc
  1911. ];
  1912. $dlz_ret = $this->_datahz($where.$wid.' and '.$excelshop,'id,'.$feq,$order_str,'fullorder',$extra);
  1913. $tt_ret = $this->_datahz($where.$wid.' and '.$excelshop,'id,'.$feq,$order_str,'fullordertt',$extra);
  1914. $smt_ret = $this->_datahz($where.$wid.' and '.$excelshop,'id,'.$feq,$order_str,'fullordersmt',$extra);
  1915. $amz_ret = $this->_datahz($where.$wid.' and '.$excelshop,'id,'.$feq,$order_str,'fullorderamz',$extra);
  1916. $info_list = array_merge( $dlz_ret['info_list'],$tt_ret['info_list'],$smt_ret['info_list'],$amz_ret['info_list']);
  1917. $shouldmoney = $dlz_ret['shouldmoney']+$tt_ret['shouldmoney']+$smt_ret['shouldmoney']+$amz_ret['shouldmoney'];
  1918. $fzh = "";
  1919. foreach ($fexcelzh as $v)
  1920. {
  1921. $fzh .= "<td>".$v."</td>";
  1922. }
  1923. $data = array($shouldmoney.' CNY');
  1924. $title = $fexcel['title'].'-'.date('Ymd',time());
  1925. $titlename = "<table border=1>
  1926. <tr>"
  1927. .$fzh.
  1928. "</tr>
  1929. </table>";
  1930. $tail = "\n";
  1931. $filename = $title.".xls";
  1932. $this->excel->get_fz5($info_list,$titlename,$filename,$tail,$kong);
  1933. }
  1934. }
  1935. public function _datahz($where,$field,$order_str,$sj,$extra){
  1936. //取得信息列表
  1937. $info_list = $this->$sj->find_all($where,$field,$order_str);
  1938. //格式化数据
  1939. $i = 1;$shouldmoney = 0;$hl=1;
  1940. $usp = $extra['usp'];
  1941. $sku9610 = $extra['sku9610'];
  1942. $typeclass_lpdl = $extra['typeclass_lpdl'];
  1943. $typeclass_lhdycc = $extra['typeclass_lhdycc'];
  1944. foreach ($info_list as $key=>$value)
  1945. {
  1946. $data = $this->$sj->read($value['id']);
  1947. $data = str_replace(array("'"),array("’"),$data);
  1948. if(isset($value['email']) && $usp['excelpass'] == '1')
  1949. {
  1950. $emailpass = $this->setting->get_excelpass($value['email']);
  1951. $info_list[$key]['email'] = $emailpass;
  1952. }
  1953. if(isset($value['phone']) && $usp['excelpass'] == '1')
  1954. {
  1955. $phonepass = $this->setting->get_excelpass($value['phone']);
  1956. $info_list[$key]['phone'] = $phonepass;
  1957. }
  1958. if(isset($value['currencytitle']))
  1959. {
  1960. if($value['currencytitle'] != "CNY")
  1961. {
  1962. $hl=$value['hl'];
  1963. }
  1964. $shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
  1965. }
  1966. if(isset($value['shop']))
  1967. {
  1968. $shop = $this->shop->read($value['shop']);
  1969. $info_list[$key]['shop'] = $shop['shopname'];
  1970. }
  1971. if(isset($value['dtime']))
  1972. {
  1973. $info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
  1974. }
  1975. if(isset($value['printtime']))
  1976. {
  1977. if($value['printtime'] > 0)
  1978. {
  1979. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  1980. }
  1981. }
  1982. if(isset($value['sku']))
  1983. {
  1984. if($sku9610 == '1')
  1985. {
  1986. $aesku = explode(';',$value['sku']);
  1987. $aesku = $aesku[0];
  1988. $aesku = explode(':',$aesku);
  1989. if(count($aesku) > 1)
  1990. {
  1991. $aesku = $aesku[1];
  1992. $aesku = str_replace('--','~',$aesku);
  1993. $aesku = explode('-',$aesku);
  1994. $aesku = $aesku[0];
  1995. $aesku = str_replace('~','--',$aesku);
  1996. $info_list[$key]['sku'] = $aesku;
  1997. }
  1998. else
  1999. {
  2000. $info_list[$key]['sku'] = '';
  2001. }
  2002. }
  2003. else
  2004. {
  2005. $info_list[$key]['sku'] = $value['sku'];
  2006. }
  2007. }
  2008. if(isset($value['issku']))
  2009. {
  2010. $value['issku'] = str_replace(array('&lt;','&gt;'),array('<','>'),$value['issku']);
  2011. if($sku9610 == '1')
  2012. {
  2013. $aesku = explode(';',$value['issku']);
  2014. $aesku = $aesku[0];
  2015. $aesku = str_replace('--','~',$aesku);
  2016. $aesku = explode('-',$aesku);
  2017. $aesku = $aesku[0];
  2018. $aesku = str_replace('~','--',$aesku);
  2019. $aesku = str_replace(array('<','>'),array('&lt;','&gt;'),$aesku);
  2020. $info_list[$key]['issku'] = $aesku;
  2021. }
  2022. else
  2023. {
  2024. $value['issku'] = str_replace(array('<','>'),array('&lt;','&gt;'),$value['issku']);
  2025. $info_list[$key]['issku'] = $value['issku'];
  2026. }
  2027. }
  2028. if(isset($value['subtotal'])){
  2029. $tmp_sub_str = "";
  2030. $subtotal_list = json_decode($value['subtotal'],true);
  2031. foreach($subtotal_list as $v){
  2032. if(isset($v['sub_total'])){
  2033. $tmp_sub_str .= sprintf( "%.2f",$v['sub_total'])."<br>";
  2034. }else{
  2035. $tmp_sub_str .= "0<br>";
  2036. }
  2037. }
  2038. $info_list[$key]['subtotal'] = $tmp_sub_str;
  2039. }
  2040. if(isset($value['rowtotal'])){
  2041. $tmp_sub_str = "";
  2042. $subtotal_list = json_decode($value['rowtotal'],true);
  2043. foreach($subtotal_list as $v){
  2044. if(isset($v['row_total'])){
  2045. $tmp_sub_str .= sprintf( "%.2f",$v['row_total'])."<br>";
  2046. }else{
  2047. $tmp_sub_str .= "0<br>";
  2048. }
  2049. }
  2050. $info_list[$key]['rowtotal'] = $tmp_sub_str;
  2051. }
  2052. if(isset($value['dbapinocc'])){
  2053. $jmlist_nocc = '';
  2054. $classid = $this->classid->sku();
  2055. $dbapi = explode(';',trim($value['dbapinocc'],';'));
  2056. foreach ($dbapi as $va)
  2057. {
  2058. $jm_nocc = $classid;
  2059. unset($jm_nocc[14]);
  2060. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  2061. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  2062. $ts = explode('|',trim($features,'|'));
  2063. if(stripos($ts[0],',') !== false)
  2064. {
  2065. $ft = explode(',',$ts[0]);
  2066. $features = explode('-',trim($ft[1],'-'));
  2067. $features[] = $ft[0];
  2068. }
  2069. else
  2070. {
  2071. $features = explode('-',trim($ts[0],'-'));
  2072. }
  2073. foreach($features as $k=>$v)
  2074. {
  2075. if($v != 0 && isset($typeclass[$v]))
  2076. {
  2077. if(isset($jm_nocc[$typeclass[$v]['classid']]))
  2078. {
  2079. if($typeclass[$v]['jm'])
  2080. {
  2081. $jm_nocc[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  2082. }
  2083. }
  2084. }
  2085. }
  2086. $jm_nocc = array_filter($jm_nocc);//去除空值
  2087. $jm_nocc = implode("-",$jm_nocc);
  2088. $jmlist_nocc .= $jm_nocc.'<br>';
  2089. }
  2090. $info_list[$key]['dbapinocc'] = $jmlist_nocc ;
  2091. }
  2092. if(isset($value['lpdl'])){
  2093. $tmp_lpdl_str ="";
  2094. $tmp_fpdata_arr = explode(';',trim($value['fpdata'],';'));
  2095. $tmp_fpdata_arr = array_filter($tmp_fpdata_arr);
  2096. foreach($tmp_fpdata_arr as $v){
  2097. if(empty($v)){
  2098. continue;
  2099. }
  2100. $tmp_arr = explode('-',$v);
  2101. if(isset($typeclass_lpdl[$tmp_arr[1]])){
  2102. $tmp_lpdl_str .= $typeclass_lpdl[$tmp_arr[1]]."<br>";
  2103. }else{
  2104. $tmp_lpdl_str .= " ";
  2105. }
  2106. }
  2107. $info_list[$key]['lpdl'] = trim($tmp_lpdl_str,"<br>") ;
  2108. }
  2109. if(isset($value['lhdycc'])){
  2110. $tmp_lhdycc_str ="";
  2111. $tmp_fpdata_arr = explode(';',trim($value['fpdata'],';'));
  2112. $tmp_fpdata_arr = array_filter($tmp_fpdata_arr);
  2113. foreach($tmp_fpdata_arr as $v){
  2114. if(empty($v)){
  2115. continue;
  2116. }
  2117. if(stripos($v,',') !== false){
  2118. $tmp_arr = explode(',',$v);
  2119. if(isset($typeclass_lhdycc[$tmp_arr[0]])){
  2120. $tmp_lhdycc_str .= $typeclass_lhdycc[$tmp_arr[0]]."<br>";
  2121. }else{
  2122. $tmp_lhdycc_str .= "异常 <br>";
  2123. }
  2124. }else{
  2125. $tmp_lhdycc_str .= "无 <br>";
  2126. }
  2127. }
  2128. $info_list[$key]['lhdycc'] = trim($tmp_lhdycc_str,"<br>") ;
  2129. }
  2130. if(isset($value['shopqz'])){
  2131. $info_list[$key]['shopqz'] = isset($shopqz_list[$value['shopqz']])?$shopqz_list[$value['shopqz']]:'';
  2132. }
  2133. if(isset($value['product_id'])){
  2134. $tmp_product_id = "";
  2135. $product_ids = json_decode($value['product_id'],true);
  2136. foreach($product_ids as $v){
  2137. if(isset($v['product_id'])){
  2138. $tmp_product_id .= $v['product_id']."<br>";
  2139. }else{
  2140. $tmp_product_id .= "<br>";
  2141. }
  2142. }
  2143. $info_list[$key]['product_id'] = $tmp_product_id;
  2144. }
  2145. if(isset($value['librarytime']))
  2146. {
  2147. if($value['librarytime'] > 0)
  2148. {
  2149. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  2150. }
  2151. }
  2152. if(isset($value['buytime']))
  2153. {
  2154. if($value['buytime'] > 0)
  2155. {
  2156. $info_list[$key]['buytime'] = date('Y-m-d H:i:s',$value['buytime']);
  2157. }
  2158. }
  2159. if(isset($value['country']))
  2160. {
  2161. $country = $this->country->read($value['country']);
  2162. $info_list[$key]['country'] = $country['name'];
  2163. }
  2164. if(isset($value['street']))//暂时用街道导出州二字码
  2165. {
  2166. if($data['country'] == 192)//如果是美国
  2167. {
  2168. $ToState = array('alabama'=>'AL','alaska'=>'AK','arizona'=>'AZ','arkansas'=>'AR','california'=>'CA','colorado'=>'CO','connecticut'=>'CT','delaware'=>'DE','florida'=>'FL','georgia'=>'GA','hawaii'=>'HI','idaho'=>'ID','illinois'=>'IL','indiana'=>'IN','iowa'=>'IA','kansas'=>'KS','kentucky'=>'KY','louisiana'=>'LA','maine'=>'ME','maryland'=>'MD','massachusetts'=>'MA','michigan'=>'MI','minnesota'=>'MN','mississippi'=>'MS','missouri'=>'MO','montana'=>'MT','nebraska'=>'NE','nevada'=>'NV','new hampshire'=>'NH','new jersey'=>'NJ','new mexico'=>'NM','new york'=>'NY','north carolina'=>'NC','north dakota'=>'ND','ohio'=>'OH','oklahoma'=>'OK','oregon'=>'OR','pennsylvania'=>'PA','rhode island'=>'RI','south carolina'=>'SC','south dakota'=>'SD','tennessee'=>'TN','texas'=>'TX','utah'=>'UT','vermont'=>'VT','virginia'=>'VA','washington'=>'WA','west virginia'=>'WV','wisconsin'=>'WI','wyoming'=>'WY','district of columbia'=>'DC','virgin islands'=>'VI');
  2169. $data['province'] = preg_replace('/( | |\s)/',' ',$data['province']);
  2170. $data['province'] = trim($data['province'],' ');
  2171. if(isset($ToState[strtolower($data['province'])]))
  2172. {
  2173. $dataprovince = strlen($data['province'])==2?$data['province']:$ToState[strtolower($data['province'])];
  2174. }
  2175. else
  2176. {
  2177. $dataprovince = '';
  2178. }
  2179. $info_list[$key]['street'] = $dataprovince;
  2180. }
  2181. else
  2182. {
  2183. $info_list[$key]['street'] = '';
  2184. }
  2185. }
  2186. if(isset($value['pay']))
  2187. {
  2188. if(empty($value['pay'])){
  2189. $info_list[$key]['pay'] = "";
  2190. }else{
  2191. if($sj =='fullorder'){
  2192. $pay = $this->typeclass->read($value['pay']);
  2193. $info_list[$key]['pay'] = $pay['title'];
  2194. }
  2195. }
  2196. }
  2197. if(isset($value['type']))
  2198. {
  2199. $type = $this->warehouse->read($value['type']);
  2200. $info_list[$key]['type'] = $type['title'];
  2201. }
  2202. if(isset($value['express']))
  2203. {
  2204. $express = $this->express->read($value['express']);
  2205. if($express)
  2206. {
  2207. $info_list[$key]['express'] = $express['servicename'];
  2208. }
  2209. else
  2210. {
  2211. $info_list[$key]['express'] = '未选择';
  2212. }
  2213. }
  2214. if(isset($value['ccfpdata']))
  2215. {
  2216. $ccfpdata = explode(';',$value['fpdata']);
  2217. $inc = 0;
  2218. foreach ($ccfpdata as $v)
  2219. {
  2220. if(stripos($v,',') !== false)
  2221. {
  2222. $cc = explode(',',$v);
  2223. $inctype = $this->typeclass->read($cc[0]);
  2224. if(is_numeric($inctype['spare']))
  2225. {
  2226. if($inctype['spare'] > $inc)
  2227. {
  2228. $inc = $inctype['spare'];
  2229. }
  2230. }
  2231. }
  2232. }
  2233. $info_list[$key]['ccfpdata'] = $inc.'inch';
  2234. }
  2235. if(isset($value['printtype']))
  2236. {
  2237. if($value['printtype'] == 1)
  2238. {
  2239. $info_list[$key]['printtype'] = '运单';
  2240. }
  2241. else if($value['printtype'] == 2)
  2242. {
  2243. $info_list[$key]['printtype'] = '发货单';
  2244. }
  2245. else if($value['printtype'] == 3)
  2246. {
  2247. $info_list[$key]['printtype'] = '不打印单据';
  2248. }
  2249. else
  2250. {
  2251. $info_list[$key]['printtype'] = '未选择';
  2252. }
  2253. }
  2254. if(isset($value['exstate']))
  2255. {
  2256. if($value['exstate'] == '99')
  2257. {
  2258. $info_list[$key]['exstate'] = '未获取到物流信息';
  2259. }
  2260. else if($value['exstate'] == '1')
  2261. {
  2262. $info_list[$key]['exstate'] = '已揽收';
  2263. }
  2264. else if($value['exstate'] == '2')
  2265. {
  2266. $info_list[$key]['exstate'] = '在途中';
  2267. }
  2268. else if($value['exstate'] == '3')
  2269. {
  2270. $info_list[$key]['exstate'] = '派送中';
  2271. }
  2272. else if($value['exstate'] == '4')
  2273. {
  2274. $info_list[$key]['exstate'] = '已签收';
  2275. }
  2276. else if($value['exstate'] == '5')
  2277. {
  2278. $info_list[$key]['exstate'] = '派送异常';
  2279. }
  2280. else
  2281. {
  2282. $info_list[$key]['exstate'] = '';
  2283. }
  2284. }
  2285. if(isset($value['link']))
  2286. {
  2287. if($value['link'] != '')
  2288. {
  2289. $link = explode(',',$value['link']);
  2290. $info_list[$key]['link'] = $link[0];
  2291. }
  2292. else
  2293. {
  2294. $info_list[$key]['link'] = '';
  2295. }
  2296. }
  2297. if(isset($value['klarnabill']))
  2298. {
  2299. $klarnadata = explode('|',$value['klarnadata']);
  2300. if(isset($klarnadata[2]))
  2301. {
  2302. $info_list[$key]['klarnabill'] = $klarnadata[2];
  2303. }
  2304. else
  2305. {
  2306. $info_list[$key]['klarnabill'] = '';
  2307. }
  2308. }
  2309. if(isset($value['klarnaship']))
  2310. {
  2311. $klarnadata = explode('|',$value['klarnadata']);
  2312. if(isset($klarnadata[3]))
  2313. {
  2314. $info_list[$key]['klarnaship'] = $klarnadata[3];
  2315. }
  2316. else
  2317. {
  2318. $info_list[$key]['klarnaship'] = '';
  2319. }
  2320. }
  2321. if(isset($value['afterpaybill']))
  2322. {
  2323. $klarnadata = explode('|',$value['klarnadata']);
  2324. if(isset($klarnadata[1]))
  2325. {
  2326. $info_list[$key]['afterpaybill'] = $klarnadata[1];
  2327. }
  2328. else
  2329. {
  2330. $info_list[$key]['afterpaybill'] = '';
  2331. }
  2332. }
  2333. if(isset($value['afterpayship']))
  2334. {
  2335. $klarnadata = explode('|',$value['klarnadata']);
  2336. if(isset($klarnadata[2]))
  2337. {
  2338. $info_list[$key]['afterpayship'] = $klarnadata[2];
  2339. }
  2340. else
  2341. {
  2342. $info_list[$key]['afterpayship'] = '';
  2343. }
  2344. }
  2345. if(isset($value['PPname']))
  2346. {
  2347. $info_list[$key]['PPname'] = '';
  2348. $klarnadata = explode('|',$value['klarnadata']);
  2349. if(isset($klarnadata[1]))
  2350. {
  2351. $klarnadata = json_decode($klarnadata[1],true);
  2352. if(isset($klarnadata['name']))
  2353. {
  2354. $info_list[$key]['PPname'] = $klarnadata['name'];
  2355. }
  2356. }
  2357. }
  2358. if(isset($value['PPemail']))
  2359. {
  2360. $info_list[$key]['PPemail'] = '';
  2361. $klarnadata = explode('|',$value['klarnadata']);
  2362. if(isset($klarnadata[1]))
  2363. {
  2364. $klarnadata = json_decode($klarnadata[1],true);
  2365. if(isset($klarnadata['email']))
  2366. {
  2367. if($usp['excelpass'] == '1')
  2368. {
  2369. $ppemailpass = $this->setting->get_excelpass($klarnadata['email']);
  2370. }
  2371. else
  2372. {
  2373. $ppemailpass = $klarnadata['email'];
  2374. }
  2375. $info_list[$key]['PPemail'] = $ppemailpass;
  2376. }
  2377. }
  2378. }
  2379. if(isset($value['PPaddress']))
  2380. {
  2381. $info_list[$key]['PPaddress'] = '';
  2382. $klarnadata = explode('|',$value['klarnadata']);
  2383. if(isset($klarnadata[1]))
  2384. {
  2385. $klarnadata = json_decode($klarnadata[1],true);
  2386. if(isset($klarnadata['address']))
  2387. {
  2388. $info_list[$key]['PPaddress'] = $klarnadata['address'];
  2389. }
  2390. }
  2391. }
  2392. if(isset($value['klarnadata']))
  2393. {
  2394. unset($info_list[$key]['klarnadata']);
  2395. }
  2396. if(isset($value['shippingmethod']))
  2397. {
  2398. $tax = explode('Tax:',$value['shippingmethod']);
  2399. $info_list[$key]['shippingmethod'] = (isset($tax[1]))?trim($tax[1],';'):'';
  2400. }
  2401. if(isset($value['systemwigsout']))
  2402. {
  2403. $out = $this->systemtransfer->find_all("number = '".$data['number']."'");
  2404. $outread = '';
  2405. if($out)
  2406. {
  2407. foreach ($out as $val)
  2408. {
  2409. $list = '';
  2410. $rk = explode('|',trim($val['rk'],'|'));
  2411. $rktime = explode('|',trim($val['rktime'],'|'));
  2412. $zw = array();
  2413. $t = $this->transfer->find_all("1=1");
  2414. foreach ($t as $v)
  2415. {
  2416. $zw[$v['id']] = $v['title'];
  2417. }
  2418. if($val['rk'] != '' && count($rk) > 0)
  2419. {
  2420. for($i=0;$i<count($rk);$i++)
  2421. {
  2422. if(!isset($rktime[$i]))
  2423. {
  2424. $list .= $zw[$cz[$i]];
  2425. }
  2426. else
  2427. {
  2428. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  2429. }
  2430. }
  2431. }
  2432. $outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  2433. }
  2434. }
  2435. else
  2436. {
  2437. $systemwigsout = $this->systemwigsout->find_all("number = '".$data['number']."'");
  2438. if($systemwigsout)
  2439. {
  2440. foreach ($systemwigsout as $v)
  2441. {
  2442. $outread = '';
  2443. if($v['czwarehouse'] == 37)
  2444. {
  2445. $outread .= '华荣厂';
  2446. }
  2447. else if($v['czwarehouse'] == 0)
  2448. {
  2449. $outread .= '龙盈厂';
  2450. }
  2451. $cz = explode('|',trim($v['cz'],'|'));
  2452. $cztime = explode('|',trim($v['cztime'],'|'));
  2453. $zw = $this->transfer->get_list();
  2454. if($v['cz'] != '' && count($cz) > 0)
  2455. {
  2456. for($i=0;$i<count($cz);$i++)
  2457. {
  2458. if(!isset($cztime[$i]))
  2459. {
  2460. $outread .= $zw[$cz[$i]].' -&gt; ';
  2461. }
  2462. else
  2463. {
  2464. $outread .= $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  2465. }
  2466. }
  2467. $outread .= '<br>';
  2468. }
  2469. }
  2470. }
  2471. }
  2472. $info_list[$key]['systemwigsout'] = $outread;
  2473. }
  2474. if(isset($value['sourcetype']))
  2475. {
  2476. if($value['sourcetype'] == '1')
  2477. {
  2478. $info_list[$key]['sourcetype'] = '网红单';
  2479. }
  2480. else if($value['sourcetype'] == '2')
  2481. {
  2482. $info_list[$key]['sourcetype'] = '批发单';
  2483. }
  2484. else if($value['sourcetype'] == '3')
  2485. {
  2486. $info_list[$key]['sourcetype'] = '线下单';
  2487. }
  2488. else if($value['sourcetype'] == '4')
  2489. {
  2490. $info_list[$key]['sourcetype'] = '售后单';
  2491. }
  2492. else if($value['sourcetype'] == '5')
  2493. {
  2494. $info_list[$key]['sourcetype'] = '其它';
  2495. }
  2496. else
  2497. {
  2498. $info_list[$key]['sourcetype'] = '';
  2499. }
  2500. }
  2501. if(isset($value['js']))
  2502. {
  2503. if($value['js'] == '0')
  2504. {
  2505. $info_list[$key]['js'] = 'Ground Advantage';
  2506. }
  2507. else if($value['js'] == '1')
  2508. {
  2509. $info_list[$key]['js'] = 'PRIORITY';
  2510. }
  2511. else if($value['js'] == '2')
  2512. {
  2513. $info_list[$key]['js'] = 'EXPRESS';
  2514. }
  2515. else if($value['js'] == '3')
  2516. {
  2517. $info_list[$key]['js'] = 'IP';
  2518. }
  2519. else if($value['js'] == '4')
  2520. {
  2521. $info_list[$key]['js'] = 'FICP';
  2522. }
  2523. }
  2524. if(isset($value['type']))
  2525. {
  2526. $type = $this->warehouse->read($value['type']);
  2527. $info_list[$key]['type'] = $type['title'];
  2528. }
  2529. if(isset($value['xdcs']))
  2530. {
  2531. if($sj == 'fullorder')
  2532. {
  2533. $xdcs = $this->customer->get_email($data['email'],$data['shop']);
  2534. }
  2535. else
  2536. {
  2537. $xdcs = $this->customersmt->get_shopdata($data['shop'],$data['name'],$data['address']);
  2538. }
  2539. $info_list[$key]['xdcs'] = (isset($xdcs['num']))?(($xdcs['num']==0)?1:$xdcs['num']):1;
  2540. }
  2541. if(isset($value['dbapi']) || isset($value['scapi']))
  2542. {
  2543. $jmlist = '';$shuliang = '';
  2544. $classid = $this->classid->sku();
  2545. $dbapi = explode(';',trim($value['fpdata'],';'));
  2546. foreach ($dbapi as $va)
  2547. {
  2548. $pm = $classid;
  2549. $jm = $classid;
  2550. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  2551. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  2552. $ts = explode('|',trim($features,'|'));
  2553. if(stripos($ts[0],',') !== false)
  2554. {
  2555. $ft = explode(',',$ts[0]);
  2556. $features = explode('-',trim($ft[1],'-'));
  2557. $features[] = $ft[0];
  2558. }
  2559. else
  2560. {
  2561. $features = explode('-',trim($ts[0],'-'));
  2562. }
  2563. foreach($features as $k=>$v)
  2564. {
  2565. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  2566. {
  2567. if($typeclass[$v]['bm'] != '')
  2568. {
  2569. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  2570. }
  2571. }
  2572. if($v != 0 && isset($typeclass[$v]))
  2573. {
  2574. if($typeclass[$v]['classid'] == 13)
  2575. {
  2576. $dj = $typeclass[$v]['title'];
  2577. }
  2578. if($typeclass[$v]['classid'] == 8)
  2579. {
  2580. $ys = $typeclass[$v]['title'];
  2581. }
  2582. if($typeclass[$v]['classid'] == 15)
  2583. {
  2584. $hx = $typeclass[$v]['title'];
  2585. }
  2586. if(isset($pm[$typeclass[$v]['classid']]))
  2587. {
  2588. if($typeclass[$v]['title'] == '9A')
  2589. {
  2590. $pm[$typeclass[$v]['classid']] = '9A';
  2591. }
  2592. else if($typeclass[$v]['title'] == '10A')
  2593. {
  2594. $pm[$typeclass[$v]['classid']] = '10A';
  2595. }
  2596. else
  2597. {
  2598. $clzh = $typeclass[$v]['zh'];
  2599. if(stripos($typeclass[$v]['zh'],'|') !== false)
  2600. {
  2601. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  2602. $clzh = $clzh[0];
  2603. }
  2604. $pm[$typeclass[$v]['classid']] = $clzh;
  2605. }
  2606. }
  2607. if(isset($jm[$typeclass[$v]['classid']]))
  2608. {
  2609. if($typeclass[$v]['jm'])
  2610. {
  2611. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  2612. }
  2613. }
  2614. }
  2615. }
  2616. $jm = array_filter($jm);//去除空值
  2617. $jm = implode("-",$jm);
  2618. $jmlist .= $jm.'<br>';
  2619. $shuliang .= (isset($ts[2])?$ts[2]:'未知').'<br>';
  2620. $pm = array_filter($pm);//去除空值
  2621. $zh = implode(" ",$pm);
  2622. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  2623. }
  2624. if(isset($value['dbapi']))
  2625. {
  2626. $info_list[$key]['dbapi'] = $jmlist;
  2627. }
  2628. else
  2629. {
  2630. $info_list[$key]['scapi'] = $shuliang;
  2631. }
  2632. }
  2633. if(isset($value['dbapi']) && isset($value['scapi']))
  2634. {
  2635. $jmlist = '';$shuliang = '';
  2636. $classid = $this->classid->sku();
  2637. $dbapi = explode(';',trim($value['fpdata'],';'));
  2638. foreach ($dbapi as $va)
  2639. {
  2640. $pm = $classid;
  2641. $jm = $classid;
  2642. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  2643. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  2644. $ts = explode('|',trim($features,'|'));
  2645. if(stripos($ts[0],',') !== false)
  2646. {
  2647. $ft = explode(',',$ts[0]);
  2648. $features = explode('-',trim($ft[1],'-'));
  2649. $features[] = $ft[0];
  2650. }
  2651. else
  2652. {
  2653. $features = explode('-',trim($ts[0],'-'));
  2654. }
  2655. foreach($features as $k=>$v)
  2656. {
  2657. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  2658. {
  2659. if($typeclass[$v]['bm'] != '')
  2660. {
  2661. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  2662. }
  2663. }
  2664. if($v != 0 && isset($typeclass[$v]))
  2665. {
  2666. if($typeclass[$v]['classid'] == 13)
  2667. {
  2668. $dj = $typeclass[$v]['title'];
  2669. }
  2670. if($typeclass[$v]['classid'] == 8)
  2671. {
  2672. $ys = $typeclass[$v]['title'];
  2673. }
  2674. if($typeclass[$v]['classid'] == 15)
  2675. {
  2676. $hx = $typeclass[$v]['title'];
  2677. }
  2678. if(isset($pm[$typeclass[$v]['classid']]))
  2679. {
  2680. if($typeclass[$v]['title'] == '9A')
  2681. {
  2682. $pm[$typeclass[$v]['classid']] = '9A';
  2683. }
  2684. else if($typeclass[$v]['title'] == '10A')
  2685. {
  2686. $pm[$typeclass[$v]['classid']] = '10A';
  2687. }
  2688. else
  2689. {
  2690. $clzh = $typeclass[$v]['zh'];
  2691. if(stripos($typeclass[$v]['zh'],'|') !== false)
  2692. {
  2693. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  2694. $clzh = $clzh[0];
  2695. }
  2696. $pm[$typeclass[$v]['classid']] = $clzh;
  2697. }
  2698. }
  2699. if(isset($jm[$typeclass[$v]['classid']]))
  2700. {
  2701. if($typeclass[$v]['jm'])
  2702. {
  2703. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  2704. }
  2705. }
  2706. }
  2707. }
  2708. $jm = array_filter($jm);//去除空值
  2709. $jm = implode("-",$jm);
  2710. $jmlist .= $jm.'<br>';
  2711. $shuliang .= (isset($ts[2])?$ts[2]:'未知').'<br>';
  2712. $pm = array_filter($pm);//去除空值
  2713. $zh = implode(" ",$pm);
  2714. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  2715. }
  2716. $info_list[$key]['dbapi'] = $jmlist;
  2717. $info_list[$key]['scapi'] = $shuliang;
  2718. }
  2719. if(isset($value['cpfpdata']))
  2720. {
  2721. $fpread = '';
  2722. $cpfpdata = explode(';',trim($value['fpdata'],';'));
  2723. foreach ($cpfpdata as $v)
  2724. {
  2725. $va = explode('|',trim($v,'|'));
  2726. if(isset($va[1])){
  2727. $fpread .= $va[1].'; ';
  2728. }else{
  2729. $fpread .="合并单没有产品异常标记";
  2730. }
  2731. }
  2732. $info_list[$key]['cpfpdata'] = $fpread;
  2733. }
  2734. if(count($goods_sku_list) > 0){
  2735. $ret_goods_sku = $this->_getGoodsInfo($value,$goods_sku_list,$typeclass);
  2736. if(in_array("gradefpdata",$goods_sku_list)){
  2737. $info_list[$key]['gradefpdata'] = trim($ret_goods_sku['gradefpdata'],"<br>");
  2738. }
  2739. if(in_array("colorfpdata",$goods_sku_list)){
  2740. $info_list[$key]['colorfpdata'] = trim($ret_goods_sku['colorfpdata'],"<br>");
  2741. }
  2742. if(in_array("densityfpdata",$goods_sku_list)){
  2743. $info_list[$key]['densityfpdata'] = trim($ret_goods_sku['densityfpdata'],"<br>");
  2744. }
  2745. if(in_array("hairnumberfpdata",$goods_sku_list)){
  2746. $info_list[$key]['hairnumberfpdata'] = trim($ret_goods_sku['hairnumberfpdata'],"<br>");
  2747. }
  2748. if(in_array("lacetypefpdata",$goods_sku_list)){
  2749. $info_list[$key]['lacetypefpdata'] = trim($ret_goods_sku['lacetypefpdata'],"<br>");
  2750. }
  2751. //lowefpdata
  2752. if(in_array("lowefpdata",$goods_sku_list)){
  2753. $info_list[$key]['lowefpdata'] = trim($ret_goods_sku['lowefpdata'],"<br>");
  2754. }
  2755. }
  2756. unset($info_list[$key]['id']);
  2757. unset($info_list[$key]['fpdata']);
  2758. }
  2759. return [
  2760. 'info_list'=>$info_list,
  2761. 'shouldmoney'=>$shouldmoney
  2762. ];
  2763. }
  2764. //上传运单
  2765. public function _waybill($arg_array)
  2766. {
  2767. $readid = $arg_array[0];
  2768. $dataorder = array();$datashop = array();$dataex = array();$datack = array();
  2769. /* 订单加入键值-k */
  2770. $fdata = $this->fullorder->find_all('shop = "'.$readid.'" and dtime > "'.(time()-30*24*3600).'" and review > 4 and dlz < 1 and state = 207');
  2771. foreach ($fdata as $v)
  2772. {
  2773. $dataorder[$v['orderinfo']] = $v;
  2774. }
  2775. $sdata = $this->fullordersmt->find_all('shop = "'.$readid.'" and dtime > "'.(time()-30*24*3600).'" and review > 4 and state = 207 and (dlz < 1 or dlz = 3)');
  2776. foreach ($sdata as $v)
  2777. {
  2778. $dataorder[$v['orderinfo']] = $v;
  2779. }
  2780. $tdata = $this->fullordertt->find_all('shop = "'.$readid.'" and dtime > "'.(time()-30*24*3600).'" and review > 4 and state = 207 and (dlz < 1 or dlz = 3)');
  2781. foreach ($tdata as $v)
  2782. {
  2783. $dataorder[$v['orderinfo']] = $v;
  2784. }
  2785. $xdata = $this->fullorderxw->find_all('shop = "'.$readid.'" and dtime > "'.(time()-30*24*3600).'" and review > 4 and state = 207 and (dlz < 1 or dlz = 3)');
  2786. foreach ($xdata as $v)
  2787. {
  2788. $dataorder[$v['orderinfo']] = $v;
  2789. }
  2790. /* 订单加入键值-j */
  2791. /* 店铺加入键值-j */
  2792. $fshop = $this->shop->find_all('1=1');
  2793. foreach ($fshop as $v)
  2794. {
  2795. $datashop[$v['id']] = $v;
  2796. }
  2797. /* 店铺加入键值-k */
  2798. /* 快递加入键值-j */
  2799. $fex = $this->express->find_all('1=1');
  2800. foreach ($fex as $v)
  2801. {
  2802. $dataex[$v['id']] = $v;
  2803. }
  2804. /* 快递加入键值-k */
  2805. /* 仓库加入键值-k */
  2806. $fwh = $this->warehouse->find_all('1=1');
  2807. foreach ($fwh as $v)
  2808. {
  2809. $datack[$v['id']] = $v;
  2810. }
  2811. /* 仓库加入键值-j */
  2812. $fs = $this->notice->get_ordertatus(216);//216成功状态
  2813. if(is_numeric($readid) == false || $readid < 1)
  2814. {
  2815. echo json_encode(array('msg'=>'店铺信息错误!','success'=>true));exit;
  2816. }
  2817. $dir = '/data/excel/'.date('Ymd',time()).'/';
  2818. $config['upload_path'] = '.'.$dir ;
  2819. $config['file_name'] = date('Ymd_His_',time()).rand(1000,9999);
  2820. $config['allowed_types'] = 'xls|xlsx|csv';
  2821. $config['max_size'] = 10240;
  2822. $this->load->library('upload', $config);
  2823. $this->upload->initialize($config);
  2824. if ($this->upload->do_upload('userfile'))
  2825. {
  2826. $full_path = $dir.$this->upload->data('file_name');
  2827. $fileName = '.' . $full_path;
  2828. if (!file_exists($fileName))
  2829. {
  2830. echo json_encode(array('msg'=>"上传失败,请重试",'success'=>false));exit;
  2831. }
  2832. else
  2833. {
  2834. require_once "./data/excel/PHPExcel/IOFactory.php";
  2835. $phpExcel = PHPExcel_IOFactory::load($fileName);// 载入当前文件
  2836. $phpExcel->setActiveSheetIndex(0);// 设置为默认表
  2837. $sheetCount = $phpExcel->getSheetCount();// 获取表格数量
  2838. $row = $phpExcel->getActiveSheet()->getHighestRow();// 获取行数
  2839. $column = $phpExcel->getActiveSheet()->getHighestColumn();// 获取列数
  2840. ++$column;//如果列数大于26行
  2841. $list = array();
  2842. for ($i = 2; $i <= $row; $i++) // 行数循环
  2843. {
  2844. $data = array();
  2845. for ($c = 'A'; $c != $column; $c++) // 列数循环
  2846. {
  2847. $data[] = $phpExcel->getActiveSheet()->getCell($c . $i)->getValue();
  2848. }
  2849. $list[] = $data;
  2850. }
  2851. }
  2852. $i = 0;$j = 0;$ed = array();$cscs = array();
  2853. $this->db->trans_begin();
  2854. foreach ($list as $key=>$value)
  2855. {
  2856. $ddh = preg_replace('/\D/s','',$value['0']);
  2857. $ydh = preg_replace('/\W/s','',$value['1']);
  2858. $shop = $datashop[$readid];
  2859. if($shop['type'] == '269')
  2860. {
  2861. $orid = $readid.$ddh;
  2862. }
  2863. else
  2864. {
  2865. $orid = $ddh;
  2866. }
  2867. if(isset($dataorder[$orid]))
  2868. {
  2869. if($shop['type'] == 269)//独立站前缀需要添加ID
  2870. {
  2871. $time = time();
  2872. $xg = $dataorder[$orid];
  2873. $oldw = $xg['waybill'];
  2874. $ex = $dataex[$xg['express']];
  2875. $warehouse = $datack[$xg['type']];
  2876. $msg = $ydh;
  2877. $xg['waybill'] = $ydh;
  2878. $fs = $this->notice->find_all("shop = '".$xg['shop']."' and message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");
  2879. if(isset($fs[0]))
  2880. {
  2881. $fs = $fs[0];
  2882. $fs['email'] = $this->emaildata->read($fs['email']);
  2883. if(($xg['dlzemail'] == 1 && $msg != $oldw) || $xg['dlzemail'] == 0)
  2884. {
  2885. $ck = $this->notice->get_god($xg,$shop,$ex,$fs);
  2886. if($ck == 1)
  2887. {
  2888. $ckemail = '邮件发送成功,';
  2889. $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$xg['id']);
  2890. }
  2891. }
  2892. }
  2893. if($msg != $oldw)
  2894. {
  2895. if($xg['source'] != 1)
  2896. {
  2897. $ms = $this->message->find_all("express like '%,".$xg['express'].",%'");
  2898. if(!isset($ms[0]))
  2899. {
  2900. $ms = $this->message->read(2);
  2901. }
  2902. else
  2903. {
  2904. $ms = $ms[0];
  2905. }
  2906. $ddh = substr($xg['orderinfo'],1);
  2907. $shopifyid = $xg['shopify'];
  2908. //独立站地址更新订单状态、物流信息
  2909. $shopname = $shop['brandname']; //店铺名
  2910. $buyername = $xg['bname']; //Bill Name
  2911. $email_call = $shop['shopid']; //发货人邮箱;
  2912. $phone = $shop['shopphone']; //发货人电话
  2913. $track_type = $ex['title']; //快递名称
  2914. $service = $ex['title']; //快递追踪名称
  2915. $track_link = $ex['url']; //快递查询网址
  2916. $logistics_number = $ydh; //运单号
  2917. $t= array('%buyername%','%email_call%','%track_type%','%service%','%track_link%','%logistics_number%','%shop%','%phone%','%jtime%');
  2918. $h= array($buyername,$email_call,$track_type,$service,$track_link,$logistics_number,$shopname,$phone,$ex['yjtime']);
  2919. $remark = str_replace($t,$h,$ms['content']);
  2920. @$gx = $this->api->get_gx($ddh,$ydh,$xg,$shop,$ex,$remark,$shopifyid);
  2921. }
  2922. else if($xg['source'] == 1)
  2923. {
  2924. $gx['res'] = 3;
  2925. $gx['state'] = 216;
  2926. }
  2927. }
  2928. else
  2929. {
  2930. $gx['res'] = $xg['dlz'];
  2931. $gx['state'] = $xg['state'];
  2932. }
  2933. $xg['iscode'] = $ex['title'];
  2934. $xg['url'] = $shop['shopname'];
  2935. @$chuanshu = $this->api->get_paypal($xg);
  2936. //$this->afspaypal->insert(array('number'=>$xg['number'],'cs'=>$chuanshu));
  2937. $this->fullorder->save(array('waybill'=>$msg,'state'=>$gx['state'],'dlz'=>$gx['res']),$xg['id']);
  2938. /**
  2939. $xg = $dataorder[$arg_array[0].$ddh];
  2940. $ex = $dataex[$xg['express']];
  2941. $warehouse = $datack[$xg['type']];
  2942. if($xg['source'] != 1 && $ex['iscode'] != 'Other' && $xg['state'] == '207')
  2943. {
  2944. //独立站地址更新订单状态、物流信息
  2945. $gx = $this->api->get_gx($ddh,$ydh,$xg,$shop,$ex,$xg['msg'],$xg['msg'],$dataorder[$orid]['shopify']);
  2946. if(!isset($gx['res']))
  2947. {
  2948. $ed[] = array($ddh.'-更新失败');
  2949. $j++;
  2950. continue;
  2951. }
  2952. $this->fullorder->save(array('waybill'=>$ydh,'dlz'=>$gx['res'],'state'=>$gx['state']),$xg['id']);
  2953. if($gx['res'] == 1 && $fs)
  2954. {
  2955. $ck = $this->_email($fs['content'],$xg,$warehouse['company']);
  2956. }
  2957. }
  2958. else if($xg['source'] == 1 && $xg['state'] == '207')
  2959. {
  2960. $this->fullorder->save(array('waybill'=>$ydh,'dlz'=>3,'state'=>216),$xg['id']);
  2961. if($fs)
  2962. {
  2963. $ck = $this->_email($fs['content'],$xg,$warehouse['company']);
  2964. }
  2965. }
  2966. else
  2967. {
  2968. $ed[] = array($ddh.'-状态错误');
  2969. $j++;
  2970. continue;
  2971. }
  2972. **/
  2973. }
  2974. else if($shop['type'] == 270)//速卖通对接发货声明
  2975. {
  2976. $xg = $dataorder[$ddh];
  2977. $ex = $dataex[$xg['express']];
  2978. $warehouse = $datack[$xg['type']];
  2979. if($xg['source'] != 1 && $ex['aecode'] != 'Other' && $xg['library'] == 2 && ($xg['dlz'] == '0' || $xg['dlz'] == '2'))
  2980. {
  2981. $result = $this->apismt->get_out($ydh,'all',$xg['orderinfo'],$ex['aecode'],$sp['code']);
  2982. if(isset($result['result_success']) && $result['result_success'] == "true")
  2983. {
  2984. $this->fullordersmt->save(array('waybill'=>$ydh,'state'=>209,'dlz'=>1),$xg['id']);
  2985. /** 合并信息处理开始-发货声明 **/
  2986. if($xg['merge'] != '0')
  2987. {
  2988. $hdata = $this->fullordersmt->find_all("merge = '".$xg['merge']."' and id != '".$xg['id']."' and dlz = '0' and source != 1");$l=0;
  2989. foreach ($hdata as $v)
  2990. {
  2991. $result = $this->apismt->get_out($ydh,'all',$v['orderinfo'],$ex['aecode'],$sp['code']);
  2992. if(isset($result['result_success']) && $result['result_success'] == "true")
  2993. {
  2994. $this->fullordersmt->save(array('waybill'=>$ydh,'state'=>209,'dlz'=>1),$v['id']);
  2995. }
  2996. else
  2997. {
  2998. $ed[] = array($v['orderinfo'].'-合并单发货声明失败,请在ERP上手动操作此单');
  2999. $j++;
  3000. continue;
  3001. }
  3002. $l++;
  3003. if($l > 10)
  3004. {
  3005. break;
  3006. }
  3007. }
  3008. }
  3009. /** 合并信息处理结束开始 **/
  3010. }
  3011. else
  3012. {
  3013. $ed[] = array($ddh.'-发货声明失败');
  3014. $j++;
  3015. continue;
  3016. }
  3017. }
  3018. else if($xg['source'] != 1 && $ex['aecode'] != 'Other' && $xg['dlz'] == '1' && $xg['library'] == 2)//修改声明
  3019. {
  3020. $obtain = $this->apismt->get_obtain($xg['orderinfo'],$sp['code']);//修改声明先查询之前物流信息
  3021. if(isset($obtain['logistics_no']))
  3022. {
  3023. $result = $this->apismt->get_editout($obtain['logistics_no'],$ydh,'all',$xg['orderinfo'],$obtain['service_name'],$ex['aecode'],$sp['code']);
  3024. }
  3025. if(isset($result['result_success']) && $result['result_success'] == "true")
  3026. {
  3027. $this->fullordersmt->save(array('waybill'=>$ydh),$xg['id']);
  3028. /** 合并信息处理开始-修改声明 **/
  3029. if($xg['merge'] != '0')
  3030. {
  3031. $hdata = $this->fullordersmt->find_all("merge = '".$xg['merge']."' and id != '".$xg['id']."' and dlz != 1 and source != 1");$l=0;
  3032. foreach ($hdata as $v)
  3033. {
  3034. $obtain = $this->apismt->get_obtain($v['orderinfo'],$sp['code']);//修改声明先查询之前物流信息
  3035. if(isset($obtain['logistics_no']))
  3036. {
  3037. $result = $this->apismt->get_editout($obtain['logistics_no'],$ydh,'all',$v['orderinfo'],$obtain['service_name'],$ex['aecode'],$sp['code']);
  3038. }
  3039. if(isset($result['result_success']) && $result['result_success'] == "true")
  3040. {
  3041. $this->fullordersmt->save(array('waybill'=>$ydh),$v['id']);
  3042. }
  3043. else
  3044. {
  3045. $ed[] = array($v['orderinfo'].'-合并单修改发货声明失败,请在ERP上手动操作此单');
  3046. $j++;
  3047. continue;
  3048. }
  3049. $l++;
  3050. if($l > 10)
  3051. {
  3052. break;
  3053. }
  3054. }
  3055. }
  3056. /** 合并信息处理结束开始 **/
  3057. }
  3058. else
  3059. {
  3060. $ed[] = array($ddh.'-修改发货声明失败');
  3061. $j++;
  3062. continue;
  3063. }
  3064. }
  3065. else if($xg['source'] == 1 && $xg['state'] == '207')
  3066. {
  3067. $this->fullordersmt->save(array('waybill'=>$ydh,'dlz'=>3,'state'=>216),$xg['id']);
  3068. }
  3069. else
  3070. {
  3071. $this->fullordersmt->save(array('waybill'=>$ydh),$xg['id']);
  3072. }
  3073. }
  3074. }
  3075. else
  3076. {
  3077. $ed[] = array($ddh.'-单号错误或重复操作');
  3078. $i++;
  3079. continue;
  3080. }
  3081. sleep(1);//停留1秒
  3082. }
  3083. if ($this->db->trans_status() === FALSE)
  3084. {
  3085. $this->db->trans_rollback();
  3086. }
  3087. else
  3088. {
  3089. $this->db->trans_commit();
  3090. }
  3091. if($i+$j > 0)
  3092. {
  3093. $time = date('Ymd',time());
  3094. $title = '错误信息-'.$time;
  3095. $titlename = "<table border=1><tr><td>错误详情</td></tr></table>";
  3096. $tail = "\n";
  3097. $filename = $title.".xls";
  3098. $ecl = $this->excel->get_fz3($ed,$titlename,$filename,$tail);
  3099. $dir = '/data/excel/'.$time.'/';
  3100. $file_name = 'error_'.$time.rand(1000,9999);
  3101. if(!is_dir('.'.$dir))mkdir('.'.$dir,0777);
  3102. $myfile = fopen(".".$dir.$file_name.".xls", "w") or die();
  3103. fwrite($myfile,$ecl);
  3104. fclose($myfile);
  3105. $error = $dir.$file_name.'.xls';
  3106. echo json_encode(array('msg'=>'添加成功,'.$i.'条异常,'.$j.'条失败','error'=>$error,'success'=>true));exit;
  3107. }
  3108. else
  3109. {
  3110. echo json_encode(array('msg'=>'添加成功!','error'=>1,'success'=>true));exit;
  3111. }
  3112. }
  3113. else
  3114. {
  3115. echo json_encode(array('msg'=>'上传失败!','t'=>$this->upload->display_errors(),'success'=>false));exit;
  3116. }
  3117. }
  3118. //上传速卖通订单
  3119. public function _order($arg_array)
  3120. {
  3121. $dataorder = array();$datashop = array();$dataex = array();$datack = array();
  3122. /* 订单加入键值-k */
  3123. $fdata = $this->fullorder_smt->find_all('dtime >'.(time()-5*24*3600));
  3124. foreach ($fdata as $v)
  3125. {
  3126. $dataorder[$v['orderinfo']] = $v;
  3127. }
  3128. /* 订单加入键值-j */
  3129. $dir = '/data/excel/'.date('Ymd',time()).'/';
  3130. $config['upload_path'] = '.'.$dir ;
  3131. $config['file_name'] = date('Ymd_His_',time()).rand(1000,9999);
  3132. $config['allowed_types'] = 'xls|xlsx|csv';
  3133. $config['max_size'] = 10240;
  3134. $this->load->library('upload', $config);
  3135. $this->upload->initialize($config);
  3136. if ($this->upload->do_upload('userfile'))
  3137. {
  3138. $full_path = $dir.$this->upload->data('file_name');
  3139. $fileName = '.' . $full_path;
  3140. if (!file_exists($fileName))
  3141. {
  3142. echo json_encode(array('msg'=>"上传失败,请重试",'success'=>false));exit;
  3143. }
  3144. else
  3145. {
  3146. require_once "./data/excel/PHPExcel/IOFactory.php";
  3147. $phpExcel = PHPExcel_IOFactory::load($fileName);// 载入当前文件
  3148. $phpExcel->setActiveSheetIndex(0);// 设置为默认表
  3149. $sheetCount = $phpExcel->getSheetCount();// 获取表格数量
  3150. $row = $phpExcel->getActiveSheet()->getHighestRow();// 获取行数
  3151. $column = $phpExcel->getActiveSheet()->getHighestColumn();// 获取列数
  3152. ++$column;//如果列数大于26行
  3153. $list = array();
  3154. for ($i = 2; $i <= $row; $i++) // 行数循环
  3155. {
  3156. $data = array();
  3157. for ($c = 'A'; $c != $column; $c++) // 列数循环
  3158. {
  3159. $data[] = $phpExcel->getActiveSheet()->getCell($c . $i)->getValue();
  3160. }
  3161. $list[] = $data;
  3162. }
  3163. }
  3164. $i = 0;$j = 0;$ed = array();$tytime = time();
  3165. foreach ($list as $key=>$value)
  3166. {
  3167. $value['2'] = preg_replace('/\D/s','',$value['2']);
  3168. if($value['2'] && !isset($dataorder[$value['2']]))
  3169. {
  3170. $num = $this->fullorder_smt->find_count('gtime = "'.date('Ymd',time()).'"');
  3171. $post['source'] = 2;//订单类型:1.线下订单2.PC3.手机
  3172. $post['state'] = 207;//订单状态:207等待发货
  3173. $post['review'] = 6;//审核状态:1.未送审2.待审核3.不通过4取消重审5.审核通过6.自动通过
  3174. $post['reviewtime'] = $tytime;//审核时间
  3175. $post['print'] = 2;//打印状态:1.不可打印2.未打印3.已打印
  3176. $post['library'] = 1;//出库状态:1.未出库2.已出库3.已退库
  3177. $post['libraryconfirm'] = 1;//出库确认:1.不允许2.允许
  3178. if($post['print'] != 3)
  3179. {
  3180. $post['librarynot'] = "订单未打印,未审核或未通过";//不能出库原因
  3181. }
  3182. $value['1'] = trim($value['1'],' ');
  3183. $shortname = explode('-',$value['1']);
  3184. $shortname = $this->shop->get_shortname($shortname[0]);
  3185. if(!$shortname)
  3186. {
  3187. $ed[] = array($value['1'].'-编码有问题');
  3188. $i++;
  3189. continue;
  3190. }
  3191. $post['shop'] = $shortname['id']?$shortname['id']:0;//速卖通
  3192. $post['user'] = '无';
  3193. $post['number'] = $value['1'];//编号
  3194. $post['orderinfo'] = $value['2'];//订单号
  3195. $post['client'] = preg_replace('/( | | |\s)/',' ',$value['3']);//客户名称
  3196. $post['buytime'] = $tytime;//时间转UX
  3197. $post['dtime'] = $tytime;//订单时间
  3198. $post['gtime'] = date('Ymd',$tytime);//格式化时间
  3199. //$post['pay'] = $this->input->post('pay',true);//支付方式
  3200. $post['capital'] = 3;//资金状态
  3201. $post['type'] = 5;//发货仓库
  3202. $post['currency'] = 219;//币种
  3203. $post['currencytitle'] = 'USD';//币种名称
  3204. $post['freight'] = 0;//运费
  3205. $post['expressmoney'] = 0;//物流金额
  3206. $post['shouldmoney'] = 0;//应收金额
  3207. $post['budget'] = 0;//应到金额*店铺到帐金额比
  3208. $orderremarks = '';//订单备注
  3209. $post['shipremarks'] = $value['12'];//仓库品名
  3210. $post['email'] = '';//邮箱
  3211. $post['name'] = preg_replace('/( | | |\s)/',' ',$value['3']);//名字
  3212. $post['phone'] = $value['10'];//电话
  3213. $post['country'] = 192;//国家
  3214. $ct = $this->country->get_ename($value['9']);//国家
  3215. $post['al'] = $ct['lb'];//国家二字码
  3216. $post['province'] = $value['8'];//省、州
  3217. $post['city'] = $value['6'];//城市
  3218. $post['zipcode'] = $value['7'];//邮编
  3219. $post['address'] = $value['4'];//地址1
  3220. $post['address2'] = $value['5']?$value['5']:'';//地址2
  3221. $post['express'] = 2;//快递
  3222. $post['printtype'] = 1;//打印类型
  3223. $post['fpdata'] = '';//购买产品内容
  3224. $post['sbpm'] = 'Hair Sample';//申报品名
  3225. $post['zwpm'] = '假发';//中文品名
  3226. $post['ts'] = $value['17'];//条数
  3227. $post['dtsbjz'] = 15;//单条申报价
  3228. $post['zsbjz'] = 15;//总申报价
  3229. $post['zzl'] = 0.5;//总重量
  3230. $post['zjs'] = 1;//总件数
  3231. $post['quantity'] = 1;//数量
  3232. $post['paypal'] = '';//支付号
  3233. $post['guarantee'] = '';//卖家保障
  3234. $post['zzl'] = $value['13'];//总重量
  3235. $post['bx'] = $value['14'];//总重量
  3236. $post['qm'] = $value['15'];//总重量
  3237. $post['js'] = $value['16'];//总重量
  3238. $barcode = $this->usps->get_address(array('address'=>$value['4'],'address2'=>$value['5'],'city'=>$value['6'],'province'=>$value['8'],'zipcode'=>$value['7']));
  3239. if(isset($barcode['Address']['Error']['Description']))
  3240. {
  3241. $ed[] = array($value['1'].'-'.$barcode['Address']['Error']['Description']);
  3242. $i++;
  3243. }
  3244. else
  3245. {
  3246. $this->fullorder_smt->insert($post);
  3247. }
  3248. }
  3249. else
  3250. {
  3251. $ed[] = array($value['1'].'-单号错误或重复操作');
  3252. $i++;
  3253. }
  3254. sleep(2);//停留2秒
  3255. }
  3256. if($i+$j > 0)
  3257. {
  3258. $time = date('Ymd',time());
  3259. $title = '错误信息-'.$time;
  3260. $titlename = "<table border=1><tr><td>错误详情</td></tr></table>";
  3261. $tail = "\n";
  3262. $filename = $title.".xls";
  3263. $ecl = $this->excel->get_fz3($ed,$titlename,$filename,$tail);
  3264. $dir = '/data/excel/'.$time.'/';
  3265. $file_name = 'error_'.$time.rand(1000,9999);
  3266. if(!is_dir('.'.$dir))mkdir('.'.$dir,0777);
  3267. $myfile = fopen(".".$dir.$file_name.".xls", "w") or die();
  3268. fwrite($myfile,$ecl);
  3269. fclose($myfile);
  3270. $error = $dir.$file_name.'.xls';
  3271. echo json_encode(array('msg'=>'添加成功,'.$i.'条异常,'.$j.'条失败','error'=>$error,'success'=>true));exit;
  3272. }
  3273. else
  3274. {
  3275. echo json_encode(array('msg'=>'添加成功!','error'=>1,'success'=>true));exit;
  3276. }
  3277. }
  3278. else
  3279. {
  3280. echo json_encode(array('msg'=>'上传失败!','t'=>$this->upload->display_errors(),'success'=>false));exit;
  3281. }
  3282. }
  3283. public function _email($content,$data,$shopname)
  3284. {
  3285. $express = $this->express->read($data['express']);
  3286. $t= array('$userName','$orderid','$trackingNumber','$expressCompany','$contactPerson','$mobileNo','$zip','$recipientAddress');//需要被替换的内容
  3287. $h= array($data['client'],$data['orderinfo'],$data['waybill'],$express['servicename'],$data['name'],$data['phone'],$data['zipcode'],$data['address']);//替换的内容
  3288. $content = str_replace($t,$h,$content);
  3289. $this->load->library('email');
  3290. $config['protocol'] = 'smtp';
  3291. $config['smtp_host'] = 'smtpdm-ap-southeast-1.aliyun.com';
  3292. $config['smtp_port'] = 465;
  3293. $config['smtp_user'] = 'service@email.supernovahair.com';
  3294. $config['smtp_pass'] = 'LONGyihair374';
  3295. $config['smtp_crypto'] = 'ssl';
  3296. $config['crlf'] = "\r\n";
  3297. $config['newline'] = "\r\n";
  3298. $this->email->initialize($config);
  3299. $this->email->from('service@email.supernovahair.com',$shopname);
  3300. $this->email->to($data['email']);//收件
  3301. $this->email->subject('The product you purchased has a new progress');//标题
  3302. $this->email->message($content);//内容
  3303. if ( ! $this->email->send())
  3304. {
  3305. return 2;
  3306. }
  3307. else
  3308. {
  3309. return 1;
  3310. }
  3311. }
  3312. //导出订单excel
  3313. public function _cs()
  3314. {
  3315. if(isset($_GET['fexcel']))
  3316. {
  3317. if(isset($_SESSION['api']))
  3318. {
  3319. $user = $this->user->get_api($_SESSION['api']);
  3320. $usp = $user;
  3321. $fgshop = "";$sid = "";
  3322. $user = explode('|',trim($user['shop'],'|'));
  3323. foreach ($user as $value)
  3324. {
  3325. $fgshop .= " shop = ".$value." or";
  3326. $sid .= " id = ".$value." or";
  3327. }
  3328. }
  3329. $dowid = $this->input->get('a');
  3330. $wid = "";
  3331. if($dowid != "")
  3332. {
  3333. $id_arr = explode(',',rtrim($dowid,','));
  3334. foreach ($id_arr as $v)
  3335. {
  3336. $wid .= " id = 0 or";
  3337. $wid .= " id = '$v' or";
  3338. }
  3339. $wid = " and".rtrim($wid,'or');
  3340. }
  3341. $fexcel = $this->input->get('fexcel',true);
  3342. $page = $this->input->get('page',true);
  3343. $perpage = $this->input->get('perpage',true);
  3344. $warehouse = $this->input->get('warehouse',true);
  3345. $timetk = $this->input->get('timetk',true);
  3346. $timetj = $this->input->get('timetj',true);
  3347. $shop = $this->input->get('shop',true);
  3348. $source = $this->input->get('source',true);
  3349. $state = $this->input->get('state',true);
  3350. $review = $this->input->get('review',true);
  3351. $type = $this->input->get('type',true);
  3352. $express = $this->input->get('express',true);
  3353. $orderinfo = $this->input->get('orderinfo',true);
  3354. $user = $this->input->get('user',true);
  3355. $client = $this->input->get('name',true);
  3356. $waybill = $this->input->get('waybill',true);
  3357. $number = $this->input->get('number',true);
  3358. $email = $this->input->get('email',true);
  3359. $dlz = $this->input->get('dlz',true);
  3360. $library = $this->input->get('library',true);
  3361. $libraryconfirm = $this->input->get('libraryconfirm',true);
  3362. $print = $this->input->get('print',true);
  3363. $timetkk = $this->input->get('timetkk',true);
  3364. $timetjj = $this->input->get('timetjj',true);
  3365. $timetk = strtotime($timetk);
  3366. $timetj = strtotime($timetj);
  3367. $timetkk = strtotime($timetkk);
  3368. $timetjj = strtotime($timetjj);
  3369. $where = "mergeid = 0 and (".rtrim($fgshop,'or').")";
  3370. if($warehouse)
  3371. {
  3372. $where .= " and type = '$warehouse'";
  3373. }
  3374. if($timetk && $timetj)
  3375. {
  3376. $timetj = $timetj+24*3600;
  3377. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  3378. }
  3379. if($timetkk && $timetjj)
  3380. {
  3381. $where .= " and librarytime > '$timetkk' and librarytime < '$timetjj'";
  3382. }
  3383. if($library)
  3384. {
  3385. $where .= " and library = '$library'";
  3386. }
  3387. if($print)
  3388. {
  3389. $where .= " and print = '$print'";
  3390. }
  3391. if($shop)
  3392. {
  3393. $where .= " and shop = '$shop'";
  3394. }
  3395. if($source)
  3396. {
  3397. $where .= " and source = '$source'";
  3398. }
  3399. if($state)
  3400. {
  3401. $where .= " and state = '$state'";
  3402. }
  3403. if($review)
  3404. {
  3405. $where .= " and review = '$review'";
  3406. }
  3407. if($type)
  3408. {
  3409. $where .= " and type = '$type'";
  3410. }
  3411. if($express)
  3412. {
  3413. $where .= " and express = '$express'";
  3414. }
  3415. if($orderinfo)
  3416. {
  3417. $where .= " and orderinfo = '$orderinfo'";
  3418. }
  3419. if($user)
  3420. {
  3421. $where .= " and user = '$user'";
  3422. }
  3423. if($client)
  3424. {
  3425. $where .= " and client like '%$client%'";
  3426. }
  3427. if($waybill)
  3428. {
  3429. $where .= " and waybill = '$waybill'";
  3430. }
  3431. if($number)
  3432. {
  3433. $where .= " and number = '$number'";
  3434. }
  3435. if($email)
  3436. {
  3437. $where .= " and email = '$email'";
  3438. }
  3439. if($dlz)
  3440. {
  3441. $where .= " and waybill != '' and dlz = 0";
  3442. }
  3443. if($dlz)
  3444. {
  3445. $where .= " and libraryconfirm = '$libraryconfirm'";
  3446. }
  3447. $fexcel = $this->fullorderexcel->read($fexcel);
  3448. $fexceleq = explode("|",rtrim($fexcel['content'],'|'));
  3449. foreach ($fexceleq as $k=>$v)
  3450. {
  3451. $fexceleq[$k] = explode('-',$v);
  3452. $num[$k] = $fexceleq[$k][0];
  3453. }
  3454. //array_multisort($num,SORT_ASC,$fexceleq);//重新排序
  3455. $feq = "";
  3456. foreach ($fexceleq as $k=>$v)
  3457. {
  3458. $feq .= $v[1].',';
  3459. }
  3460. $feq = rtrim($feq,',');
  3461. $fexcelzhw = explode('|',rtrim($fexcel['contentzh'],'|'));
  3462. foreach ($fexcelzhw as $k=>$v)
  3463. {
  3464. $fexcelzhw[$k] = explode('-',$v);
  3465. $numb[$k] = $fexcelzhw[$k][0];
  3466. }
  3467. //array_multisort($numb,SORT_ASC,$fexcelzhw);//重新排序
  3468. $fexcelzh = array();
  3469. foreach ($fexcelzhw as $k=>$v)
  3470. {
  3471. $fexcelzh[] = $v[1];
  3472. }
  3473. //取得信息列表
  3474. $info_list = $this->fullorder->find_all($where.$wid,$feq,'id desc');
  3475. //格式化数据
  3476. $i = 1;$shouldmoney = 0;$hl=1;
  3477. foreach ($info_list as $key=>$value)
  3478. {
  3479. if(isset($value['currencytitle']))
  3480. {
  3481. if($value['currencytitle'] != "CNY")
  3482. {
  3483. $hl=$value['hl'];
  3484. }
  3485. $shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
  3486. $budget=$budget+($value['budget']*$hl);
  3487. $currency=$currency+(($value['shouldmoney']-$value['budget'])*$hl);
  3488. $refund=$refund+($value['refund']*$hl);
  3489. }
  3490. if(isset($value['shop']))
  3491. {
  3492. $shop = $this->shop->read($value['shop']);
  3493. $info_list[$key]['shop'] = $shop['shopname'];
  3494. }
  3495. if(isset($value['dtime']))
  3496. {
  3497. $info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
  3498. }
  3499. if(isset($value['country']))
  3500. {
  3501. $country = $this->country->read($value['country']);
  3502. $info_list[$key]['country'] = $country['name'];
  3503. }
  3504. if(isset($value['type']))
  3505. {
  3506. $type = $this->warehouse->read($value['type']);
  3507. $info_list[$key]['type'] = $type['title'];
  3508. }
  3509. if(isset($value['express']))
  3510. {
  3511. $express = $this->express->read($value['express']);
  3512. if($express)
  3513. {
  3514. $info_list[$key]['express'] = $express['servicename'];
  3515. }
  3516. else
  3517. {
  3518. $info_list[$key]['express'] = '未选择';
  3519. }
  3520. }
  3521. }
  3522. echo $timetkk;
  3523. }
  3524. }
  3525. public function _gggs($sku,$s,$j,$k)
  3526. {
  3527. $companytitle = array(9=>3,10=>2,11=>1,12=>4);
  3528. $this->load->database();
  3529. $this->db->select('id');
  3530. $this->db->from('crowd_whlabel');
  3531. $this->db->where('warehouse', '5');
  3532. $this->db->where('sku', $sku);
  3533. $this->db->where('state', '0');
  3534. $this->db->limit($s,$k);
  3535. $query = $this->db->get();
  3536. $ids = array_column($query->result_array(), 'id');
  3537. if (!empty($ids))
  3538. {
  3539. // 更新
  3540. $this->db->where_in('id', $ids);
  3541. $this->db->update('crowd_whlabel', array('companytitle' => $companytitle[$j]));
  3542. return $this->db->affected_rows();
  3543. }
  3544. }
  3545. public function _xxpl()
  3546. {
  3547. $this->load->database();
  3548. $data = ['type' => ''];
  3549. $this->db->update('crowd_whlabel', $data);
  3550. $wt = array();
  3551. $whlabel_type = $this->whlabel_type->find_all();
  3552. foreach ($whlabel_type as $v)
  3553. {
  3554. $wt[$v['title']] = $v['id'];
  3555. }
  3556. /* 订单加入键值-j */
  3557. $dir = '/data/excel/'.date('Ymd',time()).'/';
  3558. $config['upload_path'] = '.'.$dir ;
  3559. $config['file_name'] = date('Ymd_His_',time()).rand(1000,9999);
  3560. $config['allowed_types'] = 'xls|xlsx|csv';
  3561. $config['max_size'] = 10240;
  3562. $this->load->library('upload', $config);
  3563. $this->upload->initialize($config);
  3564. if ($this->upload->do_upload('userfile'))
  3565. {
  3566. $full_path = $dir.$this->upload->data('file_name');
  3567. $fileName = '.' . $full_path;
  3568. if (!file_exists($fileName))
  3569. {
  3570. echo json_encode(array('msg'=>"上传失败,请重试",'success'=>false));exit;
  3571. }
  3572. else
  3573. {
  3574. require_once "./data/excel/PHPExcel/IOFactory.php";
  3575. @$phpExcel = PHPExcel_IOFactory::load($fileName);// 载入当前文件
  3576. @$phpExcel->setActiveSheetIndex(0);// 设置为默认表
  3577. $sheetCount = $phpExcel->getSheetCount();// 获取表格数量
  3578. $row = $phpExcel->getActiveSheet()->getHighestRow();// 获取行数
  3579. $column = $phpExcel->getActiveSheet()->getHighestColumn();// 获取列数
  3580. ++$column;//如果列数大于26行
  3581. $list = array();
  3582. for ($i = 2; $i <= $row; $i++) // 行数循环
  3583. {
  3584. $data = array();
  3585. for ($c = 'A'; $c != $column; $c++) // 列数循环
  3586. {
  3587. $data[] = $phpExcel->getActiveSheet()->getCell($c . $i)->getValue();
  3588. }
  3589. $list[] = $data;
  3590. }
  3591. }
  3592. $wt = array();
  3593. $whlabel_type = $this->whlabel_type->find_all();
  3594. foreach ($whlabel_type as $v)
  3595. {
  3596. $wt[$v['title']] = $v['id'];
  3597. }
  3598. $j = 0;$ed = array();$e = 0;$c = 0;$cs = array();
  3599. foreach ($list as $v)
  3600. {
  3601. $this->load->database();
  3602. // 设置更新数据
  3603. $data = ['type' => $wt[$v[1]]];
  3604. // 添加条件:SKU 为 123456 且 warehouse 为 5
  3605. $this->db->where('SKU', $v[0]);
  3606. $this->db->where('warehouse', '5');
  3607. // 批量更新
  3608. $this->db->update('crowd_whlabel', $data);
  3609. }
  3610. /** 导入缺货
  3611. $time = time();
  3612. $whlabel = $this->whlabel->get_sku($v[0]);
  3613. if($whlabel)
  3614. {
  3615. $this->whlabel_qh->insert(array('sku'=>$whlabel['sku'],'features'=>$whlabel['features'],'num'=>$v['1'],'gtime'=>date('Ym',$time),'gxtime'=>date('Ymd',$time)));
  3616. }
  3617. else
  3618. {
  3619. $ed[] = $v['0'];
  3620. $j++;
  3621. }
  3622. }
  3623. **/
  3624. /**
  3625. 更换等级
  3626. $this->load->database();
  3627. // 设置更新数据
  3628. $data = ['type' => $wt[$v[1]]];
  3629. // 添加条件:SKU 为 123456 且 warehouse 为 5
  3630. $this->db->where('SKU', $v[0]);
  3631. $this->db->where('warehouse', '5');
  3632. // 批量更新
  3633. $this->db->update('crowd_whlabel', $data);
  3634. **/
  3635. /**
  3636. $whlabel_type = $this->whlabel_type->find_all();
  3637. foreach ($whlabel_type as $v)
  3638. {
  3639. $wt[$v['title']] = $v['id'];
  3640. }
  3641. foreach ($list as $v)
  3642. {
  3643. $w = $this->whlabel->find_all("sku = '".$v[0]."' and warehouse = 5");
  3644. if($w && isset($wt[$v[1]]))
  3645. {
  3646. foreach ($w as $val)
  3647. {
  3648. $this->whlabel->save(array('type'=>$wt[$v[1]]),$val['id']);
  3649. }
  3650. }
  3651. else
  3652. {
  3653. $ed[] = array($v[0],$v[1]);
  3654. $j++;
  3655. }
  3656. }
  3657. **/
  3658. if($e > 0)
  3659. {
  3660. $time = date('Ymd',time());
  3661. $title = '错误信息-'.$time;
  3662. $titlename = "<table border=1><tr><td>错误详情</td></tr></table>";
  3663. $tail = "\n";
  3664. $filename = $title.".xls";
  3665. @$ecl = $this->excel->get_fz3($ed,$titlename,$filename,$tail);
  3666. $dir = '/data/excel/'.$time.'/';
  3667. $file_name = 'error_'.$time.rand(1000,9999);
  3668. if(!is_dir('.'.$dir))mkdir('.'.$dir,0777);
  3669. $myfile = fopen(".".$dir.$file_name.".xls", "w") or die();
  3670. fwrite($myfile,$ecl);
  3671. fclose($myfile);
  3672. $error = $dir.$file_name.'.xls';
  3673. echo json_encode(array('msg'=>$j.'条异常,','error'=>$error,'success'=>true));exit;
  3674. }
  3675. else
  3676. {
  3677. echo json_encode(array('msg'=>'添加成功!'.$c,'success'=>true));exit;
  3678. }
  3679. }
  3680. else
  3681. {
  3682. echo json_encode(array('msg'=>'上传失败!','t'=>$this->upload->display_errors(),'success'=>false));exit;
  3683. }
  3684. }
  3685. public function _skuzh()
  3686. {
  3687. /* 订单加入键值-j */
  3688. $dir = '/data/excel/'.date('Ymd',time()).'/';
  3689. $config['upload_path'] = '.'.$dir ;
  3690. $config['file_name'] = date('Ymd_His_',time()).rand(1000,9999);
  3691. $config['allowed_types'] = 'xls|xlsx|csv';
  3692. $config['max_size'] = 10240;
  3693. $this->load->library('upload', $config);
  3694. $this->upload->initialize($config);
  3695. if ($this->upload->do_upload('userfile'))
  3696. {
  3697. $full_path = $dir.$this->upload->data('file_name');
  3698. $fileName = '.' . $full_path;
  3699. if (!file_exists($fileName))
  3700. {
  3701. echo json_encode(array('msg'=>"上传失败,请重试",'success'=>false));exit;
  3702. }
  3703. else
  3704. {
  3705. require_once "./data/excel/PHPExcel/IOFactory.php";
  3706. @$phpExcel = PHPExcel_IOFactory::load($fileName);// 载入当前文件
  3707. @$phpExcel->setActiveSheetIndex(0);// 设置为默认表
  3708. $sheetCount = $phpExcel->getSheetCount();// 获取表格数量
  3709. $row = $phpExcel->getActiveSheet()->getHighestRow();// 获取行数
  3710. $column = $phpExcel->getActiveSheet()->getHighestColumn();// 获取列数
  3711. ++$column;//如果列数大于26行
  3712. $list = array();
  3713. for ($i = 2; $i <= $row; $i++) // 行数循环
  3714. {
  3715. $data = array();
  3716. for ($c = 'A'; $c != $column; $c++) // 列数循环
  3717. {
  3718. $data[] = $phpExcel->getActiveSheet()->getCell($c . $i)->getValue();
  3719. }
  3720. $list[] = $data;
  3721. }
  3722. }
  3723. $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');
  3724. $dtc = array();
  3725. foreach ($dictionaries as $v)
  3726. {
  3727. if(stripos($v['spare'],'|') !== false)//如果有多个值
  3728. {
  3729. $v['spare'] = explode('|',$v['spare']);
  3730. foreach ($v['spare'] as $k=>$vs)
  3731. {
  3732. if(stripos($v['zh'],'|') !== false)
  3733. {
  3734. $vzh = explode('|',$v['zh']);
  3735. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$vzh[$k],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  3736. }
  3737. else
  3738. {
  3739. $dtc[strtolower($vs)] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$vs);
  3740. }
  3741. }
  3742. }
  3743. else
  3744. {
  3745. $dtc[strtolower($v['spare'])] = array('classid'=>$v['classid'],'zh'=>$v['zh'],'id'=>$v['id'],'jm'=>$v['jm'],'spare'=>$v['spare']);
  3746. }
  3747. }
  3748. $dictionaries2 = $this->typeclass->find_all();
  3749. foreach ($dictionaries2 as $v)
  3750. {
  3751. $dtctitle[$v['id']] = $v['title'];
  3752. }
  3753. /* 匹配结束 */
  3754. /* 价格加入 */
  3755. $money = array();
  3756. $productdescribe = $this->productdescribe->find_all('1=1');
  3757. foreach ($productdescribe as $v)
  3758. {
  3759. $money[$v['number']] = array();
  3760. }
  3761. /* 价格加入 */
  3762. /* 匹配ID加入 */
  3763. $int = array();
  3764. $intdata = $this->typeclass->find_all('classid=14','id,spare');
  3765. foreach ($intdata as $v)
  3766. {
  3767. $v['spare'] = explode('|',$v['spare']);
  3768. $int[$v['id']] = $v['spare'][0];
  3769. }
  3770. /* 匹配ID加入 */
  3771. $zjsku = array();
  3772. $shopsku = $this->shopsku->find_all();
  3773. foreach ($shopsku as $val)
  3774. {
  3775. $ss = explode(',',trim($val['shop'],','));
  3776. foreach ($ss as $v)
  3777. {
  3778. if(isset($zjsku[$v]))
  3779. {
  3780. $zjsku[$v] .= ','.trim($val['sku'],',');
  3781. }
  3782. else
  3783. {
  3784. $zjsku[$v] = trim($val['sku'],',');
  3785. }
  3786. }
  3787. }
  3788. /* 匹配ID结束 */
  3789. $q = '1;';
  3790. $is = $this->is->find_all('1=1','*','number asc');//获取仓库平匹配表
  3791. $shop = $this->shop->read(19);
  3792. if(isset($zjsku[$shop['id']]))//判断是否找到店铺SKU
  3793. {
  3794. $sku = rtrim($sku,',').','.$zjsku[$shop['id']];
  3795. }
  3796. $ed = array();
  3797. foreach ($list as $v)
  3798. {
  3799. $r = $this->api->matching(trim($q,';'),$v['2'],$dtc,$money,$int,$dtctitle,$shop);
  3800. $p = '';
  3801. $product = explode(';',trim($r['product'],';'));
  3802. if($r['title'] != '' && $product)
  3803. {
  3804. foreach ($product as $val)
  3805. {
  3806. $vc = explode('|',$val);
  3807. if(isset($vc[1]))
  3808. {
  3809. $p .= $vc[1].'<br>';
  3810. }
  3811. }
  3812. $r['title'] = str_replace(array('<','>'),array('&lt;','&gt;'),$r['title']);
  3813. $ed[] = array($v['0'],$v['1'],$r['title'],$v['3'],$v['4'],$v['5']);
  3814. }
  3815. else
  3816. {
  3817. $ed[] = array($v['0'],$v['1'],$v['2'].' SKU错误',$v['3'],$v['4'],$v['5']);
  3818. }
  3819. }
  3820. $time = date('Ymd',time());
  3821. $title = 'sku转换'.$time;
  3822. $titlename = "<table border=1><tr><td>退款日期</td><td>订单号</td><td>SKU</td><td退款金额</td><td退款情况具体描述</td><可用/不可用</td></tr></table>";
  3823. $tail = "\n";
  3824. $filename = $title.".xls";
  3825. @$ecl = $this->excel->get_fz3($ed,$titlename,$filename,$tail);
  3826. $dir = '/data/excel/'.$time.'/';
  3827. $file_name = 'sku转换 '.$time.rand(1000,9999);
  3828. if(!is_dir('.'.$dir))mkdir('.'.$dir,0777);
  3829. $myfile = fopen(".".$dir.$file_name.".xls", "w") or die();
  3830. fwrite($myfile,$ecl);
  3831. fclose($myfile);
  3832. $error = $dir.$file_name.'.xls';
  3833. echo json_encode(array('msg'=>'转换成功!','error'=>$error,'success'=>true));exit;
  3834. }
  3835. else
  3836. {
  3837. echo json_encode(array('msg'=>'上传失败!','t'=>$this->upload->display_errors(),'success'=>false));exit;
  3838. }
  3839. }
  3840. public function _xxpl_b()
  3841. {
  3842. $dataorder = array();$datashop = array();$dataex = array();$datack = array();
  3843. /* 订单加入键值-k */
  3844. $fdata = $this->fullordersmt->find_all('dtime >'.(time()-10*24*3600));
  3845. foreach ($fdata as $v)
  3846. {
  3847. $dataorder[$v['orderinfo']] = $v;
  3848. }
  3849. /* 订单加入键值-j */
  3850. $dir = '/data/excel/'.date('Ymd',time()).'/';
  3851. $config['upload_path'] = '.'.$dir ;
  3852. $config['file_name'] = date('Ymd_His_',time()).rand(1000,9999);
  3853. $config['allowed_types'] = 'xls|xlsx|csv';
  3854. $config['max_size'] = 10240;
  3855. $this->load->library('upload', $config);
  3856. $this->upload->initialize($config);
  3857. if ($this->upload->do_upload('userfile'))
  3858. {
  3859. $full_path = $dir.$this->upload->data('file_name');
  3860. $fileName = '.' . $full_path;
  3861. if (!file_exists($fileName))
  3862. {
  3863. echo json_encode(array('msg'=>"上传失败,请重试",'success'=>false));exit;
  3864. }
  3865. else
  3866. {
  3867. require_once "./data/excel/PHPExcel/IOFactory.php";
  3868. @$phpExcel = PHPExcel_IOFactory::load($fileName);// 载入当前文件
  3869. @$phpExcel->setActiveSheetIndex(0);// 设置为默认表
  3870. $sheetCount = $phpExcel->getSheetCount();// 获取表格数量
  3871. $row = $phpExcel->getActiveSheet()->getHighestRow();// 获取行数
  3872. $column = $phpExcel->getActiveSheet()->getHighestColumn();// 获取列数
  3873. ++$column;//如果列数大于26行
  3874. $list = array();
  3875. for ($i = 2; $i <= $row; $i++) // 行数循环
  3876. {
  3877. $data = array();
  3878. for ($c = 'A'; $c != $column; $c++) // 列数循环
  3879. {
  3880. $data[] = $phpExcel->getActiveSheet()->getCell($c . $i)->getValue();
  3881. }
  3882. $list[] = $data;
  3883. }
  3884. }
  3885. $i = 0;$j = 0;$ed = array();$time = time();
  3886. foreach ($list as $key=>$value)
  3887. {
  3888. $shop = $this->shop->get_shopname($value['2']);//通过店铺名称查找店铺
  3889. if(!$shop)
  3890. {
  3891. $ed[] = array($value['0'].'-无此店铺');
  3892. $i++;continue;
  3893. }
  3894. $post['buytime'] = strtotime($value['6']);//付款时间
  3895. $value['0'] = preg_replace('/\D/s','',$value['0']);
  3896. if($value['0'] && !isset($dataorder[$value['0']]))
  3897. {
  3898. $post['source'] = 2;//订单类型:1.线下订单2.PC3.手机
  3899. $post['state'] = 207;//订单状态:207等待发货
  3900. $post['review'] = 6;//审核状态:1.未送审2.待审核3.不通过4取消重审5.审核通过6.自动通过
  3901. $post['reviewtime'] = $time;//审核时间
  3902. $post['print'] = 2;//打印状态:1.不可打印2.未打印3.已打印
  3903. $post['library'] = 1;//出库状态:1.未出库2.已出库3.已退库
  3904. $post['libraryconfirm'] = 1;//出库确认:1.不允许2.允许
  3905. $post['dtime'] = $time;//订单时间
  3906. $post['capital'] = 3;//资金状态
  3907. $post['currency'] = 219;//币种
  3908. $post['currencytitle'] = 'USD';//币种名称
  3909. $post['freight'] = 0;//运费
  3910. $post['expressmoney'] = 0;//物流金额
  3911. $post['shouldmoney'] = 0;//应收金额
  3912. if($post['print'] != 3)
  3913. {
  3914. $post['librarynot'] = "订单未打印";//不能出库原因
  3915. }
  3916. $post['gtime'] = date('Ymd',$post['buytime']);//格式化时间
  3917. $num = $this->fullordersmt->find_count('gtime = "'.date('Ymd',$post['buytime']).'" and shop = "'.$shop['id'].'"','id');
  3918. $post['number'] = $shop['shortname'].'-'.substr(date('ymd',$post['buytime']),1).'-'.(substr(strval($num+1+1000),1,3));//编号
  3919. $post['user'] = $shop['shopuser'];//店铺负责人
  3920. $post['orderinfo'] = $value['0'];//订单号
  3921. $post['type'] = $value['7'];//发货仓库
  3922. $post['shop'] = $shop['id'];//店铺
  3923. $post['shouldmoney'] = $value['3'];//订单金额
  3924. $post['product'] = $value['4']?$value['4']:'';//商品名称
  3925. $post['pay'] = $value['5'];//付款方式
  3926. $post['paypal'] = $value['1']?$value['1']:'';//交易号
  3927. $post['orderremarks'] = $value['8']?$value['8']:'';//订单备注
  3928. $post['shipremarks'] = $value['9'];//仓库品名
  3929. $post['client'] = preg_replace('/( | | | |\s)/',' ',$value['10']);//公司名
  3930. $post['name'] = preg_replace('/( | | | |\s)/',' ',$value['11']);//收货人
  3931. $post['phone'] = $value['12'];//电话
  3932. $ct = $this->country->get_ename(preg_replace('/( | | | |\s)/',' ',$value['13']));//国家
  3933. if(!$ct)
  3934. {
  3935. $ed[] = array($value['0'].'-无此国家');
  3936. $i++;continue;
  3937. }
  3938. $post['country'] = $ct['id'];//国家
  3939. $post['al'] = $ct['lb'];//国家二字码
  3940. $post['province'] = $value['14'];//省、州
  3941. $post['city'] = $value['15'];//城市
  3942. $post['zipcode'] = $value['16'];//邮编
  3943. $post['address'] = $value['17'];//地址1
  3944. $post['address2'] = $value['18']?$value['18']:'';//地址2
  3945. $yga = $value['3'];$ygb = $shop['estimaterate'];
  3946. $post['budget'] = eval("return $yga*1.$ygb;");//预估到帐金额
  3947. $post['sbpm'] = $value['19'];//申报品名
  3948. $post['zwpm'] = $value['20'];//中文品名
  3949. $post['ts'] = $value['21'];//条数
  3950. $post['dtsbjz'] = $value['22'];//单条申报价
  3951. $post['zsbjz'] = $value['23'];//总申报价
  3952. $post['zzl'] = $value['24'];//总重量
  3953. $post['zjs'] = $value['25'];//总件数
  3954. $express = $this->express->get_servicename(preg_replace('/( | | | |\s)/',' ',$value['26']));
  3955. if(!$express)
  3956. {
  3957. $ed[] = array($value['0'].'-无此快递方式');
  3958. $i++;continue;
  3959. }
  3960. $post['express'] = $express['id'];//快递
  3961. $post['printtype'] = 1;//打印类型 1.运单.2.发货单
  3962. $post['fpdata'] = '';//购买产品内容
  3963. $this->fullordersmt->insert($post);
  3964. }
  3965. else
  3966. {
  3967. $ed[] = array($value['0'].'-单号错误或重复操作');
  3968. $i++;
  3969. }
  3970. sleep(2);//停留2秒
  3971. }
  3972. if($i+$j > 0)
  3973. {
  3974. $time = date('Ymd',time());
  3975. $title = '错误信息-'.$time;
  3976. $titlename = "<table border=1><tr><td>错误详情</td></tr></table>";
  3977. $tail = "\n";
  3978. $filename = $title.".xls";
  3979. @$ecl = $this->excel->get_fz3($ed,$titlename,$filename,$tail);
  3980. $dir = '/data/excel/'.$time.'/';
  3981. $file_name = 'error_'.$time.rand(1000,9999);
  3982. if(!is_dir('.'.$dir))mkdir('.'.$dir,0777);
  3983. $myfile = fopen(".".$dir.$file_name.".xls", "w") or die();
  3984. fwrite($myfile,$ecl);
  3985. fclose($myfile);
  3986. $error = $dir.$file_name.'.xls';
  3987. echo json_encode(array('msg'=>'添加成功,'.$i.'条异常,'.$j.'条失败','error'=>$error,'success'=>true));exit;
  3988. }
  3989. else
  3990. {
  3991. echo json_encode(array('msg'=>'添加成功!','error'=>1,'success'=>true));exit;
  3992. }
  3993. }
  3994. else
  3995. {
  3996. echo json_encode(array('msg'=>'上传失败!','t'=>$this->upload->display_errors(),'success'=>false));exit;
  3997. }
  3998. }
  3999. public function _scwd()
  4000. {
  4001. $dir = '/data/excel/'.date('Ymd',time()).'/';
  4002. $config['upload_path'] = '.'.$dir ;
  4003. $config['allowed_types'] = '*';
  4004. $config['max_size'] = 102400;
  4005. $this->load->library('upload', $config);
  4006. $this->upload->initialize($config);
  4007. if ($this->upload->do_upload('userfile'))
  4008. {
  4009. $full_path = $dir.$this->upload->data('file_name');
  4010. echo json_encode(array('msg'=>'成功!','wdurl'=>$full_path,'success'=>true));exit;
  4011. }
  4012. else
  4013. {
  4014. echo json_encode(array('msg'=>'上传失败!','t'=>$this->upload->display_errors(),'success'=>false));exit;
  4015. }
  4016. }
  4017. public function _jmexcel()
  4018. {
  4019. $setting = $this->setting->get_settings();
  4020. $excelpass = $setting['excelpass'];
  4021. $excelusernum = $setting['excelusernum'];
  4022. $exceljmnum = $setting['exceljmnum'];
  4023. $user = $this->user->get_api($_SESSION['api']);
  4024. if(!isset($user['exceltime']))
  4025. {
  4026. $this->session->sess_destroy();
  4027. header("Location:/");
  4028. }
  4029. $post = $this->input->post(NULL, TRUE);
  4030. if(isset($post['data']))
  4031. {
  4032. $data = $this->input->post('data',true);
  4033. $data = str_replace("\n",",",$data);;
  4034. $data = explode(',',trim($data,','));
  4035. $d = '';$i = 0;
  4036. foreach ($data as $v)
  4037. {
  4038. if($v == '')
  4039. {
  4040. continue;
  4041. }
  4042. $j = $this->setting->get_jmexcelpass($v);
  4043. if($j == '')
  4044. {
  4045. $j = $v.' 信息不正确';
  4046. }
  4047. $d .= $j."<br />";
  4048. $i++;
  4049. }
  4050. if($i > $exceljmnum)
  4051. {
  4052. echo json_encode(array('msg'=>'每次解密数量不可超出'.$exceljmnum.'条','success'=>false));exit;
  4053. }
  4054. if($user['exceltime'] != date('Ymd',time()))
  4055. {
  4056. $this->user->save(array('exceltime'=>date('Ymd',time()),'excelnum'=>1),$user['id']);
  4057. }
  4058. else
  4059. {
  4060. if($user['excelnum'] > $excelusernum)
  4061. {
  4062. echo json_encode(array('msg'=>'今日此账号解密次数已使用完毕','success'=>false));exit;
  4063. }
  4064. else
  4065. {
  4066. $this->user->save(array('excelnum'=>$user['excelnum']+1),$user['id']);
  4067. }
  4068. }
  4069. echo json_encode(array('msg'=>$d,'success'=>true));exit;
  4070. }
  4071. $this->data['excelpass'] = $excelpass;
  4072. $this->data['excelusernum'] = $excelusernum;
  4073. $this->data['exceljmnum'] = $exceljmnum;
  4074. $this->_Template('fullorderexcel_jmexcel',$this->data);
  4075. }
  4076. //管理
  4077. public function _classid()
  4078. {
  4079. $post = $this->input->post(NULL, TRUE);
  4080. if(isset($post['page']))
  4081. {
  4082. $page = $this->input->post('page',true);
  4083. $perpage = $this->input->post('perpage',true);
  4084. $type = $this->input->post('type',true);
  4085. $where = "1=1 ";
  4086. //数据排序
  4087. $order_str = "id asc";
  4088. if(empty($page))
  4089. {
  4090. $start = 0;
  4091. $perpage = 1;
  4092. }
  4093. else
  4094. {
  4095. $start = ($page - 1)*$perpage;
  4096. }
  4097. if($type)
  4098. {
  4099. $where .= " and type = '$type'";
  4100. }
  4101. //取得信息列表
  4102. $info_list = $this->fullorderexcelclassid->find_all($where,'id,title,type',$order_str,$start,$perpage);
  4103. $total = $this->fullorderexcelclassid->find_count($where);
  4104. $pagenum = ceil($total/$perpage);
  4105. $over = $total-($start+$perpage);
  4106. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  4107. echo json_encode($rows);exit;
  4108. }
  4109. $this->_Template('fullorderexcel_classid',$this->data);
  4110. }
  4111. //添加
  4112. public function _classidadd()
  4113. {
  4114. $post = $this->input->post(NULL, TRUE);
  4115. if(isset($post['title']))
  4116. {
  4117. if($this->fullorderexcelclassid->insert($post))
  4118. {
  4119. echo json_encode(array('msg'=>'添加成功','success'=>true));exit;
  4120. }
  4121. else
  4122. {
  4123. echo json_encode(array('msg'=>'添加失败,请重试','success'=>false));exit;
  4124. }
  4125. }
  4126. $this->_Template('fullorderexcel_classidadd',$this->data);
  4127. }
  4128. //修改
  4129. public function _classidedit($arg_array)
  4130. {
  4131. $post = $this->input->post(NULL, TRUE);
  4132. if(isset($post['id']))
  4133. {
  4134. $id = $this->input->post('id',true);
  4135. if($this->fullorderexcelclassid->save($post,$id))
  4136. {
  4137. echo json_encode(array('msg'=>'修改成功','success'=>true));exit;
  4138. }
  4139. else
  4140. {
  4141. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  4142. }
  4143. }
  4144. $arg_array = $arg_array[0];
  4145. $fullorderexcelclassid = $this->fullorderexcelclassid->read($arg_array);
  4146. $this->data['fullorderexcelclassid'] = $fullorderexcelclassid;
  4147. $this->_Template('fullorderexcel_classidedit',$this->data);
  4148. }
  4149. }