Systemfout.php 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687
  1. <?php defined('BASEPATH') OR exit('No direct script access allowed');
  2. header("Access-Control-Allow-Origin: *");
  3. class Systemfout extends Start_Controller {
  4. public function __construct(){
  5. parent::__construct();
  6. $this->load->library('session');
  7. $this->load->_model('Model_whlabel','whlabel');
  8. $this->load->_model('Model_warehouse','warehouse');
  9. $this->load->_model('Model_productprice','productprice');
  10. $this->load->_model('Model_excel','excel');
  11. $this->load->_model('Model_fullorder','fullorder');
  12. $this->load->_model('Model_fullordertt','fullordertt');
  13. $this->load->_model('Model_fullorderamz','fullorderamz');
  14. $this->load->_model('Model_fullordersmt','fullordersmt');
  15. $this->load->_model('Model_outbound','outbound');
  16. $this->load->_model('Model_express','express');
  17. $this->load->_model('Model_shop','shop');
  18. $this->load->_model('Model_typeclass','typeclass');
  19. $this->load->_model('Model_country','country');
  20. $this->load->_model('Model_kdniao','kdniao');
  21. $this->load->_model('Model_notice','notice');
  22. $this->load->_model('Model_dhl','dhl');
  23. $this->load->_model('Model_dhlhz','dhlhz');
  24. $this->load->_model('Model_usps','usps');
  25. $this->load->_model('Model_fedex','fedex');
  26. $this->load->_model('Model_fedex_cby','fedex_cby');
  27. $this->load->_model('Model_ups','ups');
  28. $this->load->_model('Model_ali','ali');
  29. $this->load->_model('Model_dpd','dpd');
  30. $this->load->_model('Model_shop','shop');
  31. $this->load->_model('Model_user','user');
  32. $this->load->_model('Model_whlabel','whlabel');
  33. $this->load->_model('Model_specialstock','specialstock');
  34. $this->load->_model('Model_ck','ck');
  35. $this->load->_model('Model_whlabellabel','whlabellabel');
  36. $this->load->_model('Model_apiyy','apiyy');
  37. $this->load->helper('url');
  38. $this->load->_model('Model_whlabel_fc','whlabel_fc');
  39. $this->load->_model('Model_systemtransfer','systemtransfer');
  40. $this->load->_model('Model_classid','classid');
  41. $this->load->_model('Model_allocation','allocation');
  42. $this->load->_model('Model_fullorderxw','fullorderxw');
  43. $this->load->_model('Model_fullorderpaypal','fullorderpaypal');
  44. $this->load->_model("Model_logic_ding","logic_ding");
  45. $this->load->_model("Model_fedexv1",'fedexv1');
  46. $this->load->_model("Model_zzquque_u9","zzquque_u9");
  47. $this->load->_model("Model_customsdeclaration","customsdeclaration");
  48. $this->load->_model("Model_check","check");
  49. $this->load->_model("Model_logic_express","logic_express");
  50. $this->load->_model('Model_outerrors','outerrors');
  51. $this->load->_model("Model_logic_u9tools","logic_u9tools");
  52. }
  53. //定义方法的调用规则 获取URI第二段值
  54. public function _remap($arg,$arg_array)
  55. {
  56. if($arg == 'fedexhz')
  57. {
  58. $this->_fedexhz();
  59. }
  60. else if($arg == 'fout')
  61. {
  62. $this->_fout($arg_array);
  63. }
  64. else if($arg == 'fouthb')//合并出库的
  65. {
  66. $this->_fouthb($arg_array);
  67. }
  68. else if($arg == 'excel')
  69. {
  70. $this->_excel($arg_array);
  71. }
  72. else if($arg == 'cpexcel')
  73. {
  74. $this->_cpexcel($arg_array);
  75. }
  76. else if($arg == 'orderyz')
  77. {
  78. $this->_orderyz();
  79. }
  80. else if($arg == 'hwyz')
  81. {
  82. $this->_hwyz();
  83. }
  84. else if($arg == 'outnumber')
  85. {
  86. $this->_outnumber();
  87. }
  88. else if($arg == 'hb')
  89. {
  90. $this->_hb();
  91. }
  92. else if($arg == 'indexmc'){
  93. $this->_indexmc();
  94. }
  95. else
  96. {
  97. $this->_index();
  98. }
  99. }
  100. public function _index()
  101. {
  102. $post = $this->input->post(NULL, TRUE);
  103. $xw = '';
  104. if(isset($_SESSION['api']))
  105. {
  106. $user = $this->user->get_api($_SESSION['api']);
  107. $usp = $user;
  108. $fgshop = "";$sid = "";$wid="";$wtype="";
  109. $usersp = explode('|',trim($user['shop'],'|'));
  110. $userwh = explode('|',trim($user['warehouse'],'|'));
  111. foreach ($usersp as $value)
  112. {
  113. $fgshop .= " shop = ".$value." or";
  114. $sid .= " id = ".$value." or";
  115. }
  116. foreach ($userwh as $value)
  117. {
  118. $wid .= " id = ".$value." or";
  119. $wtype .= " type = ".$value." or";
  120. }
  121. if($user['userid'] == 'xw')
  122. {
  123. $xw = 1;
  124. }
  125. }
  126. if(isset($post['page']))
  127. {
  128. $page = $this->input->post('page',true);
  129. $perpage = $this->input->post('perpage',true);
  130. $timetk = $this->input->post('timetk',true);
  131. $timetj = $this->input->post('timetj',true);
  132. $shop = $this->input->post('shop',true);
  133. $source = $this->input->post('source',true);
  134. $orderinfo = $this->input->post('orderinfo',true);
  135. $number = $this->input->post('number',true);
  136. $library = $this->input->post('library',true);
  137. $waybill = $this->input->post('waybill',true);
  138. $express = $this->input->post('express',true);
  139. $type = $this->input->post('type',true);
  140. $lowe = $this->input->post('lowe',true);
  141. $so = $this->input->post('so',true);
  142. $is_jiaji = $this->input->post('is_jiaji',true);
  143. $librarytime = $this->input->post('librarytime',true);
  144. $timetk = strtotime($timetk);
  145. $timetj = strtotime($timetj);
  146. $cxtime = 'id';
  147. $where = "library!=3 and libraryconfirm=2 and print = 3 and (".rtrim($wtype,'or').")";
  148. if($timetk && $timetj && $library == 1)
  149. {
  150. $tmp_timetj = time();
  151. //$cxtime = 'reviewtime';
  152. $where .= " and printtime > '$timetk - 180*24*3600' and printtime < '$tmp_timetj '";
  153. $where .= " and state != 217";
  154. }
  155. else if($timetk && $timetj && $library == 2)
  156. {
  157. $cxtime = 'librarytime';
  158. $where .= " and librarytime > '$timetk' and librarytime < '$timetj'";
  159. }
  160. if($shop)
  161. {
  162. $where .= " and shop = '$shop'";
  163. }
  164. if($number)
  165. {
  166. $where .= " and number = '$number'";
  167. }
  168. if($library)
  169. {
  170. $where .= " and library = '$library'";
  171. }
  172. if($waybill)
  173. {
  174. $where .= " and waybill = '$waybill'";
  175. }
  176. if($express)
  177. {
  178. $where .= " and express = '$express'";
  179. }
  180. if($orderinfo)
  181. {
  182. $where .= " and orderinfo = '$orderinfo'";
  183. }
  184. if($type)
  185. {
  186. $where .= " and type = '$type'";
  187. }
  188. if($lowe)
  189. {
  190. $where .= " and shipremarks like '%$lowe%'";
  191. }
  192. if($so)
  193. {
  194. $where .= " and shipremarks like '%$so%'";
  195. }
  196. if($is_jiaji >-1){
  197. $where .= " and is_jiaji = ".$is_jiaji." ";
  198. }
  199. //数据排序
  200. $order_str = $cxtime." desc";
  201. if(empty($page))
  202. {
  203. $start = 0;
  204. $perpage = 1;
  205. }
  206. else
  207. {
  208. $start = ($page - 1)*$perpage;
  209. }
  210. //取得信息列表
  211. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  212. //格式化数据
  213. foreach ($info_list as $key=>$value)
  214. {
  215. $shop = $this->shop->read($value['shop']);
  216. $info_list[$key]['shop'] = $shop['shopname'];
  217. if($value['waybill'] == '0')
  218. {
  219. $info_list[$key]['waybill'] = "";
  220. }
  221. $express = $this->express->read($value['express']);
  222. $info_list[$key]['express'] = $express['servicename'];
  223. $warehouse = $this->warehouse->read($value['type']);
  224. $info_list[$key]['type'] = $warehouse['title'];
  225. if($value['print'] == 1)
  226. {
  227. $info_list[$key]['print'] = '不可打印';
  228. }
  229. else if($value['print'] == 2)
  230. {
  231. $info_list[$key]['print'] = '未打印';
  232. }
  233. else if($value['print'] == 3)
  234. {
  235. $info_list[$key]['print'] = '已打印';
  236. }
  237. if($value['library'] == 1)
  238. {
  239. $info_list[$key]['library'] = '<em class="c">未出库</em>';
  240. }
  241. else if($value['library'] == 2)
  242. {
  243. $info_list[$key]['library'] = '<em class="c">已出库</em>';
  244. }
  245. else if($value['library'] == 3)
  246. {
  247. $info_list[$key]['library'] = '<em class="c">已退库</em>';
  248. }
  249. if($value['librarytime'] == '0')
  250. {
  251. $info_list[$key]['librarytime'] = '<em class="t"></em>';
  252. }
  253. else
  254. {
  255. $info_list[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i',$value['librarytime']).'</em>';
  256. }
  257. $info_list[$key]['shipremarks'] = str_replace(array('<','>'),array('&lt;','&gt;'),$value['shipremarks']);
  258. }
  259. $info_listtt = $this->fullordertt->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  260. //格式化数据
  261. foreach ($info_listtt as $key=>$value)
  262. {
  263. $shop = $this->shop->read($value['shop']);
  264. $info_listtt[$key]['shop'] = $shop['shopname'];
  265. if($value['waybill'] == '0')
  266. {
  267. $info_listtt[$key]['waybill'] = "";
  268. }
  269. $express = $this->express->read($value['express']);
  270. $info_listtt[$key]['express'] = $express['servicename'];
  271. $warehouse = $this->warehouse->read($value['type']);
  272. $info_listtt[$key]['type'] = $warehouse['title'];
  273. if($value['print'] == 1)
  274. {
  275. $info_listtt[$key]['print'] = '不可打印';
  276. }
  277. else if($value['print'] == 2)
  278. {
  279. $info_listtt[$key]['print'] = '未打印';
  280. }
  281. else if($value['print'] == 3)
  282. {
  283. $info_listtt[$key]['print'] = '已打印';
  284. }
  285. if($value['library'] == 1)
  286. {
  287. $info_listtt[$key]['library'] = '<em class="c">未出库</em>';
  288. }
  289. else if($value['library'] == 2)
  290. {
  291. $info_listtt[$key]['library'] = '<em class="c">已出库</em>';
  292. }
  293. else if($value['library'] == 3)
  294. {
  295. $info_listtt[$key]['library'] = '<em class="c">已退库</em>';
  296. }
  297. if($value['librarytime'] == '0')
  298. {
  299. $info_listtt[$key]['librarytime'] = '<em class="t"></em>';
  300. }
  301. else
  302. {
  303. $info_listtt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  304. }
  305. }
  306. $info_listamz = $this->fullorderamz->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  307. //格式化数据
  308. foreach ($info_listamz as $key=>$value)
  309. {
  310. $shop = $this->shop->read($value['shop']);
  311. $info_listamz[$key]['shop'] = $shop['shopname'];
  312. if($value['waybill'] == '0')
  313. {
  314. $info_listamz[$key]['waybill'] = "";
  315. }
  316. $express = $this->express->read($value['express']);
  317. $info_listamz[$key]['express'] = $express['servicename'];
  318. $warehouse = $this->warehouse->read($value['type']);
  319. $info_listamz[$key]['type'] = $warehouse['title'];
  320. if($value['print'] == 1)
  321. {
  322. $info_listamz[$key]['print'] = '不可打印';
  323. }
  324. else if($value['print'] == 2)
  325. {
  326. $info_listamz[$key]['print'] = '未打印';
  327. }
  328. else if($value['print'] == 3)
  329. {
  330. $info_listamz[$key]['print'] = '已打印';
  331. }
  332. if($value['library'] == 1)
  333. {
  334. $info_listamz[$key]['library'] = '<em class="c">未出库</em>';
  335. }
  336. else if($value['library'] == 2)
  337. {
  338. $info_listamz[$key]['library'] = '<em class="c">已出库</em>';
  339. }
  340. else if($value['library'] == 3)
  341. {
  342. $info_listamz[$key]['library'] = '<em class="c">已退库</em>';
  343. }
  344. if($value['librarytime'] == '0')
  345. {
  346. $info_listamz[$key]['librarytime'] = '<em class="t"></em>';
  347. }
  348. else
  349. {
  350. $info_listamz[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  351. }
  352. }
  353. $info_listxw = $this->fullorderxw->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  354. //格式化数据
  355. foreach ($info_listxw as $key=>$value)
  356. {
  357. $shop = $this->shop->read($value['shop']);
  358. $info_listxw[$key]['shop'] = $shop['shopname'];
  359. if($value['waybill'] == '0')
  360. {
  361. $info_listxw[$key]['waybill'] = "";
  362. }
  363. $express = $this->express->read($value['express']);
  364. $info_listxw[$key]['express'] = $express['servicename'];
  365. $warehouse = $this->warehouse->read($value['type']);
  366. $info_listxw[$key]['type'] = $warehouse['title'];
  367. if($value['print'] == 1)
  368. {
  369. $info_listxw[$key]['print'] = '不可打印';
  370. }
  371. else if($value['print'] == 2)
  372. {
  373. $info_listxw[$key]['print'] = '未打印';
  374. }
  375. else if($value['print'] == 3)
  376. {
  377. $info_listxw[$key]['print'] = '已打印';
  378. }
  379. if($value['library'] == 1)
  380. {
  381. $info_listxw[$key]['library'] = '<em class="c">未出库</em>';
  382. }
  383. else if($value['library'] == 2)
  384. {
  385. $info_listxw[$key]['library'] = '<em class="c">已出库</em>';
  386. }
  387. else if($value['library'] == 3)
  388. {
  389. $info_listxw[$key]['library'] = '<em class="c">已退库</em>';
  390. }
  391. if($value['librarytime'] == '0')
  392. {
  393. $info_listxw[$key]['librarytime'] = '<em class="t"></em>';
  394. }
  395. else
  396. {
  397. $info_listxw[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  398. }
  399. }
  400. $info_listsmt = $this->fullordersmt->find_all($where." and mergeid = '0'",'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  401. //格式化数据
  402. foreach ($info_listsmt as $key=>$value)
  403. {
  404. $shop = $this->shop->read($value['shop']);
  405. $info_listsmt[$key]['shop'] = $shop['shopname'];
  406. if($value['waybill'] == '0')
  407. {
  408. $info_listsmt[$key]['waybill'] = "";
  409. }
  410. $express = $this->express->read($value['express']);
  411. $info_listsmt[$key]['express'] = $express['servicename'];
  412. $warehouse = $this->warehouse->read($value['type']);
  413. $info_listsmt[$key]['type'] = $warehouse['title'];
  414. if($value['print'] == 1)
  415. {
  416. $info_listsmt[$key]['print'] = '不可打印';
  417. }
  418. else if($value['print'] == 2)
  419. {
  420. $info_listsmt[$key]['print'] = '未打印';
  421. }
  422. else if($value['print'] == 3)
  423. {
  424. $info_listsmt[$key]['print'] = '已打印';
  425. }
  426. if($value['library'] == 1)
  427. {
  428. $info_listsmt[$key]['library'] = '<em class="c">未出库</em>';
  429. }
  430. else if($value['library'] == 2)
  431. {
  432. $info_listsmt[$key]['library'] = '<em class="c">已出库</em>';
  433. }
  434. else if($value['library'] == 3)
  435. {
  436. $info_listsmt[$key]['library'] = '<em class="c">已退库</em>';
  437. }
  438. if($value['librarytime'] == '0')
  439. {
  440. $info_listsmt[$key]['librarytime'] = '<em class="t"></em>';
  441. }
  442. else
  443. {
  444. $info_listsmt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  445. }
  446. }
  447. $total = $this->fullorder->find_count($where);
  448. $total += $this->fullordertt->find_count($where);
  449. $total += $this->fullorderamz->find_count($where);
  450. $total += $this->fullorderxw->find_count($where);
  451. $total += $this->fullordersmt->find_count($where);
  452. $pagenum = ceil($total/$perpage);
  453. $over = $total-($start+$perpage);
  454. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>(array_merge($info_list,$info_listamz,$info_listtt,$info_listxw,$info_listsmt)));
  455. echo json_encode($rows);exit;
  456. }
  457. if(isset($_SESSION['api']))
  458. {
  459. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  460. $warehouse = $this->warehouse->find_all('1=1 and '.rtrim($wid,'or'),"*","px asc");
  461. $this->data['wlshop'] = $wlshop;
  462. $this->data['warehouse'] = $warehouse;
  463. }
  464. $this->data['xw'] = $xw;
  465. $this->_Template('systemfout',$this->data);
  466. }
  467. public function _indexmc()
  468. {
  469. $post = $this->input->post(NULL, TRUE);
  470. $xw = '';
  471. if(isset($_SESSION['api']))
  472. {
  473. $user = $this->user->get_api($_SESSION['api']);
  474. $usp = $user;
  475. $fgshop = "";$sid = "";$wid="";$wtype="";
  476. $usersp = explode('|',trim($user['shop'],'|'));
  477. $userwh = explode('|',trim($user['warehouse'],'|'));
  478. foreach ($usersp as $value)
  479. {
  480. $fgshop .= " shop = ".$value." or";
  481. $sid .= " id = ".$value." or";
  482. }
  483. foreach ($userwh as $value)
  484. {
  485. $wid .= " id = ".$value." or";
  486. $wtype .= " type = ".$value." or";
  487. }
  488. if($user['userid'] == 'xw')
  489. {
  490. $xw = 1;
  491. }
  492. }
  493. if(isset($_SESSION['api']))
  494. {
  495. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  496. $warehouse = $this->warehouse->find_all('1=1 and '.rtrim($wid,'or'),"*","px asc");
  497. $this->data['wlshop'] = $wlshop;
  498. $this->data['warehouse'] = $warehouse;
  499. }else{
  500. //未登录不允许访问
  501. header("location:/");
  502. exit;
  503. }
  504. $this->data['xw'] = $xw;
  505. $this->_Template('systemfoutmc',$this->data);
  506. }
  507. public function _fout()
  508. {
  509. $post = $this->input->post(NULL, TRUE);
  510. if(isset($post['order']))
  511. {
  512. $time = time();
  513. $order = $this->input->post('order',true);
  514. $weight = $this->input->post('weight',true);
  515. if(!isset($weight))//测试没问题后可以删
  516. {
  517. $weight = '';
  518. }
  519. if(substr($order,0,3) == '788' && substr($order,-4,4) == '0430')//Fedex联邦
  520. {
  521. $order = substr($order,0,12);
  522. }
  523. if(strlen($order) == '34')//联邦杭州超长运单截取
  524. {
  525. $str = substr($order, 0,3);
  526. if($str == "420"){
  527. $order = substr($order,12);
  528. }else{
  529. $order = substr($order,22,12);
  530. }
  531. }
  532. if(!$order)
  533. {
  534. echo json_encode(array('msg'=>'出库信息不能为空!','success'=>false));exit;
  535. }
  536. if(strlen($order) == 30)
  537. {
  538. $order = substr($order, 8);
  539. }
  540. $fullorder_name = 'fullorder';$outtype = 1;
  541. $y = $this->fullorder->get_waybill($order);
  542. // $this->logic_ding->sendToDing("排查五次数据的原有".$order);
  543. // $this->logic_ding->sendToDing("排查五次数据的订单".json_encode($y));
  544. if(!$y)
  545. {
  546. $y = $this->fullorder->get_number($order);
  547. $outtype = 2;
  548. // $this->logic_ding->sendToDing("排查五次数据的原有".$order);
  549. // $this->logic_ding->sendToDing("排查五次数据的订单".json_encode($y));
  550. if(!$y)
  551. {
  552. $fullorder_name = 'fullordersmt';$outtype = 1;
  553. $y = $this->fullordersmt->get_waybill($order);
  554. if(!$y)
  555. {
  556. $y = $this->fullordersmt->get_number($order);
  557. $outtype = 2;
  558. if(!$y)
  559. {
  560. $fullorder_name = 'fullordertt';$outtype = 1;
  561. $y = $this->fullordertt->get_waybill($order);
  562. if(!$y)
  563. {
  564. $y = $this->fullordertt->get_number($order);
  565. $outtype = 2;
  566. if(!$y)
  567. {
  568. $fullorder_name = 'fullorderamz';$outtype = 1;
  569. $y = $this->fullorderamz->get_waybill($order);
  570. if(!$y)
  571. {
  572. $y = $this->fullorderamz->get_number($order);
  573. $outtype = 2;
  574. if(!$y){
  575. $fullorder_name = 'fullorderxw';$outtype = 1;
  576. $y = $this->fullorderxw->get_waybill($order);
  577. if(!$y)
  578. {
  579. $y = $this->fullorderxw->get_number($order);
  580. $outtype = 2;
  581. if(!$y)
  582. {
  583. $this->logic_ding->sendToDing("排查五次数据的原有".$order);
  584. echo json_encode(array('msg'=>'无此数据','success'=>false));exit;
  585. }
  586. }
  587. }
  588. }
  589. }
  590. }
  591. }
  592. }
  593. }
  594. }
  595. if($y['mergeid'] == '1')
  596. {
  597. $y = $this->$fullorder_name->read($y['merge']);
  598. }
  599. //云尚-FedEx普货专线 如果出库时打印的快递面单超过6天,不允许出库
  600. // if($y['express'] == 75 ){
  601. // $printtime = $y['printtime'];
  602. // $set_time = 24 * 60 * 60 * 6;
  603. // $time = time();
  604. // if(($time - $set_time) > $printtime){
  605. // //允许出库状态
  606. // if($y['libraryconfirm'] == 2){
  607. // echo json_encode(array('msg'=>"该单超时,请重新打印后再出库。".$y['number'],'success'=>false));exit;
  608. // }else{
  609. // echo json_encode(array('msg'=>"该单超时且禁止出库,请联系梦体做后续处理!".$y['number'],'success'=>false));exit;
  610. // }
  611. // }
  612. // }
  613. // 66 云途(欧洲) 67 云途(欧洲)-带保险 如果是欧洲云途 需要检擦出库时间是否超过15天
  614. if(in_array($y['express'],[66,67,82])){
  615. if((time() - $y['printtime']) >= (14*24*3600)){
  616. echo json_encode(array('msg'=>'运单超时!请联系梦体处理!','success'=>false));exit;
  617. }
  618. }
  619. // 78 dpd英国 和 79dpd欧盟
  620. if(in_array($y['express'],[78,79,84])){
  621. $r = $this->check->checkOverdue($y['name'],$y['number'],$y['address']);
  622. if(!$r){
  623. echo json_encode(array('msg'=>'同一个客户3天内发货超过2包,不可出库!请联系店员做申报信息修改!'.$y['name']."-".$y['number']."-".$r*1,'success'=>false));exit;
  624. }
  625. }
  626. $express = $this->express->read($y['express']);
  627. if($y['state'] == 216 && $fullorder_name == 'fullordersmt')
  628. {
  629. $y['librarynot'] = '客户已取消!';
  630. }
  631. if($y['print'] != 3 || $y['libraryconfirm'] == 1 || $y['state'] == 214 || $y['state'] == 217 || $y['state'] == 283 || $y['state'] == 206 || $y['state'] == 205 || $y['state'] == 204 || $y['state'] == 210 || $y['state'] == 211 || $y['state'] == 212 || ($y['state'] == 216 && $fullorder_name == 'fullordersmt'))//独立站216先关了
  632. {
  633. echo json_encode(array('msg'=>'禁止出库!'.$y['librarynot'],'success'=>false));exit;
  634. }
  635. if($y['library'] > 1)
  636. {
  637. echo json_encode(array('msg'=>'此数据 '.date('Y-m-d H:i:s',$y['librarytime']).' 已操作','success'=>false));exit;
  638. }
  639. if($express['out'] != 3)
  640. {
  641. if($express['out'] != $outtype)
  642. {
  643. $smlx = ($express['out']=='1')?'运单':'发货单';
  644. echo json_encode(array('msg'=>'扫描类型错误!此单需要扫描'.$smlx,'success'=>false));exit;
  645. }
  646. }
  647. if($y['type'] != 7 && $y['waybill'] != '' && $y['printtype'] == '1')
  648. {
  649. // $y['waybill'] = trim($y['waybill'],' ');
  650. // if(strlen($y['waybill']) == 12 && $y['express'] != 24 && $y['express'] != 31 && $y['express'] != 38 && $y['express'] != 41 && $y['express'] != 6 && $y['express'] != 43 && $y['express'] != 48 && $y['express'] != 50 && $y['express'] != 51 && $y['express'] != 63 && $y['express'] != 70 && $y['express'] != 71 && $y['express'] != 73 && $y['express'] != 74 && $y['express'] != 75 && $y['express'] != 78 && $y['express'] != 79 && $y['express'] != 83 && $y['express'] != 85)
  651. // {
  652. // echo json_encode(array('msg'=>'出库物流和系统不匹配,请联系梦体解决'.$y['express'].'-1','success'=>false));exit;
  653. // }
  654. // else if(strlen($y['waybill']) == 10 && $y['express'] != 1 && $y['express'] != 37 && $y['express'] != 49 && $y['express'] != 42 && $y['express'] != 69 && $y['express'] != 78 && $y['express'] != 79 && $y['express'] != 83 && $y['express'] != 85)
  655. // {
  656. // echo json_encode(array('msg'=>'出库物流和系统不匹配,请联系梦体解决'.$y['express'].'-2','success'=>false));exit;
  657. // }
  658. // else if(strlen($y['waybill']) == 18 && $y['express'] != 3 && $y['express'] != 66 && $y['express'] != 67 && $y['express'] != 72 && $y['express'] != 2 && $y['express'] != 82 && $y['express'] != 83 && $y['express'] != 85)
  659. // {
  660. // echo json_encode(array('msg'=>'出库物流和系统不匹配,请联系梦体解决'.$y['express'].'-3','success'=>false));exit;
  661. // }
  662. // else if(strlen($y['waybill']) == 16 && $y['express'] != 76 && $y['express'] != 77 && $y['express'] != 80 && $y['express'] != 83 && $y['express'] != 85)
  663. // {
  664. // echo json_encode(array('msg'=>'出库物流和系统不匹配,请联系梦体解决'.$y['express'].'-4','success'=>false));exit;
  665. // }
  666. $r = $this->logic_express->ydCheckById($y['waybill'],$y['express']);
  667. if(!$r){
  668. echo json_encode(array('msg'=>'出库物流和系统不匹配,请联系梦体解决'.$y['express'],'success'=>false));exit;
  669. }
  670. }
  671. if(stripos($weight,',') !== false){
  672. $tmp_arr = explode(",",$weight);
  673. $weight = end($tmp_arr);
  674. $numweight = (float)$weight;
  675. $weight = $numweight."kg";
  676. }
  677. $numweight = str_replace('kg','',$weight);
  678. // if(($y['express'] == '24' || $y['express'] == '3' || $y['express'] == '28' || $y['express'] == '33' || $y['express'] == '42') && $y['type'] != 6)//杭州除外
  679. // {
  680. // if($weight == '' || $numweight < '0.1' || !is_numeric($numweight))
  681. // {
  682. // echo json_encode(array('msg'=>'此单需要称重!','success'=>false));exit;
  683. // }
  684. // $yzweight = explode('.',$numweight);
  685. // if($yzweight[0] == '')
  686. // {
  687. // echo json_encode(array('msg'=>'重量错误,请重新称重!','success'=>false));exit;
  688. // }
  689. // if($numweight < ($y['jweight']/1000))
  690. // {
  691. // echo json_encode(array('msg'=>'重量小于净重,请重新称重!','success'=>false));exit;
  692. // }
  693. // if($numweight -($y['jweight']/1000) > 0.9 && $y['number'] != 'QQS-30401-002')
  694. // {
  695. // echo json_encode(array('msg'=>'称重重量和净重相差过大,请找成会或梦体处理!','success'=>false));exit;
  696. // }
  697. // if($numweight > '0.98' && $y['express'] == '3')
  698. // {
  699. // echo json_encode(array('msg'=>'UPS大于0.98公斤需要拆包!','success'=>false));exit;
  700. // }
  701. // if($numweight > '2' && $y['express'] == '37')
  702. // {
  703. // echo json_encode(array('msg'=>'杭州DHL大于2公斤需要联系店员!','success'=>false));exit;
  704. // }
  705. // if($numweight >= '10' && ($y['express'] == '24' || $y['express'] == '31'))
  706. // {
  707. // echo json_encode(array('msg'=>'联邦不能大于10公斤!','success'=>false));exit;
  708. // }
  709. // }
  710. //根据要求 USPS-USA 2 FEDEX-US2 63 USPS-US2 64 这三个快递方式除外的所有快递都需要称重再发货 或者说是【国内发货】的都需要称重
  711. //还有翔文仓库的 不执行
  712. //源代码是
  713. //所有快递必须称重
  714. //所有快递必须称重 翔文除外
  715. //$this->logic_ding->sendToDing("检测订单".$y['number']."称重".$numweight."快递公司".$y['express']."-".$weight."[".$numweight."]");
  716. if(!in_array($y['express'],[2,8,39,43,44,45,47,48,49,55,61,63,64,65,74,81,83,85])){
  717. if($weight == '' || $numweight < '0.1' || !is_numeric($numweight))
  718. {
  719. echo json_encode(array('msg'=>'此单需要称重!','success'=>false));exit;
  720. }
  721. $yzweight = explode('.',$numweight);
  722. if($yzweight[0] == '')
  723. {
  724. echo json_encode(array('msg'=>'重量错误,请重新称重!','success'=>false));exit;
  725. }
  726. if(empty($numweight)){
  727. echo json_encode(array('msg'=>'此单需要称重2!','success'=>false));exit;
  728. }
  729. //$this->logic_ding->sendToDing("检测订单---------------------标记需要认证的东西".$y['number']);
  730. }
  731. //$this->logic_ding->sendToDing("检测订单".$y['number']."称重".$numweight."快递公司".$y['express']);
  732. $express_info = $this->express->read($y['express']);
  733. if(empty($express_info)){
  734. echo json_encode(array('msg'=>'该快递信息异常,请联系技术!','success'=>false));exit;
  735. }
  736. $weight_limit = $express_info['weight_limit']*1;
  737. if($weight_limit > 0 && $y['type'] != 5){
  738. $yzweight = explode('.',$numweight);
  739. if($yzweight[0] == '')
  740. {
  741. echo json_encode(array('msg'=>'重量错误,请重新称重!','success'=>false));exit;
  742. }
  743. if($numweight < ($y['jweight']/1000)){
  744. echo json_encode(array('msg'=>'重量小于净重,请重新称重!','success'=>false));exit;
  745. }
  746. //Fedex(杭州),UPS,DHL官方-美国 需要判断实际重量和净重差 其他快递不需要
  747. if(in_array($y['express'],[3,24,42])){
  748. //规定实际重量不允许超过 净重为1kg
  749. if($numweight -($y['jweight']/1000) > 1 )
  750. {
  751. echo json_encode(array('msg'=>'称重重量和净重相差过大,请找成会处理!','success'=>false));exit;
  752. }
  753. }
  754. if($weight_limit < $numweight){
  755. echo json_encode(array('msg'=>$express['servicename'].'大于'.$weight_limit.'公斤需要拆包!','success'=>false));exit;
  756. }
  757. }
  758. if(((time() - $y['printtime']) > (15*24*3600) || $y['printtime'] < 1590211800) && $y['express'] == '24' && $y['type'] != 6)//杭州店铺除外
  759. {
  760. //echo json_encode(array('yd'=>1,'id'=>$y['id'],'express'=>$y['express'],'name'=>$fullorder_name,'success'=>true));exit;
  761. }
  762. if((time() - $y['printtime']) > (6*24*3600) && $y['express'] == '3' && $y['type'] != 6)//杭州店铺除外
  763. {
  764. //echo json_encode(array('yd'=>1,'id'=>$y['id'],'express'=>$y['express'],'name'=>$fullorder_name,'success'=>true));exit;
  765. echo json_encode(array('msg'=>'此运单过期无法出库,请联系成会处理!','success'=>false));exit;
  766. }
  767. if((time() - $y['printtime']) > (7*24*3600) && $y['express'] == '37' && $y['type'] != 6)//杭州店铺除外
  768. {
  769. //echo json_encode(array('yd'=>1,'id'=>$y['id'],'express'=>$y['express'],'name'=>$fullorder_name,'success'=>true));exit;
  770. }
  771. $this->db->trans_begin();
  772. $warehouse = $this->warehouse->read($y['type']);
  773. $bdck = $warehouse['bdck'];
  774. if($warehouse['zd'] == '1')
  775. {
  776. if($warehouse['bdck'] == '')
  777. {
  778. $this->db->trans_rollback();
  779. echo json_encode(array('msg'=>'仓库设置错误!','success'=>false));exit;
  780. }
  781. $wh = $this->_fout_db($y,$warehouse,$bdck);
  782. if($wh['fh'] == 2)
  783. {
  784. $kcyz = $this->ck->get_kc($y['state'],$warehouse,$y['shop'],$y['number'],$y['whlabel'],$y['fpdata']);
  785. if($kcyz['t'] == '0')
  786. {
  787. if($kcyz['fpdata'] != '')
  788. {
  789. $x['whlabel'] = $kcyz['whlabel'];
  790. $x['fpdata'] = $kcyz['fpdata'];
  791. $y['whlabel'] = $x['whlabel'];
  792. $this->$fullorder_name->save($x,$y['id']);
  793. }
  794. }
  795. $wh = $this->_fout_db($y,$warehouse,$bdck);
  796. if($wh['fh'] == 2)
  797. {
  798. $this->db->trans_rollback();
  799. echo json_encode(array('msg'=>'库存占用量与实际出库量不符!','success'=>false));exit;
  800. }
  801. }
  802. foreach ($wh['sj'] as $v)
  803. {
  804. $this->$bdck->save(array('state'=>1,'cktype'=>1,'orderinfo'=>$y['orderinfo'],'waybill'=>$y['waybill'],'outk'=>$time,'time'=>$time),$v['id']);
  805. }
  806. }
  807. /**
  808. if($warehouse['zd'] == '1' && stripos($y['whlabel'],'z|') === false)
  809. {
  810. $whlabel = $this->whlabel->find_all("zd = '".$y['number']."' and warehouse = '".$y['type']."' and (state = '0' or state = '9')");
  811. $cpsl = 0;
  812. $pp = explode('|',trim($y['whlabel'],'|'));
  813. foreach ($pp as $va)
  814. {
  815. $num = explode('-',$va);
  816. $cpsl += $num[1];
  817. }
  818. if(count($whlabel) != $cpsl)
  819. {
  820. echo json_encode(array('msg'=>'库存占用量与实际出库量不符','success'=>false));exit;
  821. }
  822. foreach ($whlabel as $v)
  823. {
  824. $this->whlabel->save(array('state'=>1,'orderinfo'=>$y['orderinfo'],'waybill'=>$y['waybill'],'outk'=>$time,'time'=>$time),$v['id']);
  825. }
  826. }
  827. if($warehouse['zd'] == '1' && stripos($y['whlabel'],'z|') !== false)
  828. {
  829. $wh = $this->specialstock->find_all("zd = '".$y['number']."' and state = '0'");
  830. $cpsl = 0;
  831. $pp = explode('|',trim($y['whlabel'],'|'));
  832. foreach ($pp as $va)
  833. {
  834. $num = explode('-',$va);
  835. if(stripos($num[2],'z') !== false)//如果是特殊库存
  836. {
  837. $cpsl += $num[1];
  838. }
  839. }
  840. if(count($wh) != $cpsl)
  841. {
  842. echo json_encode(array('msg'=>'库存占用量与实际出库量不符','success'=>false));exit;
  843. }
  844. foreach ($wh as $v)
  845. {
  846. if(!$this->specialstock->save(array('state'=>1,'orderinfo'=>$y['orderinfo'],'waybill'=>$y['waybill'],'outk'=>$time,'time'=>$time),$v['id']))
  847. {
  848. echo json_encode(array('msg'=>'出库失败,请重试','success'=>false));exit;
  849. }
  850. }
  851. }
  852. **/
  853. /**
  854. if($y['dbapi'] == 99 && $y['scapi'] == 99)
  855. {
  856. $d = $this->apiyy->get_chd($y);
  857. if($d['Data'][0]['m_isSucess'] != 1)
  858. {
  859. echo json_encode(array('msg'=>'用友出库失败:'.$d['Data'][0]['m_errorMsg'],'success'=>false));exit;
  860. }
  861. }
  862. $systemtransfer = $this->systemtransfer->find_all("number = '".$y['number']."'");
  863. if(isset($systemtransfer[0]))
  864. {
  865. foreach ($systemtransfer as $v)
  866. {
  867. if($v['dbapi'] != 99)
  868. {
  869. echo json_encode(array('msg'=>'此订单货物:'.$v['pm'].'没有成功扫布标入库,无法出库!','success'=>false));exit;
  870. }
  871. }
  872. $y['ts'] = count($systemtransfer);
  873. $d = $this->apiyy->get_chd($y);
  874. if($d['Data'][0]['m_isSucess'] != 1)
  875. {
  876. echo json_encode(array('msg'=>'用友出库失败:'.$d['Data'][0]['m_errorMsg'],'success'=>false));exit;
  877. }
  878. }
  879. **/
  880. $shop = $this->shop->read($y['shop']);
  881. if($express['printcode'] == "DHLUSA" && $y['waybill'] != '')
  882. {
  883. $type = $this->typeclass->read($shop['type']);
  884. $y['shoptype'] = $type['title'];
  885. $y['weight'] = $weight;
  886. $d = $this->dhl->get_data_9610($y);
  887. if($d != 1)
  888. {
  889. $this->db->trans_rollback();
  890. $this->allocation->insert(array('order'=>1,'title'=>$y['number'],'content'=>$d));
  891. echo json_encode(array('msg'=>'9610失败,'.$d,'success'=>false));exit;
  892. }
  893. $this->allocation->insert(array('order'=>9610,'title'=>$y['number']));
  894. }
  895. if($fullorder_name == 'fullordersmt')
  896. {
  897. $stt = ($y['waybill']!='')?209:$y['state'];
  898. $post = array('library'=>2,'state'=>$stt,'librarytime'=>$time,'weight'=>$weight,'dbapi'=>0);
  899. /**
  900. if($this->$fullorder_name->save(array('library'=>2,'state'=>$stt,'librarytime'=>$time,'weight'=>$weight),$y['id']))
  901. {
  902. echo json_encode(array('success'=>true));exit;
  903. }
  904. else
  905. {
  906. echo json_encode(array('msg'=>'出库失败,请重试','success'=>false));exit;
  907. }
  908. **/
  909. }
  910. else if(($fullorder_name == 'fullordertt' || $fullorder_name == 'fullorderxw' || $fullorder_name == 'fullorder' || $fullorder_name = 'fullorderamz') && $y['source'] == 1)
  911. {
  912. /**
  913. if($this->$fullorder_name->save(array('library'=>2,'librarytime'=>$time,'weight'=>$weight),$y['id']))
  914. {
  915. echo json_encode(array('success'=>true));exit;
  916. }
  917. else
  918. {
  919. echo json_encode(array('msg'=>'出库失败,请重试','success'=>false));exit;
  920. }
  921. **/
  922. $post = array('library'=>2,'state'=>216,'librarytime'=>$time,'weight'=>$weight,'dbapi'=>0);
  923. }
  924. else
  925. {
  926. /**
  927. if($this->$fullorder_name->save(array('library'=>2,'librarytime'=>$time,'weight'=>$weight),$y['id']))
  928. {
  929. echo json_encode(array('success'=>true));exit;
  930. }
  931. else
  932. {
  933. echo json_encode(array('msg'=>'出库失败,请重试','success'=>false));exit;
  934. }
  935. **/
  936. $post = array('library'=>2,'librarytime'=>$time,'weight'=>$weight,'dbapi'=>0);
  937. }
  938. /**
  939. if($fullorder_name == 'fullorder')
  940. {
  941. $orderinfo = preg_replace('/^' . preg_quote($y['shop'], '/') . '/', '', $y['orderinfo']);
  942. $post['incrementId'] = $orderinfo;
  943. $post['trackingNumber'] = $y['waybill'];
  944. $ex = $this->express->read($y['express']);
  945. $post['carrier'] = $ex['iscode'];
  946. $url = 'https://www.romandhair.com/applepay/payment/addTrack';
  947. $ch = curl_init();
  948. curl_setopt($ch,CURLOPT_URL,$url);
  949. curl_setopt($ch, CURLOPT_POST, 1);
  950. curl_setopt($ch, CURLOPT_HEADER, 0);
  951. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  952. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  953. curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
  954. curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($post));
  955. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  956. curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,1800000);
  957. $res = curl_exec($ch);
  958. curl_close($ch);
  959. $res = json_decode($res,true);
  960. if($res['success'] == 0)
  961. {
  962. $this->fullorderpaypal->insert(array('orderinfo'=>$y['orderinfo'],'waybill'=>$y['waybill'],'time'=>$time,'cw'=>$res['msg']));//失败
  963. }
  964. else
  965. {
  966. $this->fullorderpaypal->insert(array('orderinfo'=>$y['orderinfo'],'waybill'=>$y['waybill'],'time'=>$time,'type'=>1));
  967. }
  968. }
  969. **/
  970. //开始录入执行u9队列的数据
  971. $queue_u9_list = [];
  972. $queue_u9_list[] = [
  973. 'platform'=>$fullorder_name,
  974. 'warehouse'=>$y['type'],
  975. 'type'=>($y['type'] == 5)?11:10, //5代表美仓
  976. 'order_no'=>$y['number'],
  977. 'status'=>0,
  978. 'create_time'=>time(),
  979. 'update_time'=>time(),
  980. ];
  981. //将要执行的队列数据添加进去
  982. foreach($queue_u9_list as $item){
  983. if($item['platform'] != 'fullorderxw'){
  984. // if(($item['warehouse'] != 5) || ($item['warehouse'] != 7) || ($item['warehouse'] != 8) || ($item['warehouse'] != 9) ){
  985. // $this->zzquque_u9->insert($item);
  986. // }
  987. if( !in_array($item['warehouse'],[5,7,8,9]) ){
  988. $this->zzquque_u9->insert($item);
  989. }
  990. }
  991. }
  992. //$this->logic_ding->sendToDing("u9小单队列监听数据".json_encode($queue_u9_list,JSON_UNESCAPED_UNICODE));
  993. if($outtype == 2 && $y['printnumber'] > 1)
  994. {
  995. $p = json_encode($post);
  996. $this->db->trans_rollback();
  997. echo json_encode(array('msg'=>'该单共打印过'.$y['printnumber'].'次,请注意核对当前发货单是否是最新发货单!','outnumber'=>$y['id'],'post'=>$p,'fullorder_name'=>$fullorder_name,'success'=>false));exit;
  998. }
  999. $this->$fullorder_name->save($post,$y['id']);
  1000. //检测单子是否是扫不出库单子重新出库 如果是 就更正
  1001. $outerrors_info = $this->outerrors->find("number = '".$y['number']."'");
  1002. if(!empty($outerrors_info)){
  1003. $this->outerrors->save(array('order_status'=>1,'library_time'=>$time),$outerrors_info['id']);
  1004. }
  1005. $this->logic_ding->sendJobs('order_out',['number'=>$y['number']],0,'');
  1006. //合并订单自动发货
  1007. $hb = $this->$fullorder_name->find_all("merge = '".$y['id']."' and id != '".$y['id']."'");
  1008. $post['waybill'] = $y['waybill'];
  1009. $post['express'] = $y['express'];
  1010. $post['printtype'] = $y['printtype'];
  1011. $post['ioss'] = $y['ioss'];
  1012. $post['review'] = 6;
  1013. $post['bx'] = $y['bx'];
  1014. $post['qm'] = $y['qm'];
  1015. $post['js'] = $y['js'];
  1016. //$post['state'] = 216;
  1017. $post['print'] = $y['print'];
  1018. $post['printtime'] = $y['printtime'];
  1019. $post['library'] = 2;
  1020. $post['librarytime'] = $time;
  1021. $post['libraryconfirm'] = 2;
  1022. $post['librarynot'] = '';
  1023. foreach ($hb as $v)
  1024. {
  1025. $post['state'] = $v['state'];
  1026. $vshop = $this->shop->read($v['shop']);
  1027. $vwarehouse = $this->warehouse->read($v['type']);
  1028. $this->$fullorder_name->save($post,$v['id']);
  1029. //2025年1月25日发现翔文合并订单发现此问题
  1030. if($warehouse['zd'] == '1'){
  1031. $wh = $this->_fout_db($v,$warehouse,$bdck);
  1032. foreach ($wh['sj'] as $vv)
  1033. {
  1034. $this->$bdck->save(array('state'=>1,'cktype'=>1,'orderinfo'=>$v['orderinfo'],'waybill'=>$y['waybill'],'outk'=>$time,'time'=>$time),$vv['id']);
  1035. }
  1036. }
  1037. }
  1038. if ($this->db->trans_status() === TRUE)
  1039. {
  1040. $this->db->trans_commit();
  1041. echo json_encode(array('success'=>true));
  1042. }
  1043. else
  1044. {
  1045. $this->db->trans_rollback();
  1046. echo json_encode(array('msg'=>'出库失败,请重试','success'=>false));
  1047. }
  1048. }
  1049. }
  1050. //之所以用订单已占的库存,就循环更新 为什么不用全部检索是因为牵扯到可能是工厂有可能直接生产后 带到成品库 不入成品库 可能会直接发走,所以只检索已占库存的订单 然后更新
  1051. public function _outnumber()//对比占单是否正确
  1052. {
  1053. $post = $this->input->post(NULL, TRUE);
  1054. if(isset($post['outnumber']))
  1055. {
  1056. $post = $this->input->post('post',true);
  1057. $fullorder_name = $this->input->post('fullorder_name',true);
  1058. $outnumber = $this->input->post('outnumber',true);
  1059. $post = json_decode($post,true);
  1060. $y = $this->$fullorder_name->read($outnumber);
  1061. if(empty($y)){
  1062. echo json_encode(array('msg'=>'订单异常不能出库','success'=>false));exit;
  1063. }
  1064. $warehouse = $this->warehouse->read($y['type']);
  1065. if(empty($warehouse)){
  1066. echo json_encode(array('msg'=>'仓库异常不能出库','success'=>false));exit;
  1067. }
  1068. if($y['library']== 2){
  1069. echo json_encode(array('msg'=>'订单已出库,请勿重复出库','success'=>false));exit;
  1070. }
  1071. if($y['library']== 3){
  1072. echo json_encode(array('msg'=>'订单已退库,请勿重复出库','success'=>false));exit;
  1073. }
  1074. $bdck = $warehouse['bdck'];
  1075. if(!empty($bdck)){
  1076. // $warehouse = $this->warehouse->read($y['type']);
  1077. $list = $this->$bdck->find_all("zd = '".$y['number']."' and warehouse = '".$y['type']."' and (state = '0' or state = '9')");
  1078. $this->db->trans_begin();
  1079. foreach ($list as $v)
  1080. {
  1081. $this->$bdck->save(array('state'=>1,'cktype'=>1,'orderinfo'=>$y['orderinfo'],'waybill'=>$y['waybill'],'outk'=>$post['librarytime'],'time'=>$post['librarytime']),$v['id']);
  1082. }
  1083. $this->$fullorder_name->save($post,$y['id']);
  1084. //检测单子是否是扫不出库单子重新出库 如果是 就更正
  1085. $outerrors_info = $this->outerrors->find("number = '".$y['number']."'");
  1086. if(!empty($outerrors_info)){
  1087. $this->outerrors->save(array('order_status'=>1,'library_time'=>$post['librarytime']),$outerrors_info['id']);
  1088. }
  1089. //需要添加上合并订单的订单信息更新
  1090. $hb = $this->$fullorder_name->find_all("merge = '".$y['id']."' and id != '".$y['id']."'");
  1091. $save_arr = [];
  1092. $save_arr['waybill'] = $y['waybill'];
  1093. $save_arr['express'] = $y['express'];
  1094. $save_arr['printtype'] = $y['printtype'];
  1095. $save_arr['ioss'] = $y['ioss'];
  1096. $save_arr['review'] = 6;
  1097. $save_arr['bx'] = $y['bx'];
  1098. $save_arr['qm'] = $y['qm'];
  1099. $save_arr['js'] = $y['js'];
  1100. $post['state'] = $y['state'];
  1101. $save_arr['print'] = $y['print'];
  1102. $save_arr['printtime'] = $y['printtime'];
  1103. $save_arr['library'] = 2;
  1104. $save_arr['librarytime'] = $post['librarytime'];
  1105. $save_arr['libraryconfirm'] = 2;
  1106. $save_arr['librarynot'] = '';
  1107. foreach($hb as $v){
  1108. $this->$fullorder_name->save($save_arr,$v['id']);
  1109. }
  1110. if ($this->db->trans_status() === TRUE)
  1111. {
  1112. $this->db->trans_commit();
  1113. if($fullorder_name != 'fullorderxw'){
  1114. // if(($item['warehouse'] != 5) || ($item['warehouse'] != 7) || ($item['warehouse'] != 8) || ($item['warehouse'] != 9) ){
  1115. // $this->zzquque_u9->insert($item);
  1116. // }
  1117. $y = $this->$fullorder_name->read($outnumber);
  1118. if( !in_array($y['type'],[5,7,8,9]) ){
  1119. $data = [
  1120. 'platform'=>$fullorder_name,
  1121. 'warehouse'=>$y['type'],
  1122. 'type'=>($y['type'] == 5)?11:10, //5代表美仓
  1123. 'order_no'=>$y['number'],
  1124. 'status'=>0,
  1125. 'create_time'=>time(),
  1126. 'update_time'=>time(),
  1127. ];
  1128. $this->zzquque_u9->insert($data);
  1129. }
  1130. }
  1131. echo json_encode(array('success'=>true));
  1132. die;
  1133. }
  1134. else
  1135. {
  1136. $this->db->trans_rollback();
  1137. echo json_encode(array('msg'=>'出库失败,请重试','success'=>false));
  1138. die;
  1139. }
  1140. }else{
  1141. $this->$fullorder_name->save($post,$y['id']);
  1142. //需要添加上合并订单的订单信息更新
  1143. $hb = $this->$fullorder_name->find_all("merge = '".$y['id']."' and id != '".$y['id']."'");
  1144. $save_arr = [];
  1145. $save_arr['waybill'] = $y['waybill'];
  1146. $save_arr['express'] = $y['express'];
  1147. $save_arr['printtype'] = $y['printtype'];
  1148. $save_arr['ioss'] = $y['ioss'];
  1149. $save_arr['review'] = 6;
  1150. $save_arr['bx'] = $y['bx'];
  1151. $save_arr['qm'] = $y['qm'];
  1152. $save_arr['js'] = $y['js'];
  1153. $post['state'] = $y['state'];
  1154. $save_arr['print'] = $y['print'];
  1155. $save_arr['printtime'] = $y['printtime'];
  1156. $save_arr['library'] = 2;
  1157. $save_arr['librarytime'] = $post['librarytime'];
  1158. $save_arr['libraryconfirm'] = 2;
  1159. $save_arr['librarynot'] = '';
  1160. foreach($hb as $v){
  1161. $this->$fullorder_name->save($save_arr,$v['id']);
  1162. }
  1163. if($fullorder_name != 'fullorderxw'){
  1164. // if(($item['warehouse'] != 5) || ($item['warehouse'] != 7) || ($item['warehouse'] != 8) || ($item['warehouse'] != 9) ){
  1165. // $this->zzquque_u9->insert($item);
  1166. // }
  1167. $y = $this->$fullorder_name->read($outnumber);
  1168. if( !in_array($y['type'],[5,7,8,9]) ){
  1169. $data = [
  1170. 'platform'=>$fullorder_name,
  1171. 'warehouse'=>$y['type'],
  1172. 'type'=>($y['type'] == 5)?11:10, //5代表美仓
  1173. 'order_no'=>$y['number'],
  1174. 'status'=>0,
  1175. 'create_time'=>time(),
  1176. 'update_time'=>time(),
  1177. ];
  1178. $this->zzquque_u9->insert($data);
  1179. }
  1180. }
  1181. echo json_encode(array('success'=>true));
  1182. die;
  1183. }
  1184. }else{
  1185. echo json_encode(array('msg'=>'传参异常,请重试','success'=>false));
  1186. die;
  1187. }
  1188. }
  1189. public function _fout_db($y,$warehouse,$bdck)//对比占单是否正确
  1190. {
  1191. $wh = $this->$bdck->find_all("zd = '".$y['number']."' and warehouse = '".$y['type']."' and (state = '0' or state = '9')");
  1192. $cpsl = 0;
  1193. $pp = explode('|',trim($y['whlabel'],'|'));
  1194. foreach ($pp as $va)
  1195. {
  1196. $num = explode('-',$va);
  1197. if(isset($num[2]))
  1198. {
  1199. if(stripos($num[2],$warehouse['hz']) !== false)
  1200. {
  1201. $cpsl += $num[1];
  1202. }
  1203. }
  1204. }
  1205. if(count($wh) == $cpsl)
  1206. {
  1207. return array('fh'=>1,'sj'=>$wh);
  1208. }
  1209. else
  1210. {
  1211. return array('fh'=>2);
  1212. }
  1213. }
  1214. public function _fedexhz()
  1215. {
  1216. $post = $this->input->post(NULL, TRUE);
  1217. if(isset($post['id']))
  1218. {
  1219. $id = $this->input->post('id',true);
  1220. $fullorder_name = $this->input->post('name',true);
  1221. $express = $this->input->post('express',true);
  1222. $express = $this->express->read($express);
  1223. $fullorder = $this->$fullorder_name->read($id);
  1224. if($fullorder['type'] == '2')
  1225. {
  1226. $fullorder['type'] = 1;
  1227. }
  1228. $time = time();
  1229. $fullorder = $this->_text($fullorder);//获取所需信息
  1230. $oldprinttime = ($fullorder['printtime'] > 0)?$fullorder['oldprinttime'].$fullorder['printtime'].'-':'';
  1231. $fullorder['printtime'] = date('m-d H:i',$time);//打印用时间、发货单用,不能删
  1232. $time = time();
  1233. if($express['printcode'] == "FEDEXGF")
  1234. {
  1235. //$barcode = $this->fedex->get_data($fullorder);//获取联邦快递信息
  1236. //升级的api
  1237. $barcode = $this->fedexv1->get_data($fullorder);//获取联邦快递信息
  1238. if($barcode['x'] == 1)
  1239. {
  1240. $bctime = date('Ymd',$time);
  1241. $Hwaybill = $barcode['waybill'];
  1242. // $Hyd = $this->_pdf($barcode['label'],'y-'.$Hwaybill,$bctime);
  1243. // $Hfp = $this->_pdf($barcode['invoice'],'f-'.$Hwaybill,$bctime);//开通ETD模式,保留PDF,不需要打印
  1244. $Hyd = $this->_pdfurl($barcode['label'],'y-'.$Hwaybill,$bctime);
  1245. $Hfp = $this->_pdfurl($barcode['invoice'],'f-'.$Hwaybill,$bctime);//开通ETD模式,保留PDF,不需要打印
  1246. if(isset($barcode['label']) && isset($Hwaybill))
  1247. {
  1248. if($fullorder['waybill'] != "")
  1249. {
  1250. $oldwaybill = $fullorder['oldwaybill'].'-'.date('Ymd',$time).'/'.$fullorder['waybill'];
  1251. }
  1252. else
  1253. {
  1254. $oldwaybill = $fullorder['oldwaybill'];
  1255. }
  1256. $oldwaybill .= '-'.$bctime.'/'.$Hwaybill;
  1257. $fullorder['printnumber'] = $fullorder['printnumber'] +1;//不能删
  1258. if($this->$fullorder_name->save(array('waybill'=>$Hwaybill,'printtime'=>$time,'printnumber'=>$fullorder['printnumber'],'oldwaybill'=>$oldwaybill,'oldprinttime'=>$oldprinttime),$fullorder['id']))
  1259. {
  1260. $warehouse = $this->warehouse->read($fullorder['type']);
  1261. $text = array();
  1262. $text['yd'] = base_url().'data/pdf/'.$bctime.'/y-'.$Hwaybill.'.pdf';
  1263. $text['number'] = $fullorder['number'];
  1264. $text['mode'] = '95';
  1265. $text['pdfnum'] = 1;
  1266. $rows = array('text'=>$text);
  1267. echo json_encode(array('rows'=>($rows),'success'=>true));exit;
  1268. }
  1269. else
  1270. {
  1271. echo json_encode(array($fullorder['number'].'msg'=>'打印错误,请联系店员','cw'=>'写入数据库错误','success'=>false));exit;
  1272. }
  1273. }
  1274. }
  1275. else
  1276. {
  1277. echo json_encode(array('msg'=>'打印错误,请联系店员','cw'=>$barcode['Description'],'success'=>false));exit;
  1278. }
  1279. }
  1280. else if($express['printcode'] == "UPS")//接口UPS暂时不打
  1281. {
  1282. echo json_encode(array('msg'=>'此订单超期无法出库,请联系成会处理','success'=>false));exit;
  1283. $barcode = $this->ups->get_data($fullorder);//获取快递信息
  1284. if($barcode['x'] == 1)
  1285. {
  1286. $bctime = date('Ymd',$time);
  1287. $Hwaybill = $barcode['waybill'];
  1288. $Hyd = $this->_pdfurl($barcode['label'],'y-'.$Hwaybill,$bctime);
  1289. if(isset($barcode['label']) && isset($Hwaybill))
  1290. {
  1291. if($fullorder['waybill'] != "")
  1292. {
  1293. $oldwaybill = $fullorder['oldwaybill'].'-'.date('Ymd',$time).'/'.$fullorder['waybill'];
  1294. }
  1295. else
  1296. {
  1297. $oldwaybill = $fullorder['oldwaybill'];
  1298. }
  1299. $oldwaybill .= '-'.$bctime.'/'.$Hwaybill;
  1300. $fullorder['printnumber'] = $fullorder['printnumber'] +1;//不能删
  1301. if($this->$fullorder_name->save(array('waybill'=>$Hwaybill,'libraryconfirm'=>2,'librarynot'=>'','printtime'=>$time,'printnumber'=>$fullorder['printnumber'],'print'=>3,'oldwaybill'=>$oldwaybill,'oldprinttime'=>$oldprinttime),$va[$n]))
  1302. {
  1303. $type = 1;
  1304. $text = array('yd'=>'data/pdf/'.$bctime.'/y-'.$Hwaybill.'.pdf','data'=>$fullorder,'id'=>$fullorder['id'],'pt'=>$fullorder_name);
  1305. }
  1306. }
  1307. }
  1308. else
  1309. {
  1310. echo json_encode(array('msg'=>$fullorder['number'].'打印错误,请联系店员','cw'=>$barcode['Description'],'success'=>false));exit;
  1311. }
  1312. }
  1313. else if($express['printcode'] == "DHLHZ")//如果打印过那么重新获取运单
  1314. {
  1315. $barcode = $this->dhlhz->get_data($fullorder);//获取DHL快递信息
  1316. if($barcode['c'] == 1)
  1317. {
  1318. $bctime = date('Ymd',$time);
  1319. $Hwaybill = $barcode['data']['waybill'];
  1320. $Hfp = $this->_pdf($barcode['data']['fp'],'f-'.$Hwaybill,$bctime);
  1321. $Hyd = $this->_pdf($barcode['data']['yd'],'y-'.$Hwaybill,$bctime);
  1322. if(isset($Hfp) && isset($Hyd) && isset($Hwaybill))
  1323. {
  1324. if($fullorder['waybill'] != "")
  1325. {
  1326. $oldwaybill = $fullorder['oldwaybill'].'-'.date('Ymd',$time).'/'.$fullorder['waybill'];
  1327. }
  1328. else
  1329. {
  1330. $oldwaybill = $fullorder['oldwaybill'];
  1331. }
  1332. $oldwaybill .= '-'.$bctime.'/'.$Hwaybill;
  1333. $fullorder['printnumber'] = $fullorder['printnumber'] +1;//不能删d
  1334. if($this->$fullorder_name->save(array('waybill'=>$Hwaybill,'printtime'=>$time,'printnumber'=>$fullorder['printnumber'],'oldwaybill'=>$oldwaybill,'oldprinttime'=>$oldprinttime),$fullorder['id']))
  1335. {
  1336. $warehouse = $this->warehouse->read($fullorder['type']);
  1337. $text = array();
  1338. $text['yd'] = base_url().'data/pdf/'.$bctime.'/y-'.$Hwaybill.'.pdf';
  1339. $text['number'] = $fullorder['number'];
  1340. $text['mode'] = '95';
  1341. $text['pdfnum'] = 1;
  1342. $rows = array('text'=>$text);
  1343. echo json_encode(array('rows'=>($rows),'success'=>true));exit;
  1344. }
  1345. }
  1346. }
  1347. else
  1348. {
  1349. echo json_encode(array('msg'=>$fullorder['number'].'打印错误,请联系店员','cw'=>$barcode['Description'],'success'=>false));exit;
  1350. }
  1351. }
  1352. else
  1353. {
  1354. echo json_encode(array('msg'=>'此订单超期无法出库,请联系成会或者梦体处理','success'=>false));exit;
  1355. }
  1356. }
  1357. }
  1358. public function _text($fullorder)
  1359. {
  1360. /** 发票地址信息暂时无用
  1361. $fullorder['baddress'] = explode(',',$fullorder['baddress']);
  1362. $fullorder['baddress'] = array_reverse($fullorder['baddress']);
  1363. $fullorder['baddress'][1] = $country['ename'];
  1364. **/
  1365. //获取所用相关信息
  1366. $warehouse = $this->warehouse->read($fullorder['type']);
  1367. $country = $this->country->read($fullorder['country']);//订单国家信息
  1368. $fcountry = $this->country->read($warehouse['country']);//仓库国家信息
  1369. $warehouse['country'] = $fcountry['ename'];//仓库国家名
  1370. $warehouse['lb'] = $fcountry['lb'];//仓库国家编码
  1371. $fullorder['warehouse'] = $warehouse;//仓库数据加入订单
  1372. $fullorder['lb'] = $country['lb'];//订单国家编码加入
  1373. $fullorder['country'] = $country['ename'];//订单国家名
  1374. $fullorder['zhou'] = $country['continent'];//所属州
  1375. $express = $this->express->read($fullorder['express']);
  1376. $fullorder['express'] = $express['servicename'];
  1377. $fullorder['account'] = $express['account'];
  1378. $fullorder['printcode'] = $express['printcode'];
  1379. $fullorder['time'] = date('Y-m-d',time());
  1380. $fullorder['times'] = date('Y-m-d H:i',time());
  1381. //$fullorder['sbbm']= ($fullorder['sbpm'] == 'Hair Sample') ? 67042000 : 67041100;
  1382. // 修复报关编码问题
  1383. $declara_info = $this->customsdeclaration->find("ename like '%".trim($fullorder['sbpm'])."%' ","*");
  1384. $sbbm = "";
  1385. if(empty($declara_info)){
  1386. $sbbm = "";
  1387. }else{
  1388. $sbbm = $declara_info['bname'];
  1389. }
  1390. $fullorder['sbbm']= $sbbm;
  1391. $fullorder['address'] = str_replace(array('&'),array('&#38;'),$fullorder['address']);
  1392. $fullorder['address2'] = str_replace(array('&'),array('&#38;'),$fullorder['address2']);
  1393. $shop = $this->shop->read($fullorder['shop']);
  1394. $fullorder['shop'] = $shop['shopname'];
  1395. return $fullorder;
  1396. }
  1397. public function _lowe()
  1398. {
  1399. $post = $this->input->post(NULL, TRUE);
  1400. if(isset($post['lowe']))
  1401. {
  1402. $lowe = $this->typeclass->find_all('classid = 15 and id != 105 and id != 107 and id != 108 and id != 112 and id != 114 and id != 115 and id != 116 and id != 117 and id != 118 and id != 119 and id != 120 and id != 121 and id != 122 and id != 123 and id != 124 and id != 125 and id != 292 and id != 63 and id != 289 and id != 290 and id != 181 and id != 273 and id != 148 and id != 38 and id != 291 and id != 55 and id != 271 and id != 285 and id != 186 and id != 187 and id != 188 and id != 189');
  1403. echo json_encode(array('msg'=>$lowe));exit;
  1404. }
  1405. }
  1406. public function _pdf($pdf,$title,$bctime)
  1407. {
  1408. $pdf_path = './data/pdf/'.$bctime.'/';
  1409. $file_base64 = $pdf;
  1410. $file_base64 = preg_replace('/data:.*;base64,/i', '', $file_base64);
  1411. $file_base64 = base64_decode($file_base64);
  1412. if(!is_dir($pdf_path))mkdir($pdf_path,0777); //上传目录不存在则创建
  1413. file_put_contents($pdf_path.$title.'.pdf',$file_base64);
  1414. return $bctime;
  1415. }
  1416. public function _pdfurl($pdf,$title,$bctime)
  1417. {
  1418. $pdf_path = './data/pdf/'.$bctime.'/';
  1419. $pdf = fopen($pdf,"r");
  1420. if(!is_dir($pdf_path))mkdir($pdf_path,0777); //上传目录不存在则创建
  1421. file_put_contents($pdf_path.$title.'.pdf',$pdf);
  1422. return $bctime;
  1423. }
  1424. public function _excel()
  1425. {
  1426. $xw = '';
  1427. if(isset($_SESSION['api']))
  1428. {
  1429. $user = $this->user->get_api($_SESSION['api']);
  1430. $usp = $user;
  1431. $fgshop = "";$sid = "";$wid="";$wtype="";
  1432. $usersp = explode('|',trim($user['shop'],'|'));
  1433. $userwh = explode('|',trim($user['warehouse'],'|'));
  1434. foreach ($usersp as $value)
  1435. {
  1436. $fgshop .= " shop = ".$value." or";
  1437. $sid .= " id = ".$value." or";
  1438. }
  1439. foreach ($userwh as $value)
  1440. {
  1441. $wid .= " id = ".$value." or";
  1442. $wtype .= " type = ".$value." or";
  1443. }
  1444. if($user['userid'] == 'xw')
  1445. {
  1446. $xw = 1;
  1447. }
  1448. }
  1449. if(isset($_GET['fexcel']))
  1450. {
  1451. $dowid = $this->input->get('a');
  1452. $wid = "";
  1453. if($dowid != "")
  1454. {
  1455. $id_arr = explode(',',rtrim($dowid,','));
  1456. foreach ($id_arr as $v)
  1457. {
  1458. $wid .= " id = '$v' or";
  1459. }
  1460. $wid = " and".rtrim($wid,'or');
  1461. }
  1462. $t = $this->input->get('t',true);
  1463. $timetk = $this->input->get('timetk',true);
  1464. $timetj = $this->input->get('timetj',true);
  1465. $shop = $this->input->get('shop',true);
  1466. $source = $this->input->get('source',true);
  1467. $orderinfo = $this->input->get('orderinfo',true);
  1468. $number = $this->input->get('number',true);
  1469. $library = $this->input->get('library',true);
  1470. $waybill = $this->input->get('waybill',true);
  1471. $express = $this->input->get('express',true);
  1472. $type = $this->input->get('type',true);
  1473. $so = $this->input->get('so',true);
  1474. $timetk = strtotime($timetk);
  1475. $timetj = strtotime($timetj);
  1476. $where = (isset($_SESSION['api']))?"library!=3 and libraryconfirm=2 and print = 3 and (".rtrim($wtype,'or').")":"id = '0'";
  1477. if($timetk && $timetj && $library == 1)
  1478. {
  1479. //$cxtime = 'reviewtime';
  1480. $where .= " and printtime > '$timetk - 180*24*3600' and printtime < '$timetj'";
  1481. $where .= " and state != 217";
  1482. }
  1483. else if($timetk && $timetj && $library == 2)
  1484. {
  1485. $cxtime = 'librarytime';
  1486. $where .= " and librarytime > '$timetk' and librarytime < '$timetj'";
  1487. }
  1488. /**
  1489. $where = "library!=3 and libraryconfirm=2 and mergeid = 0 and print = 3";
  1490. if($timetk && $timetj && $library == 1)
  1491. {
  1492. //$cxtime = 'reviewtime';
  1493. //$where .= " and librarytime > '$timetk' and librarytime < '$timetj'";
  1494. }
  1495. else if($timetk && $timetj && $library == 2)
  1496. {
  1497. $cxtime = 'librarytime';
  1498. $where .= " and librarytime > '$timetk' and librarytime < '$timetj'";
  1499. }
  1500. **/
  1501. if(isset($_SESSION['api']))
  1502. {
  1503. if($type)
  1504. {
  1505. $where .= " and type = '$type'";
  1506. }
  1507. else
  1508. {
  1509. $uw = '';
  1510. $u = $this->user->get_api($_SESSION['api']);
  1511. $u['warehouse'] = explode('|',trim($u['warehouse'],'|'));
  1512. foreach ($u['warehouse'] as $v)
  1513. {
  1514. $uw .= " type = '$v' or";
  1515. }
  1516. $uw = rtrim($uw,'or');
  1517. $uw = " and (".ltrim($uw,' ').")";
  1518. $where .= $uw;
  1519. }
  1520. }
  1521. else
  1522. {
  1523. echo json_encode(array('msg'=>'导出失败,请重新登陆!','success'=>false));exit;
  1524. }
  1525. if($shop)
  1526. {
  1527. $where .= " and shop = '$shop'";
  1528. }
  1529. if($number)
  1530. {
  1531. $where .= " and number = '$number'";
  1532. }
  1533. if($library)
  1534. {
  1535. $where .= " and library = '$library'";
  1536. }
  1537. if($waybill)
  1538. {
  1539. $where .= " and waybill = '$waybill'";
  1540. }
  1541. if($express)
  1542. {
  1543. $where .= " and express = '$express'";
  1544. }
  1545. if($orderinfo)
  1546. {
  1547. $where .= " and orderinfo = '$orderinfo'";
  1548. }
  1549. if($so)
  1550. {
  1551. $where .= " and shipremarks like '%$so%'";
  1552. }
  1553. //数据排序
  1554. //$order_str = ($print != 3)?"id desc":"librarytime desc";
  1555. $order_str = "librarytime desc";
  1556. if(empty($page))
  1557. {
  1558. $start = 0;
  1559. $perpage = 1;
  1560. }
  1561. else
  1562. {
  1563. $start = ($page - 1)*$perpage;
  1564. }
  1565. $typeclass = array();
  1566. $tclass = $this->typeclass->find_all();
  1567. foreach ($tclass as $v)
  1568. {
  1569. $typeclass[$v['id']] = $v;
  1570. }
  1571. //取得信息列表
  1572. $info_list = $this->fullorder->find_all($where.$wid,'shop,type,orderinfo,number,waybill,waybillid,express,print,library,librarytime,shipremarks,ts,fpdata',$order_str);
  1573. //格式化数据
  1574. foreach ($info_list as $key=>$value)
  1575. {
  1576. $shop = $this->shop->read($value['shop']);
  1577. $info_list[$key]['shop'] = $shop['shopname'];
  1578. if($value['waybill'] == '0')
  1579. {
  1580. $info_list[$key]['waybill'] = "";
  1581. }
  1582. $express = $this->express->read($value['express']);
  1583. $info_list[$key]['express'] = $express['servicename'];
  1584. $warehouse = $this->warehouse->read($value['type']);
  1585. $info_list[$key]['type'] = $warehouse['title'];
  1586. if($value['print'] == 1)
  1587. {
  1588. $info_list[$key]['print'] = '不可打印';
  1589. }
  1590. else if($value['print'] == 2)
  1591. {
  1592. $info_list[$key]['print'] = '未打印';
  1593. }
  1594. else if($value['print'] == 3)
  1595. {
  1596. $info_list[$key]['print'] = '已打印';
  1597. }
  1598. if($value['library'] == 1)
  1599. {
  1600. $info_list[$key]['library'] = '<em class="c">未出库</em>';
  1601. }
  1602. else if($value['library'] == 2)
  1603. {
  1604. $info_list[$key]['library'] = '<em class="c">已出库</em>';
  1605. }
  1606. else if($value['library'] == 3)
  1607. {
  1608. $info_list[$key]['library'] = '<em class="c">已退库</em>';
  1609. }
  1610. if($value['librarytime'] == '0')
  1611. {
  1612. $info_list[$key]['librarytime'] = '<em class="t"></em>';
  1613. }
  1614. else
  1615. {
  1616. $info_list[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  1617. }
  1618. $classid = $classid = $this->classid->sku();
  1619. $dbapi = explode(';',trim($value['fpdata'],';'));
  1620. $tmp_jm = "";
  1621. $tmp_zh = "";
  1622. foreach ($dbapi as $va)
  1623. {
  1624. $pm = $classid;
  1625. $jm = $classid;
  1626. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  1627. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  1628. $ts = explode('|',trim($features,'|'));
  1629. if(stripos($ts[0],',') !== false)
  1630. {
  1631. $ft = explode(',',$ts[0]);
  1632. $features = explode('-',trim($ft[1],'-'));
  1633. $features[] = $ft[0];
  1634. }
  1635. else
  1636. {
  1637. $features = explode('-',trim($ts[0],'-'));
  1638. }
  1639. foreach($features as $k=>$v)
  1640. {
  1641. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  1642. {
  1643. if($typeclass[$v]['bm'] != '')
  1644. {
  1645. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  1646. }
  1647. }
  1648. if($v != 0 && isset($typeclass[$v]))
  1649. {
  1650. if($typeclass[$v]['classid'] == 13)
  1651. {
  1652. $dj = $typeclass[$v]['title'];
  1653. }
  1654. if($typeclass[$v]['classid'] == 8)
  1655. {
  1656. $ys = $typeclass[$v]['title'];
  1657. }
  1658. if($typeclass[$v]['classid'] == 15)
  1659. {
  1660. $hx = $typeclass[$v]['title'];
  1661. }
  1662. if(isset($pm[$typeclass[$v]['classid']]))
  1663. {
  1664. if($typeclass[$v]['title'] == '9A')
  1665. {
  1666. $pm[$typeclass[$v]['classid']] = '9A';
  1667. }
  1668. else if($typeclass[$v]['title'] == '10A')
  1669. {
  1670. $pm[$typeclass[$v]['classid']] = '10A';
  1671. }
  1672. else
  1673. {
  1674. $clzh = $typeclass[$v]['zh'];
  1675. if(stripos($typeclass[$v]['zh'],'|') !== false)
  1676. {
  1677. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  1678. $clzh = $clzh[0];
  1679. }
  1680. $pm[$typeclass[$v]['classid']] = $clzh;
  1681. }
  1682. }
  1683. if(isset($jm[$typeclass[$v]['classid']]))
  1684. {
  1685. if($typeclass[$v]['jm'])
  1686. {
  1687. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  1688. }
  1689. }
  1690. }
  1691. }
  1692. $jm = array_filter($jm);//去除空值
  1693. $jm = implode("-",$jm);
  1694. $tmp_jm .= $jm.";";
  1695. $pm = array_filter($pm);//去除空值
  1696. $zh = implode(" ",$pm);
  1697. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  1698. $tmp_zh .= $zh.";";
  1699. }
  1700. $info_list[$key]['jm'] = trim($tmp_jm,';');
  1701. $info_list[$key]['zh'] = trim($tmp_zh,';');
  1702. }
  1703. //取得信息列表
  1704. $info_listsmt = $this->fullordersmt->find_all($where.$wid,'shop,type,orderinfo,number,waybill,waybillid,express,print,library,librarytime,shipremarks,ts,fpdata',$order_str);
  1705. //格式化数据
  1706. foreach ($info_listsmt as $key=>$value)
  1707. {
  1708. $shop = $this->shop->read($value['shop']);
  1709. $info_listsmt[$key]['shop'] = $shop['shopname'];
  1710. if($value['waybill'] == '0')
  1711. {
  1712. $info_listsmt[$key]['waybill'] = "";
  1713. }
  1714. $express = $this->express->read($value['express']);
  1715. $info_listsmt[$key]['express'] = $express['servicename'];
  1716. $warehouse = $this->warehouse->read($value['type']);
  1717. $info_listsmt[$key]['type'] = $warehouse['title'];
  1718. if($value['print'] == 1)
  1719. {
  1720. $info_listsmt[$key]['print'] = '不可打印';
  1721. }
  1722. else if($value['print'] == 2)
  1723. {
  1724. $info_listsmt[$key]['print'] = '未打印';
  1725. }
  1726. else if($value['print'] == 3)
  1727. {
  1728. $info_listsmt[$key]['print'] = '已打印';
  1729. }
  1730. if($value['library'] == 1)
  1731. {
  1732. $info_listsmt[$key]['library'] = '<em class="c">未出库</em>';
  1733. }
  1734. else if($value['library'] == 2)
  1735. {
  1736. $info_listsmt[$key]['library'] = '<em class="c">已出库</em>';
  1737. }
  1738. else if($value['library'] == 3)
  1739. {
  1740. $info_listsmt[$key]['library'] = '<em class="c">已退库</em>';
  1741. }
  1742. if($value['librarytime'] == '0')
  1743. {
  1744. $info_listsmt[$key]['librarytime'] = '<em class="t"></em>';
  1745. }
  1746. else
  1747. {
  1748. $info_listsmt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  1749. }
  1750. $classid = $classid = $this->classid->sku();
  1751. $dbapi = explode(';',trim($value['fpdata'],';'));
  1752. $tmp_jm = "";
  1753. $tmp_zh = "";
  1754. foreach ($dbapi as $va)
  1755. {
  1756. $pm = $classid;
  1757. $jm = $classid;
  1758. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  1759. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  1760. $ts = explode('|',trim($features,'|'));
  1761. if(stripos($ts[0],',') !== false)
  1762. {
  1763. $ft = explode(',',$ts[0]);
  1764. $features = explode('-',trim($ft[1],'-'));
  1765. $features[] = $ft[0];
  1766. }
  1767. else
  1768. {
  1769. $features = explode('-',trim($ts[0],'-'));
  1770. }
  1771. foreach($features as $k=>$v)
  1772. {
  1773. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  1774. {
  1775. if($typeclass[$v]['bm'] != '')
  1776. {
  1777. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  1778. }
  1779. }
  1780. if($v != 0 && isset($typeclass[$v]))
  1781. {
  1782. if($typeclass[$v]['classid'] == 13)
  1783. {
  1784. $dj = $typeclass[$v]['title'];
  1785. }
  1786. if($typeclass[$v]['classid'] == 8)
  1787. {
  1788. $ys = $typeclass[$v]['title'];
  1789. }
  1790. if($typeclass[$v]['classid'] == 15)
  1791. {
  1792. $hx = $typeclass[$v]['title'];
  1793. }
  1794. if(isset($pm[$typeclass[$v]['classid']]))
  1795. {
  1796. if($typeclass[$v]['title'] == '9A')
  1797. {
  1798. $pm[$typeclass[$v]['classid']] = '9A';
  1799. }
  1800. else if($typeclass[$v]['title'] == '10A')
  1801. {
  1802. $pm[$typeclass[$v]['classid']] = '10A';
  1803. }
  1804. else
  1805. {
  1806. $clzh = $typeclass[$v]['zh'];
  1807. if(stripos($typeclass[$v]['zh'],'|') !== false)
  1808. {
  1809. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  1810. $clzh = $clzh[0];
  1811. }
  1812. $pm[$typeclass[$v]['classid']] = $clzh;
  1813. }
  1814. }
  1815. if(isset($jm[$typeclass[$v]['classid']]))
  1816. {
  1817. if($typeclass[$v]['jm'])
  1818. {
  1819. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  1820. }
  1821. }
  1822. }
  1823. }
  1824. $jm = array_filter($jm);//去除空值
  1825. $jm = implode("-",$jm);
  1826. $pm = array_filter($pm);//去除空值
  1827. $zh = implode(" ",$pm);
  1828. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  1829. $tmp_jm .= $jm.";";
  1830. $tmp_zh .= $zh.";";
  1831. }
  1832. $info_listsmt[$key]['jm'] = trim($tmp_jm,';');
  1833. $info_listsmt[$key]['zh'] = trim($tmp_zh,';');
  1834. }
  1835. //取得信息列表
  1836. $info_listtt = $this->fullordertt->find_all($where.$wid,'shop,type,orderinfo,number,waybill,waybillid,express,print,library,librarytime,shipremarks,ts,fpdata',$order_str);
  1837. //格式化数据
  1838. foreach ($info_listtt as $key=>$value)
  1839. {
  1840. $shop = $this->shop->read($value['shop']);
  1841. $info_listtt[$key]['shop'] = $shop['shopname'];
  1842. if($value['waybill'] == '0')
  1843. {
  1844. $info_listtt[$key]['waybill'] = "";
  1845. }
  1846. $express = $this->express->read($value['express']);
  1847. $info_listtt[$key]['express'] = $express['servicename'];
  1848. $warehouse = $this->warehouse->read($value['type']);
  1849. $info_listtt[$key]['type'] = $warehouse['title'];
  1850. if($value['print'] == 1)
  1851. {
  1852. $info_listtt[$key]['print'] = '不可打印';
  1853. }
  1854. else if($value['print'] == 2)
  1855. {
  1856. $info_listtt[$key]['print'] = '未打印';
  1857. }
  1858. else if($value['print'] == 3)
  1859. {
  1860. $info_listtt[$key]['print'] = '已打印';
  1861. }
  1862. if($value['library'] == 1)
  1863. {
  1864. $info_listtt[$key]['library'] = '<em class="c">未出库</em>';
  1865. }
  1866. else if($value['library'] == 2)
  1867. {
  1868. $info_listtt[$key]['library'] = '<em class="c">已出库</em>';
  1869. }
  1870. else if($value['library'] == 3)
  1871. {
  1872. $info_listtt[$key]['library'] = '<em class="c">已退库</em>';
  1873. }
  1874. if($value['librarytime'] == '0')
  1875. {
  1876. $info_listtt[$key]['librarytime'] = '<em class="t"></em>';
  1877. }
  1878. else
  1879. {
  1880. $info_listtt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  1881. }
  1882. $classid = $classid = $this->classid->sku();
  1883. $tmp_jm = "";
  1884. $tmp_zh = "";
  1885. $dbapi = explode(';',trim($value['fpdata'],';'));
  1886. foreach ($dbapi as $va)
  1887. {
  1888. $pm = $classid;
  1889. $jm = $classid;
  1890. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  1891. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  1892. $ts = explode('|',trim($features,'|'));
  1893. if(stripos($ts[0],',') !== false)
  1894. {
  1895. $ft = explode(',',$ts[0]);
  1896. $features = explode('-',trim($ft[1],'-'));
  1897. $features[] = $ft[0];
  1898. }
  1899. else
  1900. {
  1901. $features = explode('-',trim($ts[0],'-'));
  1902. }
  1903. foreach($features as $k=>$v)
  1904. {
  1905. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  1906. {
  1907. if($typeclass[$v]['bm'] != '')
  1908. {
  1909. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  1910. }
  1911. }
  1912. if($v != 0 && isset($typeclass[$v]))
  1913. {
  1914. if($typeclass[$v]['classid'] == 13)
  1915. {
  1916. $dj = $typeclass[$v]['title'];
  1917. }
  1918. if($typeclass[$v]['classid'] == 8)
  1919. {
  1920. $ys = $typeclass[$v]['title'];
  1921. }
  1922. if($typeclass[$v]['classid'] == 15)
  1923. {
  1924. $hx = $typeclass[$v]['title'];
  1925. }
  1926. if(isset($pm[$typeclass[$v]['classid']]))
  1927. {
  1928. if($typeclass[$v]['title'] == '9A')
  1929. {
  1930. $pm[$typeclass[$v]['classid']] = '9A';
  1931. }
  1932. else if($typeclass[$v]['title'] == '10A')
  1933. {
  1934. $pm[$typeclass[$v]['classid']] = '10A';
  1935. }
  1936. else
  1937. {
  1938. $clzh = $typeclass[$v]['zh'];
  1939. if(stripos($typeclass[$v]['zh'],'|') !== false)
  1940. {
  1941. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  1942. $clzh = $clzh[0];
  1943. }
  1944. $pm[$typeclass[$v]['classid']] = $clzh;
  1945. }
  1946. }
  1947. if(isset($jm[$typeclass[$v]['classid']]))
  1948. {
  1949. if($typeclass[$v]['jm'])
  1950. {
  1951. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  1952. }
  1953. }
  1954. }
  1955. }
  1956. $jm = array_filter($jm);//去除空值
  1957. $jm = implode("-",$jm);
  1958. $pm = array_filter($pm);//去除空值
  1959. $zh = implode(" ",$pm);
  1960. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  1961. $tmp_jm .= $jm.";";
  1962. $tmp_zh .= $zh.";";
  1963. }
  1964. $info_listtt[$key]['jm'] = trim($tmp_jm,';');
  1965. $info_listtt[$key]['zh'] = trim($tmp_zh,';');
  1966. }
  1967. //取得信息列表
  1968. $info_listamz = $this->fullorderamz->find_all($where.$wid,'shop,type,orderinfo,number,waybill,waybillid,express,print,library,librarytime,shipremarks,ts,fpdata',$order_str);
  1969. //格式化数据
  1970. foreach ($info_listamz as $key=>$value)
  1971. {
  1972. $shop = $this->shop->read($value['shop']);
  1973. $info_listamz[$key]['shop'] = $shop['shopname'];
  1974. if($value['waybill'] == '0')
  1975. {
  1976. $info_listamz[$key]['waybill'] = "";
  1977. }
  1978. $express = $this->express->read($value['express']);
  1979. $info_listamz[$key]['express'] = $express['servicename'];
  1980. $warehouse = $this->warehouse->read($value['type']);
  1981. $info_listamz[$key]['type'] = $warehouse['title'];
  1982. if($value['print'] == 1)
  1983. {
  1984. $info_listamz[$key]['print'] = '不可打印';
  1985. }
  1986. else if($value['print'] == 2)
  1987. {
  1988. $info_listamz[$key]['print'] = '未打印';
  1989. }
  1990. else if($value['print'] == 3)
  1991. {
  1992. $info_listamz[$key]['print'] = '已打印';
  1993. }
  1994. if($value['library'] == 1)
  1995. {
  1996. $info_listamz[$key]['library'] = '<em class="c">未出库</em>';
  1997. }
  1998. else if($value['library'] == 2)
  1999. {
  2000. $info_listamz[$key]['library'] = '<em class="c">已出库</em>';
  2001. }
  2002. else if($value['library'] == 3)
  2003. {
  2004. $info_listamz[$key]['library'] = '<em class="c">已退库</em>';
  2005. }
  2006. if($value['librarytime'] == '0')
  2007. {
  2008. $info_listamz[$key]['librarytime'] = '<em class="t"></em>';
  2009. }
  2010. else
  2011. {
  2012. $info_listamz[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  2013. }
  2014. $classid = $classid = $this->classid->sku();
  2015. $dbapi = explode(';',trim($value['fpdata'],';'));
  2016. $tmp_jm = "";
  2017. $tmp_zh = "";
  2018. foreach ($dbapi as $va)
  2019. {
  2020. $pm = $classid;
  2021. $jm = $classid;
  2022. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  2023. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  2024. $ts = explode('|',trim($features,'|'));
  2025. if(stripos($ts[0],',') !== false)
  2026. {
  2027. $ft = explode(',',$ts[0]);
  2028. $features = explode('-',trim($ft[1],'-'));
  2029. $features[] = $ft[0];
  2030. }
  2031. else
  2032. {
  2033. $features = explode('-',trim($ts[0],'-'));
  2034. }
  2035. foreach($features as $k=>$v)
  2036. {
  2037. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  2038. {
  2039. if($typeclass[$v]['bm'] != '')
  2040. {
  2041. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  2042. }
  2043. }
  2044. if($v != 0 && isset($typeclass[$v]))
  2045. {
  2046. if($typeclass[$v]['classid'] == 13)
  2047. {
  2048. $dj = $typeclass[$v]['title'];
  2049. }
  2050. if($typeclass[$v]['classid'] == 8)
  2051. {
  2052. $ys = $typeclass[$v]['title'];
  2053. }
  2054. if($typeclass[$v]['classid'] == 15)
  2055. {
  2056. $hx = $typeclass[$v]['title'];
  2057. }
  2058. if(isset($pm[$typeclass[$v]['classid']]))
  2059. {
  2060. if($typeclass[$v]['title'] == '9A')
  2061. {
  2062. $pm[$typeclass[$v]['classid']] = '9A';
  2063. }
  2064. else if($typeclass[$v]['title'] == '10A')
  2065. {
  2066. $pm[$typeclass[$v]['classid']] = '10A';
  2067. }
  2068. else
  2069. {
  2070. $clzh = $typeclass[$v]['zh'];
  2071. if(stripos($typeclass[$v]['zh'],'|') !== false)
  2072. {
  2073. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  2074. $clzh = $clzh[0];
  2075. }
  2076. $pm[$typeclass[$v]['classid']] = $clzh;
  2077. }
  2078. }
  2079. if(isset($jm[$typeclass[$v]['classid']]))
  2080. {
  2081. if($typeclass[$v]['jm'])
  2082. {
  2083. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  2084. }
  2085. }
  2086. }
  2087. }
  2088. $jm = array_filter($jm);//去除空值
  2089. $jm = implode("-",$jm);
  2090. $pm = array_filter($pm);//去除空值
  2091. $zh = implode(" ",$pm);
  2092. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  2093. $tmp_jm .= $jm.";";
  2094. $tmp_zh .= $zh.";";
  2095. }
  2096. $info_listamz[$key]['jm'] = trim($tmp_jm,';');
  2097. $info_listamz[$key]['zh'] = trim($tmp_zh,';');
  2098. }
  2099. //取得信息列表
  2100. $info_listxw = $this->fullorderxw->find_all($where.$wid,'shop,type,orderinfo,number,waybill,waybillid,express,print,library,librarytime,shipremarks,ts,fpdata',$order_str);
  2101. //格式化数据
  2102. foreach ($info_listxw as $key=>$value)
  2103. {
  2104. $shop = $this->shop->read($value['shop']);
  2105. $info_listxw[$key]['shop'] = $shop['shopname'];
  2106. if($value['waybill'] == '0')
  2107. {
  2108. $info_listxw[$key]['waybill'] = "";
  2109. }
  2110. $express = $this->express->read($value['express']);
  2111. $info_listxw[$key]['express'] = $express['servicename'];
  2112. $warehouse = $this->warehouse->read($value['type']);
  2113. $info_listxw[$key]['type'] = $warehouse['title'];
  2114. if($value['print'] == 1)
  2115. {
  2116. $info_listxw[$key]['print'] = '不可打印';
  2117. }
  2118. else if($value['print'] == 2)
  2119. {
  2120. $info_listxw[$key]['print'] = '未打印';
  2121. }
  2122. else if($value['print'] == 3)
  2123. {
  2124. $info_listxw[$key]['print'] = '已打印';
  2125. }
  2126. if($value['library'] == 1)
  2127. {
  2128. $info_listxw[$key]['library'] = '<em class="c">未出库</em>';
  2129. }
  2130. else if($value['library'] == 2)
  2131. {
  2132. $info_listxw[$key]['library'] = '<em class="c">已出库</em>';
  2133. }
  2134. else if($value['library'] == 3)
  2135. {
  2136. $info_listxw[$key]['library'] = '<em class="c">已退库</em>';
  2137. }
  2138. if($value['librarytime'] == '0')
  2139. {
  2140. $info_listxw[$key]['librarytime'] = '<em class="t"></em>';
  2141. }
  2142. else
  2143. {
  2144. $info_listxw[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  2145. }
  2146. $classid = $classid = $this->classid->sku();
  2147. $dbapi = explode(';',trim($value['fpdata'],';'));
  2148. foreach ($dbapi as $va)
  2149. {
  2150. $pm = $classid;
  2151. $jm = $classid;
  2152. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  2153. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$va);
  2154. $ts = explode('|',trim($features,'|'));
  2155. if(stripos($ts[0],',') !== false)
  2156. {
  2157. $ft = explode(',',$ts[0]);
  2158. $features = explode('-',trim($ft[1],'-'));
  2159. $features[] = $ft[0];
  2160. }
  2161. else
  2162. {
  2163. $features = explode('-',trim($ts[0],'-'));
  2164. }
  2165. foreach($features as $k=>$v)
  2166. {
  2167. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  2168. {
  2169. if($typeclass[$v]['bm'] != '')
  2170. {
  2171. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  2172. }
  2173. }
  2174. if($v != 0 && isset($typeclass[$v]))
  2175. {
  2176. if($typeclass[$v]['classid'] == 13)
  2177. {
  2178. $dj = $typeclass[$v]['title'];
  2179. }
  2180. if($typeclass[$v]['classid'] == 8)
  2181. {
  2182. $ys = $typeclass[$v]['title'];
  2183. }
  2184. if($typeclass[$v]['classid'] == 15)
  2185. {
  2186. $hx = $typeclass[$v]['title'];
  2187. }
  2188. if(isset($pm[$typeclass[$v]['classid']]))
  2189. {
  2190. if($typeclass[$v]['title'] == '9A')
  2191. {
  2192. $pm[$typeclass[$v]['classid']] = '9A';
  2193. }
  2194. else if($typeclass[$v]['title'] == '10A')
  2195. {
  2196. $pm[$typeclass[$v]['classid']] = '10A';
  2197. }
  2198. else
  2199. {
  2200. $clzh = $typeclass[$v]['zh'];
  2201. if(stripos($typeclass[$v]['zh'],'|') !== false)
  2202. {
  2203. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  2204. $clzh = $clzh[0];
  2205. }
  2206. $pm[$typeclass[$v]['classid']] = $clzh;
  2207. }
  2208. }
  2209. if(isset($jm[$typeclass[$v]['classid']]))
  2210. {
  2211. if($typeclass[$v]['jm'])
  2212. {
  2213. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  2214. }
  2215. }
  2216. }
  2217. }
  2218. $jm = array_filter($jm);//去除空值
  2219. $jm = implode("-",$jm);
  2220. $pm = array_filter($pm);//去除空值
  2221. $zh = implode(" ",$pm);
  2222. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  2223. }
  2224. $info_listxw[$key]['jm'] = $jm;
  2225. $info_listxw[$key]['zh'] = $zh;
  2226. }
  2227. $title = '订单出库-'.date('Ymd',time());
  2228. $t = str_replace("<td>运单号</td>","<td>运单号</td><td>转单号</td>",$t);
  2229. $titlename = "<table border=1>".$t."<td>条数</td><td>料品</td><td>品名</td></table>";
  2230. $tail = "\n";
  2231. $filename = $title.".xls";
  2232. $this->excel->get_fz2(array_merge($info_list,$info_listtt,$info_listamz,$info_listxw,$info_listsmt),$titlename,$filename,$tail);
  2233. }
  2234. }
  2235. public function _cpexcel()
  2236. {
  2237. if(isset($_SESSION['api']))
  2238. {
  2239. $user = $this->user->get_api($_SESSION['api']);
  2240. $usp = $user;
  2241. $fgshop = "";$sid = "";$excelshop="";
  2242. $usersp = explode('|',trim($user['shop'],'|'));
  2243. foreach ($usersp as $value)
  2244. {
  2245. $fgshop .= " shop = ".$value." or";
  2246. $sid .= " id = ".$value." or";
  2247. }
  2248. $userexcel = explode('|',trim($user['excelshop'],'|'));
  2249. foreach ($userexcel as $value)
  2250. {
  2251. $excelshop .= " shop = ".$value." or";
  2252. }
  2253. if($excelshop != "")
  2254. {
  2255. $excelshop = "(".rtrim($excelshop,'or').")";
  2256. }
  2257. }
  2258. if(isset($_GET['excel']))
  2259. {
  2260. $timetk = $this->input->get('timetk',true);
  2261. $timetj = $this->input->get('timetj',true);
  2262. $shop = $this->input->get('shop',true);
  2263. $library = $this->input->get('library',true);
  2264. $type = $this->input->get('type',true);
  2265. $number = $this->input->get('number',true);
  2266. $orderinfo = $this->input->get('orderinfo',true);
  2267. $so = $this->input->get('so',true);
  2268. $number = $this->input->get('number',true);
  2269. $express = $this->input->get('express',true);
  2270. $timetk = strtotime($timetk);
  2271. $timetj = strtotime($timetj);
  2272. $where = "mergeid = 0";
  2273. if($timetk && $timetj && $library == 2)
  2274. {
  2275. $where .= " and librarytime > '$timetk' and librarytime < '$timetj'";
  2276. }
  2277. else
  2278. {
  2279. $where .= " and printtime > '$timetk' and printtime < '$timetj'";
  2280. }
  2281. if(isset($_SESSION['api']))
  2282. {
  2283. if($type)
  2284. {
  2285. $where .= " and type = '$type'";
  2286. }
  2287. else
  2288. {
  2289. $uw = '';
  2290. $u = $this->user->get_api($_SESSION['api']);
  2291. $u['warehouse'] = explode('|',trim($u['warehouse'],'|'));
  2292. foreach ($u['warehouse'] as $v)
  2293. {
  2294. $uw .= " type = '$v' or";
  2295. }
  2296. $uw = rtrim($uw,'or');
  2297. $uw = " and (".ltrim($uw,' ').")";
  2298. $where .= $uw;
  2299. }
  2300. }
  2301. else
  2302. {
  2303. echo json_encode(array('msg'=>'导出失败,请重新登陆!','success'=>false));exit;
  2304. }
  2305. if($shop)
  2306. {
  2307. $where .= " and shop = '$shop'";
  2308. }
  2309. else
  2310. {
  2311. $where .= " and ".$excelshop;
  2312. }
  2313. if($library)
  2314. {
  2315. $where .= " and library = '$library'";
  2316. }
  2317. if($number)
  2318. {
  2319. $where .= " and number = '$number'";
  2320. }
  2321. if($orderinfo)
  2322. {
  2323. $where .= " and orderinfo = '$orderinfo'";
  2324. }
  2325. if($so)
  2326. {
  2327. $where .= " and shipremarks like '%$so%'";
  2328. }
  2329. if($express)
  2330. {
  2331. $where .= " and express = '$express'";
  2332. }
  2333. /* 匹配ID加入 */
  2334. $tc = array();
  2335. $typeclass = $this->typeclass->find_all();
  2336. foreach ($typeclass as $v)
  2337. {
  2338. $tc[$v['id']] = $v['title'];
  2339. }
  2340. $shouldmoney=0;$expressmoney=0;$budget=0;$refundj=0;$refundj=0;$cost=0;$lr=0;
  2341. //取得信息列表
  2342. $info_lista = $this->fullordersmt->find_all($where,'fpdata');
  2343. $info_listb = $this->fullorder->find_all($where,'fpdata');
  2344. $info_list = array_merge($info_lista,$info_listb);
  2345. //格式化数据
  2346. $i = 0;$cpexcel = array();
  2347. foreach ($info_list as $key=>$value)
  2348. {
  2349. if(stripos($value['fpdata'],';') !== false)
  2350. {
  2351. $fpdata = explode(';',rtrim($value['fpdata'],';'));
  2352. foreach ($fpdata as $ke=>$va)
  2353. {
  2354. $title = '';
  2355. $fg = explode('|',$va);
  2356. $fg[0] = str_replace(array('163-','164-','165-','166-','-0-'),array('','','','','-'),$fg[0]);
  2357. $cp = explode('-',rtrim($fg[0],'-'));
  2358. if(isset($cp[2])){
  2359. $kw = $this->logic_u9tools->checkLengthLocal($fg[0]);
  2360. if($kw == 3){
  2361. if(isset($cp[3])){
  2362. $title = $tc[$cp[3]];
  2363. }else{
  2364. $dj = "";
  2365. }
  2366. }else{
  2367. $dj = $tc[$cp[2]];
  2368. }
  2369. }else{
  2370. $dj= "";
  2371. }
  2372. if(!isset($cp[3]))
  2373. {
  2374. $ys = json_encode($cp);
  2375. }
  2376. else
  2377. {
  2378. $ys = $tc[$cp[3]];
  2379. }
  2380. unset($cp[0],$cp[1],$cp[2],$cp[3]);
  2381. foreach ($cp as $v)
  2382. {
  2383. $title .= $tc[$v].' ';
  2384. }
  2385. if(stripos($fg[0],'131-') !== false){
  2386. $title = "";
  2387. $ys="";
  2388. }
  2389. $cpexcel[$ke] = array($fg[5],$dj,$ys,$title,$fg[2]);//内容,尺寸,等级,颜色,数量
  2390. }
  2391. }
  2392. $i++;
  2393. }
  2394. $title = "统计信息";
  2395. $titlename = "<table border=1>
  2396. <tr>
  2397. <td>尺寸</td>
  2398. <td>等级</td>
  2399. <td>颜色</td>
  2400. <td>花型</td>
  2401. <td>数量</td>
  2402. </tr>
  2403. </table>";
  2404. $filename = $title.".xls";
  2405. $tail = "\n";
  2406. $this->excel->get_fz2($cpexcel,$titlename,$filename,$tail);
  2407. }
  2408. }
  2409. public function _orderyz()
  2410. {
  2411. $post = $this->input->post(NULL, TRUE);
  2412. if(isset($post['yz']))
  2413. {
  2414. $yz = $this->input->post('yz',true);
  2415. $number = $this->input->post('number',true);
  2416. $y = $this->fullorder->get_number($number);
  2417. if(!$y)
  2418. {
  2419. $y = $this->fullordersmt->get_number($number);
  2420. if(!$y)
  2421. {
  2422. echo json_encode(array('msg'=>'没有找到此订单,请检查是否扫描错误','success'=>false));exit;
  2423. }
  2424. }
  2425. $whlabel = explode('|',trim($y['whlabel'],'|'));
  2426. foreach($whlabel as $k=>$v)
  2427. {
  2428. $w = explode('-',trim($v,'-'));
  2429. $wldata[$w[0]] = $w;
  2430. }
  2431. $whlabellabel = $this->whlabellabel->get_label($yz);
  2432. if(!$whlabellabel)
  2433. {
  2434. echo json_encode(array('msg'=>'没有找到此产品条码','success'=>false));exit;
  2435. }
  2436. else
  2437. {
  2438. if(isset($wldata[$whlabellabel['number']]))
  2439. {
  2440. if(!isset($wldata[$whlabellabel['number']][2]))
  2441. {
  2442. echo json_encode(array('msg'=>'此货物没有占单!','success'=>false));exit;
  2443. }
  2444. else if($wldata[$whlabellabel['number']][2] == 0)
  2445. {
  2446. echo json_encode(array('msg'=>'此货物没有占单!','success'=>false));exit;
  2447. }
  2448. }
  2449. else
  2450. {
  2451. echo json_encode(array('msg'=>'此订单中没有扫码产品!','success'=>false));exit;
  2452. }
  2453. echo json_encode(array('number'=>$whlabellabel['number'],'success'=>true));exit;
  2454. }
  2455. }
  2456. if(isset($post['number']))
  2457. {
  2458. $number = $this->input->post('number',true);
  2459. $f = 'fullorder';
  2460. $y = $this->fullorder->get_number($number);
  2461. if(!$y)
  2462. {
  2463. $f = 'fullordersmt';
  2464. $y = $this->fullordersmt->get_number($number);
  2465. if(!$y)
  2466. {
  2467. echo json_encode(array('msg'=>'没有找到此订单,请检查是否扫描错误','success'=>false));exit;
  2468. }
  2469. }
  2470. if($y['librarytime'] > 0)
  2471. {
  2472. echo json_encode(array('msg'=>'错误,此订单已出库!','success'=>false));exit;
  2473. }
  2474. $warehouse = $this->warehouse->read($y['type']);
  2475. if(stripos($y['whlabel'],$warehouse['hz']) === false)
  2476. {
  2477. echo json_encode(array('msg'=>'pz','success'=>false));exit;
  2478. }
  2479. $data = explode('|',trim($y['whlabel'],'|'));
  2480. $fpdata = explode(';',trim($y['fpdata'],';'));
  2481. $cp = array();$i = 0;$x=0;$byz = array();$znum = 0;
  2482. foreach($fpdata as $val)
  2483. {
  2484. $pm = array(13=>'',22=>'',8=>'',15=>'',18=>'','100'=>'',33=>'',34=>'',7=>'','dc'=>'','c'=>'',14=>'',12=>'',25=>'',26=>'',27=>'',10=>'',6=>'',9=>'',999=>'',9999=>'');
  2485. $scsku = array(13=>'',22=>'',8=>'',15=>'',18=>'','100'=>'',33=>'',34=>'',7=>'','dc'=>'','c'=>'',14=>'',12=>'',25=>'',26=>'',27=>'',10=>'',6=>'',9=>'',999=>'',9999=>'');
  2486. $fp = explode('|',$val);
  2487. $fp[0] = str_replace(',','-',$fp[0]);
  2488. $value = explode('-',$fp[0]);
  2489. foreach($value as $v)
  2490. {
  2491. $typeclass = $this->typeclass->read($v);
  2492. $zh = explode('|',trim($typeclass['zh'],'|'));
  2493. $pm[$typeclass['classid']] = $zh[0];
  2494. $scsku[$typeclass['classid']] = $typeclass['bqsku'];
  2495. }
  2496. $scsku = implode("-",$scsku);
  2497. $zh = implode(" ",$pm);
  2498. $zh = str_replace('自然色 ','',rtrim($zh,' '));
  2499. $scsku = str_replace('- ','-',trim($scsku,'-'));
  2500. $scsku = str_replace(array('--------','-------','------','-----','----','---','--'),'-',$scsku);
  2501. $zh = str_replace(array(' ',' ',' ',' ',' ',' ',' '),' ',$zh);
  2502. $data[$i] = explode('-',$data[$i]);
  2503. for($j=0;$j<$data[$i][1];$j++)
  2504. {
  2505. if(isset($data[$i][2]) && $warehouse['hz'] != '' && stripos($data[$i][2],$warehouse['hz']) !== false)
  2506. {
  2507. $znum++;//只计算现货
  2508. //$cp[$x] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'t'=>'<span data-id="'.$data[$i][0].'">替换现货</sapn>','c'=>1,'color'=>'#333');//区别位置模式,暂不使用
  2509. $cp[] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'y'=>'已占单','t'=>'<span data-id="'.$data[$i][0].'">替换现货</sapn>','c'=>1,'color'=>'#333');
  2510. }
  2511. else
  2512. {
  2513. //$cp[999+$x] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'t'=>'<span data-id="'.$data[$i][0].'" style="background-color:#ccc">增加现货</sapn>','c'=>0,'color'=>'#999');//区别位置模式,暂不使用
  2514. $cp[] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'y'=>'','t'=>'<span data-id="'.$data[$i][0].'" style="background-color:#e7ba08">增加现货</sapn>','c'=>0,'color'=>'#666');
  2515. }
  2516. $x++;//所有数量
  2517. }
  2518. $i++;
  2519. }
  2520. //ksort($cp);//区别位置模式,暂不使用
  2521. $cp = array_values($cp);
  2522. if($this->$f->save(array('yhs'=>1),$y['id']))
  2523. {
  2524. echo json_encode(array('rows'=>$cp,'z'=>$znum,'success'=>true));exit;
  2525. }
  2526. else
  2527. {
  2528. echo json_encode(array('msg'=>'处理信息失败,请重试','success'=>false));exit;
  2529. }
  2530. }
  2531. if(isset($post['tid']))
  2532. {
  2533. $typeclass = array();
  2534. $tc = $this->typeclass->find_all();
  2535. foreach($tc as $v)
  2536. {
  2537. $typeclass[$v['id']] = array('id'=>$v['id'],'classid'=>$v['classid'],'spare'=>$v['spare']);
  2538. }
  2539. $tid = $this->input->post('tid',true);
  2540. $id = $this->input->post('id',true);
  2541. $number = $this->input->post('n',true);
  2542. $ful = 'fullorder';
  2543. $y = $this->fullorder->get_number($number);
  2544. if(!$y)
  2545. {
  2546. $ful = 'fullordersmt';
  2547. $y = $this->fullordersmt->get_number($number);
  2548. if(!$y)
  2549. {
  2550. echo json_encode(array('msg'=>'没有找到此订单,请检查是否扫描错误','success'=>false));exit;
  2551. }
  2552. }
  2553. $wtid = $this->whlabellabel->get_label($tid);
  2554. if(!$wtid)
  2555. {
  2556. echo json_encode(array('msg'=>'没有找到此产品条码','success'=>false));exit;
  2557. }
  2558. $whlabel = explode('|',trim($y['whlabel'],'|'));
  2559. $fpdata = explode(';',trim($y['fpdata'],';'));
  2560. $warehouse = $this->warehouse->read($y['type']);
  2561. $zdkc = $warehouse['bdck'];
  2562. $ptc = $this->$zdkc->find_all("state = '0' and number = '".$wtid['number']."' and warehouse = '".$warehouse['id']."' and zd = '' and (shop IS NULL or shop = '')");//通用
  2563. $zsc = $this->$zdkc->find_all("state = '0' and number = '".$wtid['number']."' and warehouse = '".$warehouse['id']."' and zd = '' and shop like '%,".$y['shop'].",%'");//专属
  2564. if((count($ptc)+count($zsc)) < 1)
  2565. {
  2566. echo json_encode(array('msg'=>'录入的产品没有足够的库存!-'.(count($ptc)+count($zsc)),'success'=>false));exit;
  2567. }
  2568. $this->db->trans_begin();
  2569. $dataw = '';$dataf = '';$fhdata = array();$ww = '';$ff = '';$thff = '';
  2570. if($zsc)
  2571. {
  2572. $this->$zdkc->save(array('zd'=>$number),$zsc[0]['id']);
  2573. $xrid = $zsc[0]['id'];
  2574. }
  2575. else if($ptc)
  2576. {
  2577. $this->$zdkc->save(array('zd'=>$number),$ptc[0]['id']);
  2578. $xrid = $ptc[0]['id'];
  2579. }
  2580. $xr = $this->$zdkc->read($xrid);
  2581. $features = explode('-',trim($xr['features'],'-'));
  2582. $fhdata = array('sku'=>$xr['sku'],'title'=>$xr['title'],'id'=>$xr['features']);
  2583. foreach($features as $kk=>$v)
  2584. {
  2585. if($typeclass[$v]['classid'] == 14)
  2586. {
  2587. $cc = array('id'=>$typeclass[$v]['id'],'spare'=>$typeclass[$v]['spare']);
  2588. unset($kk);
  2589. }
  2590. }
  2591. $dataw = $tid.'-1-'.$xrid.$warehouse['hz'].'|';
  2592. $dataf = $cc['id'].',-'.implode("-",$features).'-|'.$xr['title'].' |1|0|0|'.$cc['spare'].'|0|0|0|'.$xr['id'].$warehouse['hz'].';';
  2593. $wldata = array();
  2594. $fdata = array();
  2595. foreach($whlabel as $k=>$v)
  2596. {
  2597. $w = explode('-',trim($v,'-'));
  2598. $wldata[$w[0]] = array('wz'=>$k,'sj'=>$w);
  2599. }
  2600. if(!isset($wldata[$id]))
  2601. {
  2602. echo json_encode(array('msg'=>'错误,未找到需要替换的产品,请重新扫发货单条码验货','success'=>false));exit;
  2603. }
  2604. if(isset($wldata[$wtid['number']]['sj']))
  2605. {
  2606. $tw = $wldata[$wtid['number']]['sj'];
  2607. if($wtid['number'] != $id)
  2608. {
  2609. echo json_encode(array('msg'=>'替换的产品已存在,请操作此产品','success'=>false));exit;
  2610. }
  2611. else
  2612. {
  2613. if(isset($tw[2]) && $tw[2] != 0)
  2614. {
  2615. echo json_encode(array('msg'=>'替换的产品已存在,并且已占单,无法操作替换!','success'=>false));exit;
  2616. }
  2617. }
  2618. if($tw[1] > 1)
  2619. {
  2620. echo json_encode(array('msg'=>'替换的产品已存在,并且已数量为大于1,无法操作替换!','success'=>false));exit;
  2621. }
  2622. }
  2623. $thfpdata = $y['thfpdata'];
  2624. $w = $wldata[$id]['sj'];
  2625. $f = explode('|',trim($fpdata[$wldata[$id]['wz']],'|'));
  2626. $zdkc = $warehouse['bdck'];
  2627. if($w[1] > 1)
  2628. {
  2629. if(isset($w[2]) && $w[2] != 0)
  2630. {
  2631. $hz = explode('~',trim($w[2],'~'));
  2632. $this->$zdkc->save(array('zd'=>''),trim($hz[0],$warehouse['hz']));
  2633. $zd = str_replace($hz[0],'',$w[2]);
  2634. $zd = trim($zd,'~');
  2635. $w[2] = $zd;
  2636. }
  2637. foreach($w as $kk=>$v)
  2638. {
  2639. if($kk == 1)
  2640. {
  2641. $v = $v-1;
  2642. }
  2643. $ww .= $v .'-';
  2644. }
  2645. $whlabel[$wldata[$id]['wz']] = trim($ww,'-');
  2646. foreach($f as $kk=>$v)
  2647. {
  2648. if($kk == 2)
  2649. {
  2650. $v = $v-1;
  2651. $thff .= '1|';
  2652. }
  2653. else
  2654. {
  2655. $thff .= $v .'|';
  2656. }
  2657. $ff .= $v .'|';
  2658. }
  2659. $fpdata[$wldata[$id]['wz']] = trim($ff,'|');
  2660. $thfpdata .= trim($thff,'|');
  2661. }
  2662. else
  2663. {
  2664. $thfpdata .= $fpdata[$wldata[$id]['wz']];
  2665. unset($whlabel[$wldata[$id]['wz']]);
  2666. unset($fpdata[$wldata[$id]['wz']]);
  2667. }
  2668. $thfpdata .= '~'.$dataf;
  2669. $whlabel = '|'.implode("|",$whlabel).'|'.$dataw;
  2670. $fpdata = implode(";",$fpdata).';'.$dataf;
  2671. $this->$ful->save(array('whlabel'=>$whlabel,'fpdata'=>$fpdata,'thfpdata'=>$thfpdata),$y['id']);
  2672. if ($this->db->trans_status() === TRUE)
  2673. {
  2674. $this->db->trans_commit();
  2675. echo json_encode(array('sku'=>$fhdata['sku'],'title'=>$fhdata['title'],'id'=>$fhdata['id'],'msg'=>321,'success'=>true));exit;
  2676. }
  2677. else
  2678. {
  2679. $this->db->trans_rollback();
  2680. echo json_encode(array('msg'=>'条码录入失败,请重试','success'=>false));exit;
  2681. }
  2682. }
  2683. if(isset($post['yhs']))
  2684. {
  2685. $f = 'fullorder';
  2686. $number = $this->input->post('yhs',true);
  2687. $y = $this->fullorder->get_number($number);
  2688. if(!$y)
  2689. {
  2690. $f = 'fullordersmt';
  2691. $y = $this->fullordersmt->get_number($number);
  2692. }
  2693. if($this->$f->save(array('yhs'=>0),$y['id']))
  2694. {
  2695. echo json_encode(array('success'=>true));exit;
  2696. }
  2697. else
  2698. {
  2699. echo json_encode(array('success'=>false));exit;
  2700. }
  2701. }
  2702. $this->_Template('systemfout_orderyz',$this->data);
  2703. }
  2704. public function _hwyz()
  2705. {
  2706. $post = $this->input->post(NULL, TRUE);
  2707. if(isset($post['yz']))
  2708. {
  2709. $yz = $this->input->post('yz',true);
  2710. $number = $this->input->post('number',true);
  2711. $y = $this->fullorder->get_number($number);
  2712. if(!$y)
  2713. {
  2714. $y = $this->fullordersmt->get_number($number);
  2715. if(!$y)
  2716. {
  2717. echo json_encode(array('msg'=>'没有找到此订单,请检查是否扫描错误','success'=>false));exit;
  2718. }
  2719. }
  2720. $whlabel = explode('|',trim($y['whlabel'],'|'));
  2721. foreach($whlabel as $k=>$v)
  2722. {
  2723. $w = explode('-',trim($v,'-'));
  2724. $wldata[$w[0]] = $w;
  2725. }
  2726. $whlabellabel = $this->whlabellabel->get_label($yz);
  2727. if(!$whlabellabel)
  2728. {
  2729. echo json_encode(array('msg'=>'没有找到此产品条码','success'=>false));exit;
  2730. }
  2731. else
  2732. {
  2733. if(isset($wldata[$whlabellabel['number']]))
  2734. {
  2735. if(!isset($wldata[$whlabellabel['number']][2]))
  2736. {
  2737. echo json_encode(array('msg'=>'此货物没有占单!','success'=>false));exit;
  2738. }
  2739. else if($wldata[$whlabellabel['number']][2] == 0)
  2740. {
  2741. echo json_encode(array('msg'=>'此货物没有占单!','success'=>false));exit;
  2742. }
  2743. }
  2744. else
  2745. {
  2746. echo json_encode(array('msg'=>'此订单中没有扫码产品!','success'=>false));exit;
  2747. }
  2748. echo json_encode(array('number'=>$whlabellabel['number'],'success'=>true));exit;
  2749. }
  2750. }
  2751. if(isset($post['number']))
  2752. {
  2753. $number = $this->input->post('number',true);
  2754. $f = 'fullorder';
  2755. $y = $this->fullorder->get_number($number);
  2756. if(!$y)
  2757. {
  2758. $f = 'fullordersmt';
  2759. $y = $this->fullordersmt->get_number($number);
  2760. if(!$y)
  2761. {
  2762. echo json_encode(array('msg'=>'没有找到此订单,请检查是否扫描错误','success'=>false));exit;
  2763. }
  2764. }
  2765. if($y['librarytime'] > 0)
  2766. {
  2767. echo json_encode(array('msg'=>'错误,此订单已出库!','success'=>false));exit;
  2768. }
  2769. $warehouse = $this->warehouse->read($y['type']);
  2770. $data = explode('|',trim($y['whlabel'],'|'));
  2771. $fpdata = explode(';',trim($y['fpdata'],';'));
  2772. $cp = array();$i = 0;$x=0;$byz = array();$znum = 0;
  2773. foreach($fpdata as $val)
  2774. {
  2775. $pm = array(13=>'',22=>'',8=>'',15=>'',18=>'','100'=>'',33=>'',34=>'',7=>'','dc'=>'','c'=>'',14=>'',12=>'',25=>'',26=>'',27=>'',10=>'',6=>'',9=>'',999=>'',9999=>'');
  2776. $scsku = array(13=>'',22=>'',8=>'',15=>'',18=>'','100'=>'',33=>'',34=>'',7=>'','dc'=>'','c'=>'',14=>'',12=>'',25=>'',26=>'',27=>'',10=>'',6=>'',9=>'',999=>'',9999=>'');
  2777. $fp = explode('|',$val);
  2778. $fp[0] = str_replace(',','-',$fp[0]);
  2779. $value = explode('-',$fp[0]);
  2780. foreach($value as $v)
  2781. {
  2782. $typeclass = $this->typeclass->read($v);
  2783. $zh = explode('|',trim($typeclass['zh'],'|'));
  2784. $pm[$typeclass['classid']] = $zh[0];
  2785. $scsku[$typeclass['classid']] = $typeclass['bqsku'];
  2786. }
  2787. $scsku = implode("-",$scsku);
  2788. $zh = implode(" ",$pm);
  2789. $zh = str_replace('自然色 ','',rtrim($zh,' '));
  2790. $scsku = str_replace('- ','-',trim($scsku,'-'));
  2791. $scsku = str_replace(array('--------','-------','------','-----','----','---','--'),'-',$scsku);
  2792. $zh = str_replace(array(' ',' ',' ',' ',' ',' ',' '),' ',$zh);
  2793. $data[$i] = explode('-',$data[$i]);
  2794. for($j=0;$j<$data[$i][1];$j++)
  2795. {
  2796. if(isset($data[$i][2]) && $warehouse['hz'] != '' && stripos($data[$i][2],$warehouse['hz']) !== false)
  2797. {
  2798. $znum++;//只计算现货
  2799. //$cp[$x] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'t'=>'<span data-id="'.$data[$i][0].'">替换现货</sapn>','c'=>1,'color'=>'#333');//区别位置模式,暂不使用
  2800. $cp[] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'y'=>'已占单','t'=>'<span data-id="'.$data[$i][0].'">替换现货</sapn>','c'=>1,'color'=>'#333');
  2801. }
  2802. else
  2803. {
  2804. //$cp[999+$x] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'t'=>'<span data-id="'.$data[$i][0].'" style="background-color:#ccc">增加现货</sapn>','c'=>0,'color'=>'#999');//区别位置模式,暂不使用
  2805. $cp[] = array('id'=>$data[$i][0],'sku'=>$scsku,'zh'=>$zh,'y'=>'','t'=>'<span data-id="'.$data[$i][0].'" style="background-color:#e7ba08">增加现货</sapn>','c'=>0,'color'=>'#666');
  2806. }
  2807. $x++;//所有数量
  2808. }
  2809. $i++;
  2810. }
  2811. //ksort($cp);//区别位置模式,暂不使用
  2812. $cp = array_values($cp);
  2813. if($this->$f->save(array('yhs'=>1),$y['id']))
  2814. {
  2815. if(stripos($y['whlabel'],$warehouse['hz']) === false)
  2816. {
  2817. echo json_encode(array('rows'=>$cp,'z'=>$znum,'msg'=>'pz','success'=>false));exit;
  2818. }
  2819. echo json_encode(array('rows'=>$cp,'z'=>$znum,'success'=>true));exit;
  2820. }
  2821. else
  2822. {
  2823. echo json_encode(array('msg'=>'处理信息失败,请重试','success'=>false));exit;
  2824. }
  2825. }
  2826. if(isset($post['tid']))
  2827. {
  2828. $typeclass = array();
  2829. $tc = $this->typeclass->find_all();
  2830. foreach($tc as $v)
  2831. {
  2832. $typeclass[$v['id']] = array('id'=>$v['id'],'classid'=>$v['classid'],'spare'=>$v['spare']);
  2833. }
  2834. $tid = $this->input->post('tid',true);
  2835. $id = $this->input->post('id',true);
  2836. $number = $this->input->post('n',true);
  2837. $ful = 'fullorder';
  2838. $y = $this->fullorder->get_number($number);
  2839. if(!$y)
  2840. {
  2841. $ful = 'fullordersmt';
  2842. $y = $this->fullordersmt->get_number($number);
  2843. if(!$y)
  2844. {
  2845. echo json_encode(array('msg'=>'没有找到此订单,请检查是否扫描错误','success'=>false));exit;
  2846. }
  2847. }
  2848. $wtid = $this->whlabellabel->get_label($tid);
  2849. if(!$wtid)
  2850. {
  2851. echo json_encode(array('msg'=>'没有找到此产品条码','success'=>false));exit;
  2852. }
  2853. $whlabel = explode('|',trim($y['whlabel'],'|'));
  2854. $fpdata = explode(';',trim($y['fpdata'],';'));
  2855. $warehouse = $this->warehouse->read($y['type']);
  2856. $zdkc = $warehouse['bdck'];
  2857. $ptc = $this->$zdkc->find_all("state = '0' and number = '".$wtid['number']."' and warehouse = '".$warehouse['id']."' and zd = '' and (shop IS NULL or shop = '')");//通用
  2858. $zsc = $this->$zdkc->find_all("state = '0' and number = '".$wtid['number']."' and warehouse = '".$warehouse['id']."' and zd = '' and shop like '%,".$y['shop'].",%'");//专属
  2859. if((count($ptc)+count($zsc)) < 1)
  2860. {
  2861. echo json_encode(array('msg'=>'录入的产品没有足够的库存!-'.(count($ptc)+count($zsc)),'success'=>false));exit;
  2862. }
  2863. $this->db->trans_begin();
  2864. $dataw = '';$dataf = '';$fhdata = array();$ww = '';$ff = '';$thff = '';
  2865. if($zsc)
  2866. {
  2867. $this->$zdkc->save(array('zd'=>$number),$zsc[0]['id']);
  2868. $xrid = $zsc[0]['id'];
  2869. }
  2870. else if($ptc)
  2871. {
  2872. $this->$zdkc->save(array('zd'=>$number),$ptc[0]['id']);
  2873. $xrid = $ptc[0]['id'];
  2874. }
  2875. $xr = $this->$zdkc->read($xrid);
  2876. $features = explode('-',trim($xr['features'],'-'));
  2877. $fhdata = array('sku'=>$xr['sku'],'title'=>$xr['title'],'id'=>$xr['features']);
  2878. foreach($features as $kk=>$v)
  2879. {
  2880. if($typeclass[$v]['classid'] == 14)
  2881. {
  2882. $cc = array('id'=>$typeclass[$v]['id'],'spare'=>$typeclass[$v]['spare']);
  2883. unset($kk);
  2884. }
  2885. }
  2886. $dataw = $tid.'-1-'.$xrid.$warehouse['hz'].'|';
  2887. $dataf = $cc['id'].',-'.implode("-",$features).'-|'.$xr['title'].' |1|0|0|'.$cc['spare'].'|0|0|0|'.$xr['id'].$warehouse['hz'].';';
  2888. $wldata = array();
  2889. $fdata = array();
  2890. foreach($whlabel as $k=>$v)
  2891. {
  2892. $w = explode('-',trim($v,'-'));
  2893. $wldata[$w[0]] = array('wz'=>$k,'sj'=>$w);
  2894. }
  2895. if(!isset($wldata[$id]))
  2896. {
  2897. echo json_encode(array('msg'=>'错误,未找到需要替换的产品,请重新扫发货单条码验货','success'=>false));exit;
  2898. }
  2899. if(isset($wldata[$wtid['number']]['sj']))
  2900. {
  2901. $tw = $wldata[$wtid['number']]['sj'];
  2902. if($wtid['number'] != $id)
  2903. {
  2904. echo json_encode(array('msg'=>'替换的产品已存在,请操作此产品','success'=>false));exit;
  2905. }
  2906. else
  2907. {
  2908. if(isset($tw[2]) && $tw[2] != 0)
  2909. {
  2910. echo json_encode(array('msg'=>'替换的产品已存在,并且已占单,无法操作替换!','success'=>false));exit;
  2911. }
  2912. }
  2913. if($tw[1] > 1)
  2914. {
  2915. echo json_encode(array('msg'=>'替换的产品已存在,并且已数量为大于1,无法操作替换!','success'=>false));exit;
  2916. }
  2917. }
  2918. $thfpdata = $y['thfpdata'];
  2919. $w = $wldata[$id]['sj'];
  2920. $f = explode('|',trim($fpdata[$wldata[$id]['wz']],'|'));
  2921. $zdkc = $warehouse['bdck'];
  2922. if($w[1] > 1)
  2923. {
  2924. if(isset($w[2]) && $w[2] != 0)
  2925. {
  2926. $hz = explode('~',trim($w[2],'~'));
  2927. $this->$zdkc->save(array('zd'=>''),trim($hz[0],$warehouse['hz']));
  2928. $zd = str_replace($hz[0],'',$w[2]);
  2929. $zd = trim($zd,'~');
  2930. $w[2] = $zd;
  2931. }
  2932. foreach($w as $kk=>$v)
  2933. {
  2934. if($kk == 1)
  2935. {
  2936. $v = $v-1;
  2937. }
  2938. $ww .= $v .'-';
  2939. }
  2940. $whlabel[$wldata[$id]['wz']] = trim($ww,'-');
  2941. foreach($f as $kk=>$v)
  2942. {
  2943. if($kk == 2)
  2944. {
  2945. $v = $v-1;
  2946. $thff .= '1|';
  2947. }
  2948. else
  2949. {
  2950. $thff .= $v .'|';
  2951. }
  2952. $ff .= $v .'|';
  2953. }
  2954. $fpdata[$wldata[$id]['wz']] = trim($ff,'|');
  2955. $thfpdata .= trim($thff,'|');
  2956. }
  2957. else
  2958. {
  2959. $thfpdata .= $fpdata[$wldata[$id]['wz']];
  2960. unset($whlabel[$wldata[$id]['wz']]);
  2961. unset($fpdata[$wldata[$id]['wz']]);
  2962. }
  2963. $thfpdata .= '~'.$dataf;
  2964. $whlabel = '|'.implode("|",$whlabel).'|'.$dataw;
  2965. $fpdata = implode(";",$fpdata).';'.$dataf;
  2966. $this->$ful->save(array('whlabel'=>$whlabel,'fpdata'=>$fpdata,'thfpdata'=>$thfpdata),$y['id']);
  2967. if ($this->db->trans_status() === TRUE)
  2968. {
  2969. $this->db->trans_commit();
  2970. echo json_encode(array('sku'=>$fhdata['sku'],'title'=>$fhdata['title'],'id'=>$fhdata['id'],'msg'=>321,'success'=>true));exit;
  2971. }
  2972. else
  2973. {
  2974. $this->db->trans_rollback();
  2975. echo json_encode(array('msg'=>'条码录入失败,请重试','success'=>false));exit;
  2976. }
  2977. }
  2978. if(isset($post['yhs']))
  2979. {
  2980. $f = 'fullorder';
  2981. $number = $this->input->post('yhs',true);
  2982. $y = $this->fullorder->get_number($number);
  2983. if(!$y)
  2984. {
  2985. $f = 'fullordersmt';
  2986. $y = $this->fullordersmt->get_number($number);
  2987. }
  2988. if($this->$f->save(array('yhs'=>0),$y['id']))
  2989. {
  2990. echo json_encode(array('success'=>true));exit;
  2991. }
  2992. else
  2993. {
  2994. echo json_encode(array('success'=>false));exit;
  2995. }
  2996. }
  2997. $this->_Template('systemfout_hwyz',$this->data);
  2998. }
  2999. public function _fouthb()
  3000. {
  3001. $post = $this->input->post(NULL, TRUE);
  3002. $xw = '';
  3003. if(isset($_SESSION['api']))
  3004. {
  3005. $user = $this->user->get_api($_SESSION['api']);
  3006. $usp = $user;
  3007. $fgshop = "";$sid = "";$wid="";$wtype="";
  3008. $usersp = explode('|',trim($user['shop'],'|'));
  3009. $userwh = explode('|',trim($user['warehouse'],'|'));
  3010. foreach ($usersp as $value)
  3011. {
  3012. $fgshop .= " shop = ".$value." or";
  3013. $sid .= " id = ".$value." or";
  3014. }
  3015. foreach ($userwh as $value)
  3016. {
  3017. $wid .= " id = ".$value." or";
  3018. $wtype .= " type = ".$value." or";
  3019. }
  3020. if($user['userid'] == 'xw')
  3021. {
  3022. $xw = 1;
  3023. }
  3024. }
  3025. if(isset($post['page']))
  3026. {
  3027. $page = $this->input->post('page',true);
  3028. $perpage = $this->input->post('perpage',true);
  3029. $timetk = $this->input->post('timetk',true);
  3030. $timetj = $this->input->post('timetj',true);
  3031. $shop = $this->input->post('shop',true);
  3032. $type = $this->input->post('type',true);
  3033. $express = $this->input->post('express',true);
  3034. $number = $this->input->post('number',true);
  3035. $waybill = $this->input->post('waybill',true);
  3036. $librarytime = $this->input->post('librarytime',true);
  3037. $timetk = strtotime($timetk);
  3038. $timetj = strtotime($timetj);
  3039. $where = "mergeid = '1'";
  3040. $where .= " and librarytime > '$timetk' and librarytime < '$timetj'";
  3041. if($shop)
  3042. {
  3043. $where .= " and shop = '$shop'";
  3044. }
  3045. if($number)
  3046. {
  3047. $where .= " and number like '$number%'";
  3048. }
  3049. if($waybill)
  3050. {
  3051. $where .= " and waybill = '$waybill'";
  3052. }
  3053. if($type)
  3054. {
  3055. $where .= " and type = '$type'";
  3056. }
  3057. if($express)
  3058. {
  3059. $where .= " and express = '$express'";
  3060. }
  3061. //数据排序
  3062. $order_str = "librarytime desc";
  3063. if(empty($page))
  3064. {
  3065. $start = 0;
  3066. $perpage = 1;
  3067. }
  3068. else
  3069. {
  3070. $start = ($page - 1)*$perpage;
  3071. }
  3072. //取得信息列表
  3073. $info_list = $this->fullorder->find_all($where,'id,shop,number,waybill,express,librarytime',$order_str,$start,$perpage);
  3074. //格式化数据
  3075. foreach ($info_list as $key=>$value)
  3076. {
  3077. $shop = $this->shop->read($value['shop']);
  3078. $info_list[$key]['shop'] = $shop['shopname'];
  3079. $express = $this->express->read($value['express']);
  3080. $info_list[$key]['express'] = $express['servicename'];
  3081. $warehouse = $this->warehouse->read($value['type']);
  3082. $info_list[$key]['type'] = $warehouse['title'];
  3083. $info_list[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i',$value['librarytime']).'</em>';
  3084. }
  3085. $info_listtt = $this->fullordertt->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  3086. //格式化数据
  3087. foreach ($info_listtt as $key=>$value)
  3088. {
  3089. $shop = $this->shop->read($value['shop']);
  3090. $info_listtt[$key]['shop'] = $shop['shopname'];
  3091. $express = $this->express->read($value['express']);
  3092. $info_listtt[$key]['express'] = $express['servicename'];
  3093. $warehouse = $this->warehouse->read($value['type']);
  3094. $info_listtt[$key]['type'] = $warehouse['title'];
  3095. $info_listtt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3096. }
  3097. $info_listamz = $this->fullorderamz->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  3098. //格式化数据
  3099. foreach ($info_listamz as $key=>$value)
  3100. {
  3101. $shop = $this->shop->read($value['shop']);
  3102. $info_listamz[$key]['shop'] = $shop['shopname'];
  3103. $express = $this->express->read($value['express']);
  3104. $info_listamz[$key]['express'] = $express['servicename'];
  3105. $warehouse = $this->warehouse->read($value['type']);
  3106. $info_listamz[$key]['type'] = $warehouse['title'];
  3107. $info_listamz[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3108. }
  3109. $info_listxw = $this->fullorderxw->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  3110. //格式化数据
  3111. foreach ($info_listxw as $key=>$value)
  3112. {
  3113. $shop = $this->shop->read($value['shop']);
  3114. $info_listxw[$key]['shop'] = $shop['shopname'];
  3115. $express = $this->express->read($value['express']);
  3116. $info_listxw[$key]['express'] = $express['servicename'];
  3117. $warehouse = $this->warehouse->read($value['type']);
  3118. $info_listxw[$key]['type'] = $warehouse['title'];
  3119. $info_listxw[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3120. }
  3121. $info_listsmt = $this->fullordersmt->find_all($where." and mergeid = '0'",'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,shipremarks',$order_str,$start,$perpage);
  3122. //格式化数据
  3123. foreach ($info_listsmt as $key=>$value)
  3124. {
  3125. $shop = $this->shop->read($value['shop']);
  3126. $info_listsmt[$key]['shop'] = $shop['shopname'];
  3127. $express = $this->express->read($value['express']);
  3128. $info_listsmt[$key]['express'] = $express['servicename'];
  3129. $warehouse = $this->warehouse->read($value['type']);
  3130. $info_listsmt[$key]['type'] = $warehouse['title'];
  3131. $info_listsmt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3132. }
  3133. $total = $this->fullorder->find_count($where);
  3134. $total += $this->fullordertt->find_count($where);
  3135. $total += $this->fullorderamz->find_count($where);
  3136. $total += $this->fullorderxw->find_count($where);
  3137. $total += $this->fullordersmt->find_count($where);
  3138. $pagenum = ceil($total/$perpage);
  3139. $over = $total-($start+$perpage);
  3140. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>(array_merge($info_list,$info_listamz,$info_listtt,$info_listxw,$info_listsmt)));
  3141. echo json_encode($rows);exit;
  3142. }
  3143. if(isset($_SESSION['api']))
  3144. {
  3145. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  3146. $warehouse = $this->warehouse->find_all('1=1 and '.rtrim($wid,'or'),"*","px asc");
  3147. $this->data['wlshop'] = $wlshop;
  3148. $this->data['warehouse'] = $warehouse;
  3149. }
  3150. $this->data['xw'] = $xw;
  3151. $this->_Template('systemfout_fouthb',$this->data);
  3152. }
  3153. public function _hb()
  3154. {
  3155. $post = $this->input->post(NULL, TRUE);
  3156. $xw = '';
  3157. if(isset($_SESSION['api']))
  3158. {
  3159. $user = $this->user->get_api($_SESSION['api']);
  3160. $usp = $user;
  3161. $fgshop = "";$sid = "";$wid="";$wtype="";
  3162. $usersp = explode('|',trim($user['shop'],'|'));
  3163. $userwh = explode('|',trim($user['warehouse'],'|'));
  3164. foreach ($usersp as $value)
  3165. {
  3166. $fgshop .= " shop = ".$value." or";
  3167. $sid .= " id = ".$value." or";
  3168. }
  3169. foreach ($userwh as $value)
  3170. {
  3171. $wid .= " id = ".$value." or";
  3172. $wtype .= " type = ".$value." or";
  3173. }
  3174. if($user['userid'] == 'xw')
  3175. {
  3176. $xw = 1;
  3177. }
  3178. }
  3179. if(isset($post['page']))
  3180. {
  3181. $page = $this->input->post('page',true);
  3182. $perpage = $this->input->post('perpage',true);
  3183. $timetk = $this->input->post('timetk',true);
  3184. $timetj = $this->input->post('timetj',true);
  3185. $shop = $this->input->post('shop',true);
  3186. $source = $this->input->post('source',true);
  3187. $orderinfo = $this->input->post('orderinfo',true);
  3188. $number = $this->input->post('number',true);
  3189. $library = $this->input->post('library',true);
  3190. $waybill = $this->input->post('waybill',true);
  3191. $express = $this->input->post('express',true);
  3192. $type = $this->input->post('type',true);
  3193. $lowe = $this->input->post('lowe',true);
  3194. $so = $this->input->post('so',true);
  3195. $librarytime = $this->input->post('librarytime',true);
  3196. $timetk = strtotime($timetk);
  3197. $timetj = strtotime($timetj);
  3198. $cxtime = 'id';
  3199. $where = (isset($_SESSION['api']))?"library!=3 and mergeid = 1 and libraryconfirm=2 and print = 3 and (".rtrim($wtype,'or').")":"id = '0' and mergeid = 1";
  3200. if($timetk && $timetj && $library == 1)
  3201. {
  3202. //$cxtime = 'reviewtime';
  3203. $where .= " and printtime > '$timetk - 180*24*3600' and printtime < '$timetj'";
  3204. $where .= " and state != 217";
  3205. }
  3206. else if($timetk && $timetj && $library == 2)
  3207. {
  3208. $cxtime = 'librarytime';
  3209. $where .= " and librarytime > '$timetk' and librarytime < '$timetj'";
  3210. }
  3211. if($shop)
  3212. {
  3213. $where .= " and shop = '$shop'";
  3214. }
  3215. if($number)
  3216. {
  3217. $where .= " and number = '$number'";
  3218. }
  3219. if($library)
  3220. {
  3221. $where .= " and library = '$library'";
  3222. }
  3223. if($waybill)
  3224. {
  3225. $where .= " and waybill = '$waybill'";
  3226. }
  3227. if($express)
  3228. {
  3229. $where .= " and express = '$express'";
  3230. }
  3231. if($orderinfo)
  3232. {
  3233. $where .= " and orderinfo = '$orderinfo'";
  3234. }
  3235. if($type)
  3236. {
  3237. $where .= " and type = '$type'";
  3238. }
  3239. if($lowe)
  3240. {
  3241. $where .= " and shipremarks like '%$lowe%'";
  3242. }
  3243. if($so)
  3244. {
  3245. $where .= " and shipremarks like '%$so%'";
  3246. }
  3247. //数据排序
  3248. $order_str = $cxtime." desc";
  3249. if(empty($page))
  3250. {
  3251. $start = 0;
  3252. $perpage = 1;
  3253. }
  3254. else
  3255. {
  3256. $start = ($page - 1)*$perpage;
  3257. }
  3258. //取得信息列表
  3259. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,orderremarks',$order_str);
  3260. //格式化数据
  3261. // foreach ($info_list as $key=>$value)
  3262. // {
  3263. // $shop = $this->shop->read($value['shop']);
  3264. // $info_list[$key]['shop'] = $shop['shopname'];
  3265. // if($value['waybill'] == '0')
  3266. // {
  3267. // $info_list[$key]['waybill'] = "";
  3268. // }
  3269. // $express = $this->express->read($value['express']);
  3270. // $info_list[$key]['express'] = $express['servicename'];
  3271. // $warehouse = $this->warehouse->read($value['type']);
  3272. // $info_list[$key]['type'] = $warehouse['title'];
  3273. // if($value['print'] == 1)
  3274. // {
  3275. // $info_list[$key]['print'] = '不可打印';
  3276. // }
  3277. // else if($value['print'] == 2)
  3278. // {
  3279. // $info_list[$key]['print'] = '未打印';
  3280. // }
  3281. // else if($value['print'] == 3)
  3282. // {
  3283. // $info_list[$key]['print'] = '已打印';
  3284. // }
  3285. // if($value['library'] == 1)
  3286. // {
  3287. // $info_list[$key]['library'] = '<em class="c">未出库</em>';
  3288. // }
  3289. // else if($value['library'] == 2)
  3290. // {
  3291. // $info_list[$key]['library'] = '<em class="c">已出库</em>';
  3292. // }
  3293. // else if($value['library'] == 3)
  3294. // {
  3295. // $info_list[$key]['library'] = '<em class="c">已退库</em>';
  3296. // }
  3297. // if($value['librarytime'] == '0')
  3298. // {
  3299. // $info_list[$key]['librarytime'] = '<em class="t"></em>';
  3300. // }
  3301. // else
  3302. // {
  3303. // $info_list[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i',$value['librarytime']).'</em>';
  3304. // }
  3305. // $info_list[$key]['orderremarks'] = str_replace(array('<','>'),array('&lt;','&gt;'),$value['orderremarks']);
  3306. // }
  3307. $info_listtt = $this->fullordertt->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,orderremarks',$order_str);
  3308. //格式化数据
  3309. // foreach ($info_listtt as $key=>$value)
  3310. // {
  3311. // $shop = $this->shop->read($value['shop']);
  3312. // $info_listtt[$key]['shop'] = $shop['shopname'];
  3313. // if($value['waybill'] == '0')
  3314. // {
  3315. // $info_listtt[$key]['waybill'] = "";
  3316. // }
  3317. // $express = $this->express->read($value['express']);
  3318. // $info_listtt[$key]['express'] = $express['servicename'];
  3319. // $warehouse = $this->warehouse->read($value['type']);
  3320. // $info_listtt[$key]['type'] = $warehouse['title'];
  3321. // if($value['print'] == 1)
  3322. // {
  3323. // $info_listtt[$key]['print'] = '不可打印';
  3324. // }
  3325. // else if($value['print'] == 2)
  3326. // {
  3327. // $info_listtt[$key]['print'] = '未打印';
  3328. // }
  3329. // else if($value['print'] == 3)
  3330. // {
  3331. // $info_listtt[$key]['print'] = '已打印';
  3332. // }
  3333. // if($value['library'] == 1)
  3334. // {
  3335. // $info_listtt[$key]['library'] = '<em class="c">未出库</em>';
  3336. // }
  3337. // else if($value['library'] == 2)
  3338. // {
  3339. // $info_listtt[$key]['library'] = '<em class="c">已出库</em>';
  3340. // }
  3341. // else if($value['library'] == 3)
  3342. // {
  3343. // $info_listtt[$key]['library'] = '<em class="c">已退库</em>';
  3344. // }
  3345. // if($value['librarytime'] == '0')
  3346. // {
  3347. // $info_listtt[$key]['librarytime'] = '<em class="t"></em>';
  3348. // }
  3349. // else
  3350. // {
  3351. // $info_listtt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3352. // }
  3353. // }
  3354. $info_listamz = $this->fullorderamz->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,orderremarks',$order_str);
  3355. //格式化数据
  3356. // foreach ($info_listamz as $key=>$value)
  3357. // {
  3358. // $shop = $this->shop->read($value['shop']);
  3359. // $info_listamz[$key]['shop'] = $shop['shopname'];
  3360. // if($value['waybill'] == '0')
  3361. // {
  3362. // $info_listamz[$key]['waybill'] = "";
  3363. // }
  3364. // $express = $this->express->read($value['express']);
  3365. // $info_listamz[$key]['express'] = $express['servicename'];
  3366. // $warehouse = $this->warehouse->read($value['type']);
  3367. // $info_listamz[$key]['type'] = $warehouse['title'];
  3368. // if($value['print'] == 1)
  3369. // {
  3370. // $info_listamz[$key]['print'] = '不可打印';
  3371. // }
  3372. // else if($value['print'] == 2)
  3373. // {
  3374. // $info_listamz[$key]['print'] = '未打印';
  3375. // }
  3376. // else if($value['print'] == 3)
  3377. // {
  3378. // $info_listamz[$key]['print'] = '已打印';
  3379. // }
  3380. // if($value['library'] == 1)
  3381. // {
  3382. // $info_listamz[$key]['library'] = '<em class="c">未出库</em>';
  3383. // }
  3384. // else if($value['library'] == 2)
  3385. // {
  3386. // $info_listamz[$key]['library'] = '<em class="c">已出库</em>';
  3387. // }
  3388. // else if($value['library'] == 3)
  3389. // {
  3390. // $info_listamz[$key]['library'] = '<em class="c">已退库</em>';
  3391. // }
  3392. // if($value['librarytime'] == '0')
  3393. // {
  3394. // $info_listamz[$key]['librarytime'] = '<em class="t"></em>';
  3395. // }
  3396. // else
  3397. // {
  3398. // $info_listamz[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3399. // }
  3400. // }
  3401. $info_listxw = $this->fullorderxw->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,orderremarks',$order_str);
  3402. //格式化数据
  3403. // foreach ($info_listxw as $key=>$value)
  3404. // {
  3405. // $shop = $this->shop->read($value['shop']);
  3406. // $info_listxw[$key]['shop'] = $shop['shopname'];
  3407. // if($value['waybill'] == '0')
  3408. // {
  3409. // $info_listxw[$key]['waybill'] = "";
  3410. // }
  3411. // $express = $this->express->read($value['express']);
  3412. // $info_listxw[$key]['express'] = $express['servicename'];
  3413. // $warehouse = $this->warehouse->read($value['type']);
  3414. // $info_listxw[$key]['type'] = $warehouse['title'];
  3415. // if($value['print'] == 1)
  3416. // {
  3417. // $info_listxw[$key]['print'] = '不可打印';
  3418. // }
  3419. // else if($value['print'] == 2)
  3420. // {
  3421. // $info_listxw[$key]['print'] = '未打印';
  3422. // }
  3423. // else if($value['print'] == 3)
  3424. // {
  3425. // $info_listxw[$key]['print'] = '已打印';
  3426. // }
  3427. // if($value['library'] == 1)
  3428. // {
  3429. // $info_listxw[$key]['library'] = '<em class="c">未出库</em>';
  3430. // }
  3431. // else if($value['library'] == 2)
  3432. // {
  3433. // $info_listxw[$key]['library'] = '<em class="c">已出库</em>';
  3434. // }
  3435. // else if($value['library'] == 3)
  3436. // {
  3437. // $info_listxw[$key]['library'] = '<em class="c">已退库</em>';
  3438. // }
  3439. // if($value['librarytime'] == '0')
  3440. // {
  3441. // $info_listxw[$key]['librarytime'] = '<em class="t"></em>';
  3442. // }
  3443. // else
  3444. // {
  3445. // $info_listxw[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3446. // }
  3447. // }
  3448. $info_listsmt = $this->fullordersmt->find_all($where,'id,shop,type,orderinfo,number,waybill,express,print,library,librarytime,orderremarks',$order_str);
  3449. //格式化数据
  3450. // foreach ($info_listsmt as $key=>$value)
  3451. // {
  3452. // $shop = $this->shop->read($value['shop']);
  3453. // $info_listsmt[$key]['shop'] = $shop['shopname'];
  3454. // if($value['waybill'] == '0')
  3455. // {
  3456. // $info_listsmt[$key]['waybill'] = "";
  3457. // }
  3458. // $express = $this->express->read($value['express']);
  3459. // $info_listsmt[$key]['express'] = $express['servicename'];
  3460. // $warehouse = $this->warehouse->read($value['type']);
  3461. // $info_listsmt[$key]['type'] = $warehouse['title'];
  3462. // if($value['print'] == 1)
  3463. // {
  3464. // $info_listsmt[$key]['print'] = '不可打印';
  3465. // }
  3466. // else if($value['print'] == 2)
  3467. // {
  3468. // $info_listsmt[$key]['print'] = '未打印';
  3469. // }
  3470. // else if($value['print'] == 3)
  3471. // {
  3472. // $info_listsmt[$key]['print'] = '已打印';
  3473. // }
  3474. // if($value['library'] == 1)
  3475. // {
  3476. // $info_listsmt[$key]['library'] = '<em class="c">未出库</em>';
  3477. // }
  3478. // else if($value['library'] == 2)
  3479. // {
  3480. // $info_listsmt[$key]['library'] = '<em class="c">已出库</em>';
  3481. // }
  3482. // else if($value['library'] == 3)
  3483. // {
  3484. // $info_listsmt[$key]['library'] = '<em class="c">已退库</em>';
  3485. // }
  3486. // if($value['librarytime'] == '0')
  3487. // {
  3488. // $info_listsmt[$key]['librarytime'] = '<em class="t"></em>';
  3489. // }
  3490. // else
  3491. // {
  3492. // $info_listsmt[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3493. // }
  3494. // }
  3495. // $total = $this->fullorder->find_count($where);
  3496. // $total += $this->fullordertt->find_count($where);
  3497. // $total += $this->fullorderamz->find_count($where);
  3498. // $total += $this->fullorderxw->find_count($where);
  3499. // $total += $this->fullordersmt->find_count($where);
  3500. $total_list = array_merge($info_list,$info_listtt,$info_listamz,$info_listxw,$info_listsmt);
  3501. $sort_list = [];
  3502. foreach($total_list as $key => $value){
  3503. $tmp_librarytime = (int)($value['librarytime']."0000");
  3504. if(isset($sort_list[$tmp_librarytime])){
  3505. $tmp_librarytime =(int)($value['librarytime'].rand(1000,9999));
  3506. $sort_list[$tmp_librarytime] = $value;
  3507. }else{
  3508. $sort_list[$tmp_librarytime] = $value;
  3509. }
  3510. }
  3511. krsort($sort_list);
  3512. if(!empty($sort_list)){
  3513. $split_list = array_chunk($sort_list, $perpage, true);
  3514. $shop_list = $this->shop->find_all('1=1');
  3515. $shop_arr = array_column($shop_list,'shopname','id');
  3516. $express_list = $this->express->find_all('1=1');
  3517. $express_arr = array_column($express_list,'servicename','id');
  3518. $warehouse_list = $this->warehouse->find_all('1=1');
  3519. $warehouse_arr = array_column($warehouse_list,'title','id');
  3520. $final_list = $split_list[$page-1];
  3521. foreach ($final_list as $key=>$value)
  3522. {
  3523. $final_list[$key]['shop'] = isset($shop_arr[$value['shop']])? $shop_arr[$value['shop']] :"";
  3524. if($value['waybill'] == '0')
  3525. {
  3526. $final_list[$key]['waybill'] = "";
  3527. }
  3528. $final_list[$key]['express'] = isset($express_arr[$value['express']])? $express_arr[$value['express']] :"";
  3529. $final_list[$key]['type'] = isset($warehouse_arr[$value['type']])? $warehouse_arr[$value['type']] :"";
  3530. if($value['print'] == 1)
  3531. {
  3532. $final_list[$key]['print'] = '不可打印';
  3533. }
  3534. else if($value['print'] == 2)
  3535. {
  3536. $final_list[$key]['print'] = '未打印';
  3537. }
  3538. else if($value['print'] == 3)
  3539. {
  3540. $final_list[$key]['print'] = '已打印';
  3541. }
  3542. if($value['library'] == 1)
  3543. {
  3544. $final_list[$key]['library'] = '<em class="c">未出库</em>';
  3545. }
  3546. else if($value['library'] == 2)
  3547. {
  3548. $final_list[$key]['library'] = '<em class="c">已出库</em>';
  3549. }
  3550. else if($value['library'] == 3)
  3551. {
  3552. $final_list[$key]['library'] = '<em class="c">已退库</em>';
  3553. }
  3554. if($value['librarytime'] == '0')
  3555. {
  3556. $final_list[$key]['librarytime'] = '<em class="t"></em>';
  3557. }
  3558. else
  3559. {
  3560. $final_list[$key]['librarytime'] = '<em class="t">'.date('Y-m-d H:i:s',$value['librarytime']).'</em>';
  3561. }
  3562. }
  3563. $final_list = array_values($final_list);
  3564. }else{
  3565. $final_list = [];
  3566. }
  3567. $total = count($total_list);
  3568. $pagenum = ceil($total/$perpage);
  3569. $over = $total-($start+$perpage);
  3570. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($final_list));
  3571. echo json_encode($rows);exit;
  3572. }
  3573. if(isset($_SESSION['api']))
  3574. {
  3575. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  3576. $warehouse = $this->warehouse->find_all('1=1 and '.rtrim($wid,'or'),"*","px asc");
  3577. $this->data['wlshop'] = $wlshop;
  3578. $this->data['warehouse'] = $warehouse;
  3579. }
  3580. $this->data['xw'] = $xw;
  3581. $this->_Template('systemfout_hb',$this->data);
  3582. }
  3583. }