Systemfout.php 116 KB

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