Transfer.php 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006
  1. <?php defined('BASEPATH') OR exit('No direct script access allowed');
  2. class Transfer extends Start_Controller {
  3. public function __construct(){
  4. parent::__construct();
  5. $this->load->library('session');
  6. $this->load->_model('Model_user','user');
  7. $this->load->_model('Model_transfer','transfer');
  8. $this->load->_model('Model_typeclass','typeclass');
  9. $this->load->_model('Model_warehouse','warehouse');
  10. $this->load->_model('Model_systemtransfer','systemtransfer');
  11. $this->load->_model('Model_excel','excel');
  12. $this->load->_model('Model_fullorder','fullorder');
  13. $this->load->_model('Model_fullordertt','fullordertt');
  14. $this->load->_model('Model_fullordersmt','fullordersmt');
  15. $this->load->_model('Model_purchase','purchase');
  16. $this->load->_model('Model_classid','classid');
  17. $this->load->_model('Model_express','express');
  18. $this->load->_model('Model_apiyy','apiyy');
  19. $this->load->_model('Model_shop','shop');
  20. $this->load->_model('Model_systemtransfer_cr','systemtransfer_cr');
  21. $this->load->_model("Model_logic_ding","logic_ding");
  22. $this->load->_model("Model_zzquque_u9","zzquque_u9");
  23. }
  24. //定义方法的调用规则 获取URI第二段值
  25. public function _remap($arg,$arg_array)
  26. {
  27. if($arg == 'add')
  28. {
  29. $this->_add();
  30. }
  31. else if($arg == 'edit')
  32. {
  33. $this->_edit($arg_array);
  34. }
  35. else if($arg == 'del')
  36. {
  37. $this->_del();
  38. }
  39. else if($arg == 'print')
  40. {
  41. $this->_print();
  42. }
  43. else if($arg == 'number')
  44. {
  45. $this->_number();
  46. }
  47. else if($arg == 'numberprint')
  48. {
  49. $this->_numberprint();
  50. }
  51. else if($arg == 'operate')
  52. {
  53. $this->_operate();
  54. }
  55. else if($arg == 'out')
  56. {
  57. $this->_out();
  58. }
  59. else if($arg == 'excel')
  60. {
  61. $this->_excel();
  62. }
  63. else if($arg == 'bdbb')
  64. {
  65. $this->_bdbb();
  66. }
  67. else if($arg == 'rk')
  68. {
  69. $this->_rk();
  70. }
  71. else if($arg == 'cqrk'){
  72. $this->_cqrk();
  73. }
  74. else if($arg == 'ck')
  75. {
  76. $this->_ck();
  77. }
  78. else if($arg == 'jgl')//交工率
  79. {
  80. $this->_jgl();
  81. }
  82. else if($arg == 'linqi')
  83. {
  84. $this->_linqi();
  85. }
  86. else if($arg == 'jiaji'){
  87. $this->_jiaji();
  88. }
  89. else if($arg == 'overtime_export'){
  90. $this->_overtime_export();
  91. }
  92. else if($arg == 'scz'){
  93. $this->_scz();
  94. }
  95. else if($arg == 'wjsrk'){
  96. $this->_wjsrk();
  97. }
  98. else if($arg == 'wjsrkexcel'){
  99. $this->_wjsrkexcel();
  100. }
  101. else if($arg == 'cqrkexcel'){
  102. $this->_cqrkexcel();
  103. }
  104. else if($arg == 'sczexcel'){
  105. $this->_sczexcel();
  106. }
  107. else
  108. {
  109. $this->_index();
  110. }
  111. }
  112. //管理
  113. public function _index()
  114. {
  115. $t = array();
  116. $typeclass = $this->typeclass->find_all();
  117. foreach ($typeclass as $v)
  118. {
  119. $t[$v['id']] = $v['title'];
  120. }
  121. $post = $this->input->post(NULL, TRUE);
  122. if(isset($post['page']))
  123. {
  124. $page = $this->input->post('page',true);
  125. $perpage = $this->input->post('perpage',true);
  126. $type = $this->input->post('type',true);
  127. $where = "1=1 ";
  128. //数据排序
  129. $order_str = "id asc";
  130. if($type)
  131. {
  132. $where .= "and type = '$type'";
  133. }
  134. if(empty($page))
  135. {
  136. $start = 0;
  137. $perpage = 1;
  138. }
  139. else
  140. {
  141. $start = ($page - 1)*$perpage;
  142. }
  143. //取得信息列表
  144. $info_list = $this->transfer->find_all($where,'id,title,orvertime,overtime_one,overtime_two',$order_str,$start,$perpage);
  145. $total = $this->transfer->find_count($where);
  146. $pagenum = ceil($total/$perpage);
  147. $over = $total-($start+$perpage);
  148. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  149. echo json_encode($rows);exit;
  150. }
  151. $this->_Template('transfer',$this->data);
  152. }
  153. //添加
  154. public function _add()
  155. {
  156. $post = $this->input->post(NULL, TRUE);
  157. if(isset($post['title']))
  158. {
  159. $title = $this->input->post('title',true);
  160. if($this->transfer->find_all("title = '$title'"))
  161. {
  162. echo json_encode(array('msg'=>'名称重复!','success'=>false));exit;
  163. }
  164. if($this->transfer->insert($post))
  165. {
  166. echo json_encode(array('msg'=>'添加成功','success'=>true));exit;
  167. }
  168. else
  169. {
  170. echo json_encode(array('msg'=>'添加失败,请重试','success'=>false));exit;
  171. }
  172. }
  173. $this->_Template('transfer_add',$this->data);
  174. }
  175. //修改
  176. public function _edit($arg_array)
  177. {
  178. $post = $this->input->post(NULL, TRUE);
  179. if(isset($post['id']))
  180. {
  181. $id = $this->input->post('id',true);
  182. $title = $this->input->post('title',true);
  183. if($this->transfer->find_all("title = '$title' and id != '".$id."'"))
  184. {
  185. echo json_encode(array('msg'=>'名称重复!','success'=>false));exit;
  186. }
  187. if($this->transfer->save($post,$id))
  188. {
  189. echo json_encode(array('msg'=>'修改成功','success'=>true));exit;
  190. }
  191. else
  192. {
  193. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  194. }
  195. }
  196. $arg_array = $arg_array[0];
  197. $transfer = $this->transfer->read($arg_array);
  198. $this->data['transfer'] = $transfer;
  199. $this->_Template('transfer_edit',$this->data);
  200. }
  201. //删除
  202. public function _del()
  203. {
  204. $post = $this->input->post(NULL, TRUE);
  205. if(isset($post['s']))
  206. {
  207. $id_arr = $this->input->post('s');
  208. $id_arr = explode(',',$id_arr);
  209. if(!$id_arr)
  210. {
  211. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  212. }
  213. //循环删除记录
  214. foreach ($id_arr as $v)
  215. {
  216. $this->transfer->remove($v);
  217. }
  218. echo json_encode(array('del'=>$id_arr,'msg'=>'删除记录成功!','success'=>true));
  219. }
  220. }
  221. public function _print()
  222. {
  223. if(isset($_SESSION['api']))
  224. {
  225. $user = $this->user->get_api($_SESSION['api']);
  226. $usp = $user;
  227. $sid = "";$wid="";$wtype="";
  228. $userwh = explode('|',trim($user['warehouse'],'|'));
  229. foreach ($userwh as $value)
  230. {
  231. $wid .= " id = ".$value." or";
  232. $wtype .= " type = ".$value." or";
  233. }
  234. }
  235. $post = $this->input->post(NULL, TRUE);
  236. $classid = $this->classid->sku();
  237. $pm = $classid;
  238. $scsku = $classid;
  239. if(isset($post['category']))
  240. {
  241. $list = array();$num = "";$title = "";$features = "";
  242. $order = 0;
  243. $xbqnum = $this->input->post('xbqnum',true);//打印数量
  244. $t = $this->input->post('t',true);//打印数量
  245. if($xbqnum > 99)
  246. {
  247. echo json_encode(array('msg'=>'打印数量不可超过99!','success'=>false));exit;
  248. }
  249. if($xbqnum < 1)
  250. {
  251. echo json_encode(array('msg'=>'打印数量错误!','success'=>false));exit;
  252. }
  253. $post['purchase'] = $this->input->post('purchase',true);//所属工厂
  254. $category = $this->input->post('category',true);
  255. $list['category'] = $category;
  256. $list['hairtype'] = $this->input->post('hairtype',true);
  257. $list['grade'] = $this->input->post('grade',true);
  258. $size = $this->input->post('size',true);
  259. $xzsku = $this->input->post('xzsku',true);
  260. $list['size'] = rtrim($size,',');
  261. $list['hairnumber'] = $this->input->post('hairnumber',true);
  262. $list['extension'] = $this->input->post('extension',true);
  263. if($category == 1297)
  264. {
  265. $list['sywignumber'] = $this->input->post('sywignumber',true);
  266. }
  267. if($category == 1702)
  268. {
  269. $list['syhairnumber'] = $this->input->post('syhairnumber',true);
  270. $list['syother'] = $this->input->post('syother',true);
  271. }
  272. if($category == 133)
  273. {
  274. $list['fittype'] = $this->input->post('fittype',true);
  275. $list['acother'] = $this->input->post('acother',true);
  276. }
  277. $list['color'] = $this->input->post('color',true);
  278. $list['lowe'] = $this->input->post('lowe',true);
  279. if($category == 127)
  280. {
  281. $list['type'] = $this->input->post('type',true);
  282. $list['headroad'] = $this->input->post('headroad',true);
  283. $list['density'] = $this->input->post('density',true);
  284. if($list['type'] == 195 || $list['type'] == 197 || $list['type'] == 199)
  285. {
  286. $list['lacesize'] = $this->input->post('lacesize',true);
  287. }
  288. $list['lacecolor'] = $this->input->post('lacecolor',true);
  289. $list['lacetypes'] = $this->input->post('lacetypes',true);
  290. }
  291. if($category == 128)
  292. {
  293. $list['lacetype'] = $this->input->post('lacetype',true);
  294. $list['haircap'] = $this->input->post('haircap',true);
  295. $list['density'] = $this->input->post('density',true);
  296. $list['lacecolor'] = $this->input->post('lacecolor',true);
  297. $list['lacetypes'] = $this->input->post('lacetypes',true);
  298. $list['wigother'] = $this->input->post('wigother',true);
  299. $list['wigother1'] = $this->input->post('wigother1',true);
  300. $list['wigother2'] = $this->input->post('wigother2',true);
  301. }
  302. if($category == 129)
  303. {
  304. $list['wide'] = $this->input->post('wide',true);
  305. }
  306. if($category == 131)
  307. {
  308. $list['gifttype'] = $this->input->post('gifttype',true);
  309. $list['giftother'] = $this->input->post('giftother',true);
  310. }
  311. if($category == 134)
  312. {
  313. $list['pieceweight'] = $this->input->post('pieceweight',true);
  314. }
  315. if($category == 1297)
  316. {
  317. $list['synthetictype'] = $this->input->post('synthetictype',true);
  318. $list['sywigother'] = $this->input->post('sywigother',true);
  319. }
  320. if($category == 130 || $category == 133 || $category == 1702)
  321. {
  322. $list['items'] = $this->input->post('items',true);
  323. $list['weight'] = $this->input->post('weight',true);
  324. }
  325. if($category == 1702)
  326. {
  327. $list['syhairther'] = $this->input->post('syhairther',true);
  328. }
  329. foreach($list as $k=>$v)
  330. {
  331. if($v != 0)
  332. {
  333. $num .=$v;
  334. $features .=$v.'-';
  335. $post[$k] = $v;
  336. $typeclass = $this->typeclass->read($v);
  337. if(isset($pm[$typeclass['classid']]))
  338. {
  339. $pm[$typeclass['classid']] = $typeclass['zh'];
  340. }
  341. $scsku[$typeclass['classid']] = $typeclass['bqsku'];
  342. if($k != 'size')
  343. {
  344. $title .= $typeclass['title']." ";
  345. }
  346. }
  347. }
  348. $typeclass = $this->typeclass->read($list['size']);
  349. $title .= $typeclass['title'];
  350. $time = time();
  351. $post['printtime'] = $time;
  352. $post['title'] = rtrim($title,' ');
  353. $post['number'] = $num;
  354. $post['features'] = '-'.$features;
  355. $featurespp = str_replace(array('-163-','-164-','-165-','-166-'),'-',$features);
  356. $featurespp = explode('-',trim($featurespp,'-'));
  357. if(isset($featurespp[5]))
  358. {
  359. $post['featurespp'] = $featurespp[0].'-'.$featurespp[3].'-'.$featurespp[4].'-'.$featurespp[5];
  360. }
  361. else
  362. {
  363. $post['featurespp'] = $featurespp[0].'-'.$featurespp[3].'-'.$featurespp[4];
  364. }
  365. $post['time'] = $time;//操作时间
  366. $scsku = implode("-",$scsku);
  367. $zh = implode(" ",$pm);
  368. $zh = str_replace('自然色 ','',trim($zh,' '));
  369. $zh = str_replace(array(' ',' ',' ',' ',' ',' ',' '),' ',$zh);
  370. $post['shipremarks'] = $zh;
  371. $scsku = str_replace('- ','-',trim($scsku,'-'));
  372. $scsku = str_replace(array('--------','-------','------','-----','----','---','--'),'-',$scsku);
  373. $bqsku = (isset($b['title']))?$b['title'].'-'.$scsku:$scsku;
  374. $post['sku'] = $bqsku;
  375. $post['rk'] = "|1|";//默认配货 打印后直接入库
  376. $post['rktime'] = "|".$time."|";
  377. $rows = array();
  378. $this->db->trans_begin();
  379. for($i=0;$i<$xbqnum;$i++)
  380. {
  381. $label = substr($time,1)*100;
  382. $post['label'] = $label+$i;
  383. $rows[] = array('num'=>$post['label'],'number'=>'','shipremarks'=>$zh,'ex'=>'','t'=>$t,'time'=>'布标打印时间:'.date('Y-m-d H:i:s',$time),'s'=>'('.($i+1).'/'.$xbqnum.')');
  384. $this->systemtransfer->insert($post);
  385. }
  386. if ($this->db->trans_status() === TRUE)
  387. {
  388. $this->db->trans_commit();
  389. echo json_encode(array('rows'=>($rows),'success'=>true));exit;
  390. }
  391. else
  392. {
  393. $this->db->trans_rollback();
  394. echo json_encode(array('msg'=>'错误,请重试!','success'=>false));exit;
  395. }
  396. }
  397. $purchase = $this->purchase->find_all("yyid != ''");
  398. $this->data['purchase'] = $purchase;
  399. $this->_Template('transfer_print',$this->data);
  400. }
  401. public function _number()
  402. {
  403. if(isset($_SESSION['api']))
  404. {
  405. $user = $this->user->get_api($_SESSION['api']);
  406. $pid = "";$tid="";$sid="";$wid="";
  407. $purchase = explode('|',trim($user['purchase'],'|'));
  408. $transfer = explode('|',trim($user['transfer'],'|'));
  409. foreach ($purchase as $value)
  410. {
  411. $pid .= " id = ".$value." or";
  412. }
  413. foreach ($transfer as $value)
  414. {
  415. $tid .= " id = ".$value." or";
  416. }
  417. }
  418. else
  419. {
  420. header('Location: /');exit;
  421. }
  422. $post = $this->input->post(NULL, TRUE);
  423. if(isset($post['number']))
  424. {
  425. $number = $this->input->post('number',true);
  426. $type = $this->input->post('type',true);
  427. $xbqnum = $this->input->post('xbqnum',true);//打印数量
  428. $purchase = $this->input->post('purchase',true);
  429. $f = 'fullorder';
  430. $y = $this->fullorder->get_number($number);
  431. if(!$y)
  432. {
  433. $f = 'fullordersmt';
  434. $y = $this->fullordersmt->get_number($number);
  435. if(!$y)
  436. {
  437. $f = 'fullordertt';
  438. $y = $this->fullordertt->get_number($number);
  439. if(!$y)
  440. {
  441. echo json_encode(array('msg'=>'没有找到此订单,请检查是否扫描错误','success'=>false));exit;
  442. }
  443. }
  444. }
  445. if($y['librarytime'] > 0)
  446. {
  447. echo json_encode(array('msg'=>'错误,此订单已出库!','success'=>false));exit;
  448. }
  449. $cp = array();$i = 0;$x=0;$byz = array();$znum = 0;$typeclass = array();
  450. $classid = $this->classid->sku();
  451. $tc = $this->typeclass->find_all();
  452. foreach($tc as $v)
  453. {
  454. $typeclass[$v['id']] = $v;
  455. }
  456. $bm = '03';
  457. $fpdata = explode(';',trim($y['fpdata'],';'));
  458. $whlabelsc = explode('|',trim($y['whlabel'],'|'));
  459. foreach($fpdata as $key=>$val)
  460. {
  461. $pm = $classid;
  462. $jm = $classid;
  463. $sku = $classid;
  464. $bmpx = array(13=>'',16=>'',18=>'',25=>'',26=>'',41=>'');
  465. $features = str_replace(array('-163-','-164-','-165-','-166-'),'-',$val);
  466. $jvnr = explode('|',trim($features,'|'));
  467. if(stripos($jvnr[0],',') !== false)
  468. {
  469. $ft = explode(',',$jvnr[0]);
  470. $features = explode('-',trim($ft[1],'-'));
  471. array_splice($features,2,0,$ft[0]);
  472. }
  473. else
  474. {
  475. $features = explode('-',trim($jvnr[0],'-'));
  476. }
  477. $title = $jvnr[1];
  478. foreach($features as $k=>$v)
  479. {
  480. if(isset($typeclass[$v]) && isset($bmpx[$typeclass[$v]['classid']]))
  481. {
  482. if($typeclass[$v]['bm'] != '')
  483. {
  484. $bmpx[$typeclass[$v]['classid']] = $typeclass[$v]['bm'];
  485. }
  486. }
  487. if($v != 0)
  488. {
  489. $sku[$typeclass[$v]['classid']] = $typeclass[$v]['bqsku'];
  490. if(isset($pm[$typeclass[$v]['classid']]))
  491. {
  492. if($typeclass[$v]['title'] == '9A')
  493. {
  494. $pm[$typeclass[$v]['classid']] = '9A';
  495. }
  496. else if($typeclass[$v]['title'] == '10A')
  497. {
  498. $pm[$typeclass[$v]['classid']] = '10A';
  499. }
  500. else
  501. {
  502. $clzh = $typeclass[$v]['zh'];
  503. if(stripos($typeclass[$v]['zh'],'|') !== false)
  504. {
  505. $clzh = explode('|',rtrim($typeclass[$v]['zh'],'|'));
  506. $clzh = $clzh[0];
  507. }
  508. $pm[$typeclass[$v]['classid']] = $clzh;
  509. }
  510. }
  511. if(isset($jm[$typeclass[$v]['classid']]))
  512. {
  513. if($typeclass[$v]['jm'])
  514. {
  515. $jm[$typeclass[$v]['classid']] = $typeclass[$v]['jm'];
  516. }
  517. }
  518. }
  519. }
  520. $jm = array_filter($jm);//去除空值
  521. $jm = implode("-",$jm);
  522. $sku = array_filter($sku);//去除空值
  523. $sku = implode("-",$sku);
  524. $pm = array_filter($pm);//去除空值
  525. $zh = implode(" ",$pm);
  526. $zh = preg_replace("/\r\n|\r|\n/",'',trim($zh,' '));
  527. $features = implode("-",$features);
  528. $y['shipremarks'] = str_replace("'",'"',$y['shipremarks']);
  529. $cp[] = array('ordernumber'=>$number,'title'=>$title,'sku'=>$sku,'jm'=>$jm,'zh'=>$zh,'n'=>$jvnr[2],'b'=>$y['shipremarks'],'is_jiaji'=>$y['is_jiaji'],'data'=>json_encode(array('ordernumber'=>$number,'features'=>$features,'number'=>$number,'title'=>$title,'jm'=>$jm,'sku'=>$sku,'pm'=>$zh,'bm'=>$bm.implode("",$bmpx))));
  530. }
  531. echo json_encode(array('rows'=>$cp,'success'=>true));exit;
  532. }
  533. $purchase = $this->purchase->find_all("yyid != ''");
  534. $this->data['purchase'] = $purchase;
  535. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  536. $this->data['transfer'] = $transfer;
  537. $this->_Template('transfer_number',$this->data);
  538. }
  539. public function _numberprint()
  540. {
  541. $time = time();
  542. $post = $this->input->post(NULL);
  543. $classid = $this->classid->sku();
  544. $pm = $classid;
  545. $scsku = $classid;
  546. if(isset($post['data']))
  547. {
  548. $data = json_decode($post['data'],true);
  549. $f = 'fullorder';
  550. $y = $this->fullorder->get_number($data['ordernumber']);
  551. if(!$y)
  552. {
  553. $f = 'fullordersmt';
  554. $y = $this->fullordersmt->get_number($data['ordernumber']);
  555. if(!$y)
  556. {
  557. $f = 'fullordertt';
  558. $y = $this->fullordertt->get_number($data['ordernumber']);
  559. if(!$y)
  560. {
  561. echo json_encode(array('msg'=>$data['ordernumber'].'没有找到此订单,请检查是否扫描错误'.$data['ordernumber'],'success'=>false));exit;
  562. }
  563. }
  564. }
  565. if($y['printtime'] == 0)
  566. {
  567. echo json_encode(array('msg'=>'此单已重置,请询问梦体','success'=>false));exit;
  568. }
  569. $order = 0;$time = time();
  570. $xbqnum = $this->input->post('n',true);//打印数量
  571. if($xbqnum > 99)
  572. {
  573. echo json_encode(array('msg'=>'打印数量不可超过99!','success'=>false));exit;
  574. }
  575. if($xbqnum < 1)
  576. {
  577. echo json_encode(array('msg'=>'打印数量错误!','success'=>false));exit;
  578. }
  579. $transfer = $this->input->post('transfer',true);
  580. $post['type'] = $this->input->post('type',true);
  581. $post['shipremarks'] = $this->input->post('b',true);
  582. $post['ph'] = $this->input->post('ph',true);
  583. $is_jiaji = $this->input->post('is_jiaji',true);
  584. if($is_jiaji == 2){
  585. $post['is_jiaji'] = 2;
  586. }else{
  587. $post['is_jiaji'] = 0;
  588. }
  589. $zps = $this->input->post('zps',true);
  590. $post['purchase'] = $this->input->post('purchase',true);//供应商
  591. $post['time'] = $time;//操作时间
  592. $post['jm'] = $data['jm'];
  593. $post['bm'] = $data['bm'];
  594. $post['pm'] = $data['pm'];
  595. $post['features'] = $data['features'];
  596. $post['number'] = $data['number'];
  597. $post['title'] = $data['title'];
  598. $post['sku'] = $data['sku'];
  599. $post['printtime'] = $y['printtime'];
  600. $post['rk'] = "|12|";//默认订单中心 打印后直接入库
  601. $post['ck'] = "|12|";
  602. $post['rktime'] = "|".$time."|";
  603. $post['cktime'] = $post['rktime'];
  604. $post['ctime12'] = $time;
  605. $express = $this->express->read($y['express']);
  606. $rows = array();$t='';
  607. $this->db->trans_begin();
  608. $post['xbqnum'] = $xbqnum;
  609. $kh = $this->shop->read($y['shop']);
  610. //$this->logic_ding->sendToDing("小布表打印异常".json_encode($post));
  611. $yy = $this->apiyy->_peihuo($post,$kh['yyid'],$y['number'],$post['xbqnum']);
  612. if($yy['c'] == 0)
  613. {
  614. $post['scapi'] = '99';
  615. $post['scid'] = $yy['scid'];
  616. if(!$post['purchase'])
  617. {
  618. $post['purchase'] = '';
  619. }
  620. $mqsl = $this->systemtransfer->find_count("number = '".$data['number']."'");
  621. //able_ext 实在打印小单布标时判断是否可以打印备货单
  622. $able_ext = 0;
  623. $tmp_fetaures = explode('-',$data['features']);
  624. //只有头套和马尾才会要配货单
  625. if(in_array(128, $tmp_fetaures)){
  626. $able_ext = 1;
  627. }
  628. if(in_array(133, $tmp_fetaures)){
  629. if(in_array(673, $tmp_fetaures)){
  630. $able_ext = 1;
  631. }
  632. }
  633. for($i=0;$i<$xbqnum;$i++)
  634. {
  635. if($post['zps'])
  636. {
  637. if($post['zps'] > 0)
  638. {
  639. $t = '总量:'.($mqsl+$i+1).'/'.$zps;
  640. }
  641. }
  642. $label = substr($time,1)*100;
  643. $post['label'] = $label+$i;
  644. $rows[] = array('num'=>$post['label'],'number'=>$post['number'],'shipremarks'=>$post['shipremarks'],'ph'=>$post['ph'],'ex'=>$express['servicename'],'time'=>''.date('Y-m-d',$post['printtime']),'gtime'=>date('YmdH',time()),'s'=>'('.($i+1).'/'.$xbqnum.')','t'=>$t,'able_ext'=>$able_ext,'is_jiaji'=>$is_jiaji);
  645. $this->systemtransfer->insert($post);
  646. }
  647. }
  648. else
  649. {
  650. $this->db->trans_rollback();
  651. echo json_encode(array('msg'=>$yy['error'],'a'=>1,'success'=>false));exit;
  652. }
  653. if($this->db->trans_status() === TRUE)
  654. {
  655. $this->db->trans_commit();
  656. echo json_encode(array('rows'=>($rows),'success'=>true));exit;
  657. }
  658. else
  659. {
  660. $this->db->trans_rollback();
  661. echo json_encode(array('msg'=>'错误,请重试!','success'=>false));exit;
  662. }
  663. }
  664. }
  665. public function _operate()
  666. {
  667. $post = $this->input->post(NULL, TRUE);
  668. if(isset($post['page']))
  669. {
  670. $api = $this->input->post('api',true);
  671. $page = $this->input->post('page',true);
  672. $perpage = $this->input->post('perpage',true);
  673. $number = $this->input->post('number',true);
  674. $color = $this->input->post('color',true);
  675. $purchase = $this->input->post('purchase',true);
  676. $transfer = $this->input->post('transfer',true);
  677. $lx = $this->input->post('lx',true);
  678. $type = $this->input->post('type',true);
  679. $jiaji = $this->input->post('jiaji',true);
  680. $xztime = $this->input->post('xztime',true);
  681. $timetk = $this->input->post('timetk',true);
  682. $timetj = $this->input->post('timetj',true);
  683. $timetk = strtotime($timetk);
  684. $timetj = strtotime($timetj);
  685. $where = '1=1';
  686. if($number)
  687. {
  688. $where .= " and number = '$number'";
  689. }
  690. if($purchase)
  691. {
  692. $where .= " and purchase = '$purchase'";
  693. }
  694. if($color)
  695. {
  696. $where .= " and fpdata like '%-".$color."-%'";
  697. }
  698. if($lx)
  699. {
  700. if($lx == 1)
  701. {
  702. $where .= " and ordernumber = ''";
  703. }
  704. else
  705. {
  706. $where .= " and ordernumber != ''";
  707. }
  708. }
  709. if($jiaji){
  710. if($jiaji == 1){
  711. $where .= " and is_jiaji = 0";
  712. }
  713. if($jiaji == 2){
  714. $where .= " and is_jiaji = 2";
  715. }
  716. }
  717. //数据排序
  718. $order_str = "id desc";
  719. if(empty($page))
  720. {
  721. $start = 0;
  722. $perpage = 1;
  723. }
  724. else
  725. {
  726. $start = ($page - 1)*$perpage;
  727. }
  728. if($xztime == 'printtime')
  729. {
  730. $where .= " and ctime12 > '$timetk' and ctime12 < '$timetj'";
  731. if($type)
  732. {
  733. if($type == 3){
  734. if($transfer)
  735. {
  736. $where .= " and rk like '%|".$transfer."|%' and rk != ck";
  737. }
  738. }else{
  739. $type = ($type==1)?'rk':'ck';
  740. if($transfer)
  741. {
  742. $where .= " and $type like '%|".$transfer."|%'";
  743. }
  744. }
  745. }
  746. else
  747. {
  748. if($transfer)
  749. {
  750. $where .= " and rk like '%|".$transfer."|%'";
  751. }
  752. }
  753. }
  754. else
  755. {
  756. $cr = "time > '$timetk' and time < '$timetj'";
  757. if($transfer)
  758. {
  759. $cr .= " and lx = '".$transfer."' ";
  760. }
  761. if($type)
  762. {
  763. if($type == 3){
  764. $cr .= " and is_over = 0 ";
  765. }else{
  766. $cr .= " and type = '".$type."' ";
  767. }
  768. }
  769. $fid = '';
  770. $info_list_cr = $this->systemtransfer_cr->find_all($cr);
  771. foreach ($info_list_cr as $v)
  772. {
  773. $fid .= "id = '".$v['fid']."' or ";
  774. }
  775. if($fid)
  776. {
  777. $where .= ' and ('.trim($fid,'or ').')';
  778. }
  779. else
  780. {
  781. $where .= ' and id = 0';
  782. }
  783. }
  784. //取得信息列表
  785. $info_list = $this->systemtransfer->find_all($where,'id,number,is_jiaji,pm,shipremarks,printtime,time,ctime12',$order_str,$start,$perpage);
  786. $transfer = $this->transfer->find_all();
  787. $t = array();
  788. foreach ($transfer as $v)
  789. {
  790. $t[$v['id']] = $v['title'];
  791. $ot[$v['id']] = ($v['orvertime']>0)?$v['orvertime']*24*3600:0;
  792. }
  793. //格式化数据
  794. foreach ($info_list as $key=>$value)
  795. {
  796. if($value['is_jiaji'] == 2){
  797. $info_list[$key]['is_jiaji'] = "<a href='javascript:void(0)' style='color:red'>加急</a>";
  798. }else{
  799. $info_list[$key]['is_jiaji'] = "常规";
  800. }
  801. $dd = $this->systemtransfer->read($value['id']);
  802. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  803. $rk = explode('|',trim($dd['rk'],'|'));
  804. $rktime = explode('|',trim($dd['rktime'],'|'));
  805. $ck = explode('|',trim($dd['ck'],'|'));
  806. $cktime = explode('|',trim($dd['cktime'],'|'));
  807. $info_list[$key]['time'] = '';
  808. $data = $this->systemtransfer_cr->find_all("fid = '".$value['id']."'");
  809. /**
  810. for($i=0;$i<count($rk);$i++)
  811. {
  812. if(count($rk)-1 == $i && $ot[$rk[$i]] > 0 && $rktime[$i] + $ot[$rk[$i]] < time())
  813. {
  814. $d = ' <em style="color: #fc5454;">'.$t[$rk[$i]].'入库 :'.((isset($rktime[$i]))?(date('Y-m-d H:i',$rktime[$i])):'').' 超</em><br> ';
  815. }
  816. else
  817. {
  818. $d = $t[$rk[$i]].'入库 :'.((isset($rktime[$i]))?(date('Y-m-d H:i',$rktime[$i])):'').'<br>';
  819. }
  820. $info_list[$key]['time'] .= $d;
  821. if(isset($ck[$i]) && $ck[$i] != '')
  822. {
  823. $info_list[$key]['time'] .= $t[$ck[$i]].'出库 :'.date('Y-m-d H:i',$cktime[$i]).'<br>';
  824. }
  825. }
  826. **/
  827. //$info_list[$key]['time'] = "订单出库 :".date('Y-m-d H:i',$value['printtime']).'<br>';
  828. $info_list[$key]['time'] = "布标打印 :".date('Y-m-d H:i',$value['ctime12']).'<br>';
  829. foreach ($data as $k=>$v)
  830. {
  831. // $type = ($v['type']==1)?'入库':'出库';
  832. // $info_list[$key]['time'] .= $t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']).'<br>';
  833. $type = ($v['type']==1)?'入库':'出库';
  834. if($v['orver_flag'] == 1){
  835. if($v['is_over'] == 0){
  836. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='font-weight:900;'>即将超时 </l></a>";
  837. // $info_list[$key]['time'] .= '<i style="padding:10px;color:#90f;font-weight:bold;"> 即将超时</i>'.'<br>';
  838. }else{
  839. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>";
  840. }
  841. }elseif($v['orver_flag'] == 2){
  842. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#f33'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l font-weight:900'>超时! </l></a>";
  843. }elseif($v['orver_flag'] == 3){
  844. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#06f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l font-weight:900'>【该单已取消】 </l></a>";
  845. }else{
  846. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>";
  847. }
  848. if($v['extra_status'] == 1){
  849. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>【下道工序未及时入库】</a><br>";
  850. }elseif($v['extra_status'] == 2 || $v['extra_status'] == 3){
  851. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#A52A2A'>【工序间流转超过3天】</a><br>";
  852. }else{
  853. $info_list[$key]['time'] .= "<br>";
  854. }
  855. }
  856. $info_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  857. unset($info_list[$key]['ctime12']);
  858. }
  859. $total = $this->systemtransfer->find_count($where);
  860. $pagenum = ceil($total/$perpage);
  861. $over = $total-($start+$perpage);
  862. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  863. echo json_encode($rows);exit;
  864. }
  865. if(isset($_SESSION['api']))
  866. {
  867. $user = $this->user->get_api($_SESSION['api']);
  868. $usp = $user;
  869. $pid = "";$tid="";$sid="";$wid="";
  870. $purchase = explode('|',trim($user['purchase'],'|'));
  871. $transfer = explode('|',trim($user['transfer'],'|'));
  872. $warehouse = explode('|',trim($user['warehouse'],'|'));
  873. foreach ($purchase as $value)
  874. {
  875. $pid .= " id = ".$value." or";
  876. }
  877. foreach ($transfer as $value)
  878. {
  879. $tid .= " id = ".$value." or";
  880. }
  881. foreach ($warehouse as $value)
  882. {
  883. $wid .= " id = ".$value." or";
  884. }
  885. }
  886. else
  887. {
  888. header('Location: /');exit;
  889. }
  890. $sc_flag = 0; //生产中按钮的标识符号 为1的是可以查看 0 不可以
  891. //只有admin和toutao用户可以查看
  892. if(in_array($user['id'],[10,44,50])){
  893. $sc_flag = 1;
  894. }
  895. $this->data['sc_flag'] = $sc_flag;
  896. $kx = '';$zjtab = '';
  897. $warehouse = $this->warehouse->find_all('1=1 and '.rtrim($wid,'or'),"*","px asc");
  898. $this->data['warehouse'] = $warehouse;
  899. $purchase = $this->purchase->find_all("yyid != ''");
  900. $this->data['purchase'] = $purchase;
  901. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  902. $this->data['transfer'] = $transfer;
  903. $this->data['vip'] = $user['vip'];
  904. $transfer_ids = array_column($transfer,'id');
  905. $transfer_str = implode(",",$transfer_ids);
  906. $this->data['cz_1_num'] = $this->systemtransfer_cr->find_count("orver_flag = 1 and is_over = 0 and time > ".(time()-3600*24*14) ." and lx in (".$transfer_str.")");
  907. $this->data['cz_2_num'] = $this->systemtransfer_cr->find_count("orver_flag = 2 and is_over = 0 and time > ".(time()-3600*24*14) ." and lx in (".$transfer_str.")");
  908. //$jiaji_num = 0;
  909. // $jiaji_num = $this->systemtransfer->find_count(" is_jiaji = 2 and time > ".(time()-3600*24*7)." and rk not like '%|11|%'" );
  910. foreach($transfer_ids as $k=>$v){
  911. if($v == 11){
  912. unset($transfer_ids[$k]);
  913. }
  914. }
  915. if(empty($transfer_ids)){
  916. $this->data['jiaji_num'] = -1;
  917. }else{
  918. $transfer_str = implode(",",$transfer_ids);
  919. $sql_r = $this->db->query("select s.id,s.is_jiaji,s.rk,c.is_over,c.time,c.lx,c.id from crowd_systemtransfer as s inner join crowd_systemtransfer_cr as c on c.fid = s.id and c.is_over = 0 and c.time > ".(time()-3600*24*14) ." and c.lx in (".$transfer_str.") where s.is_jiaji = 2 and s.rk not like '%|11|%'");
  920. // print_r("select s.id,s.is_jiaji,s.rk,c.is_over,c.time,c.lx,c.id from crowd_systemtransfer as s inner join crowd_systemtransfer_cr as c on c.fid = s.id and c.is_over = 0 and c.time > ".(time()-3600*24*7) ." and c.lx in (".$transfer_str.") where s.is_jiaji = 2 and s.rk not like '%|11|%'");
  921. $tmp_list= $sql_r->result_array();
  922. $this->data['jiaji_num'] = count($tmp_list);
  923. }
  924. $this->_Template('transfer_operate',$this->data);
  925. }
  926. public function _out()
  927. {
  928. $post = $this->input->post(NULL, TRUE);
  929. if(isset($post['label']))
  930. {
  931. $time = time();
  932. $label = $this->input->post('label',true);
  933. $cz = $this->input->post('cz',true);
  934. $transfer = $this->input->post('transfer',true);
  935. if(!$label)
  936. {
  937. echo json_encode(array('msg'=>'未扫入数据!','success'=>false));exit;
  938. }
  939. if(!$transfer)
  940. {
  941. echo json_encode(array('msg'=>'请选择需对应的部门!','success'=>false));exit;
  942. }
  943. $lb = $this->systemtransfer->get_label($label);
  944. if(!$lb)
  945. {
  946. $this->logic_ding->sendToDing("检测货物流转异常的编码".$transfer."|".$label);
  947. echo json_encode(array('msg'=>'错误!未找到此条码','success'=>false));exit;
  948. }
  949. if($lb['number']!='')
  950. {
  951. $nu = $this->fullorder->get_number($lb['number']);
  952. if(!$nu)
  953. {
  954. $nu = $this->fullordersmt->get_number($lb['number']);
  955. if(!$nu)
  956. {
  957. $nu = $this->fullordertt->get_number($lb['number']);
  958. }
  959. }
  960. //取消的订单还是要继续生产的 所以还允许继续扫入扫出 只是后续的出入库中不在限定时间
  961. // if($nu['state'] == '214' || $nu['state'] == '217')
  962. // {
  963. // echo json_encode(array('msg'=>'错误,此单已取消!请联系店员核实','success'=>false));exit;
  964. // }
  965. }
  966. $tdata = $this->transfer->find_all();
  967. $t = array();
  968. foreach ($tdata as $v)
  969. {
  970. $t[$v['id']] = $v['title'];
  971. }
  972. /**
  973. if($cz == 1 && stripos($lb['rk'],'|'.$transfer.'|') !== false)
  974. {
  975. echo json_encode(array('msg'=>'此条码已有入库操作!','success'=>false));exit;
  976. }
  977. if($cz == 2 && stripos($lb['ck'],'|'.$transfer.'|') !== false)
  978. {
  979. echo json_encode(array('msg'=>'此条码已有出库操作!','success'=>false));exit;
  980. }
  981. **/
  982. // if(stripos($lb['ck'],'|1|') === false && $transfer != 1 && stripos($nu['fpdata'],'-128-') !== false)
  983. // {
  984. // echo json_encode(array('msg'=>'必须有配货出库才可后续操作!','success'=>false));exit;
  985. // }
  986. //重新定义配货的原则问题
  987. //先检测订单是否含有 128 头套 或者配件 如果有 133 进行下一步检测
  988. $sku_arr = explode("-",$lb['features']);
  989. if(in_array(128,$sku_arr)||in_array(133,$sku_arr)){
  990. // 145 Full Lace Wig
  991. // 1170 HDFullLaceWig
  992. // 1249 FullLaceBobwithBang
  993. // 1484 FullLaceBob
  994. //如果是这4中全蕾丝那么配货就不处理
  995. if(in_array(145,$sku_arr) || in_array(1170,$sku_arr) || in_array(1249,$sku_arr) || in_array(1484,$sku_arr)){
  996. }else{
  997. if(stripos($lb['ck'],'|1|') === false && $transfer != 1 )
  998. {
  999. echo json_encode(array('msg'=>'头套和配件除了全蕾丝外必须走配货!','success'=>false));exit;
  1000. }
  1001. }
  1002. }
  1003. if($cz == 2 && stripos($lb['rk'],'|'.$transfer.'|') === false)
  1004. {
  1005. echo json_encode(array('msg'=>'此条码还未入库!','success'=>false));exit;
  1006. }
  1007. $lbrk = array_reverse(explode('|',trim($lb['rk'],'|')));
  1008. $lbck = array_reverse(explode('|',trim($lb['ck'],'|')));
  1009. if($transfer != 3 && $transfer != 11 && $transfer != 2)
  1010. {
  1011. if($cz == 1)
  1012. {
  1013. if($lb['rk'] != $lb['ck'])//判断是否没走完流程就拿到下一步奏
  1014. {
  1015. echo json_encode(array('msg'=>$t[$lbrk[0]].'还未出库,无法入库!','success'=>false));exit;
  1016. }
  1017. }
  1018. if($cz == 2 && $lbrk[0] != $transfer)//判断是否没走完流程就拿到下一步奏
  1019. {
  1020. echo json_encode(array('msg'=>$t[$transfer].'还未入库,无法出库!','success'=>false));exit;
  1021. }
  1022. }
  1023. if($cz == 1)
  1024. {
  1025. $lb['rk'] .= $transfer.'|';
  1026. $lb['rktime'] .= $time.'|';
  1027. if($lbrk[0] == $transfer)
  1028. {
  1029. echo json_encode(array('msg'=>'已有入库记录,不可连续重复录入!','success'=>false));exit;
  1030. }
  1031. }
  1032. else if($cz == 2)
  1033. {
  1034. $lb['ck'] .= $transfer.'|';
  1035. $lb['cktime'] .= $time.'|';
  1036. if($lbck[0] == $transfer)
  1037. {
  1038. echo json_encode(array('msg'=>'已有出库记录,不可连续重复录入!','success'=>false));exit;
  1039. }
  1040. }
  1041. $this->_doCancelWlz($lb['id']);
  1042. $cztime = 'ctime'.$transfer;
  1043. $this->logic_ding->sendToDing("检测货物流转打印情况".$transfer."|".$cz."|".$lb['number']."|".$lb['id']);
  1044. if(($transfer == 3 && $lb['dbapi'] < 99 && $cz == 2) || ($transfer == 13 && $lb['dbapi'] < 99 && $cz == 1))//出入库用这个
  1045. //if(($transfer == 8 || $transfer == 13) && $lb['dbapi'] < 99 && $cz == 1)//单入库
  1046. {
  1047. if($lb['type'] == 0)
  1048. {
  1049. $s = $this->shop->read($nu['shop']);
  1050. $lb['kh'] = $s['yyid'];
  1051. $lb['ts'] = 1;
  1052. $rk = $this->apiyy->_newrk($lb);
  1053. if($rk['c'] == 0)
  1054. {
  1055. $this->db->trans_begin();
  1056. $this->systemtransfer->save(array('rk'=>$lb['rk'],'rktime'=>$lb['rktime'],'ck'=>$lb['ck'],'cktime'=>$lb['cktime'],'time'=>$time,'gtime'=>date('YmdH',$time),'dbapi'=>99,'scid'=>$rk['scid'].time(),$cztime=>$time),$lb['id']);
  1057. $this->systemtransfer_cr->insert(array('fid'=>$lb['id'],'lx'=>$transfer,'type'=>$cz,'time'=>$time));
  1058. //处理定时任务每三分钟 执行一次的bug 在出库的时候直接同步相关信息
  1059. if($cz == 2){
  1060. $this->_doCheckIsOverTime($lb['id'],$transfer);
  1061. }
  1062. if ($this->db->trans_status() === TRUE)
  1063. {
  1064. $this->db->trans_commit();
  1065. if($nu['state'] == '216')
  1066. {
  1067. echo json_encode(array('msg'=>'数据已录入成功!提示:此订单已出库,可选择终止生产。','success'=>false));exit;
  1068. }
  1069. elseif(($nu['state'] == '217') || ($nu['state'] == '214')){
  1070. //标记订单已经取消
  1071. $this->_doCheckCancelFlag($lb['id']);
  1072. echo json_encode(array('msg'=>'数据已录入成功!提示:【该单已取消】,可选择终止生产。','success'=>false));exit;
  1073. }
  1074. else
  1075. {
  1076. if($lb['is_jiaji'] == 2){
  1077. echo json_encode(array('music'=>'1','is_jiaji'=>2,'success'=>true));exit;
  1078. }else{
  1079. echo json_encode(array('music'=>'1','success'=>true));exit;
  1080. }
  1081. }
  1082. }
  1083. else
  1084. {
  1085. $this->db->trans_rollback();
  1086. echo json_encode(array('msg'=>'数据写入失败,请重试!','success'=>false));exit;
  1087. }
  1088. }
  1089. else
  1090. {
  1091. if(stripos($rk['error'],'DocNo') !== false)
  1092. {
  1093. $rk['error'] = '未找到对应的生产订单 '.$lb['scid'];
  1094. }
  1095. $this->systemtransfer->save(array('dbapi'=>$rk['dbapi'],'scid'=>$rk['scid']),$lb['id']);
  1096. echo json_encode(array('msg'=>'订单号:'.$lb['number'].' 用友报错:'.$rk['error'],'success'=>false));exit;
  1097. }
  1098. }elseif($lb['type'] == 2){
  1099. $this->db->trans_begin();
  1100. $this->systemtransfer->save(array('rk'=>$lb['rk'],'rktime'=>$lb['rktime'],'ck'=>$lb['ck'],'cktime'=>$lb['cktime'],'time'=>$time,'gtime'=>date('YmdH',$time),'dbapi'=>99,$cztime=>$time),$lb['id']);
  1101. $this->systemtransfer_cr->insert(array('fid'=>$lb['id'],'lx'=>$transfer,'type'=>$cz,'time'=>$time));
  1102. $this->zzquque_u9->insert([
  1103. 'platform'=>'',
  1104. 'warehouse'=>0,
  1105. 'type'=>20, //5代表美仓
  1106. 'order_no'=>$lb['number'],
  1107. 'child_order_no'=>$lb['id'],
  1108. 'status'=>0,
  1109. 'create_time'=>time(),
  1110. 'update_time'=>time(),
  1111. ]);
  1112. //处理定时任务每三分钟 执行一次的bug 在出库的时候直接同步相关信息
  1113. if($cz == 2){
  1114. $this->_doCheckIsOverTime($lb['id'],$transfer);
  1115. }
  1116. if ($this->db->trans_status() === TRUE)
  1117. {
  1118. $this->db->trans_commit();
  1119. if($nu['state'] == '216')
  1120. {
  1121. echo json_encode(array('msg'=>'数据已录入成功!提示:此订单已出库,可选择终止生产。','success'=>false));exit;
  1122. }
  1123. elseif(($nu['state'] == '217') || ($nu['state'] == '214')){
  1124. //标记订单已经取消
  1125. $this->_doCheckCancelFlag($lb['id']);
  1126. echo json_encode(array('msg'=>'数据已录入成功!提示:【该单已取消】,可选择终止生产。','success'=>false));exit;
  1127. }
  1128. else
  1129. {
  1130. if($lb['is_jiaji'] == 2){
  1131. echo json_encode(array('music'=>'1','is_jiaji'=>2,'success'=>true));exit;
  1132. }else{
  1133. echo json_encode(array('music'=>'1','success'=>true));exit;
  1134. }
  1135. }
  1136. }
  1137. else
  1138. {
  1139. $this->db->trans_rollback();
  1140. echo json_encode(array('msg'=>'数据写入失败,请重试!','success'=>false));exit;
  1141. }
  1142. }
  1143. else
  1144. {
  1145. $scid = explode('~',$lb['scid']);
  1146. $rkdata = array('od'=>$scid[1],'ts'=>1,'title'=>$lb['title']);
  1147. $rk = $this->apiyy->get_bzsh($rkdata);
  1148. if(isset($rk['Data'][0]))
  1149. {
  1150. if($rk['Data'][0]['IsSucess'] == 1)
  1151. {
  1152. $this->db->trans_begin();
  1153. $this->systemtransfer->save(array('rk'=>$lb['rk'],'rktime'=>$lb['rktime'],'ck'=>$lb['ck'],'cktime'=>$lb['cktime'],'time'=>$time,'gtime'=>date('YmdH',$time),'dbapi'=>99,'scid'=>$lb['scid'].'~'.$rk['Data'][0]['Code'],$cztime=>$time),$lb['id']);
  1154. $this->systemtransfer_cr->insert(array('fid'=>$lb['id'],'lx'=>$transfer,'type'=>$cz,'time'=>$time));
  1155. //处理定时任务每三分钟 执行一次的bug 在出库的时候直接同步相关信息
  1156. if($cz == 2){
  1157. $this->_doCheckIsOverTime($lb['id'],$transfer);
  1158. }
  1159. if ($this->db->trans_status() === TRUE)
  1160. {
  1161. $this->db->trans_commit();
  1162. if($nu['state'] == '216')
  1163. {
  1164. echo json_encode(array('msg'=>'数据已录入成功!提示:此订单已出库,可选择终止生产。','success'=>false));exit;
  1165. }
  1166. elseif(($nu['state'] == '217') || ($nu['state'] == '214')){
  1167. //标记订单已经取消
  1168. $this->_doCheckCancelFlag($lb['id']);
  1169. echo json_encode(array('msg'=>'数据已录入成功!提示:【该单已取消】,可选择终止生产。','success'=>false));exit;
  1170. }
  1171. else
  1172. {
  1173. if($lb['is_jiaji'] == 2){
  1174. echo json_encode(array('music'=>'1','is_jiaji'=>2,'success'=>true));exit;
  1175. }else{
  1176. echo json_encode(array('music'=>'1','success'=>true));exit;
  1177. }
  1178. }
  1179. }
  1180. else
  1181. {
  1182. $this->db->trans_rollback();
  1183. echo json_encode(array('msg'=>'数据写入失败,请重试!','success'=>false));exit;
  1184. }
  1185. }
  1186. else
  1187. {
  1188. echo json_encode(array('msg'=>$rk['Data'][0]['ErrorMsg'],'success'=>false));exit;
  1189. }
  1190. }
  1191. else
  1192. {
  1193. echo json_encode(array('msg'=>$rk,'success'=>false));exit;
  1194. }
  1195. }
  1196. }
  1197. //if($transfer == 11 && stripos($lb['rk'],'|8|') === false && stripos($lb['ck'],'|3|') === false && stripos($lb['rk'],'|13|') === false)//只入库
  1198. if($transfer == 11 && stripos($lb['ck'],'|3|') === false && stripos($lb['rk'],'|13|') === false)//改出入库
  1199. {
  1200. echo json_encode(array('msg'=>'工厂未出库,请退回工厂!','success'=>false));exit;
  1201. }
  1202. $this->systemtransfer->save(array('rk'=>$lb['rk'],'rktime'=>$lb['rktime'],'ck'=>$lb['ck'],'cktime'=>$lb['cktime'],'time'=>$time,'gtime'=>date('YmdH',$time),$cztime=>$time),$lb['id']);
  1203. $this->systemtransfer_cr->insert(array('fid'=>$lb['id'],'lx'=>$transfer,'type'=>$cz,'time'=>$time));
  1204. //处理定时任务每三分钟 执行一次的bug 在出库的时候直接同步相关信息
  1205. if($cz == 2){
  1206. $this->_doCheckIsOverTime($lb['id'],$transfer);
  1207. }
  1208. if ($this->db->trans_status() === TRUE)
  1209. {
  1210. $this->db->trans_commit();
  1211. if($nu['state'] == '216')
  1212. {
  1213. echo json_encode(array('msg'=>'数据已录入成功!提示:此订单已出库,可选择终止生产。','success'=>false));exit;
  1214. }
  1215. elseif(($nu['state'] == '217') || ($nu['state'] == '214')){
  1216. //标记订单已经取消
  1217. $this->_doCheckCancelFlag($lb['id']);
  1218. echo json_encode(array('msg'=>'数据已录入成功!提示:【该单已取消】,可选择终止生产。','success'=>false));exit;
  1219. }
  1220. else
  1221. {
  1222. if($lb['is_jiaji'] == 2){
  1223. echo json_encode(array('music'=>'1','is_jiaji'=>2,'success'=>true));exit;
  1224. }else{
  1225. echo json_encode(array('music'=>'1','success'=>true));exit;
  1226. }
  1227. }
  1228. }
  1229. else
  1230. {
  1231. $this->db->trans_rollback();
  1232. echo json_encode(array('msg'=>'数据写入失败,请重试!','success'=>false));exit;
  1233. }
  1234. }
  1235. }
  1236. //检测取消标记是否添加 同时也检查下 该流转单是否被标记为取消单
  1237. private function _doCheckCancelFlag($fid){
  1238. $info = $this->systemtransfer->read($fid);
  1239. if($info['status'] != 11){
  1240. $this->systemtransfer->save(['status'=>11],$fid);
  1241. }
  1242. $list = $this->systemtransfer_cr->find_all("fid = ".$fid,'*','id desc');
  1243. if(empty($list)){
  1244. return;
  1245. }
  1246. $is_cancel = false;
  1247. foreach($list as $val){
  1248. if($val['orver_flag'] == 3){
  1249. $is_cancel = true;
  1250. }
  1251. }
  1252. if($is_cancel){
  1253. return ;
  1254. }
  1255. $this->systemtransfer_cr->save(['orver_flag'=>3],$list[0]['id']);
  1256. }
  1257. //检测是否可以取消长期未流转
  1258. private function _doCancelWlz($fid){
  1259. //$info = $this->systemtransfer->read($fid);
  1260. $list = $this->systemtransfer_cr->find_all("fid = ".$fid,'*','id desc');
  1261. if(empty($list)){
  1262. return;
  1263. }
  1264. $id = $list[0]['id'];
  1265. $scan_time = $list[0]['time'];
  1266. if($list[0]['type'] == 2){
  1267. if(time() - $scan_time < 3600 * 24 * 3){
  1268. $this->systemtransfer_cr->save([
  1269. 'extra_status'=>0,
  1270. ],$id);
  1271. }else{
  1272. $this->systemtransfer_cr->save([
  1273. 'extra_status'=>3,
  1274. ],$id);
  1275. }
  1276. }
  1277. }
  1278. //检测是否超时 车间流转环节
  1279. private function _doCheckIsOverTime($fid,$transfer){
  1280. $list = $this->systemtransfer_cr->find_all("fid = ".$fid." and lx = ".$transfer." and is_over = 0","*",'id desc',0,2);
  1281. if(count($list) < 2){
  1282. return ;
  1283. }
  1284. if($list[0]['type'] != 2){
  1285. return;
  1286. }
  1287. if($list[1]['type'] != 1){
  1288. return;
  1289. }
  1290. if($list[1]['orver_flag'] == 2){
  1291. $this->systemtransfer_cr->save(array('is_over'=>1,'orver_flag'=>2),$list[0]['id']);
  1292. }else{
  1293. $this->systemtransfer_cr->save(array('is_over'=>1),$list[0]['id']);
  1294. }
  1295. $this->systemtransfer_cr->save(array('is_over'=>1),$list[1]['id']);
  1296. }
  1297. public function _bdbb()
  1298. {
  1299. $post = $this->input->post(NULL, TRUE);
  1300. if(isset($post['s']))
  1301. {
  1302. $id_arr = $this->input->post('s');
  1303. $id_arr = explode(',',trim($id_arr,','));
  1304. if(!$id_arr)
  1305. {
  1306. echo json_encode(array('msg'=>$v.' - 未查询到需要补打信息!','success'=>false));exit;
  1307. }
  1308. //循环删除记录
  1309. foreach ($id_arr as $v)
  1310. {
  1311. $t = $this->systemtransfer->read($v);
  1312. if(!isset($t['number']))
  1313. {
  1314. echo json_encode(array('msg'=>$v.' - 补打信息已被删除!','success'=>false));exit;
  1315. }
  1316. $y = $this->fullorder->get_number($t['number']);
  1317. if(!$y)
  1318. {
  1319. $y = $this->fullordersmt->get_number($t['number']);
  1320. if(!$y)
  1321. {
  1322. $y = $this->fullordertt->get_number($t['number']);
  1323. if(!$y)
  1324. {
  1325. echo json_encode(array('msg'=>$t['number'].'没有找到此订单','success'=>false));exit;
  1326. }
  1327. }
  1328. }
  1329. $express = $this->express->read($y['express']);
  1330. $rows[] = array('num'=>$t['label'],'number'=>$t['number'],'shipremarks'=>$t['shipremarks'],'ex'=>$express['servicename'],'time'=>''.date('Y-m-d',$t['printtime']),'gtime'=>date('YmdH',time()),'s'=>'1/1','t'=>"补打");
  1331. }
  1332. echo json_encode(array('rows'=>($rows),'success'=>true));exit;
  1333. }
  1334. }
  1335. public function _excel()
  1336. {
  1337. if(isset($_GET['fexcel']))
  1338. {
  1339. $tc = array();$zh = array();
  1340. $typeclass = $this->typeclass->find_all();
  1341. foreach ($typeclass as $v)
  1342. {
  1343. $tc[$v['id']] = $v;
  1344. }
  1345. $number = $this->input->get('number',true);
  1346. $color = $this->input->get('color',true);
  1347. $gs = $this->input->get('gs',true);
  1348. $transfer = $this->input->get('transfer',true);
  1349. $type = $this->input->get('type',true);
  1350. $timetk = $this->input->get('timetk',true);
  1351. $timetj = $this->input->get('timetj',true);
  1352. $purchase = $this->input->get('purchase',true);
  1353. $lx = $this->input->get('lx',true);
  1354. $timetk = strtotime($timetk);
  1355. $timetj = strtotime($timetj);
  1356. $where = "1=1";
  1357. $cr = "time > '$timetk' and time < '$timetj'";
  1358. if($number)
  1359. {
  1360. $where .= " and number = '$number'";
  1361. }
  1362. if($transfer)
  1363. {
  1364. $cr .= " and lx = '".$transfer."'";
  1365. }
  1366. if($type)
  1367. {
  1368. //$cr .= " and type = '".$type."'";
  1369. if($type == 3){
  1370. $cr .= " and is_over = 0 ";
  1371. }else{
  1372. $cr .= " and type = '".$type."' ";
  1373. }
  1374. }
  1375. if($purchase)
  1376. {
  1377. $where .= " and purchase = '$purchase'";
  1378. }
  1379. if($color)
  1380. {
  1381. $where .= " and fpdata like '%-".$color."-%'";
  1382. }
  1383. if($lx)
  1384. {
  1385. if($lx == 1)
  1386. {
  1387. $where .= " and ordernumber = ''";
  1388. }
  1389. else
  1390. {
  1391. $where .= " and ordernumber != ''";
  1392. }
  1393. }
  1394. $fid = '';
  1395. $info_list_cr = $this->systemtransfer_cr->find_all($cr);
  1396. foreach ($info_list_cr as $v)
  1397. {
  1398. $fid .= "id = '".$v['fid']."' or ";
  1399. }
  1400. if($fid)
  1401. {
  1402. $where .= ' and ('.trim($fid,'or ').')';
  1403. }
  1404. else
  1405. {
  1406. $where .= ' and id = 0';
  1407. }
  1408. $data = array();
  1409. $datafy = array();
  1410. $j = 0;
  1411. $info_list = $this->systemtransfer->find_all($where,'id,number,pm,jm,shipremarks,printtime');
  1412. $lzbm = $this->transfer->find_all();
  1413. foreach ($info_list as $key=>$value)
  1414. {
  1415. $dj = '';$ys = '';$cc = '';$hx = '';$md = '';
  1416. $d = $this->systemtransfer->read($value['id']);
  1417. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  1418. $info_list[$key]['shipremarks'] = str_replace(array('<','>'),array('&lt;','&gt;'),$d['shipremarks']);
  1419. $d['features'] = str_replace(array('163-','164-','165-','166-','-0-'),array('','','','','-'),$d['features']);
  1420. $cp = explode('-',trim($d['features'],'-'));
  1421. $rk = explode('|',trim($d['rk'],'|'));
  1422. $rktime = explode('|',trim($d['rktime'],'|'));
  1423. foreach ($cp as $v)
  1424. {
  1425. if(isset($tc[$v]))
  1426. {
  1427. if($tc[$v]['classid'] == 13)
  1428. {
  1429. $dj = $tc[$v]['title'];
  1430. }
  1431. else if($tc[$v]['classid'] == 8)
  1432. {
  1433. $ys = $tc[$v]['title'];
  1434. }
  1435. else if($tc[$v]['classid'] == 14)
  1436. {
  1437. $cc = $tc[$v]['title'];
  1438. }
  1439. else if($tc[$v]['classid'] == 15)
  1440. {
  1441. $hx = $tc[$v]['title'];
  1442. }
  1443. else if($tc[$v]['classid'] == 10)
  1444. {
  1445. $md = $tc[$v]['title'];
  1446. }
  1447. }
  1448. }
  1449. $rt = array();
  1450. foreach ($rk as $k=>$v)
  1451. {
  1452. $rt[$v+5] = date('Y-m-d H:i:s',$rktime[$k]);
  1453. }
  1454. $fpdata = array(array('0'=>$d['title'],'1'=>$cc,'2'=>$dj,'3'=>$ys,'4'=>$hx,'5'=>$md));
  1455. foreach ($lzbm as $v)
  1456. {
  1457. if(isset($rt[count($fpdata[0])]))
  1458. {
  1459. //$fpdata[0][count($fpdata[0])] = $rt[count($fpdata[0])];
  1460. $num = $this->systemtransfer_cr->find_count("fid = ".$value['id']." and lx = ".$v['id']." and orver_flag = 2");
  1461. if($num > 0){
  1462. $fpdata[0][count($fpdata[0])] = "<span style='color:red;font-weight:bold;'>".$rt[count($fpdata[0])]."<span>";
  1463. }else{
  1464. $fpdata[0][count($fpdata[0])] = $rt[count($fpdata[0])];
  1465. }
  1466. }
  1467. else
  1468. {
  1469. $fpdata[0][count($fpdata[0])] = '';
  1470. }
  1471. }
  1472. $info_list[$key]['fpdata'] = $fpdata;//名称,尺寸,等级,颜色,花型,密度
  1473. unset($info_list[$key]['id']);
  1474. }
  1475. //echo "<pre>";print_r($info_list);exit;
  1476. $lzxq = '';
  1477. foreach ($lzbm as $v)
  1478. {
  1479. $lzxq .= '<td>'.$v['title'].'</td>';
  1480. }
  1481. $title = date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj).' 统计表';
  1482. $titlename = "<table border=1>
  1483. <tr>
  1484. <td>订单编号</td>
  1485. <td>品名</td>
  1486. <td>简码</td>
  1487. <td>备注</td>
  1488. <td>打印时间</td>
  1489. <td>
  1490. <table border=1>
  1491. <tr><td colspan='6' align='center'>订单产品信息</td><td colspan='".count($lzbm)."' align='center'>货物流转时间</td></tr>
  1492. <tr>
  1493. <td>产品名称</td>
  1494. <td>尺寸</td>
  1495. <td>等级</td>
  1496. <td>颜色</td>
  1497. <td>花型</td>
  1498. <td>密度</td>
  1499. ".$lzxq."
  1500. </tr>
  1501. </table>
  1502. </td>
  1503. </tr>
  1504. </table>";
  1505. $filename = $title.".xls";
  1506. $tail = "\n";
  1507. $this->excel->get_fz($info_list,$titlename,$filename,$tail,1);
  1508. }
  1509. }
  1510. public function _rk()
  1511. {
  1512. $post = $this->input->post(NULL, TRUE);
  1513. if(isset($post['page']))
  1514. {
  1515. $api = $this->input->post('api',true);
  1516. $page = $this->input->post('page',true);
  1517. $perpage = $this->input->post('perpage',true);
  1518. $number = $this->input->post('number',true);
  1519. $color = $this->input->post('color',true);
  1520. $purchase = $this->input->post('purchase',true);
  1521. $transfer = $this->input->post('transfer',true);
  1522. $lx = $this->input->post('lx',true);
  1523. $timetk = $this->input->post('timetk',true);
  1524. $timetj = $this->input->post('timetj',true);
  1525. $timetk = strtotime($timetk);
  1526. $timetj = strtotime($timetj);
  1527. $where = "1=1";
  1528. if($transfer)
  1529. {
  1530. $ctime = 'ctime'.$transfer;
  1531. $where .= " and $ctime > '$timetk' and $ctime < '$timetj'";
  1532. }
  1533. else
  1534. {
  1535. $where .= " and time > '$timetk' and time < '$timetj'";
  1536. }
  1537. if($number)
  1538. {
  1539. $where .= " and number = '$number'";
  1540. }
  1541. if($transfer)
  1542. {
  1543. $where .= " and rk like '%|".$transfer."|%'";
  1544. }
  1545. if($purchase)
  1546. {
  1547. $where .= " and purchase = '$purchase'";
  1548. }
  1549. if($color)
  1550. {
  1551. $where .= " and fpdata like '%-".$color."-%'";
  1552. }
  1553. if($lx)
  1554. {
  1555. if($lx == 1)
  1556. {
  1557. $where .= " and ordernumber = ''";
  1558. }
  1559. else
  1560. {
  1561. $where .= " and ordernumber != ''";
  1562. }
  1563. }
  1564. //数据排序
  1565. $order_str = "id desc";
  1566. if(empty($page))
  1567. {
  1568. $start = 0;
  1569. $perpage = 1;
  1570. }
  1571. else
  1572. {
  1573. $start = ($page - 1)*$perpage;
  1574. }
  1575. //取得信息列表
  1576. $info_list = $this->systemtransfer->find_all($where,'id,number,pm,shipremarks,printtime,time',$order_str,$start,$perpage);
  1577. $transfer = $this->transfer->find_all();
  1578. $t = array();
  1579. foreach ($transfer as $v)
  1580. {
  1581. $t[$v['id']] = $v['title'];
  1582. $ot[$v['id']] = ($v['orvertime']>0)?$v['orvertime']*24*3600:0;
  1583. }
  1584. //格式化数据
  1585. foreach ($info_list as $key=>$value)
  1586. {
  1587. $dd = $this->systemtransfer->read($value['id']);
  1588. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  1589. $rk = explode('|',trim($dd['rk'],'|'));
  1590. $rktime = explode('|',trim($dd['rktime'],'|'));
  1591. $ck = explode('|',trim($dd['ck'],'|'));
  1592. $cktime = explode('|',trim($dd['cktime'],'|'));
  1593. $info_list[$key]['time'] = '';
  1594. for($i=0;$i<count($rk);$i++)
  1595. {
  1596. if(count($rk)-1 == $i && $ot[$rk[$i]] > 0 && $rktime[$i] + $ot[$rk[$i]] < time())
  1597. {
  1598. $d = ' <em style="color: #fc5454;">'.$t[$rk[$i]].'入库 :'.((isset($rktime[$i]))?(date('Y-m-d H:i',$rktime[$i])):'').' 超</em><br> ';
  1599. }
  1600. else
  1601. {
  1602. $d = $t[$rk[$i]].'入库 :'.((isset($rktime[$i]))?(date('Y-m-d H:i',$rktime[$i])):'').'<br>';
  1603. }
  1604. $info_list[$key]['time'] .= $d;
  1605. if(isset($ck[$i]) && $ck[$i] != '')
  1606. {
  1607. $info_list[$key]['time'] .= $t[$ck[$i]].'出库 :'.date('Y-m-d H:i',$cktime[$i]).'<br>';
  1608. }
  1609. }
  1610. $info_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  1611. }
  1612. $total = $this->systemtransfer->find_count($where);
  1613. $pagenum = ceil($total/$perpage);
  1614. $over = $total-($start+$perpage);
  1615. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list),'cs'=>$where);
  1616. echo json_encode($rows);exit;
  1617. }
  1618. if(isset($_SESSION['api']))
  1619. {
  1620. $user = $this->user->get_api($_SESSION['api']);
  1621. $usp = $user;
  1622. $pid = "";$tid="";$sid="";$wid="";
  1623. $purchase = explode('|',trim($user['purchase'],'|'));
  1624. $transfer = explode('|',trim($user['transfer'],'|'));
  1625. $warehouse = explode('|',trim($user['warehouse'],'|'));
  1626. foreach ($purchase as $value)
  1627. {
  1628. $pid .= " id = ".$value." or";
  1629. }
  1630. foreach ($transfer as $value)
  1631. {
  1632. $tid .= " id = ".$value." or";
  1633. }
  1634. foreach ($warehouse as $value)
  1635. {
  1636. $wid .= " id = ".$value." or";
  1637. }
  1638. }
  1639. else
  1640. {
  1641. header('Location: /');exit;
  1642. }
  1643. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  1644. $this->data['transfer'] = $transfer;
  1645. $this->_Template('transfer_rk',$this->data);
  1646. }
  1647. public function _ck()
  1648. {
  1649. $post = $this->input->post(NULL, TRUE);
  1650. if(isset($post['page']))
  1651. {
  1652. $api = $this->input->post('api',true);
  1653. $page = $this->input->post('page',true);
  1654. $perpage = $this->input->post('perpage',true);
  1655. $number = $this->input->post('number',true);
  1656. $color = $this->input->post('color',true);
  1657. $purchase = $this->input->post('purchase',true);
  1658. $transfer = $this->input->post('transfer',true);
  1659. $lx = $this->input->post('lx',true);
  1660. $timetk = $this->input->post('timetk',true);
  1661. $timetj = $this->input->post('timetj',true);
  1662. $timetk = strtotime($timetk);
  1663. $timetj = strtotime($timetj);
  1664. $where = "1=1";
  1665. if($transfer)
  1666. {
  1667. $ctime = 'ctime'.$transfer;
  1668. $where .= " and $ctime > '$timetk' and $ctime < '$timetj'";
  1669. }
  1670. else
  1671. {
  1672. $where .= " and time > '$timetk' and time < '$timetj'";
  1673. }
  1674. if($number)
  1675. {
  1676. $where .= " and number = '$number'";
  1677. }
  1678. if($transfer)
  1679. {
  1680. $where .= " and ck like '%|".$transfer."|%'";
  1681. }
  1682. if($purchase)
  1683. {
  1684. $where .= " and purchase = '$purchase'";
  1685. }
  1686. if($color)
  1687. {
  1688. $where .= " and fpdata like '%-".$color."-%'";
  1689. }
  1690. if($lx)
  1691. {
  1692. if($lx == 1)
  1693. {
  1694. $where .= " and ordernumber = ''";
  1695. }
  1696. else
  1697. {
  1698. $where .= " and ordernumber != ''";
  1699. }
  1700. }
  1701. //数据排序
  1702. $order_str = "id desc";
  1703. if(empty($page))
  1704. {
  1705. $start = 0;
  1706. $perpage = 1;
  1707. }
  1708. else
  1709. {
  1710. $start = ($page - 1)*$perpage;
  1711. }
  1712. //取得信息列表
  1713. $info_list = $this->systemtransfer->find_all($where,'id,number,pm,shipremarks,printtime,time',$order_str,$start,$perpage);
  1714. $transfer = $this->transfer->find_all();
  1715. $t = array();
  1716. foreach ($transfer as $v)
  1717. {
  1718. $t[$v['id']] = $v['title'];
  1719. $ot[$v['id']] = ($v['orvertime']>0)?$v['orvertime']*24*3600:0;
  1720. }
  1721. //格式化数据
  1722. foreach ($info_list as $key=>$value)
  1723. {
  1724. $dd = $this->systemtransfer->read($value['id']);
  1725. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  1726. $rk = explode('|',trim($dd['rk'],'|'));
  1727. $rktime = explode('|',trim($dd['rktime'],'|'));
  1728. $ck = explode('|',trim($dd['ck'],'|'));
  1729. $cktime = explode('|',trim($dd['cktime'],'|'));
  1730. $info_list[$key]['time'] = '';
  1731. for($i=0;$i<count($rk);$i++)
  1732. {
  1733. if(count($rk)-1 == $i && $ot[$rk[$i]] > 0 && $rktime[$i] + $ot[$rk[$i]] < time())
  1734. {
  1735. $d = ' <em style="color: #fc5454;">'.$t[$rk[$i]].'入库 :'.((isset($rktime[$i]))?(date('Y-m-d H:i',$rktime[$i])):'').' 超</em><br> ';
  1736. }
  1737. else
  1738. {
  1739. $d = $t[$rk[$i]].'入库 :'.((isset($rktime[$i]))?(date('Y-m-d H:i',$rktime[$i])):'').'<br>';
  1740. }
  1741. $info_list[$key]['time'] .= $d;
  1742. if(isset($ck[$i]) && $ck[$i] != '')
  1743. {
  1744. $info_list[$key]['time'] .= $t[$ck[$i]].'出库 :'.date('Y-m-d H:i',$cktime[$i]).'<br>';
  1745. }
  1746. }
  1747. $info_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  1748. }
  1749. $total = $this->systemtransfer->find_count($where);
  1750. $pagenum = ceil($total/$perpage);
  1751. $over = $total-($start+$perpage);
  1752. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list),'cs'=>$where);
  1753. echo json_encode($rows);exit;
  1754. }
  1755. if(isset($_SESSION['api']))
  1756. {
  1757. $user = $this->user->get_api($_SESSION['api']);
  1758. $usp = $user;
  1759. $pid = "";$tid="";$sid="";$wid="";
  1760. $purchase = explode('|',trim($user['purchase'],'|'));
  1761. $transfer = explode('|',trim($user['transfer'],'|'));
  1762. $warehouse = explode('|',trim($user['warehouse'],'|'));
  1763. foreach ($purchase as $value)
  1764. {
  1765. $pid .= " id = ".$value." or";
  1766. }
  1767. foreach ($transfer as $value)
  1768. {
  1769. $tid .= " id = ".$value." or";
  1770. }
  1771. foreach ($warehouse as $value)
  1772. {
  1773. $wid .= " id = ".$value." or";
  1774. }
  1775. }
  1776. else
  1777. {
  1778. header('Location: /');exit;
  1779. }
  1780. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  1781. $this->data['transfer'] = $transfer;
  1782. $this->_Template('transfer_ck',$this->data);
  1783. }
  1784. public function _jgl()
  1785. {
  1786. $post = $this->input->post(NULL, TRUE);
  1787. if(isset($post['printtime']))
  1788. {
  1789. $pt = $this->input->post('printtime',true);
  1790. $wt = $this->input->post('wgtime',true);
  1791. $printtime = strtotime($pt);
  1792. $wgtime = strtotime($wt);
  1793. $sy = $this->systemtransfer->find_count("printtime > '$printtime' and printtime < '".($printtime+24*3600)."'");
  1794. $wg = $this->systemtransfer->find_count("printtime > '$printtime' and printtime < '".($printtime+24*3600)."' and ctime11 < '$wgtime' and ctime11 != '0'");
  1795. if($printtime == $wgtime || $printtime > $wgtime)
  1796. {
  1797. echo json_encode(array('msg'=>"<p style='height:140px;line-height:140px'>时间选择错误</p>",'success'=>true));exit;
  1798. }
  1799. echo json_encode(array('msg'=>"<p style='height:140px;line-height:140px'>".(($wgtime-$printtime)/86400)."天 完工数量:".$wg.", 总数量:".$sy.", 完工率:".number_format(($wg/$sy*100),2)."%</p>",'success'=>true));exit;
  1800. }
  1801. $this->_Template('transfer_wgl',$this->data);
  1802. }
  1803. public function _linqi(){
  1804. $post = $this->input->post(NULL, TRUE);
  1805. if(isset($post['page']))
  1806. {
  1807. $api = $this->input->post('api',true);
  1808. $page = $this->input->post('page',true);
  1809. $perpage = $this->input->post('perpage',true);
  1810. $transfer = $this->input->post('transfer',true);
  1811. $transfer_ids = $this->input->post('transfer_ids',true);
  1812. $orver_flag = $this->input->post('orver_flag',true);
  1813. $timetk = $this->input->post('timetk',true);
  1814. $timetj = $this->input->post('timetj',true);
  1815. $timetk = strtotime($timetk);
  1816. $timetj = strtotime($timetj);
  1817. $transfer_list = $this->transfer->find_all();
  1818. $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  1819. $where = 'type = 1 ';
  1820. $where .= " and is_over = 0 and orver_flag = ".$orver_flag." ";
  1821. //数据排序
  1822. $order_str = "id desc";
  1823. if(empty($page))
  1824. {
  1825. $start = 0;
  1826. $perpage = 1;
  1827. }
  1828. else
  1829. {
  1830. $start = ($page - 1)*$perpage;
  1831. }
  1832. if($transfer){
  1833. $where .= " and lx = '$transfer'";
  1834. }else{
  1835. $where .= " and lx in (".$transfer_ids.") ";
  1836. }
  1837. $where .= " and time > '$timetk' and time < '$timetj'";
  1838. $list = $this->systemtransfer_cr->find_all($where,'*',$order_str,$start,$perpage);
  1839. $final_list = [];
  1840. foreach ($list as $key => $value) {
  1841. $info = $this->systemtransfer->read($value['fid']);
  1842. $final_list[$key]['id'] = $value['id'];
  1843. $final_list[$key]['number'] = isset($info['number'])?$info['number']:'';
  1844. if($info['is_jiaji'] == 2){
  1845. $final_list[$key]['is_jiaji'] = "<a href='javascript:void(0)' style='color:red'>加急</a>";
  1846. }else{
  1847. $final_list[$key]['is_jiaji'] = "常规";
  1848. }
  1849. $final_list[$key]['pm'] = $info['pm'];
  1850. $final_list[$key]['shipremarks'] = $info['shipremarks'];
  1851. $final_list[$key]['printtime'] = date('Y-m-d H:i:s',$info['printtime']);
  1852. $data = $this->systemtransfer_cr->find_all("fid = '".$info['id']."'");
  1853. $info_list[$key]['time'] = "布标打印 :".date('Y-m-d H:i',$info['ctime12']).'<br>';
  1854. foreach ($data as $k=>$v)
  1855. {
  1856. $type = ($v['type']==1)?'入库':'出库';
  1857. if($v['orver_flag'] == 1){
  1858. if($v['is_over'] == 0){
  1859. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900;'> 即将超时 </l></a>".'<br>';
  1860. // $info_list[$key]['time'] .= '<i style="padding:10px;color:#90f;font-weight:bold;"> 即将超时</i>'.'<br>';
  1861. }else{
  1862. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>".'<br>';
  1863. }
  1864. }elseif($v['orver_flag'] == 2){
  1865. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#f33'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900'> 超 时 ! </l></a>".'<br>';
  1866. }else{
  1867. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>".'<br>';
  1868. }
  1869. }
  1870. $final_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  1871. }
  1872. $total = $this->systemtransfer_cr->find_count($where);
  1873. $pagenum = ceil($total/$perpage);
  1874. $over = $total-($start+$perpage);
  1875. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($final_list));
  1876. echo json_encode($rows);exit;
  1877. }
  1878. if(isset($_SESSION['api']))
  1879. {
  1880. $user = $this->user->get_api($_SESSION['api']);
  1881. $usp = $user;
  1882. $pid = "";$tid="";$sid="";$wid="";
  1883. $purchase = explode('|',trim($user['purchase'],'|'));
  1884. $transfer = explode('|',trim($user['transfer'],'|'));
  1885. $warehouse = explode('|',trim($user['warehouse'],'|'));
  1886. foreach ($purchase as $value)
  1887. {
  1888. $pid .= " id = ".$value." or";
  1889. }
  1890. foreach ($transfer as $value)
  1891. {
  1892. $tid .= " id = ".$value." or";
  1893. }
  1894. foreach ($warehouse as $value)
  1895. {
  1896. $wid .= " id = ".$value." or";
  1897. }
  1898. }
  1899. else
  1900. {
  1901. header('Location: /');exit;
  1902. }
  1903. $kx = '';$zjtab = '';
  1904. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  1905. $this->data['transfer'] = $transfer;
  1906. $transfer_ids = array_column($transfer, 'id');
  1907. $this->data['transfer_ids'] =implode(",",$transfer_ids) ;
  1908. $this->data['vip'] = $user['vip'];
  1909. $this->data['orver_flag'] = $this->input->get('orver_flag', TRUE);
  1910. $this->_Template('transfer_linqi',$this->data);
  1911. }
  1912. //按照条件导出超时车间
  1913. public function _overtime_export(){
  1914. $transfer_id = $this->input->get('transfer', TRUE);
  1915. $timetk = $this->input->get('timetk', TRUE);
  1916. $timetj = $this->input->get('timetj', TRUE);
  1917. $timetk = strtotime($timetk);
  1918. $timetj = strtotime($timetj);
  1919. if(isset($_SESSION['api']))
  1920. {
  1921. $user = $this->user->get_api($_SESSION['api']);
  1922. $transfer_ids = explode('|',trim($user['transfer'],'|'));
  1923. $tmp_transfer_list = $this->transfer->find_all();
  1924. $transfer_list = array_column($tmp_transfer_list, 'title', 'id');
  1925. }
  1926. else
  1927. {
  1928. header('Location: /');exit;
  1929. }
  1930. $where = " orver_flag = 2 and type = 1";
  1931. if(empty($transfer_id)){
  1932. $where .= " and lx in (".implode(',',$transfer_ids).") ";
  1933. }else{
  1934. $where .= " and lx = ".$transfer_id." ";
  1935. }
  1936. $where .= " and time > '$timetk' and time < '$timetj'";
  1937. $list = $this->systemtransfer_cr->find_all($where,'*');
  1938. $fid_list = array_column($list, 'fid');
  1939. if(empty($fid_list)){
  1940. echo "没有数据" ;
  1941. die ;
  1942. }
  1943. $order_list = $this->systemtransfer->find_all("id in (".implode(',',$fid_list).")");
  1944. $where_two = " orver_flag = 2 and type = 2";
  1945. if(empty($transfer_id)){
  1946. $where_two .= " and lx in (".implode(',',$transfer_ids).") ";
  1947. }else{
  1948. $where_two .= " and lx = ".$transfer_id." ";
  1949. }
  1950. $where_two .= " and time > '$timetk' and time < '$timetj'";
  1951. $list_two = $this->systemtransfer_cr->find_all($where_two,'*');
  1952. $final_list = [];
  1953. // foreach($list as $k => $v){
  1954. // $final_list[$v['fid']]['fid'] = $v['fid'];
  1955. // $final_list[$v['fid']]['lx'] = $v['lx'];
  1956. // $final_list[$v['fid']]['start_type'] = $v['type'];
  1957. // $final_list[$v['fid']]['start_time'] = date('Y-m-d H:i:s',$v['time']);
  1958. // $final_list[$v['fid']]['condition'] = json_decode($v['limit_time_str'],true);
  1959. // $final_list[$v['fid']]['end_time'] = "";
  1960. // $final_list[$v['fid']]['lx_name'] = isset($transfer_list[$v['lx']])?$transfer_list[$v['lx']]:'';
  1961. // }
  1962. // foreach($order_list as $k=>$v){
  1963. // if(isset($final_list[$v['id']])){
  1964. // $final_list[$v['id']]['number'] = $v['number'];
  1965. // $final_list[$v['id']]['pm'] = $v['pm'];
  1966. // }
  1967. // }
  1968. // foreach($list_two as $k => $v){
  1969. // if(isset($final_list[$v['fid']])){
  1970. // if($v['lx'] ==$final_list[$v['fid']]['lx']){
  1971. // $final_list[$v['fid']]['end_time'] = date('Y-m-d H:i:s',$v['time']);
  1972. // }
  1973. // }
  1974. // }
  1975. foreach($list as $k => $v){
  1976. $final_list[] = [
  1977. 'fid' => $v['fid'],
  1978. 'lx' => $v['lx'],
  1979. 'start_type' => $v['type'],
  1980. 'start_time' => date('Y-m-d H:i:s',$v['time']),
  1981. 'condition' => json_decode($v['limit_time_str'],true),
  1982. 'end_time' => "",
  1983. 'lx_name' => isset($transfer_list[$v['lx']])?$transfer_list[$v['lx']]:'',
  1984. ];
  1985. }
  1986. foreach($order_list as $k=>$v){
  1987. foreach($final_list as $kk => $vv){
  1988. if($v['id'] == $vv['fid']){
  1989. $final_list[$kk]['number'] = $v['number'];
  1990. $final_list[$kk]['pm'] = $v['pm'];
  1991. }
  1992. }
  1993. }
  1994. foreach($list_two as $k => $v){
  1995. foreach($final_list as $kk => $vv){
  1996. if(($v['fid'] == $vv['fid']) && ($v['lx'] == $vv['lx'])){
  1997. $final_list[$kk]['end_time'] = date('Y-m-d H:i:s',$v['time']);
  1998. }
  1999. }
  2000. }
  2001. $filename = date("Y-m-d")."超时单导出.xls";
  2002. $str = "<html xmlns:x=\"urn:schemas-microsoft-com:office:excel\">
  2003. <head>
  2004. <!--[if gte mso 9]><xml>
  2005. <x:ExcelWorkbook>
  2006. <x:ExcelWorksheets>
  2007. <x:ExcelWorksheet>
  2008. <x:Name>EXCEL</x:Name>
  2009. <x:WorksheetOptions>
  2010. <x:Print>
  2011. <x:ValidPrinterInfo />
  2012. </x:Print>
  2013. </x:WorksheetOptions>
  2014. </x:ExcelWorksheet>
  2015. </x:ExcelWorksheets>
  2016. </x:ExcelWorkbook>
  2017. </xml>
  2018. <![endif]-->
  2019. </head><body>";
  2020. $str .= "<table border=1 style='font-family: Microsoft Yahei;font-size: 13px;'>";
  2021. $str .= "<tr><td>订单编号</td><td>品名</td><td>车间</td><td>入库日期</td><td>出库日期</td></tr>";
  2022. foreach ($final_list as $key=>$value)
  2023. {
  2024. if(empty($value['number'])){
  2025. continue;
  2026. }
  2027. $str .= "<tr>";
  2028. $str .= "<td>". $value['number']. "</td>";
  2029. $str .= "<td>". $value['pm']. "</td>";
  2030. $str .= "<td>". $value['lx_name']. "</td>";
  2031. $str .= "<td>". $value['start_time']. "</td>";
  2032. $str .= "<td>". $value['end_time']. "</td>";
  2033. $str .= "</tr>";
  2034. }
  2035. $str .= "</table></body></html>";
  2036. header( "Content-Type: application/vnd.ms-excel; name='excel'" );
  2037. header( "Content-type: application/octet-stream" );
  2038. header( "Content-Disposition: attachment; filename=".$filename );
  2039. header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
  2040. header( "Pragma: no-cache" );
  2041. header( "Expires: 0" );
  2042. exit($str);
  2043. }
  2044. public function _jiaji(){
  2045. $post = $this->input->post(NULL, TRUE);
  2046. if(isset($post['page']))
  2047. {
  2048. $api = $this->input->post('api',true);
  2049. $page = $this->input->post('page',true);
  2050. $perpage = $this->input->post('perpage',true);
  2051. $transfer = $this->input->post('transfer',true);
  2052. $transfer_ids = $this->input->post('transfer_ids',true);
  2053. $orver_flag = $this->input->post('orver_flag',true);
  2054. $timetk = $this->input->post('timetk',true);
  2055. $timetj = $this->input->post('timetj',true);
  2056. $timetk = strtotime($timetk);
  2057. $timetj = strtotime($timetj);
  2058. $transfer_list = $this->transfer->find_all();
  2059. $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  2060. if(isset($_SESSION['api']))
  2061. {
  2062. $user = $this->user->get_api($_SESSION['api']);
  2063. $transfer_ids = explode('|',trim($user['transfer'],'|'));
  2064. }
  2065. else
  2066. {
  2067. $transfer_ids = array_keys($t);
  2068. }
  2069. if(empty($page))
  2070. {
  2071. $start = 0;
  2072. $perpage = 1;
  2073. }
  2074. else
  2075. {
  2076. $start = ($page - 1)*$perpage;
  2077. }
  2078. $sql_r = "select s.* from crowd_systemtransfer as s inner join crowd_systemtransfer_cr as c on c.fid = s.id and c.is_over = 0 and c.time > ".$timetk ." and c.time < ".$timetj." ";
  2079. if($transfer){
  2080. $sql_r .= " and c.lx = ".$transfer." ";
  2081. }else{
  2082. foreach($transfer_ids as $k=>$v){
  2083. if($v == 11){
  2084. unset($transfer_ids[$k]);
  2085. }
  2086. }
  2087. $transfer_str = implode(",",$transfer_ids);
  2088. $sql_r .= " and c.lx in (".$transfer_str.") ";
  2089. }
  2090. $sql_r .=" where s.is_jiaji = 2 and s.rk not like '%|11|%' " ;
  2091. $rows_r = $this->db->query($sql_r);
  2092. $get_list = $rows_r->result_array();
  2093. $total = count($get_list);
  2094. $split_list = array_chunk($get_list,$perpage);
  2095. $pagenum = ceil(count($split_list));
  2096. $key = $page - 1;
  2097. $list = isset($split_list[$key])?$split_list[$key]:[];
  2098. $final_list = [];
  2099. foreach ($list as $key => $value) {
  2100. $final_list[$key]['id'] = $value['id'];
  2101. $final_list[$key]['number'] = isset($value['number'])?$value['number']:'';
  2102. if($value['is_jiaji'] == 2){
  2103. $final_list[$key]['is_jiaji'] = "<a href='javascript:void(0)' style='color:red'>加急</a>";
  2104. }else{
  2105. $final_list[$key]['is_jiaji'] = "常规";
  2106. }
  2107. $final_list[$key]['pm'] = $value['pm'];
  2108. $final_list[$key]['shipremarks'] = $value['shipremarks'];
  2109. $final_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  2110. $data = $this->systemtransfer_cr->find_all("fid = '".$value['id']."'");
  2111. $info_list[$key]['time'] = "布标打印 :".date('Y-m-d H:i',$value['ctime12']).'<br>';
  2112. foreach ($data as $k=>$v)
  2113. {
  2114. $type = ($v['type']==1)?'入库':'出库';
  2115. if($v['orver_flag'] == 1){
  2116. if($v['is_over'] == 0){
  2117. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900;'> 即将超时 </l></a>".'<br>';
  2118. // $info_list[$key]['time'] .= '<i style="padding:10px;color:#90f;font-weight:bold;"> 即将超时</i>'.'<br>';
  2119. }else{
  2120. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>".'<br>';
  2121. }
  2122. }elseif($v['orver_flag'] == 2){
  2123. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#f33'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900'> 超 时 ! </l></a>".'<br>';
  2124. }else{
  2125. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>".'<br>';
  2126. }
  2127. }
  2128. $final_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  2129. }
  2130. $over = $total-($start+$perpage);
  2131. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($final_list));
  2132. echo json_encode($rows);exit;
  2133. }
  2134. if(isset($_SESSION['api']))
  2135. {
  2136. $user = $this->user->get_api($_SESSION['api']);
  2137. $usp = $user;
  2138. $pid = "";$tid="";$sid="";$wid="";
  2139. $purchase = explode('|',trim($user['purchase'],'|'));
  2140. $transfer = explode('|',trim($user['transfer'],'|'));
  2141. $warehouse = explode('|',trim($user['warehouse'],'|'));
  2142. foreach ($purchase as $value)
  2143. {
  2144. $pid .= " id = ".$value." or";
  2145. }
  2146. foreach ($transfer as $value)
  2147. {
  2148. if($value){
  2149. if($value != 11){
  2150. $tid .= " id = ".$value." or";
  2151. }
  2152. }
  2153. }
  2154. foreach ($warehouse as $value)
  2155. {
  2156. $wid .= " id = ".$value." or";
  2157. }
  2158. }
  2159. else
  2160. {
  2161. header('Location: /');exit;
  2162. }
  2163. $kx = '';$zjtab = '';
  2164. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  2165. $this->data['transfer'] = $transfer;
  2166. $transfer_ids = array_column($transfer, 'id');
  2167. $this->data['transfer_ids'] =implode(",",$transfer_ids) ;
  2168. $this->data['vip'] = $user['vip'];
  2169. $this->data['orver_flag'] = $this->input->get('orver_flag', TRUE);
  2170. $this->_Template('transfer_jiaji',$this->data);
  2171. }
  2172. public function _scz(){
  2173. $post = $this->input->post(NULL, TRUE);
  2174. if(isset($post['page']))
  2175. {
  2176. $page = $this->input->post('page',true);
  2177. $perpage = $this->input->post('perpage',true);
  2178. $transfer = $this->input->post('transfer',true);
  2179. $transfer_ids = $this->input->post('transfer_ids',true);
  2180. $timetk = $this->input->post('timetk',true);
  2181. $timetj = $this->input->post('timetj',true);
  2182. $timetk = strtotime($timetk);
  2183. $timetj = strtotime($timetj);
  2184. // $transfer_list = $this->transfer->find_all('id not in (8,9,11,12,15,16)');
  2185. // $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  2186. // $transfer_ids = array_keys($t);
  2187. if(empty($page))
  2188. {
  2189. $start = 0;
  2190. $perpage = 1;
  2191. }
  2192. else
  2193. {
  2194. $start = ($page - 1)*$perpage;
  2195. }
  2196. $where = "time > '$timetk' and time < '$timetj'";
  2197. $where .= " and rk not like '%11|' ";
  2198. if(!empty($transfer)){
  2199. $where .= " and rk like '%|".$transfer."|%' ";
  2200. }
  2201. // if($transfer)
  2202. // {
  2203. // $cr .= " and lx = '".$transfer."' ";
  2204. // }else{
  2205. // $cr .= " and lx in (".implode(",",$transfer_ids).") ";
  2206. // }
  2207. // $cr .= " and is_over = 0 ";
  2208. // $info_list_cr = $this->systemtransfer_cr->find_all($cr);
  2209. // $fid = [];
  2210. // foreach ($info_list_cr as $v)
  2211. // {
  2212. // $fid[] = $v['fid'];
  2213. // }
  2214. // if(empty($fid)){
  2215. // $rows = array('total'=>0,'over'=>0,'pagenum'=>0,'rows'=>([]));
  2216. // echo json_encode($rows);exit;
  2217. // }
  2218. // $fid = array_unique($fid);
  2219. $order_str = "id desc";
  2220. //取得信息列表
  2221. $info_list = $this->systemtransfer->find_all($where,'id,number,is_jiaji,pm,shipremarks,printtime,time,ctime12',$order_str,$start,$perpage);
  2222. $transfer = $this->transfer->find_all();
  2223. $t = array();
  2224. foreach ($transfer as $v)
  2225. {
  2226. $t[$v['id']] = $v['title'];
  2227. $ot[$v['id']] = ($v['orvertime']>0)?$v['orvertime']*24*3600:0;
  2228. }
  2229. //格式化数据
  2230. foreach ($info_list as $key=>$value)
  2231. {
  2232. if($value['is_jiaji'] == 2){
  2233. $info_list[$key]['is_jiaji'] = "<a href='javascript:void(0)' style='color:red'>加急</a>";
  2234. }else{
  2235. $info_list[$key]['is_jiaji'] = "常规";
  2236. }
  2237. $dd = $this->systemtransfer->read($value['id']);
  2238. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  2239. $rk = explode('|',trim($dd['rk'],'|'));
  2240. $rktime = explode('|',trim($dd['rktime'],'|'));
  2241. $ck = explode('|',trim($dd['ck'],'|'));
  2242. $cktime = explode('|',trim($dd['cktime'],'|'));
  2243. $info_list[$key]['time'] = '';
  2244. $data = $this->systemtransfer_cr->find_all("fid = '".$value['id']."'");
  2245. //$info_list[$key]['time'] = "订单出库 :".date('Y-m-d H:i',$value['printtime']).'<br>';
  2246. $info_list[$key]['time'] = "布标打印 :".date('Y-m-d H:i',$value['ctime12']).'<br>';
  2247. foreach ($data as $k=>$v)
  2248. {
  2249. // $type = ($v['type']==1)?'入库':'出库';
  2250. // $info_list[$key]['time'] .= $t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']).'<br>';
  2251. $type = ($v['type']==1)?'入库':'出库';
  2252. if($v['orver_flag'] == 1){
  2253. if($v['is_over'] == 0){
  2254. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='font-weight:900;'>即将超时 </l></a>".'<br>';
  2255. // $info_list[$key]['time'] .= '<i style="padding:10px;color:#90f;font-weight:bold;"> 即将超时</i>'.'<br>';
  2256. }else{
  2257. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>".'<br>';
  2258. }
  2259. }elseif($v['orver_flag'] == 2){
  2260. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#f33'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l font-weight:900'>超时! </l></a>".'<br>';
  2261. }elseif($v['orver_flag'] == 3){
  2262. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#06f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l font-weight:900'>【该单已取消】 </l></a>".'<br>';
  2263. }else{
  2264. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>".'<br>';
  2265. }
  2266. }
  2267. $info_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  2268. unset($info_list[$key]['ctime12']);
  2269. }
  2270. $total = $this->systemtransfer->find_count($where);
  2271. $pagenum = ceil($total/$perpage);
  2272. $over = $total-($start+$perpage);
  2273. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  2274. echo json_encode($rows);exit;
  2275. }
  2276. if(isset($_SESSION['api']))
  2277. {
  2278. $user = $this->user->get_api($_SESSION['api']);
  2279. if(!in_array($user['id'],[10,44,50])){
  2280. exit('No direct script access allowed');
  2281. }
  2282. }
  2283. else
  2284. {
  2285. header('Location: /');exit;
  2286. }
  2287. $kx = '';$zjtab = '';
  2288. $transfer = $this->transfer->find_all('id not in (8,9,11,12,15,16)');
  2289. $this->data['transfer'] = $transfer;
  2290. $transfer_ids = array_column($transfer, 'id');
  2291. $this->data['transfer_ids'] =implode(",",$transfer_ids) ;
  2292. $this->_Template('transfer_scz',$this->data);
  2293. }
  2294. public function _sczexcel(){
  2295. $timetk = $this->input->get('timetk',true);
  2296. $timetj = $this->input->get('timetj',true);
  2297. $timetk = strtotime($timetk);
  2298. $timetj = strtotime($timetj);
  2299. // $transfer_list = $this->transfer->find_all('id not in (8,9,11,12,15,16)');
  2300. // $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  2301. // $transfer_ids = array_keys($t);
  2302. $where = "time > '$timetk' and time < '$timetj'";
  2303. $where .= " and rk not like '%11|' ";
  2304. if(!empty($transfer)){
  2305. $where .= " and rk like '%|".$transfer."|%' ";
  2306. }
  2307. $order_str = "id desc";
  2308. //取得信息列表
  2309. $info_list = $this->systemtransfer->find_all($where,'id,number,is_jiaji,pm,shipremarks,printtime,time,ctime12',$order_str);
  2310. $transfer = $this->transfer->find_all();
  2311. $t = array();
  2312. foreach ($transfer as $v)
  2313. {
  2314. $t[$v['id']] = $v['title'];
  2315. $ot[$v['id']] = ($v['orvertime']>0)?$v['orvertime']*24*3600:0;
  2316. }
  2317. //格式化数据
  2318. foreach ($info_list as $key=>$value)
  2319. {
  2320. if($value['is_jiaji'] == 2){
  2321. $info_list[$key]['is_jiaji'] = "<span style='color:red'>加急</span>";
  2322. }else{
  2323. $info_list[$key]['is_jiaji'] = "常规";
  2324. }
  2325. $dd = $this->systemtransfer->read($value['id']);
  2326. $info_list[$key]['printtime'] = date('Y-m-d H:i:s',$value['printtime']);
  2327. $rk = explode('|',trim($dd['rk'],'|'));
  2328. $rktime = explode('|',trim($dd['rktime'],'|'));
  2329. $ck = explode('|',trim($dd['ck'],'|'));
  2330. $cktime = explode('|',trim($dd['cktime'],'|'));
  2331. $info_list[$key]['time'] = '';
  2332. $data = $this->systemtransfer_cr->find_all("fid = '".$value['id']."'");
  2333. //$info_list[$key]['time'] = "订单出库 :".date('Y-m-d H:i',$value['printtime']).'<br>';
  2334. $info_list[$key]['time'] = "布标打印 :".date('Y-m-d H:i',$value['ctime12']).'<br>';
  2335. foreach ($data as $k=>$v)
  2336. {
  2337. // $type = ($v['type']==1)?'入库':'出库';
  2338. // $info_list[$key]['time'] .= $t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']).'<br>';
  2339. $type = ($v['type']==1)?'入库':'出库';
  2340. if($v['orver_flag'] == 1){
  2341. if($v['is_over'] == 0){
  2342. $info_list[$key]['time'] .= "<span style='color:#90f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='font-weight:900;'>即将超时 </l></span>".'<br>';
  2343. // $info_list[$key]['time'] .= '<i style="padding:10px;color:#90f;font-weight:bold;"> 即将超时</i>'.'<br>';
  2344. }else{
  2345. $info_list[$key]['time'] .= "<span style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</span>".'<br>';
  2346. }
  2347. }elseif($v['orver_flag'] == 2){
  2348. $info_list[$key]['time'] .= "<span style='color:#f33'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l font-weight:900'>超时! </l></span>".'<br>';
  2349. }elseif($v['orver_flag'] == 3){
  2350. $info_list[$key]['time'] .= "<span style='color:#06f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l font-weight:900'>【该单已取消】 </l></span>".'<br>';
  2351. }else{
  2352. $info_list[$key]['time'] .= "<span style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</span>".'<br>';
  2353. }
  2354. }
  2355. $info_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  2356. unset($info_list[$key]['ctime12']);
  2357. }
  2358. $filename = date("Y-m-d")."生产中订单.xls";
  2359. $str = "<html xmlns:x=\"urn:schemas-microsoft-com:office:excel\">
  2360. <head>
  2361. <!--[if gte mso 9]><xml>
  2362. <x:ExcelWorkbook>
  2363. <x:ExcelWorksheets>
  2364. <x:ExcelWorksheet>
  2365. <x:Name>EXCEL</x:Name>
  2366. <x:WorksheetOptions>
  2367. <x:Print>
  2368. <x:ValidPrinterInfo />
  2369. </x:Print>
  2370. </x:WorksheetOptions>
  2371. </x:ExcelWorksheet>
  2372. </x:ExcelWorksheets>
  2373. </x:ExcelWorkbook>
  2374. </xml>
  2375. <![endif]-->
  2376. </head><body>";
  2377. $str .= "<table border=1 style='font-family: Microsoft Yahei;font-size: 13px;'>";
  2378. $str .= "<tr><td>订单编号</td><td>加急</td><td>品名</td><td>备注</td><td>打印时间</td><td>操作</td></tr>";
  2379. foreach ($info_list as $key=>$value)
  2380. {
  2381. $str .= "<tr>";
  2382. $str .= "<td>". $value['number']. "</td>";
  2383. $str .= "<td>". $value['is_jiaji']. "</td>";
  2384. $str .= "<td>". $value['pm']. "</td>";
  2385. $str .= "<td>". $value['shipremarks']. "</td>";
  2386. $str .= "<td>". $value['printtime']. "</td>";
  2387. $str .= "<td>". $value['time']. "</td>";
  2388. $str .= "</tr>";
  2389. }
  2390. $str .= "</table></body></html>";
  2391. header( "Content-Type: application/vnd.ms-excel; name='excel'" );
  2392. header( "Content-type: application/octet-stream" );
  2393. header( "Content-Disposition: attachment; filename=".$filename );
  2394. header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
  2395. header( "Pragma: no-cache" );
  2396. header( "Expires: 0" );
  2397. exit($str);
  2398. }
  2399. public function _wjsrk(){
  2400. $post = $this->input->post(NULL, TRUE);
  2401. if(isset($post['page']))
  2402. {
  2403. $api = $this->input->post('api',true);
  2404. $page = $this->input->post('page',true);
  2405. $perpage = $this->input->post('perpage',true);
  2406. $transfer = $this->input->post('transfer',true);
  2407. $transfer_ids = $this->input->post('transfer_ids',true);
  2408. $orver_flag = $this->input->post('orver_flag',true);
  2409. $timetk = $this->input->post('timetk',true);
  2410. $timetj = $this->input->post('timetj',true);
  2411. $timetk = strtotime($timetk);
  2412. $timetj = strtotime($timetj);
  2413. $transfer_list = $this->transfer->find_all();
  2414. $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  2415. $where = 'extra_status in (1,2) ';
  2416. //数据排序
  2417. $order_str = "id desc";
  2418. if(empty($page))
  2419. {
  2420. $start = 0;
  2421. $perpage = 1;
  2422. }
  2423. else
  2424. {
  2425. $start = ($page - 1)*$perpage;
  2426. }
  2427. if($transfer){
  2428. $where .= " and lx = '$transfer'";
  2429. }else{
  2430. $where .= " and lx in (".$transfer_ids.") ";
  2431. }
  2432. $where .= " and time > '$timetk' and time < '$timetj'";
  2433. $list = $this->systemtransfer_cr->find_all($where,'*',$order_str,$start,$perpage);
  2434. $final_list = [];
  2435. foreach ($list as $key => $value) {
  2436. $info = $this->systemtransfer->read($value['fid']);
  2437. $final_list[$key]['id'] = $value['id'];
  2438. $final_list[$key]['number'] = isset($info['number'])?$info['number']:'';
  2439. if($info['is_jiaji'] == 2){
  2440. $final_list[$key]['is_jiaji'] = "<a href='javascript:void(0)' style='color:red'>加急</a>";
  2441. }else{
  2442. $final_list[$key]['is_jiaji'] = "常规";
  2443. }
  2444. $final_list[$key]['pm'] = $info['pm'];
  2445. $final_list[$key]['shipremarks'] = $info['shipremarks'];
  2446. $final_list[$key]['printtime'] = date('Y-m-d H:i:s',$info['printtime']);
  2447. $data = $this->systemtransfer_cr->find_all("fid = '".$info['id']."'");
  2448. $info_list[$key]['time'] = "布标打印 :".date('Y-m-d H:i',$info['ctime12']).'<br>';
  2449. foreach ($data as $k=>$v)
  2450. {
  2451. $type = ($v['type']==1)?'入库':'出库';
  2452. if($v['orver_flag'] == 1){
  2453. if($v['is_over'] == 0){
  2454. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900;'> 即将超时 </l></a>";
  2455. // $info_list[$key]['time'] .= '<i style="padding:10px;color:#90f;font-weight:bold;"> 即将超时</i>'.'<br>';
  2456. }else{
  2457. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>";
  2458. }
  2459. }elseif($v['orver_flag'] == 2){
  2460. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#f33'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900'> 超 时 ! </l></a>";
  2461. }else{
  2462. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>";
  2463. }
  2464. if($v['extra_status'] == 1){
  2465. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>【下道工序未及时入库】</a><br>";
  2466. }elseif($v['extra_status'] == 2 || $v['extra_status'] == 3){
  2467. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#A52A2A'>【工序间流转超过3天】</a><br>";
  2468. }else{
  2469. $info_list[$key]['time'] .= "<br>";
  2470. }
  2471. }
  2472. $final_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  2473. }
  2474. $total = $this->systemtransfer_cr->find_count($where);
  2475. $pagenum = ceil($total/$perpage);
  2476. $over = $total-($start+$perpage);
  2477. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($final_list));
  2478. echo json_encode($rows);exit;
  2479. }
  2480. if(isset($_SESSION['api']))
  2481. {
  2482. $user = $this->user->get_api($_SESSION['api']);
  2483. $usp = $user;
  2484. $pid = "";$tid="";$sid="";$wid="";
  2485. $purchase = explode('|',trim($user['purchase'],'|'));
  2486. $transfer = explode('|',trim($user['transfer'],'|'));
  2487. $warehouse = explode('|',trim($user['warehouse'],'|'));
  2488. foreach ($purchase as $value)
  2489. {
  2490. $pid .= " id = ".$value." or";
  2491. }
  2492. foreach ($transfer as $value)
  2493. {
  2494. $tid .= " id = ".$value." or";
  2495. }
  2496. foreach ($warehouse as $value)
  2497. {
  2498. $wid .= " id = ".$value." or";
  2499. }
  2500. }
  2501. else
  2502. {
  2503. header('Location: /');exit;
  2504. }
  2505. $kx = '';$zjtab = '';
  2506. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  2507. $this->data['transfer'] = $transfer;
  2508. $transfer_ids = array_column($transfer, 'id');
  2509. $this->data['transfer_ids'] =implode(",",$transfer_ids) ;
  2510. $this->data['vip'] = $user['vip'];
  2511. $this->data['orver_flag'] = $this->input->get('orver_flag', TRUE);
  2512. $this->_Template('transfer_wjsrk',$this->data);
  2513. }
  2514. public function _wjsrkexcel(){
  2515. $api = $this->input->get('api',true);
  2516. $transfer = $this->input->get('transfer',true);
  2517. $timetk = $this->input->get('timetk',true);
  2518. $timetj = $this->input->get('timetj',true);
  2519. $timetk = strtotime($timetk);
  2520. $timetj = strtotime($timetj);
  2521. $transfer_list = $this->transfer->find_all();
  2522. $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  2523. $where = 'extra_status in (1,2) ';
  2524. //数据排序
  2525. $order_str = "id desc";
  2526. if($transfer){
  2527. $where .= " and lx = '$transfer'";
  2528. }else{
  2529. $transfer = $this->transfer->find_all('id not in (8,9,11,12,15,16)');
  2530. $transfer_ids = array_column($transfer, 'id');
  2531. $transfer_ids = implode(",",$transfer_ids);
  2532. $where .= " and lx in (".$transfer_ids.") ";
  2533. }
  2534. $where .= " and time > '$timetk' and time < '$timetj'";
  2535. $list = $this->systemtransfer_cr->find_all($where,'*',$order_str);
  2536. $final_list = [];
  2537. foreach ($list as $key => $value) {
  2538. $info = $this->systemtransfer->read($value['fid']);
  2539. $final_list[$key]['number'] = isset($info['number'])?$info['number']:'';
  2540. $final_list[$key]['pm'] = $info['pm'];
  2541. $final_list[$key]['lx_name'] = isset($transfer_list[$value['lx']])?$transfer_list[$value['lx']]:'';
  2542. $final_list[$key]['time'] = date('Y-m-d H:i:s',$info['time']);
  2543. }
  2544. $filename = date("Y-m-d")."超期未流转单导出.xls";
  2545. $str = "<html xmlns:x=\"urn:schemas-microsoft-com:office:excel\">
  2546. <head>
  2547. <!--[if gte mso 9]><xml>
  2548. <x:ExcelWorkbook>
  2549. <x:ExcelWorksheets>
  2550. <x:ExcelWorksheet>
  2551. <x:Name>EXCEL</x:Name>
  2552. <x:WorksheetOptions>
  2553. <x:Print>
  2554. <x:ValidPrinterInfo />
  2555. </x:Print>
  2556. </x:WorksheetOptions>
  2557. </x:ExcelWorksheet>
  2558. </x:ExcelWorksheets>
  2559. </x:ExcelWorkbook>
  2560. </xml>
  2561. <![endif]-->
  2562. </head><body>";
  2563. $str .= "<table border=1 style='font-family: Microsoft Yahei;font-size: 13px;'>";
  2564. $str .= "<tr><td>订单编号</td><td>品名</td><td>车间</td><td>扫出日期</td></tr>";
  2565. foreach ($final_list as $key=>$value)
  2566. {
  2567. if(empty($value['number'])){
  2568. continue;
  2569. }
  2570. $str .= "<tr>";
  2571. $str .= "<td>". $value['number']. "</td>";
  2572. $str .= "<td>". $value['pm']. "</td>";
  2573. $str .= "<td>". $value['lx_name']. "</td>";
  2574. $str .= "<td>". $value['time']. "</td>";
  2575. $str .= "</tr>";
  2576. }
  2577. $str .= "</table></body></html>";
  2578. header( "Content-Type: application/vnd.ms-excel; name='excel'" );
  2579. header( "Content-type: application/octet-stream" );
  2580. header( "Content-Disposition: attachment; filename=".$filename );
  2581. header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
  2582. header( "Pragma: no-cache" );
  2583. header( "Expires: 0" );
  2584. exit($str);
  2585. }
  2586. public function _cqrk(){
  2587. $post = $this->input->post(NULL, TRUE);
  2588. if(isset($post['page']))
  2589. {
  2590. $api = $this->input->post('api',true);
  2591. $page = $this->input->post('page',true);
  2592. $perpage = $this->input->post('perpage',true);
  2593. $transfer = $this->input->post('transfer',true);
  2594. $transfer_ids = $this->input->post('transfer_ids',true);
  2595. $orver_flag = $this->input->post('orver_flag',true);
  2596. $timetk = $this->input->post('timetk',true);
  2597. $timetj = $this->input->post('timetj',true);
  2598. $timetk = strtotime($timetk);
  2599. $timetj = strtotime($timetj);
  2600. $transfer_list = $this->transfer->find_all();
  2601. $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  2602. $where = 'extra_status in (2,3) ';
  2603. //数据排序
  2604. $order_str = "id desc";
  2605. if(empty($page))
  2606. {
  2607. $start = 0;
  2608. $perpage = 1;
  2609. }
  2610. else
  2611. {
  2612. $start = ($page - 1)*$perpage;
  2613. }
  2614. if($transfer){
  2615. $where .= " and lx = '$transfer'";
  2616. }else{
  2617. $where .= " and lx in (".$transfer_ids.") ";
  2618. }
  2619. $where .= " and time > '$timetk' and time < '$timetj'";
  2620. $list = $this->systemtransfer_cr->find_all($where,'*',$order_str,$start,$perpage);
  2621. $final_list = [];
  2622. foreach ($list as $key => $value) {
  2623. $info = $this->systemtransfer->read($value['fid']);
  2624. $final_list[$key]['id'] = $value['id'];
  2625. $final_list[$key]['number'] = isset($info['number'])?$info['number']:'';
  2626. if($info['is_jiaji'] == 2){
  2627. $final_list[$key]['is_jiaji'] = "<a href='javascript:void(0)' style='color:red'>加急</a>";
  2628. }else{
  2629. $final_list[$key]['is_jiaji'] = "常规";
  2630. }
  2631. $final_list[$key]['pm'] = $info['pm'];
  2632. $final_list[$key]['shipremarks'] = $info['shipremarks'];
  2633. $final_list[$key]['printtime'] = date('Y-m-d H:i:s',$info['printtime']);
  2634. $data = $this->systemtransfer_cr->find_all("fid = '".$info['id']."'");
  2635. $info_list[$key]['time'] = "布标打印 :".date('Y-m-d H:i',$info['ctime12']).'<br>';
  2636. foreach ($data as $k=>$v)
  2637. {
  2638. $type = ($v['type']==1)?'入库':'出库';
  2639. if($v['orver_flag'] == 1){
  2640. if($v['is_over'] == 0){
  2641. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900;'> 即将超时 </l></a>";
  2642. // $info_list[$key]['time'] .= '<i style="padding:10px;color:#90f;font-weight:bold;"> 即将超时</i>'.'<br>';
  2643. }else{
  2644. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>";
  2645. }
  2646. }elseif($v['orver_flag'] == 2){
  2647. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#f33'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ." <l style='padding-left:10px;font-weight:900'> 超 时 ! </l></a>";
  2648. }else{
  2649. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#000'>".$t[$v['lx']].$type.' :'.date('Y-m-d H:i',$v['time']) ."</a>";
  2650. }
  2651. if($v['extra_status'] == 1){
  2652. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#90f'>【下道工序未及时入库】</a><br>";
  2653. }elseif($v['extra_status'] == 2 || $v['extra_status'] == 3){
  2654. $info_list[$key]['time'] .= "<a href='javascript:void(0);' style='color:#A52A2A'>【工序间流转超过3天】</a><br>";
  2655. }else{
  2656. $info_list[$key]['time'] .= "<br>";
  2657. }
  2658. }
  2659. $final_list[$key]['time'] = trim($info_list[$key]['time'],'<br>');
  2660. }
  2661. $total = $this->systemtransfer_cr->find_count($where);
  2662. $pagenum = ceil($total/$perpage);
  2663. $over = $total-($start+$perpage);
  2664. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($final_list));
  2665. echo json_encode($rows);exit;
  2666. }
  2667. if(isset($_SESSION['api']))
  2668. {
  2669. $user = $this->user->get_api($_SESSION['api']);
  2670. $usp = $user;
  2671. $pid = "";$tid="";$sid="";$wid="";
  2672. $purchase = explode('|',trim($user['purchase'],'|'));
  2673. $transfer = explode('|',trim($user['transfer'],'|'));
  2674. $warehouse = explode('|',trim($user['warehouse'],'|'));
  2675. foreach ($purchase as $value)
  2676. {
  2677. $pid .= " id = ".$value." or";
  2678. }
  2679. foreach ($transfer as $value)
  2680. {
  2681. $tid .= " id = ".$value." or";
  2682. }
  2683. foreach ($warehouse as $value)
  2684. {
  2685. $wid .= " id = ".$value." or";
  2686. }
  2687. }
  2688. else
  2689. {
  2690. header('Location: /');exit;
  2691. }
  2692. $kx = '';$zjtab = '';
  2693. $transfer = $this->transfer->find_all('1=1 and '.rtrim($tid,'or'));
  2694. $this->data['transfer'] = $transfer;
  2695. $transfer_ids = array_column($transfer, 'id');
  2696. $this->data['transfer_ids'] =implode(",",$transfer_ids) ;
  2697. $this->data['vip'] = $user['vip'];
  2698. $this->data['orver_flag'] = $this->input->get('orver_flag', TRUE);
  2699. $this->_Template('transfer_cqrk',$this->data);
  2700. }
  2701. public function _cqrkexcel(){
  2702. $api = $this->input->get('api',true);
  2703. $transfer = $this->input->get('transfer',true);
  2704. $timetk = $this->input->get('timetk',true);
  2705. $timetj = $this->input->get('timetj',true);
  2706. $timetk = strtotime($timetk);
  2707. $timetj = strtotime($timetj);
  2708. $transfer_list = $this->transfer->find_all();
  2709. $t = $transfer_list = array_column($transfer_list, 'title', 'id');
  2710. $where = 'extra_status in (2,3) ';
  2711. //数据排序
  2712. $order_str = "id desc";
  2713. if($transfer){
  2714. $where .= " and lx = '$transfer'";
  2715. }else{
  2716. $transfer = $this->transfer->find_all('id not in (8,9,11,12,15,16)');
  2717. $transfer_ids = array_column($transfer, 'id');
  2718. $transfer_ids = implode(",",$transfer_ids);
  2719. $where .= " and lx in (".$transfer_ids.") ";
  2720. }
  2721. $where .= " and time > '$timetk' and time < '$timetj'";
  2722. $list = $this->systemtransfer_cr->find_all($where,'*',$order_str);
  2723. $final_list = [];
  2724. foreach ($list as $key => $value) {
  2725. $info = $this->systemtransfer->read($value['fid']);
  2726. $final_list[$key]['number'] = isset($info['number'])?$info['number']:'';
  2727. $final_list[$key]['pm'] = $info['pm'];
  2728. $final_list[$key]['lx_name'] = isset($transfer_list[$value['lx']])?$transfer_list[$value['lx']]:'';
  2729. $final_list[$key]['time'] = date('Y-m-d H:i:s',$info['time']);
  2730. }
  2731. $filename = date("Y-m-d")."超期3天未流转单导出.xls";
  2732. $str = "<html xmlns:x=\"urn:schemas-microsoft-com:office:excel\">
  2733. <head>
  2734. <!--[if gte mso 9]><xml>
  2735. <x:ExcelWorkbook>
  2736. <x:ExcelWorksheets>
  2737. <x:ExcelWorksheet>
  2738. <x:Name>EXCEL</x:Name>
  2739. <x:WorksheetOptions>
  2740. <x:Print>
  2741. <x:ValidPrinterInfo />
  2742. </x:Print>
  2743. </x:WorksheetOptions>
  2744. </x:ExcelWorksheet>
  2745. </x:ExcelWorksheets>
  2746. </x:ExcelWorkbook>
  2747. </xml>
  2748. <![endif]-->
  2749. </head><body>";
  2750. $str .= "<table border=1 style='font-family: Microsoft Yahei;font-size: 13px;'>";
  2751. $str .= "<tr><td>订单编号</td><td>品名</td><td>车间</td><td>扫出日期</td></tr>";
  2752. foreach ($final_list as $key=>$value)
  2753. {
  2754. if(empty($value['number'])){
  2755. continue;
  2756. }
  2757. $str .= "<tr>";
  2758. $str .= "<td>". $value['number']. "</td>";
  2759. $str .= "<td>". $value['pm']. "</td>";
  2760. $str .= "<td>". $value['lx_name']. "</td>";
  2761. $str .= "<td>". $value['time']. "</td>";
  2762. $str .= "</tr>";
  2763. }
  2764. $str .= "</table></body></html>";
  2765. header( "Content-Type: application/vnd.ms-excel; name='excel'" );
  2766. header( "Content-type: application/octet-stream" );
  2767. header( "Content-Disposition: attachment; filename=".$filename );
  2768. header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
  2769. header( "Pragma: no-cache" );
  2770. header( "Expires: 0" );
  2771. exit($str);
  2772. }
  2773. }