| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524 | 
							- <?php defined('BASEPATH') OR exit('No direct script access allowed');
 
- class Fullordersmt extends Start_Controller {
 
- 	public function __construct(){
 
- 		parent::__construct();
 
- 		$this->load->library('session');
 
- 		$this->load->_model('Model_fullordersmt','fullordersmt');
 
- 		$this->load->_model('Model_fullorderexcel','fullorderexcel');
 
- 		$this->load->_model('Model_shop','shop');
 
- 		$this->load->_model('Model_typeclass','typeclass');
 
- 		$this->load->_model('Model_express','express');
 
- 		$this->load->_model('Model_country','country');
 
- 		$this->load->_model('Model_productdescribe','productdescribe');
 
- 		$this->load->_model('Model_customs','customs');
 
- 		$this->load->_model('Model_detailed','detailed');
 
- 		$this->load->_model('Model_productdescription','productdescription');
 
- 		$this->load->_model('Model_logistics','logistics');
 
- 		$this->load->_model('Model_hl','hl');
 
- 		$this->load->_model('Model_excel','excel');
 
- 		$this->load->_model('Model_warehouse','warehouse');
 
- 		$this->load->_model('Model_customersmt','customersmt');
 
- 		$this->load->_model('Model_user','user');
 
- 		$this->load->_model('Model_dhl','dhl');
 
- 		$this->load->_model('Model_ali','ali');
 
- 		$this->load->_model('Model_notice','notice');
 
- 		$this->load->_model('Model_api','api');
 
- 		$this->load->_model('Model_apismt','apismt');
 
- 		$this->load->_model('Model_usps','usps');
 
- 		$this->load->_model('Model_fullorder_smt','fullorder_smt');
 
- 		$this->load->_model('Model_fullordersmthb','fullordersmthb');
 
- 		$this->load->_model('Model_whlabel','whlabel');
 
- 		$this->load->_model('Model_specialstock','specialstock');
 
- 		$this->load->_model('Model_reset','fullreset');
 
- 		$this->load->_model('Model_systemwigsout','systemwigsout');
 
- 		$this->load->_model('Model_ck','ck');
 
- 		$this->load->_model('Model_weight','weight');
 
- 		$this->load->_model('Model_pay','pay');
 
- 		$this->load->_model('Model_whlabel_fc','whlabel_fc');
 
- 		$this->load->_model('Model_transfer','transfer');
 
- 		$this->load->_model('Model_systemtransfer','systemtransfer');
 
- 		$this->load->_model('Model_power','power');
 
- 		$this->load->_model('Model_setting','setting');
 
- 		$this->load->_model('Model_returngoods','returngoods');
 
- 		$this->load->_model("Model_logic_order","logic_order");
 
- 		$this->load->_model("Model_fullordererrors","fullordererrors");
 
- 	}
 
- 	//定义方法的调用规则 获取URI第二段值
 
-     public function _remap($arg,$arg_array)
 
-     {
 
- 		if($arg == 'add')//添加
 
-         {
 
-              $this->_add();
 
-         }
 
- 		else if($arg == 'edit')//修改
 
-         {
 
-              $this->_edit($arg_array);
 
-         }
 
- 		else if($arg == 'readonly')//修改
 
-         {
 
-              $this->_readonly($arg_array);
 
-         }
 
- 		else if($arg == 'readlist')
 
-         {
 
-              $this->_readlist();
 
-         }
 
- 		else if($arg == 'del')//修改
 
-         {
 
-              $this->_del();
 
-         }
 
- 		else if($arg == 'price')//价格明细
 
-         {
 
-              $this->_price();
 
-         }
 
- 		else if($arg == 'customs')
 
-         {
 
-              $this->_customs();
 
-         }
 
- 		else if($arg == 'express')
 
-         {
 
-              $this->_express();
 
-         }
 
- 		else if($arg == 'hl')
 
-         {
 
-              $this->_hl();
 
-         }
 
- 		else if($arg == 'repeat')
 
-         {
 
-              $this->_repeat();
 
-         }
 
- 		else if($arg == 'operation')
 
-         {
 
-              $this->_operation();
 
-         }
 
- 		else if($arg == 'merge')
 
-         {
 
-              $this->_merge();
 
-         }
 
- 		else if($arg == 'split')
 
-         {
 
-              $this->_split();
 
-         }
 
- 		else if($arg == 'fmexcel')
 
-         {
 
-              $this->_fmexcel();
 
-         }
 
- 		else if($arg == 'fdexcel')
 
-         {
 
-              $this->_fdexcel();
 
-         }
 
- 		else if($arg == 'fdfexcel')
 
-         {
 
-              $this->_fdfexcel();
 
-         }
 
- 		else if($arg == 'evaluate')
 
-         {
 
-              $this->_evaluate();
 
-         }
 
- 		else if($arg == 'state')
 
-         {
 
-              $this->_state();
 
-         }
 
- 		else if($arg == 'review')
 
-         {
 
-              $this->_review();
 
-         }
 
- 		else if($arg == 'black')
 
-         {
 
-              $this->_black();
 
-         }
 
- 		else if($arg == 'ryf')
 
-         {
 
-              $this->_ryf();
 
-         }
 
- 		else if($arg == 'expresstype')
 
-         {
 
-              $this->_expresstype();
 
-         }
 
- 		else if($arg == 'fsstate')
 
-         {
 
-              $this->_fsstate();
 
-         }
 
- 		else if($arg == 'power')
 
-         {
 
-              $this->_power();
 
-         }
 
- 		else if($arg == 'error')
 
-         {
 
-              $this->_error();
 
-         }
 
- 		else if($arg == 'yzaddress')
 
-         {
 
-              $this->_yzaddress();
 
-         }
 
- 		else if($arg == 'return')
 
-         {
 
-              $this->_return();
 
-         }
 
- 		else if($arg == 'bcbz')
 
-         {
 
-              $this->_bcbz();
 
-         }
 
- 		else if($arg == 'abc')
 
-         {
 
-              $this->_aaa();
 
-         }
 
- 		else if($arg == 'b')
 
-         {
 
-              $this->_bbb($arg_array);
 
-         }
 
- 		else if($arg == 'plcx')
 
-         {
 
-              $this->_plcx($arg_array);
 
-         }
 
- 		else if($arg == 'cf')
 
-         {
 
-              $this->_cf();
 
-         }
 
- 		else if($arg == 'epod')
 
-         {
 
-              $this->_epod();
 
-         }
 
- 		else if($arg == 'ddcf')
 
-         {
 
-              $this->_ddcf();
 
-         }
 
- 		else
 
- 		{
 
- 			 $this->_index();
 
- 		}
 
-     }
 
- 	//管理
 
- 	public function _index()
 
- 	{
 
- 		$dt = 0;
 
- 		if(isset($_SESSION['api']))
 
- 		{
 
- 			$user = $this->user->get_api($_SESSION['api']);
 
- 			$usp = $user;
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$warehouse = $this->input->post('warehouse',true);
 
- 			$timetk = $this->input->post('timetkk',true);
 
- 			$timetj = $this->input->post('timetjj',true);
 
- 			$shop = $this->input->post('shop',true);
 
- 			$source = $this->input->post('source',true);
 
- 			$state = $this->input->post('state',true);
 
- 			$review = $this->input->post('review',true);
 
- 			$type = $this->input->post('type',true);
 
- 			$express = $this->input->post('express',true);
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$user = $this->input->post('user',true);
 
- 			$client = $this->input->post('name',true);
 
- 			$fullname = $this->input->post('fullname',true);
 
- 			$waybill = $this->input->post('waybill',true);
 
- 			$waybillid = $this->input->post('waybillid',true);
 
- 			$number = $this->input->post('number',true);
 
- 			$email = $this->input->post('email',true);
 
- 			$dlz = $this->input->post('dlz',true);
 
- 			$print = $this->input->post('print',true);
 
- 			$library = $this->input->post('library',true);
 
- 			$country = $this->input->post('country',true);
 
- 			$paypal = $this->input->post('paypal',true);
 
- 			$sku = $this->input->post('sku',true);
 
- 			$xztime = $this->input->post('xztime',true);
 
- 			$timetk = strtotime($timetk)-1;
 
- 			$timetj = strtotime($timetj);
 
- 			$px = $this->input->post('px',true);
 
- 			$plorder = $this->input->post('pl',true);
 
- 			$where = "1=1 and (".rtrim($fgshop,'or').")";
 
- 			if($warehouse)
 
-             {
 
-                 $where  .= " and type = '$warehouse'";
 
-             }
 
- 			if($timetk && $timetj)
 
-             {
 
-                 $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
 
-             }
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
- 			if($source)
 
-             {
 
-                 $where  .= " and source = '$source'";
 
-             }
 
- 			if($state)
 
-             {
 
- 				$where  .= " and state = '$state'";
 
-             }
 
- 			if($review)
 
-             {
 
-                 $where  .= " and review = '$review'";
 
-             }
 
- 			if($type)
 
-             {
 
-                 $where  .= " and type = '$type'";
 
-             }
 
- 			if($express)
 
-             {
 
-                 $where  .= " and express = '$express'";
 
-             }
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($user)
 
-             {
 
-                 $where  .= " and user = '$user'";
 
-             }
 
- 			if($client)
 
-             {
 
-                 $where  .= " and client like '%$client%'";
 
-             }
 
- 			if($waybill)
 
-             {
 
-                 $where  .= " and waybill = '$waybill'";
 
-             }
 
- 			if($waybillid){
 
- 				$where  .= " and waybillid like '%".$waybillid."%'";
 
- 			}
 
- 			if($number)
 
-             {
 
-                 $where  .= " and number like '$number%'";
 
-             }
 
- 			if($email)
 
-             {
 
-                 $where  .= " and email = '$email'";
 
-             }
 
- 			if($library)
 
-             {
 
-                 $where  .= " and library = '$library'";
 
-             }
 
- 			if($country)
 
-             {
 
-                 $where  .= " and country = '$country'";
 
-             }
 
- 			if($print)
 
-             {
 
-                 $where  .= " and print = '$print'";
 
-             }
 
- 			if($paypal)
 
-             {
 
-                 $where  .= " and paypal = '$paypal'";
 
-             }
 
- 			if($dlz != '')
 
-             {
 
-                 $where  .= " and dlz = '$dlz'";
 
-             }
 
- 			if($sku)
 
-             {
 
-                 $where  .= " and sku like '%$sku%'";
 
-             }
 
- 			if($fullname)
 
-             {
 
-                 $where  .= " and fullname = '$fullname'";
 
-             }
 
-             //数据排序
 
- 			if($px)
 
- 			{
 
-                 $order_str = $px." desc";
 
- 			}
 
- 			else
 
- 			{
 
- 				$order_str = "numberpx desc";
 
- 			}
 
- 			if($plorder)
 
-             {
 
- 				$plorderinfo = '';$plnumber = '';$pln = 0;
 
- 				$plorder = explode(',',trim($plorder,','));
 
- 				foreach ($plorder as $value) 
 
- 		    	{
 
- 					if(is_numeric($value))
 
- 					{
 
- 					    $plorderinfo .= " orderinfo = ".$value." or";
 
- 					}
 
- 					else if($value != '')
 
- 					{
 
- 						$plorderinfo .= " number = '".$value."' or";
 
- 					}
 
- 				}
 
- 				if($pln > 0)
 
- 				{
 
-                     $where  .= "  and (".rtrim($plorderinfo,'or').")  and (".rtrim($plnumber,'or').")";
 
- 				}
 
- 				else
 
- 				{
 
- 					 $where  .= "  and (".rtrim($plorderinfo,'or').")";
 
- 				}
 
-             }
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             //取得信息列表id,shop,type,source,user,orderinfo,number,name,state,buytime,clientremarks,review,print,library,libraryconfirm,express,waybill,orderremarks,black
 
-             $info_list = $this->fullordersmt->find_all($where,'id,shop,type,orderinfo,number,fullname,state,buytime,review,libraryconfirm,express,waybill,orderremarks,library,black,clientremarks,waybillid',$order_str,$start,$perpage);
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$ud = $this->fullordersmt->read($value['id']);
 
- 				$ud['address'] = str_replace("'","’",$ud['address']);
 
- 				$ud['name'] = str_replace("'","’",$ud['name']);
 
- 				//$customer = $ud['source'] != 1?$this->customersmt->get_fullname($ud['fullname']):$this->customersmt->get_shopdata($value['shop'],$ud['name'],$ud['address']);//目前只用地址和收货人判断是否老客户
 
- 				$customer = $this->customersmt->get_shopdata($value['shop'],$ud['name'],$ud['address']);
 
- 				//$a = array_column($customer, 'email'); //三维找其中健的数组
 
- 			    //$a = array_flip($a); //键和值调换
 
- 				$currency = $this->country->read($ud['country']);
 
- 				$name = ($ud['source'] == 1)?$ud['name']:$value['fullname'];
 
- 				$lkh = "<p>".$name."</p><p style='color:#8f54fb'>".$currency['ename']."</p>";
 
- 				if($customer)
 
- 				{
 
- 					if($customer['type'] == 1 && $customer['num'] > 1)
 
- 					{
 
- 						$lkh .= "<p style='color:#FF3333'>老客户(".$customer['num'].")</p>";
 
- 					}
 
- 					else if($customer['type'] == 2)
 
- 					{
 
- 						$hmsp = $this->shop->read($customer['shop']);
 
- 					    $lkh .= "<p style='color:#9900CC'>黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
 
- 					}
 
- 				}
 
- 				
 
- 				$info_list[$key]['fullname'] = $lkh;
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				//$info_list[$key]['user'] = $shop['shopuser'];
 
- 				$warehouse = $this->warehouse->read($value['type']);
 
- 				$warehousetitle = $warehouse['title'];
 
- 				if($value['type'] != 13){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
 
- 				$info_list[$key]['type'] = $warehousetitle;
 
- 				$typeclass = $this->typeclass->read($value['state']);
 
- 				if($ud['source'] != 1)
 
- 				{
 
- 				    $info_list[$key]['state'] = "<a href='https://trade.aliexpress.com/order_detail.htm?orderId=".$value['orderinfo']."' target='_blank'>".$typeclass['title']."</a></br>";
 
- 					if($ud['overtime'] > 0 && $ud['state'] == 207)
 
- 					{
 
- 						//date_default_timezone_set("US/Pacific-New");
 
- 						$second = $ud['overtime']-time()+15*3600;
 
- 						$day = floor($second/(3600*24));
 
-     					$second = $second%(3600*24);//除去整天之后剩余的时间
 
-     					$hour = floor($second/3600);
 
-    					    $second = $second%3600;//除去整小时之后剩余的时间 
 
-     					$minute = floor($second/60);
 
-     					$second = $second%60;//除去整分钟之后剩余的时间 
 
-     					//返回字符串
 
-     					$info_list[$key]['state'] .= "<p style='color:#555'>".$day." 天 ".$hour." 时 ".$minute." 分</p>";
 
- 					}
 
- 				}
 
- 				else
 
- 				{
 
- 					 $info_list[$key]['state'] = $typeclass['title'];
 
- 				}
 
- 				
 
- 				if(!$value['buytime'])
 
- 				{
 
- 					$info_list[$key]['buytime'] = '<p>无</p>';
 
- 				}
 
- 				else
 
- 				{
 
- 				    $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']-$dt).'</p><p>'.date('H:i:s',$value['buytime']-$dt).'</p>';
 
- 				}
 
- 				if($value['review'] == 1)
 
- 				{
 
- 					$info_list[$key]['review'] = "未送审";
 
- 				}
 
- 				else if($value['review'] == 2)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#555'>待审核</font>";
 
- 				}
 
- 				else if($value['review'] == 3)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#f90f4b'>不通过</font>";
 
- 				}
 
- 				else if($value['review'] == 4)
 
- 				{
 
- 					$info_list[$key]['review'] = "取消重审";
 
- 				}
 
- 				else if($value['review'] == 5)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#2f80f9'>审核通过</font>";
 
- 				}
 
- 				else if($value['review'] == 6)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#2f80f9'>自动通过</font>";
 
- 				}
 
- 				if($ud['dlz'] == 1)
 
- 				{
 
- 					$dlz = "<p>发货声明成功</p>";
 
- 				}
 
- 				else if($ud['dlz'] == 3)
 
- 				{
 
- 					$dlz = "<p>不需要发货声明</p>";
 
- 				}
 
- 				else if($ud['dlz'] == 2)
 
- 				{
 
- 					$dlz = "<p style='color:#C3C'>发货声明失败</p>";
 
- 				}
 
- 				else
 
- 				{
 
- 					$dlz = "";
 
- 				}
 
- 				if($value['waybill'] != "")
 
- 				{
 
- 					$info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz;
 
- 					if(!empty($value['waybillid'])){
 
- 						$info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz."<p>".$value['waybillid']."</p>";
 
- 				    }
 
- 				}
 
- 				if($value['express'] != 0)
 
- 				{
 
- 				    $express = $this->express->read($value['express']);
 
- 					$expressservicename = $express['servicename'];
 
- 					if($value['express'] != 1 && $value['express'] != 63)
 
- 					{
 
- 						$expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";
 
- 					}
 
- 					else if($value['express'] == 63)
 
- 					{
 
- 						$expressservicename = "<font style='color:#a910f8'>".$express['servicename']."</font>";
 
- 					}
 
- 				    $info_list[$key]['express'] = $expressservicename;
 
- 				}
 
- 				else
 
- 				{
 
- 					$info_list[$key]['express'] = "无";
 
- 				}
 
- 				$x = "";
 
- 				if($value['libraryconfirm'] == 2 && $value['review'] > 4 && $ud['library'] == 1)
 
- 				{
 
- 				    $x = "<p class='ckn'><b class='fojz' data-type='1'>禁止发货</b></p>";
 
- 				}
 
- 				else if(($value['review'] > 4) && $ud['print'] != 1 && $value['libraryconfirm'] == 1)
 
- 				{
 
- 					$x = "<p class='ckn'><b class='fojzof' data-type='6' data-id='".$value['id']."'>允许发货</b></p>";
 
- 				}
 
- 				if(($value['review'] > 4) && $ud['print'] == 2 && ($ud['merge'] == 0 || $ud['merge'] == $ud['id']))
 
- 				{
 
- 				    $x = "<p class='ckn'><b class='fojzof' data-type='7' data-id='".$value['id']."'>禁止打印</b></p>";
 
- 				}
 
- 				else if($value['review'] >4 && $ud['print'] == 1 && ($ud['merge'] == 0 || $ud['merge'] == $ud['id']))
 
- 				{
 
- 				    $x = "<p class='ckn'><b class='fojzof' data-type='8' data-id='".$value['id']."'>允许打印</b></p>";
 
- 				}
 
- 				else if($value['review'] > 4 && $ud['print'] == 2 && $ud['merge'] != $ud['id'])
 
- 				{
 
- 					$x = "<p><b style='background-color:#999'>禁止打印</b></p>";
 
- 				}
 
- 				else if($value['review'] > 4 && $ud['print'] == 1 && $ud['merge'] != $ud['id'])
 
- 				{
 
- 					$x = "<p><b style='background-color:#999'>允许打印</b></p>";
 
- 				}
 
- 				if($value['waybill'] == "" && $value['review'] > 4)
 
- 				{
 
- 					$x .= "<p><b class='kn' data-type='2'>填写运单号</b></p>";
 
- 				}
 
- 				else if($value['waybill'] != "" && $value['review'] > 4 && $usp['vip'] == 1)
 
- 				{
 
- 					$x .= "<p><b class='kn' data-type='2'>修改运单号</b></p>";
 
- 				}
 
- 				else if($value['waybill'] != "" && $value['review'] > 4 && $value['library'] == 1 && $usp['vip'] != 1)
 
- 				{
 
- 					$x .= "<p><b class='kn' data-type='2'>修改运单号</b></p>";
 
- 				}
 
- 				if(($value['review'] == 1 || $value['review'] == 3) && $ud['express'] > 0 && $ud['dtsbjz'] != 0 && $ud['ts'] != 0 && $ud['zsbjz'] != 0 && $ud['zjs'] != 0 && $ud['ts'] != 0 && ($ud['merge'] == 0 || $ud['merge'] != 0 && $ud['merge'] == $ud['id']))
 
- 				{
 
- 					$x .= "<p><b class='focz' data-type='2' data-id='".$value['id']."'>提交审核</b></p>";
 
- 				}
 
- 				$x .= "<p><b class='window' data-h='/customersmt/edit/".$customer['id']."' data-t='客户信息 - 修改'>客户信息</b></p>";
 
- 				$info_list[$key]['black'] = $x;
 
- 				$tly = "";
 
- 				if($value['clientremarks'] != "")
 
- 				{
 
- 					$tly = "<p style='color:#FF3333'>有客户留言</p>";
 
- 				}
 
- 				if($value['review'] > 4 && $usp['vip'] != 1 && ($ud['merge'] == 0 || $ud['merge'] == $ud['id']))
 
- 				{
 
- 					$info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullordersmt/readonly/".$value['id']."' data-t='订单号:".$value['orderinfo']."'><p>".$value['orderinfo']."</p>".$tly."</h9>";
 
- 				}
 
- 				else if($ud['merge'] == 0 || $ud['merge'] == $ud['id'])
 
- 				{
 
- 					$info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullordersmt/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."'><p>".$value['orderinfo']."</p>".$tly."</h9>";
 
- 				}
 
- 				else if($ud['merge'] != 0 && $ud['merge'] != $ud['id'])
 
- 				{
 
- 					$info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullordersmt/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."' style='color:#000'><p>".$value['orderinfo']."</p>".$tly."</h9>"."<p>合并订单</p>";
 
- 				}
 
- 				if($value['library'] == 1 && $ud['printtype'] == 3)
 
- 				{
 
- 					$info_list[$key]['library'] = "不需要";
 
- 				}
 
- 				else if($value['library'] == 1 && $ud['printtype'] != 3)
 
- 				{
 
- 					$info_list[$key]['library'] = "未出库";
 
- 				}
 
- 				else if($value['library'] == 2)
 
- 				{
 
- 					$info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['librarytime']).'</p><p>'.date('H:i:s',$ud['librarytime']).'出库</p>';
 
- 				}
 
- 				else if($value['library'] == 3)
 
- 				{
 
- 					$info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['retreattime']).'</p><p>'.date('H:i:s',$ud['retreattime']).'退库</p>';
 
- 				}
 
- 				unset($info_list[$key]['waybillid']);
 
-             }
 
- 		    $total = $this->fullordersmt->find_count($where);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
 
- 		$this->data['wlshop'] = $wlshop;
 
- 		$this->data['express'] = $this->express->find_all();
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		$powerid = $this->power->read($user['power']);
 
- 		$powertext = explode('|',trim($powerid['excelid'],'|'));
 
- 		$pid = '';
 
- 		foreach ($powertext as $v) 
 
- 		{
 
- 			$pid .= " id = ".$v." or";
 
- 		}
 
- 		$fullorderexcel = $this->fullorderexcel->find_all("type = '100004' and (".rtrim($pid,'or').")",'*','idorder desc');//导出模板
 
- 		$this->data['fullorderexcel'] = $fullorderexcel;
 
- 		$error = $this->fullordersmt->find_count("failed !='' and mergeid = 0 and (".rtrim($fgshop,'or').") and dtime > '".(time()-90*24*3600)."'");
 
- 		$this->data['error'] = $error;
 
- 		if(isset($_SESSION['api']))
 
- 		{
 
- 			$user = $this->user->get_api($_SESSION['api']);
 
- 			if($user['vip'] == 1)
 
- 			{
 
- 				$vip = 1;
 
- 			}
 
- 			else
 
- 			{
 
- 				$vip = 0;
 
- 			}
 
- 		}
 
- 		else
 
- 		{
 
- 			$vip = 0;
 
- 		}
 
- 		$this->data['power'] = $vip;
 
- 		$country = $this->country->find_all('1=1','id,name','name asc');//所有国家信息
 
- 		$this->data['country'] = $country;
 
- 		$this->data['user'] = $user;
 
- 		$cs_num = $this->fullordererrors->find_count( "plat = 'fullordersmt' and error_type = 1 and (".rtrim($fgshop,'or'). " ) and error_time > '".(time()-90*24*3600)."'");
 
- 		$this->data['cs_num'] = $cs_num;
 
- 		$this->_Template('fullordersmt',$this->data);
 
- 	}
 
- 	
 
- 	//筛选重复订单
 
- 	public function _repeat()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		if($user)
 
- 		{
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))  
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$shop = $this->input->post('shop',true);
 
- 			$timetk = $this->input->post('timetk',true);
 
- 			$timetj = $this->input->post('timetj',true);
 
- 			$timetk = strtotime($timetk);
 
- 			$timetj = strtotime($timetj);
 
- 			$where = "print != 3 and review = 1 and state = 207 and (".rtrim($fgshop,'or').")";
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
- 			if($timetk && $timetj)
 
-             {
 
-                 $where  .= " and buytime > '$timetk' and buytime < '$timetj'";
 
-             }
 
-             //数据排序
 
-             $order_str = "numberpx desc";
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             //取得信息列表
 
-             $info_list = $this->fullordersmt->find_all($where,'id,shop,type,orderinfo,number,state,buytime,name,userid,address,merge');
 
- 			$info = array();
 
- 			$len = count($info_list); 
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$ud = $this->fullordersmt->read($value['id']);
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				$warehouse = $this->warehouse->read($value['type']);
 
- 				$info_list[$key]['type'] = $warehouse['title'];
 
- 				$typeclass = $this->typeclass->read($value['state']);
 
- 				if($ud['source'] != 1)
 
- 				{
 
- 				    $info_list[$key]['state'] = "<a href='https://trade.aliexpress.com/order_detail.htm?orderId=".$value['orderinfo']."' target='_blank'>".$typeclass['title']."</a>";
 
- 				}
 
- 				else
 
- 				{
 
- 					 $info_list[$key]['state'] = $typeclass['title'];
 
- 				}
 
- 				$info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']).'</p><p>'.date('H:i:s',$value['buytime']).'</p>';
 
- 				$info_list[$key]['userid'] = $value['userid'];
 
- 				if($value['merge'] == 0)
 
- 				{
 
- 					$info_list[$key]['merge'] = "<p><b class='jd' data-type='5'>合并订单</b></p>";
 
- 				}
 
- 				else
 
- 				{
 
- 					if($value['merge'] == $value['id'])
 
- 					{
 
- 						if($ud['print'] < '3' && $ud['library'] == '1')
 
- 						{
 
- 							$info_list[$key]['merge'] = "<p><b class='cforder' data-id='".$value['id']."'>拆分订单</b></p>";
 
- 						}
 
- 						else
 
- 						{
 
- 						    $info_list[$key]['merge'] = "已合并";
 
- 						}
 
- 					}
 
- 					else
 
- 					{
 
- 						$info_list[$key]['merge'] = "被合并";
 
- 					}
 
- 				}
 
-             }
 
- 			for($i=0;$i<$len;$i++) 
 
- 			{ 
 
- 			    for($j=$i+1;$j<$len;$j++) 
 
- 				{
 
-                      if ($info_list[$i]['name'] == $info_list[$j]['name'] || $info_list[$i]['address'] == $info_list[$j]['address'] || $info_list[$i]['userid'] == $info_list[$j]['userid'] && ($info_list[$i]['state'] == $info_list[$j]['state'] && $info_list[$i]['type'] == $info_list[$j]['type'])) 
 
- 					 { 
 
- 					     if(!array_key_exists($j,$info))
 
- 						 {
 
- 							 $info[$j] = $info_list[$j];
 
- 						 }
 
- 						 if(!array_key_exists($i,$info))
 
- 						 {
 
- 							 $info[$i] = $info_list[$i];
 
- 						 }
 
- 						
 
-                      }
 
-                 }
 
-             }
 
- 			rsort($info);
 
- 		    $total = count($info);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>(array_slice($info,$start,$perpage)));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
 
- 		$this->data['wlshop'] = $wlshop;
 
- 		$this->_Template('fullordersmt_repeat',$this->data);
 
- 	}
 
- 	//修改
 
- 	public function _edit($arg_array)
 
- 	{
 
- 		if(isset($_SESSION['api']))
 
- 		{
 
- 			$user = $this->user->get_api($_SESSION['api']);
 
- 			if($user['vip'] == 1)
 
- 			{
 
- 				$vip = 1;
 
- 				$this->data['userid'] = $user['id'];
 
- 			}
 
- 			else
 
- 			{
 
- 				$vip = 0;
 
- 				$this->data['userid'] = 0;
 
- 			}
 
- 			$xwtype = '';
 
- 			$userwh = explode('|',trim($user['warehouse'],'|'));
 
- 			foreach ($userwh as $v) 
 
- 		    {
 
- 				$xwtype  .= " id = ".$v." or";
 
- 			}
 
- 		}
 
- 		else
 
- 		{
 
- 			$vip = 0;
 
- 			$this->data['userid'] = 0;
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))
 
- 		{
 
- 			$id = $this->input->post('id',true);
 
- 			$data = $this->fullordersmt->read($id);
 
- 			$post['type'] = $this->input->post('warehouse',true);
 
- 			$post['country'] = $this->input->post('country',true);
 
- 			$currency = $this->country->read($post['country']);
 
- 			$post['al'] = $currency['lb'];
 
- 			$post['freight'] = $this->input->post('freight',true);
 
- 			$post['expressmoney'] = $this->input->post('expressmoney',true);
 
- 			$post['shouldmoney'] = $this->input->post('shouldmoney',true);
 
- 			$orderremarks = $this->input->post('orderremarks');
 
- 			$orderremarks = str_replace(array('%26','%2B'),array('&','+'),$orderremarks);
 
- 			$post['orderremarks'] = $orderremarks;
 
- 			$post['shipremarks'] = $this->input->post('shipremarks');
 
- 			$post['email'] = $this->input->post('email',true);
 
- 			$name = $this->input->post('name',true);
 
- 			$post['name'] = str_replace("'","’",$name);
 
- 			$post['phone'] = $this->input->post('phone',true);
 
- 			$post['country'] = $this->input->post('country',true);
 
- 			$post['province'] = $this->input->post('province',true);
 
- 			$post['city'] = $this->input->post('city',true);
 
- 			$post['zipcode'] = $this->input->post('zipcode',true);
 
- 			$post['street'] = $this->input->post('street',true);
 
- 			$address = $this->input->post('address',true);
 
- 			$post['address'] = str_replace("'","’",$address);
 
- 			$post['express'] = $this->input->post('express',true);
 
- 			$post['printtype'] = $this->input->post('printtype',true);
 
- 			$fpdata = $this->input->post('fpdata');
 
- 			$fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
 
- 			$post['fpdata'] = $fpdata;
 
- 			$post['waybill'] = $this->input->post('waybill',true);
 
- 			$post['msg'] = $this->input->post('msg',true);
 
- 			$post['zsbjz'] = $this->input->post('zsbjz',true);
 
- 			$post['refundy'] = $this->input->post('refundy',true);
 
- 			$post['refundj'] = $this->input->post('refundj',true);
 
- 			$rtime = $this->input->post('rtime',true);
 
- 			$post['rtime'] = strtotime($rtime);
 
- 			$post['rpaypal'] = $this->input->post('rpaypal',true);
 
- 			$post['rtext'] = $this->input->post('rtext',true);
 
- 			$post['ioss'] = $this->input->post('ioss',true);
 
- 			$post['sbpm'] = $this->input->post('sbpm',true);
 
- 			$post['edittime'] = time();
 
- 			$post['waybill'] = preg_replace('/( | | | |\s)/','',$post['waybill']);
 
- 			$pay = $this->pay->get_typeclass($data['pay']);
 
- 			$yga = $post['shouldmoney'];
 
- 			$ygc = $data['estimaterate'];
 
- 			$post['budget'] = 0;
 
- 			$ifbudget = eval("return $yga*1.$ygc;");
 
- 			if($ifbudget > 0)
 
- 			{
 
- 			    $post['budget'] = eval("return $yga*1.$ygc;");
 
- 			}
 
- 			$editstate = $this->input->post('state',true);
 
- 			$whlabel = $this->input->post('whlabel',true);
 
- 			$fpcount = $this->input->post('fpcount',true);
 
- 			$whlabeldata = explode('|',trim($whlabel,'|'));$way = 0;
 
- 			foreach ($whlabeldata as $va)
 
- 			{
 
- 				if(stripos($va,'z') !== false)
 
- 				{
 
- 					$way += 1;
 
- 				}
 
- 			}
 
- 			//如果备注中出现网红的两个字 ,那么在fpdata种的品名中必须有 WH这两个字     且美仓不用
 
- 			if($post['type'] !=5 ){
 
- 			    if(stripos($post['shipremarks'],'网红') !== false){
 
-     				if(stripos($post['fpdata'],'-2090-') === false){
 
-     					echo json_encode(array('msg'=>'网红单请在商品名称中勾选WH!','success'=>false));exit;
 
-     				}	
 
-     			}
 
- 			}
 
- 			if((($post['express'] == 2 || $post['express'] == 63 || $post['express'] == 64) && $post['type'] != 5) || ($post['express'] != 2 && $post['express'] != 63 && $post['express'] != 64 && $post['type'] == 5))
 
- 			{
 
- 				echo json_encode(array('msg'=>'此快递方式不可从美仓发货!','success'=>false));exit;
 
- 			}
 
- 			if($way == count($whlabeldata) && $post['type'] != 12)
 
- 			{
 
- 				echo json_encode(array('msg'=>'必须选择特殊仓!','success'=>false));exit;
 
- 			}
 
- 			// if($post['express'] == 42 && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 || 
 
- 			// {
 
- 			// 	echo json_encode(array('msg'=>'此快递方式必须选择Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
 
- 			// }
 
- 			//减少代码复用吧
 
- 			$lo_ret = $this->logic_order->checkEditExpress($post);
 
- 			if($lo_ret['code'] != 1){
 
- 				echo json_encode(array('msg'=>$lo_ret['msg'],'success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == 24 && $post['sbpm'] != 'Hair Sample' && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 || 
 
- 			{
 
- 				echo json_encode(array('msg'=>'此快递方式必须选择Hair Sample/Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
 
- 			}
 
- 			if($post['country'] != 192 && $post['express'] == 1 && $post['sbpm'] != 'Synthetic Hair Wigs' && $post['sbpm'] != 'Synthetic Hair Goods')//$post['express'] == 3 || 
 
- 			{
 
- 				echo json_encode(array('msg'=>'非美国选择官方DHL必须选择Synthetic Hair Wigs/Synthetic Hair Goods','success'=>false));exit;
 
- 			}
 
- 			$post['review'] = 1;
 
- 			if($post['zsbjz'] < '0.01')
 
- 			{
 
- 				echo json_encode(array('msg'=>'总申报价错误!','success'=>false));exit;
 
- 			}
 
- 			if($data['shop'] == '9' && $post['type'] != '7' && $post['type'] != '8' && $post['type'] != '9')
 
- 			{
 
- 				echo json_encode(array('msg'=>'仓库选择错误!','success'=>false));exit;
 
- 			}
 
- 			if($data['library'] == 1)
 
- 			{
 
- 			    if($data['print'] != 3 && $data['review'] < 5)
 
- 			    {
 
- 				    $post['libraryconfirm'] = 1;
 
- 				    $post['librarynot'] = "订单未打印";
 
- 			    }
 
- 				else if($data['print'] != 3 && $data['review'] > 4)
 
- 			    {
 
- 					$post['print'] = 1;
 
- 				    $post['libraryconfirm'] = 1;
 
- 				    $post['librarynot'] = "订单未打印,订单审核后修改";
 
- 			    }
 
- 			    else
 
- 			    {
 
- 			    	$post['libraryconfirm'] = 1;
 
- 			    	$post['librarynot'] = "订单打印后修改";
 
- 			    }
 
- 			}
 
- 			if($data['yhs'] == 1)
 
- 			{
 
- 				 echo json_encode(array('msg'=>'仓库货物验证中,请稍后再试!','success'=>false));exit;
 
- 			}
 
- 			if(($post['express'] == '5' || $post['express'] == '24' || $post['express'] == '31') && $post['country'] != 192)
 
- 			{
 
- 				echo json_encode(array('msg'=>'非美国无法选择Fedex!','success'=>false));exit;
 
- 			}
 
- 			if(($post['express'] == '28' || $post['express'] == '7') && $post['country'] != 191)
 
- 			{
 
- 				echo json_encode(array('msg'=>'非英国无法选择CNE和GES!','success'=>false));exit;
 
- 			}
 
- 			if($data['type'] != '5' && $post['type'] == '5' && $editstate != '207')
 
- 			{
 
- 				echo json_encode(array('msg'=>'等待发货状态才可选择美仓!','success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == 52 && empty($post['email'])){
 
- 				echo json_encode(array('msg'=>'惠程安迈世发货需要有邮箱!','success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == '2' && $post['bx'] > 0)
 
- 			{
 
- 				echo json_encode(array('msg'=>'此物流不允许购买保险','success'=>false));exit;
 
- 			}
 
- 			if($post['printtype'] == 1)//如果是运单
 
- 			{
 
- 				$post['productdescription'] = $this->input->post('productdescription',true);
 
- 			    $post['customs'] = $this->input->post('customs',true);
 
- 			}
 
- 			$express = $this->express->read($post['express']);
 
- 			if($express['ioss'] == 1 && $post['ioss'] == '')
 
- 			{
 
- 				 echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
 
- 			}
 
- 			if(strlen($post['address']) > $express['addresssize'] || strlen($post['address2']) > $express['addresssize'])
 
- 			{
 
- 				echo json_encode(array('msg'=>'此快递地址不可超出'.$express['addresssize'].'个字符','success'=>false));exit;
 
- 			}
 
- 			if( ($express['sbjz'] > 0) && ($post['zsbjz'] > $express['sbjz']))
 
- 			{
 
- 				echo json_encode(array('msg'=>'总申报价值不可超出'.$express['sbjz'],'success'=>false));exit;
 
- 			}
 
- 			if($post['shouldmoney'] > $express['shouldmoney'] && $express['shouldmoney'] != 0)
 
- 			{
 
- 				echo json_encode(array('msg'=>'订单金额不可超出'.$express['shouldmoney'],'success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == '2' && $post['zzl'] > '16' && $post['js'] == '0')
 
- 			{
 
- 				echo json_encode(array('msg'=>'重量大于16不可按Ground Advantage提交!','success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == '2' && isset($post['js']) && $post['js'] == '0'&& $post['qm'] == '1')
 
- 			{
 
- 				echo json_encode(array('msg'=>'Ground Advantage不可使用签名服务!','success'=>false));exit;
 
- 			}
 
- 			if(($post['express'] == '3' || $post['express'] == '42' || $post['express'] == '24' || $post['express'] == '31') && $post['shouldmoney'] < 1)
 
- 			{
 
- 				echo json_encode(array('msg'=>'零金额订单不可发 UPS/DHL官方-美国/Fedex(杭州)','success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == '6' && $post['province'] == '')
 
- 			{
 
- 				echo json_encode(array('msg'=>'选择DPEX必须填写州信息','success'=>false));exit;
 
- 			}
 
- 			if(($post['express'] == '24' || $post['express'] == '3') && $post['shouldmoney'] == 0)
 
- 			{
 
- 				echo json_encode(array('msg'=>'0金额订单不可发UPS/Fedex(杭州)!!!','success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == '42' && $post['zsbjz'] < 1)
 
- 			{
 
- 				echo json_encode(array('msg'=>'零申报金额不可发 DHL官方-美国','success'=>false));exit;
 
- 			}
 
- 			if($post['country'] == '35' && $post['zsbjz'] > 20)
 
- 			{
 
- 				echo json_encode(array('msg'=>'加拿大不可申报超过20美金!!!','success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == 2 && strlen($post['zipcode']) != 5)//如果usps 邮编不是5位
 
- 			{
 
- 				echo json_encode(array('msg'=>'USPS-USA的邮编需按5位数格式提交!','success'=>false));exit;
 
- 			}
 
- 			/**
 
- 			if($editstate == 216 && $data['state'] != 216)
 
- 			{
 
- 				echo json_encode(array('msg'=>'不可修改为完成状态','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			if($editstate == 216 && preg_match('/\d/is',$post['waybill']) != true)
 
- 			{
 
- 				echo json_encode(array('msg'=>'当前信息不可修改订单状态','success'=>false));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				if($data['review'] == 1 && $data['source'] != 1)
 
- 				{
 
- 					$review = 6;
 
- 					if($data['merge'] != '0')
 
- 					{
 
- 						$hdata = $this->fullordersmt->find_all("merge = '".$data['merge']."' and id != '".$data['id']."'");
 
- 						foreach ($hdata as $v) 
 
- 						{
 
- 							$this->fullordersmt->save(array('review'=>6),$v['id']);
 
- 						}
 
- 					}
 
- 				}
 
- 				else if($data['review'] == 3 || ($data['review'] == 1 && $data['source'] == 1))
 
- 				{
 
- 					$review = 2;
 
- 				}
 
- 				else
 
- 				{
 
- 					$review = $data['review'];
 
- 				}
 
- 				$post['review'] = $review;
 
- 				$post['state'] = $editstate;
 
- 				$post['reviewtime'] = time();
 
- 			}
 
- 			$thisdata =  $this->fullordersmt->read($id);
 
- 			$warehouse = $this->warehouse->read($thisdata['type']);
 
- 			$warehousenew = $this->warehouse->read($post['type']);
 
- 			if($warehousenew['bdcountry'] != 0 && $post['country'] != $warehousenew['bdcountry'])
 
- 			{
 
- 				echo json_encode(array('msg'=>'当前国家无法选择'.$warehousenew['title'].'!','success'=>false));exit;
 
- 			}
 
- 			if(($warehouse['zd'] == '1' || stripos($thisdata['whlabel'],'z|') !== false) && $thisdata['library'] == '2' && $post['type'] != $thisdata['type'])//如果已出库并且开启库存模式仓库或者有特殊库存,禁止调整仓库
 
- 			{
 
- 				echo json_encode(array('msg'=>'此单已占用库存并出库,无法更改仓库!','success'=>false));exit;
 
- 			}
 
- 			$expt = $this->express->read($post['express']);
 
- 			if($expt['pt'] != '' && stripos($post['fpdata'],$expt['pt']) !== false)
 
- 			{
 
- 				echo json_encode(array('msg'=>$expt['ptts'],'success'=>false));exit;
 
- 			}
 
- 			if($expt['province'] != '' && stripos($expt['province'],$post['province'].'、') !== false)
 
- 			{
 
- 				echo json_encode(array('msg'=>'此省/州不可使用 '.$expt['servicename'],'success'=>false));exit;
 
- 			}
 
- 			/**
 
- 			if($warehouse['zd'] == '1' && $warehouse['ys'] != '1' && $thisdata['library'] == '2' && $post['fpdata'] != $thisdata['fpdata'])
 
- 			{
 
- 				echo json_encode(array('msg'=>'已扣减库存,无法更改产品!','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			//开始注释 xyxg 
 
- 			/**
 
- 			$ft = array();
 
- 			$ftdata = explode('|',rtrim($fpcount,'|'));
 
- 			foreach ($ftdata as $va)
 
- 			{
 
- 				$ftitle = '';
 
- 				$va = explode('-',trim($va,'-'));
 
- 				foreach ($va as $v)
 
- 			    {
 
- 					$v = $this->typeclass->read($v);
 
- 					$ftitle .= $v['title'].' ';
 
- 				}
 
- 				$ft[] = rtrim($ftitle,' ');
 
- 			}
 
- 			if(stripos($whlabel,'z|') !== false || stripos($thisdata['whlabel'],'z|') !== false)
 
- 			{
 
- 			    $tskcyz = $this->specialstock->get_kc($thisdata['state'],$post['state'],$whlabel,$thisdata['whlabel'],$thisdata['number']);
 
- 				if($tskcyz['t'] > '0')
 
- 			    {
 
- 				    echo $tskcyz['m'];exit;
 
- 			    }
 
- 			}
 
- 			$kcyz = $this->whlabel->get_kc($data['state'],$post['state'],$warehousenew['zd'],$warehousenew['ys'],$post['type'],$whlabel,$fpcount,$ft,$thisdata['number'],$thisdata['shop'],$thisdata['type'],$thisdata['whlabel']);
 
- 			if($kcyz['t'] > '0')
 
- 			{
 
- 				echo $kcyz['m'];exit;
 
- 			}
 
- 			else
 
- 			{
 
- 			    if($this->fullordersmt->save($post,$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'修改成功','id'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            		    echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			//结束注释
 
- 			**/
 
- 			$warehouse = $this->warehouse->read($post['type']);
 
- 			if($data['library'] == 1 || ($data['library'] != 2 && ($post['state'] != '207' || $post['state'] == '209')))
 
- 			{
 
- 			    $kcyz = $this->ck->get_kc($post['state'],$warehouse,$thisdata['shop'],$thisdata['number'],$whlabel,$fpdata);
 
- 			    if($kcyz['t'] > '0')
 
- 			    {
 
- 				    echo $kcyz['m'];exit;
 
- 			    }
 
- 			    else if($kcyz['fpdata'] != '')
 
- 			    {
 
- 				    $post['whlabel'] = $kcyz['whlabel'];
 
- 				    $post['fpdata'] = $kcyz['fpdata'];
 
- 			    }
 
- 			}
 
- 			$fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
 
- 			$post['sfxh'] = $fl['sfxh'];
 
- 			$post['ckfl'] = $fl['ckfl'];
 
- 			
 
- 			//查询净重开始
 
- 			$post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
 
- 			//查询净重结束
 
- 							
 
- 			    if($this->fullordersmt->save($post,$id))
 
-         	    {
 
- 					if($data['printtime'] == '0')
 
- 					{
 
- 						$xghz = ',该单将自动禁止打印';
 
- 					}
 
- 					else if($data['printtime'] > '0' && $data['librarytime'] == '0')
 
- 					{
 
- 						$xghz = ',该单将自动禁止发货';
 
- 					}
 
- 					else
 
- 					{
 
- 						$xghz = '';
 
- 					}
 
-          		    echo json_encode(array('msg'=>'修改成功'.$xghz,'id'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            		    echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
 
-         	    }
 
- 		}
 
- 		$arg_array = $arg_array[0];$fpdata = array();
 
- 		$fullordersmt = $this->fullordersmt->read($arg_array);
 
- 		$returngoods = $this->returngoods->get_orderinfo($fullordersmt['orderinfo']);
 
- 		$this->data['returngoods'] = $returngoods?1:0;
 
- 		$fullordersmt['parameter'] = str_replace(",","---",$fullordersmt['parameter']);
 
- 		$country = $this->country->find_all('1=1','id,name','name asc');//所有国家信息
 
- 		$express = $this->express->find_all('1=1');//所有快递配置信息
 
- 		$this->data['fullordersmt'] = $fullordersmt;
 
- 		if($fullordersmt['express'] == 2)
 
- 		{
 
- 			$zzhl = 'oz';
 
- 		}
 
- 		else
 
- 		{
 
- 			$zzhl = 'kg';
 
- 		}
 
- 		$this->data['zzhl'] = $zzhl;
 
- 		$this->data['country'] = $country;
 
- 		$this->data['express'] = $express;
 
- 		$this->data['dtime'] = date('Y-m-d H:i:s',$fullordersmt['dtime']);
 
- 		$warehouse = $this->warehouse->read($fullordersmt['type']);
 
- 		if(stripos($fullordersmt['fpdata'],';') !== false)
 
- 		{
 
- 		    $fpdata = explode(';',rtrim($fullordersmt['fpdata'],';'));
 
- 		    foreach ($fpdata as $k=>$v) 
 
- 		    {
 
- 			    $xxv = explode('|',$v);
 
- 				if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
 
- 				{
 
- 					$xxv['zd'] = "<p>已占单</p>";
 
- 					$bdck = $warehouse['bdck'];
 
- 					if(stripos($xxv[9],'~') !== false)
 
- 					{
 
- 						$dxxv = explode('~',trim($xxv[9],'~'));
 
- 						foreach ($dxxv as $val) 
 
- 		                {
 
- 					    	$wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
 
- 							if($wzid['details'] != '')
 
- 						    {
 
- 					    	    $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
 
- 							}
 
- 						}
 
- 					}
 
- 					else
 
- 					{
 
- 					    $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
 
- 						if($wzid['details'] != '')
 
- 						{
 
- 					        $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
 
- 						}
 
- 					}
 
- 				}
 
- 				$fpdata[$k] = $xxv;
 
-             }
 
- 		}
 
- 		$this->data['fpdata'] = $fpdata;
 
- 		$thfpdataxs = array();
 
- 		if($fullordersmt['thfpdata'] != '')
 
- 		{
 
- 			$thfpdata =  explode(';',trim($fullordersmt['thfpdata'],';'));
 
- 			foreach ($thfpdata as $k=>$v) 
 
- 		    {
 
- 				$thxs = explode('~',trim($v,'~'));
 
- 				$thxs[0] = explode('|',trim($thxs[0],'|'));
 
- 				$thxs[1] = explode('|',trim($thxs[1],'|'));
 
- 				$thfpdataxs[] = array("<p>".$thxs[0][1]."<i class='fa fa-level-down'></i></p><p>".$thxs[1][1]."</p>","<p>".$thxs[0][2]."</p><p>".$thxs[1][2]."</p>","<p>旧</p><p>新</p>",$thxs[1][0]);
 
- 			}
 
- 		}
 
- 		$this->data['thfpdata'] = $thfpdataxs;
 
- 		$shop = $this->shop->read($fullordersmt['shop']);
 
- 		$this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
 
- 		$is = 0;
 
- 		if($shop['type'] == 269)//判断是否独立站,269是独立站
 
- 		{
 
- 			$is = 1;
 
- 		}
 
- 		$this->data['is'] = $is;
 
- 		$this->data['power'] = $vip;
 
- 		/** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
 
- 		$downwaybill = '';$dwls = array();
 
- 		$oldwaybill = explode('-',ltrim($fullordersmt['oldwaybill'],'-'));
 
- 		if(isset($oldwaybill[0][1]))
 
- 		{
 
- 			$oldwaybill = array_reverse($oldwaybill); //调整顺序
 
- 		    foreach ($oldwaybill as $v) 
 
- 		    {
 
- 				$dw = explode('/',$v);
 
- 				if(isset($dw[1]))
 
- 				{
 
- 					if(stripos($downwaybill,$dw[1]) === false)
 
- 					{
 
- 					$dwls[$dw[1]] = 1;
 
- 			    	$downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
 
- 					}
 
- 				}
 
-         	}
 
- 		}
 
- 		if($fullordersmt['printtype'] == 1)
 
- 		{
 
- 			if($fullordersmt['waybill'] != '' && !isset($dwls[$fullordersmt['waybill']]))
 
- 			{
 
- 		        $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullordersmt['printtime']).'/y-'.$fullordersmt['waybill'].'.pdf" target="_blank">'.$fullordersmt['waybill'].'</a>、'.$downwaybill;
 
- 			}
 
- 		}
 
- 		$this->data['downwaybill'] = rtrim($downwaybill,'、');
 
- 		$product = '';
 
- 		if($fullordersmt['link'] != '' && $fullordersmt['source'] != '1')
 
- 		{
 
- 			$pt = explode(';',rtrim($fullordersmt['product'],';'));
 
- 			$lk = explode(',',$fullordersmt['link']);
 
- 			for($i=0;$i<count($pt);$i++)
 
- 			{
 
- 				if(isset($lk[$i]) && isset($pt[$i]))
 
- 				{
 
- 				    $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$pt[$i].'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$pt[$i].'</a>';
 
- 				}
 
- 			}
 
- 		}
 
- 		else
 
- 		{
 
- 			$product = $fullordersmt['product'];
 
- 		}
 
- 		$this->data['product'] = $product;
 
- 		$out = $this->systemtransfer->find_all("number = '".$fullordersmt['number']."'");
 
- 				$outread = '';
 
- 				if($out)
 
- 				{
 
- 					foreach ($out as $val) 
 
- 		            {
 
- 						$list = '';
 
- 						$rk = explode('|',trim($val['rk'],'|'));
 
- 					    $rktime = explode('|',trim($val['rktime'],'|'));
 
- 					    $zw = array();
 
- 					    $t = $this->transfer->find_all("1=1");
 
- 					    foreach ($t as $v)
 
- 		   		        {
 
- 						    $zw[$v['id']] = $v['title'];
 
- 					    }
 
- 					    if($val['rk'] != '' && count($rk) > 0)
 
- 					    {
 
- 							for($i=0;$i<count($rk);$i++)
 
- 		       		        {
 
- 							    if(!isset($rktime[$i]))
 
- 							    {
 
- 									$list .= $zw[$cz[$i]];
 
- 							    }
 
- 							    else
 
- 							    {
 
- 					   		        $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
 
- 							    }
 
- 							}
 
- 						}
 
- 						//$outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
 
- 						$outread .= '<span style="color:#f00">'.$val['shipremarks'].'</span>:'.$list.'<br>';
 
- 					}
 
- 				}
 
- 				else
 
- 				{
 
- 						$systemwigsout = $this->systemwigsout->find_all("number = '".$fullordersmt['number']."'");
 
- 						$outread = array();
 
- 						if($systemwigsout)
 
- 						{
 
- 		    				foreach ($systemwigsout as $v) 
 
- 		    				{
 
- 								if($v['czwarehouse'] == 37)
 
- 								{
 
- 									$outread[] = '华荣厂';
 
- 								}
 
- 								else if($v['czwarehouse'] == 0)
 
- 								{
 
- 									$outread[] = '龙盈厂';
 
- 								}
 
- 			    				$cz = explode('|',trim($v['cz'],'|'));
 
- 			    				$cztime = explode('|',trim($v['cztime'],'|'));
 
- 			    				$zw = $this->transfer->get_list();
 
- 			    				if($v['cz'] != '' && count($cz) > 0)
 
- 			    				{
 
- 			    					for($i=0;$i<count($cz);$i++)
 
- 		            				{
 
- 				    					if(!isset($cztime[$i]))
 
- 					    				{
 
- 					    					$outread[] = $zw[$cz[$i]].' -> ';
 
- 					    				}
 
- 					    				else
 
- 					   				 {
 
- 					       				 $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -> ';
 
- 					    				}
 
- 				    				}
 
- 									$outread[] = '<br>';
 
- 			    				}
 
- 		    				}
 
- 						}
 
- 				}
 
- 		$this->data['systemwigsout'] = $outread;
 
- 		$this->data['xwuser'] = 0;
 
- 		if($user['power'] == 47)
 
- 		{
 
- 			$warehouse = $this->warehouse->find_all('1=1 and '.rtrim($xwtype,'or'),"*","px asc");
 
- 		    $this->data['warehouse'] = $warehouse;
 
- 			$this->data['xwuser'] = 1;
 
- 		}
 
- 		$this->data['user'] = $user;
 
- 		$this->_Template('fullordersmt_edit',$this->data);
 
- 	}
 
- 	//不可修改
 
- 	public function _readonly($arg_array)
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))
 
- 		{
 
- 			$id = $this->input->post('id',true);
 
- 			$ud = $this->fullordersmt->read($id);$data = $ud;
 
- 			$post['type'] = $this->input->post('warehouse',true);
 
- 			$post['orderremarks'] = $this->input->post('orderremarks',true);
 
- 			$post['state'] = $this->input->post('state',true);
 
- 			$post['msg'] = $this->input->post('msg',true);
 
- 			$post['refundy'] = $this->input->post('refundy',true);
 
- 			$post['refundj'] = $this->input->post('refundj',true);
 
- 			$fpdata = $this->input->post('fpdata');
 
- 			$fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
 
- 			$post['fpdata'] = $fpdata;
 
- 			$rtime = $this->input->post('rtime',true);
 
- 			$post['rtime'] = strtotime($rtime);
 
- 			$post['rpaypal'] = $this->input->post('rpaypal',true);
 
- 			$post['rtext'] = $this->input->post('rtext',true);
 
- 			//$post['ioss'] = $this->input->post('ioss',true);
 
- 			$whlabel = $this->input->post('whlabel',true);
 
- 			$post['edittime'] = time();
 
- 			$editstate = $post['state'];
 
- 			/**
 
- 			if($post['state'] == 216 && $ud['state'] != 216)
 
- 			{
 
- 				echo json_encode(array('msg'=>'不可修改为完成状态','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			$whlabeldata = explode('|',trim($whlabel,'|'));$way = 0;
 
- 			foreach ($whlabeldata as $va)
 
- 			{
 
- 				if(stripos($va,'z') !== false)
 
- 				{
 
- 					$way += 1;
 
- 				}
 
- 			}
 
- 			if($way == count($whlabeldata) && $post['type'] != 12)
 
- 			{
 
- 				echo json_encode(array('msg'=>'必须选择特殊仓!','success'=>false));exit;
 
- 			}
 
- 			$fpcount = $this->input->post('fpcount',true);
 
- 			if(!$fpcount)
 
- 			{
 
- 				echo json_encode(array('msg'=>'需要先清理浏览器缓存,刷新当前页面后再试!','success'=>false));exit;
 
- 			}
 
- 			if($ud['shop'] == '9' && $post['type'] != '7' && $post['type'] != '8')
 
- 			{
 
- 				echo json_encode(array('msg'=>'仓库选择错误!','success'=>false));exit;
 
- 			}
 
- 			if($ud['library'] == 1)
 
- 			{
 
- 			    if($ud['print'] != 3)
 
- 			    {
 
- 			    	$post['print'] = 1;
 
- 				    $post['libraryconfirm'] = 1;
 
- 				    $post['librarynot'] = "订单未打印,未审核或未通过";
 
- 			    }
 
- 			    else
 
- 			    {
 
- 			    	$post['libraryconfirm'] = 1;
 
- 			    	$post['librarynot'] = "未审核或未通过";
 
- 			    }
 
- 			}
 
- 			if(($post['express'] == '5' || $post['express'] == '24' || $post['express'] == '31') && $ud['country'] != 192)
 
- 			    {
 
- 				    echo json_encode(array('msg'=>'非美国无法选择Fedex!','success'=>false));exit;
 
- 			    }
 
- 				if(($post['express'] == '28' || $post['express'] == '7') && $ud['country'] != 191)
 
- 			    {
 
- 				    echo json_encode(array('msg'=>'非英国无法选择CNE和GES!','success'=>false));exit;
 
- 			    }
 
- 			if($post['type'] != 5 && in_array($post['express'],[2,63,64]))
 
- 			{
 
- 				echo json_encode(array('msg'=>"此快递方式必须从美仓发货!",'success'=>false));exit;
 
- 			}
 
- 	
 
- 			if($post['type'] == 5 && !in_array($post['express'],[2,63,64]))
 
- 			{
 
- 				echo json_encode(array('msg'=>"此快递方式不能美仓发货!",'success'=>false));exit;
 
- 			}
 
- 			
 
- 			$express = $this->express->read($post['express']);
 
- 			/**
 
- 			if($express['ioss'] == 1 && $post['ioss'] == '')
 
- 			{
 
- 				 echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			$thisdata =  $this->fullordersmt->read($id);
 
- 			$warehouse = $this->warehouse->read($thisdata['type']);
 
- 			$warehousenew = $this->warehouse->read($post['type']);
 
- 			if(($post['express'] == '5' || $post['express'] == '24') && strlen($ud['address']) > 32)
 
- 			{
 
- 				echo json_encode(array('msg'=>'地址1长度不合格!','success'=>false));exit;
 
- 			}
 
- 			if($post['express'] == '27' && strlen($post['address']) > 30)
 
- 			{
 
- 				echo json_encode(array('msg'=>'地址1长度不合格!','success'=>false));exit;
 
- 			}
 
- 			if($data['type'] != '5' && $post['type'] == '5' && $editstate != '207')
 
- 			{
 
- 				echo json_encode(array('msg'=>'等待发货状态才可选择美仓!','success'=>false));exit;
 
- 			}
 
- 			if(($warehouse['zd'] == '1' || stripos($thisdata['whlabel'],'z|') !== false) && $thisdata['library'] == '2' && $post['type'] != $thisdata['type'])//如果已出库并且开启库存模式仓库或者有特殊库存,禁止调整仓库
 
- 			{
 
- 				echo json_encode(array('msg'=>'此单已占用库存并出库,无法更改仓库!','success'=>false));exit;
 
- 			}
 
- 			if($ud['yhs'] == 1)
 
- 			{
 
- 				 echo json_encode(array('msg'=>'仓库货物验证中,请稍后再试!','success'=>false));exit;
 
- 			}
 
- 			$expt = $this->express->read($post['express']);
 
- 			if($expt['pt'] != '' && stripos($post['fpdata'],$expt['pt']) !== false)
 
- 			{
 
- 				echo json_encode(array('msg'=>$expt['ptts'],'success'=>false));exit;
 
- 			}
 
- 			if($expt['province'] != '' && stripos($expt['province'],$ud['province'].'、') !== false)
 
- 			{
 
- 				echo json_encode(array('msg'=>'此省/州不可使用 '.$expt['servicename'],'success'=>false));exit;
 
- 			}
 
- 			/**
 
- 			if($warehouse['zd'] == '1' && $warehouse['ys'] != '1' && $thisdata['library'] == '2' && $post['fpdata'] != $thisdata['fpdata'])
 
- 			{
 
- 				echo json_encode(array('msg'=>'已扣减库存,无法更改产品!','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			//开始注释 xyxg 
 
- 			/**
 
- 			$ft = array();
 
- 			$ftdata = explode('|',rtrim($fpcount,'|'));
 
- 			foreach ($ftdata as $va)
 
- 			{
 
- 				$ftitle = '';
 
- 				$va = explode('-',trim($va,'-'));
 
- 				foreach ($va as $v)
 
- 			    {
 
- 					$v = $this->typeclass->read($v);
 
- 					$ftitle .= $v['title'].' ';
 
- 				}
 
- 				$ft[] = rtrim($ftitle,' ');
 
- 			}
 
- 			if(stripos($whlabel,'z|') !== false || stripos($thisdata['whlabel'],'z|') !== false)
 
- 			{
 
- 			    $tskcyz = $this->specialstock->get_kc($thisdata['state'],$post['state'],$whlabel,$thisdata['whlabel'],$thisdata['number']);
 
- 				if($tskcyz['t'] > '0')
 
- 			    {
 
- 				    echo $tskcyz['m'];exit;
 
- 			    }
 
- 			}
 
- 			$kcyz = $this->whlabel->get_kc($thisdata['state'],$post['state'],$warehousenew['zd'],$warehousenew['ys'],$post['type'],$whlabel,$fpcount,$ft,$thisdata['number'],$thisdata['shop'],$thisdata['type'],$thisdata['whlabel']);//旧状态、新状态、仓库占单设置、仓库预设设置、新仓库、新产品简化数字、旧产品数字、旧产品名称、订单号、订单店铺、旧订单仓库、旧产品简化数字
 
- 			if($kcyz['t'] > '0')
 
- 			{
 
- 				echo $kcyz['m'];exit;
 
- 			}
 
- 			else
 
- 			{
 
- 			    if($this->fullordersmt->save($post,$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'修改成功','id'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            		    echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			//结束注释
 
- 			**/
 
- 			$warehouse = $this->warehouse->read($post['type']);
 
- 			if($ud['library'] == 1 || ($ud['library'] != 2 && ($post['state'] != '207' || $post['state'] == '209')))
 
- 			{
 
- 			    $kcyz = $this->ck->get_kc($post['state'],$warehouse,$thisdata['shop'],$thisdata['number'],$whlabel,$fpdata);
 
- 			    if($kcyz['t'] > '0')
 
- 			    {
 
- 				    echo $kcyz['m'];exit;
 
- 			    }
 
- 			    else if($kcyz['fpdata'] != '')
 
- 			    {
 
- 				    $post['whlabel'] = $kcyz['whlabel'];
 
- 				    $post['fpdata'] = $kcyz['fpdata'];
 
- 			    }
 
- 			}
 
- 			$fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
 
- 			$post['sfxh'] = $fl['sfxh'];
 
- 			$post['ckfl'] = $fl['ckfl'];
 
- 			
 
- 			//查询净重开始
 
- 			$post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
 
- 			//查询净重结束
 
- 			
 
- 			
 
- 			    if($this->fullordersmt->save($post,$id))
 
-         	    {
 
- 					if($data['printtime'] == '0')
 
- 					{
 
- 						$xghz = ',该单将自动禁止打印';
 
- 					}
 
- 					else if($data['printtime'] > '0' && $data['librarytime'] == '0')
 
- 					{
 
- 						$xghz = ',该单将自动禁止发货';
 
- 					}
 
- 					else
 
- 					{
 
- 						$xghz = '';
 
- 					}
 
-          		    echo json_encode(array('msg'=>'修改成功'.$xghz,'id'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            		    echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
 
-         	    }
 
- 		}
 
- 		$arg_array = $arg_array[0];$fpdata = array();
 
- 		$fullordersmt = $this->fullordersmt->read($arg_array);
 
- 		$returngoods = $this->returngoods->get_orderinfo($fullordersmt['orderinfo']);
 
- 		$this->data['returngoods'] = $returngoods?1:0;
 
- 		$fullordersmt['shipremarks'] = str_replace(array('<','>'),array('<','>'),$fullordersmt['shipremarks']);
 
- 		$fullordersmt['parameter'] = str_replace(",","---",$fullordersmt['parameter']);
 
- 		$this->data['fullordersmt'] = $fullordersmt;
 
- 		if($fullordersmt['express'] == 2)
 
- 		{
 
- 			$zzhl = 'oz';
 
- 		}
 
- 		else
 
- 		{
 
- 			$zzhl = 'kg';
 
- 		}
 
- 		$this->data['zzhl'] = $zzhl;
 
- 		$this->data['countrys'] = $this->country->find_all();
 
- 		$this->data['express'] = $this->express->find_all();
 
- 		$warehouse = $this->warehouse->read($fullordersmt['type']);
 
- 		if(stripos($fullordersmt['fpdata'],';') !== false)
 
- 		{
 
- 		    $fpdata = explode(';',rtrim($fullordersmt['fpdata'],';'));
 
- 		    foreach ($fpdata as $k=>$v) 
 
- 		    {
 
- 			    $xxv = explode('|',$v);
 
- 				if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
 
- 				{
 
- 					$xxv['zd'] = "<p>已占单</p>";
 
- 					$bdck = $warehouse['bdck'];
 
- 					if(stripos($xxv[9],'~') !== false)
 
- 					{
 
- 						$dxxv = explode('~',trim($xxv[9],'~'));
 
- 						foreach ($dxxv as $val) 
 
- 		                {
 
- 					    	$wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
 
- 							if($wzid['details'] != '')
 
- 						    {
 
- 					    	    $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
 
- 							}
 
- 						}
 
- 					}
 
- 					else
 
- 					{
 
- 					    $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
 
- 						if($wzid['details'] != '')
 
- 						{
 
- 					        $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
 
- 						}
 
- 					}
 
- 				}
 
- 				$fpdata[$k] = $xxv;
 
-             }
 
- 		}
 
- 		$this->data['fpdata'] = $fpdata;
 
- 		$thfpdataxs = array();
 
- 		if($fullordersmt['thfpdata'] != '')
 
- 		{
 
- 			$thfpdata =  explode(';',trim($fullordersmt['thfpdata'],';'));
 
- 			foreach ($thfpdata as $k=>$v) 
 
- 		    {
 
- 				$thxs = explode('~',trim($v,'~'));
 
- 				$thxs[0] = explode('|',trim($thxs[0],'|'));
 
- 				$thxs[1] = explode('|',trim($thxs[1],'|'));
 
- 				$thfpdataxs[] = array("<p>".$thxs[0][1]."<i class='fa fa-level-down'></i></p><p>".$thxs[1][1]."</p>","<p>".$thxs[0][2]."</p><p>".$thxs[1][2]."</p>","<p>旧</p><p>新</p>",$thxs[1][0]);
 
- 			}
 
- 		}
 
- 		$this->data['thfpdata'] = $thfpdataxs;
 
- 		$shop = $this->shop->read($fullordersmt['shop']);
 
- 		$this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
 
- 		$is = 0;
 
- 		if($shop['type'] == 269)//判断是否独立站,269是独立站
 
- 		{
 
- 			$is = 1;
 
- 		}
 
- 		$this->data['is'] = $is;
 
- 		//单项开始
 
- 		$warehouse = $this->warehouse->read($fullordersmt['warehouse']);//发货仓库
 
- 		$state = $this->typeclass->read($fullordersmt['state']);//订单状态
 
- 		$country = $this->country->read($fullordersmt['country']);//国家
 
- 		if($fullordersmt['capital'] == 1)
 
- 		{
 
- 			$capital = '暂未支付';
 
- 		}
 
- 		else if($fullordersmt['capital'] == 2)
 
- 		{
 
- 			$capital = '部分支付';
 
- 		}
 
- 		else if($fullordersmt['capital'] == 3)
 
- 		{
 
- 			$capital = '全部支付';
 
- 		}
 
- 		if($fullordersmt['printtype'] == 1)
 
- 		{
 
- 			$printtype = '运单';
 
- 		}
 
- 		else if($fullordersmt['printtype'] == 2)
 
- 		{
 
- 			$printtype = '发货单';
 
- 		}
 
- 		else if($fullordersmt['printtype'] == 3)
 
- 		{
 
- 			$printtype = '不打印单据';
 
- 		}
 
- 		else
 
- 		{
 
- 			$printtype = '未选择';
 
- 		}
 
- 		$this->data['warehouse'] = $warehouse['title'];
 
- 		$this->data['state'] = $state['title'];
 
- 		$this->data['capital'] = $capital;
 
- 		$this->data['country'] = $country['ename'];
 
- 		$this->data['printtype'] = $printtype;
 
- 		//单项结束
 
- 		/** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
 
- 		$downwaybill = '';$dwls = array();
 
- 		$oldwaybill = explode('-',ltrim($fullordersmt['oldwaybill'],'-'));
 
- 		if(isset($oldwaybill[0][1]))
 
- 		{
 
- 			$oldwaybill = array_reverse($oldwaybill); //调整顺序
 
- 		    foreach ($oldwaybill as $v) 
 
- 		    {
 
- 				$dw = explode('/',$v);
 
- 				if(isset($dw[1]))
 
- 				{
 
- 					$dwls[$dw[1]] = 1;
 
- 			    	$downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
 
- 				}
 
-         	}
 
- 		}
 
- 		if($fullordersmt['printtype'] == 1)
 
- 		{
 
- 			if($fullordersmt['waybill'] != '' && !isset($dwls[$fullordersmt['waybill']]))
 
- 			{
 
- 		        $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullordersmt['printtime']).'/y-'.$fullordersmt['waybill'].'.pdf" target="_blank">'.$fullordersmt['waybill'].'</a>、'.$downwaybill;
 
- 			}
 
- 		}
 
- 		$this->data['downwaybill'] = rtrim($downwaybill,'、');
 
- 		/** 历史打印时间 **/
 
- 		$printtime = '';
 
- 		if($fullordersmt['oldprinttime'])
 
- 		{
 
- 			$pte = explode('-',rtrim($fullordersmt['oldprinttime'],'-'));
 
- 		    foreach ($pte as $v) 
 
- 		    {
 
- 				$printtime .= date('Y-m-d H:i:s',$v).'、';
 
-         	}
 
- 		}
 
- 		$this->data['printtime'] = rtrim($printtime,'、');
 
- 		$product = '';
 
- 		if($fullordersmt['link'] != '' && $fullordersmt['source'] != '1')
 
- 		{
 
- 			$pt = explode(';',rtrim($fullordersmt['product'],';'));
 
- 			$lk = explode(',',$fullordersmt['link']);
 
- 			for($i=0;$i<count($pt);$i++)
 
- 			{
 
- 				if(isset($lk[$i]) && isset($pt[$i]))
 
- 				{
 
- 				    $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$pt[$i].'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$pt[$i].'</a>';
 
- 				}
 
- 			}
 
- 		}
 
- 		else
 
- 		{
 
- 			$product = $fullordersmt['product'];
 
- 		}
 
- 		$this->data['username'] = ($user['shop']=='|9|')?'1':'0';
 
- 		$out = $this->systemtransfer->find_all("number = '".$fullordersmt['number']."'");
 
- 				$outread = '';
 
- 				if($out)
 
- 				{
 
- 					foreach ($out as $val) 
 
- 		            {
 
- 						$list = '';
 
- 						$rk = explode('|',trim($val['rk'],'|'));
 
- 					    $rktime = explode('|',trim($val['rktime'],'|'));
 
- 					    $zw = array();
 
- 					    $t = $this->transfer->find_all("1=1");
 
- 					    foreach ($t as $v)
 
- 		   		        {
 
- 						    $zw[$v['id']] = $v['title'];
 
- 					    }
 
- 					    if($val['rk'] != '' && count($rk) > 0)
 
- 					    {
 
- 							for($i=0;$i<count($rk);$i++)
 
- 		       		        {
 
- 							    if(!isset($rktime[$i]))
 
- 							    {
 
- 									$list .= $zw[$cz[$i]];
 
- 							    }
 
- 							    else
 
- 							    {
 
- 					   		        $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
 
- 							    }
 
- 							}
 
- 						}
 
- 						$outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
 
- 					}
 
- 				}
 
- 				else
 
- 				{
 
- 						$systemwigsout = $this->systemwigsout->find_all("number = '".$fullordersmt['number']."'");
 
- 						$outread = array();
 
- 						if($systemwigsout)
 
- 						{
 
- 		    				foreach ($systemwigsout as $v) 
 
- 		    				{
 
- 								if($v['czwarehouse'] == 37)
 
- 								{
 
- 									$outread[] = '华荣厂';
 
- 								}
 
- 								else if($v['czwarehouse'] == 0)
 
- 								{
 
- 									$outread[] = '龙盈厂';
 
- 								}
 
- 			    				$cz = explode('|',trim($v['cz'],'|'));
 
- 			    				$cztime = explode('|',trim($v['cztime'],'|'));
 
- 			    				$zw = $this->transfer->get_list();
 
- 			    				if($v['cz'] != '' && count($cz) > 0)
 
- 			    				{
 
- 			    					for($i=0;$i<count($cz);$i++)
 
- 		            				{
 
- 				    					if(!isset($cztime[$i]))
 
- 					    				{
 
- 					    					$outread[] = $zw[$cz[$i]].' -> ';
 
- 					    				}
 
- 					    				else
 
- 					   				 {
 
- 					       				 $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -> ';
 
- 					    				}
 
- 				    				}
 
- 									$outread[] = '<br>';
 
- 			    				}
 
- 		    				}
 
- 						}
 
- 				}
 
- 		$this->data['systemwigsout'] = $outread;
 
- 		$this->data['user'] = $user;
 
- 		$this->_Template('fullordersmt_readonly',$this->data);
 
- 	}
 
- 	//浏览列表
 
- 	public function _readlist()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$warehouse = $this->input->post('warehouse',true);
 
- 			$express = $this->input->post('express',true);
 
- 			$state = $this->input->post('state',true);
 
- 			$print = $this->input->post('print',true);
 
- 			$libraryconfirm = $this->input->post('libraryconfirm',true);
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$client = $this->input->post('name',true);
 
- 			$email = $this->input->post('email',true);
 
- 			$number = $this->input->post('number',true);
 
- 			$waybill = $this->input->post('waybill',true);
 
- 			$timetk = $this->input->post('timetk',true);
 
- 			$timetj = $this->input->post('timetj',true);	
 
- 			$timetk = strtotime($timetk);
 
- 			$timetj = strtotime($timetj);
 
- 			$where = "mergeid = 0";
 
- 			if($warehouse)
 
-             {
 
-                 $where  .= " and type = '$warehouse'";
 
-             }
 
- 			if($express)
 
-             {
 
-                 $where  .= " and express = '$express'";
 
-             }
 
- 			if($state)
 
-             {
 
- 				$where  .= " and state = '$state'";
 
-             }
 
- 			if($print)
 
-             {
 
- 				$where  .= " and print = '$print'";
 
-             }
 
- 			if($libraryconfirm)
 
-             {
 
- 				$where  .= " and libraryconfirm = '$libraryconfirm'";
 
-             }
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($client)
 
-             {
 
-                 $where  .= " and client like '%$client%'";
 
-             }
 
- 			if($email)
 
-             {
 
-                 $where  .= " and email = '$email'";
 
-             }
 
- 			if($number)
 
-             {
 
-                 $where  .= " and number = '$number'";
 
-             }
 
- 			if($waybill)
 
-             {
 
-                 $where  .= " and waybill = '$waybill'";
 
-             }
 
- 			if($timetk && $timetj)
 
-             {
 
- 				$timetj = $timetj+24*3600;
 
-                 $where  .= " and dtime > '$timetk' and dtime < '$timetj'";
 
-             }
 
-             //数据排序
 
-             $order_str = "numberpx desc";
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             //取得信息列表
 
-             $info_list = $this->fullordersmt->find_all($where,'id,type,orderinfo,number,client,state,buytime,express,waybill,print,library,orderremarks',$order_str,$start,$perpage);
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$ud = $this->fullordersmt->read($value['id']);
 
- 				$warehouse = $this->warehouse->read($value['type']);
 
- 				$info_list[$key]['type'] = $warehouse['title'];
 
- 				$typeclass = $this->typeclass->read($value['state']);
 
- 				$info_list[$key]['state'] = $typeclass['spare'];
 
- 				if($ud['source'] == 1) //线下单用订单时间,其他用付款时间
 
- 				{
 
- 					$info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$ud['dtime']).'</p><p>'.date('H:i:s',$ud['dtime']).'</p>';
 
- 				}
 
- 				else
 
- 				{
 
- 				    $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']).'</p><p>'.date('H:i:s',$value['buytime']).'</p>';
 
- 				}
 
- 				$express = $this->express->read($value['express']);
 
- 				$info_list[$key]['express'] = $express['servicename'];
 
- 				if($value['print'] == 1)
 
- 				{
 
- 					$info_list[$key]['print'] = "不可打印";
 
- 				}
 
- 				else if($value['print'] == 2)
 
- 				{
 
- 					$info_list[$key]['print'] = "未打印";
 
- 				}
 
- 				else if($value['print'] == 3)
 
- 				{
 
- 					$info_list[$key]['print'] = '<p>'.date('Y-m-d',$ud['printtime']).'</p><p>'.date('H:i:s',$ud['printtime']).'</p>';
 
- 				}
 
- 				if($value['library'] == 1)
 
- 				{
 
- 					$info_list[$key]['library'] = "未出库";
 
- 				}
 
- 				else if($value['library'] == 2)
 
- 				{
 
- 					$info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['librarytime']).'</p><p>'.date('H:i:s',$ud['librarytime']).'</p>';
 
- 				}
 
- 				else if($value['library'] == 3)
 
- 				{
 
- 					$info_list[$key]['library'] = "已退库";
 
- 				}
 
-             }
 
- 			$total = $this->fullordersmt->find_count($where);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$this->_Template('fullordersmt_readlist',$this->data);
 
- 	}
 
- 	//删除
 
- 	public function _del()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['s']))  
 
- 		{
 
-             $id_arr = $this->input->post('s');
 
-             $id_arr =  explode(',',$id_arr);
 
-             if(!$id_arr)
 
-             {
 
-                 echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
 
-             }
 
-             //循环删除记录
 
-             foreach ($id_arr as $v) 
 
- 		    {
 
-                 $this->fullordersmt->remove($v);
 
-             }
 
-             echo json_encode(array('del'=>$id_arr,'msg'=>'删除记录成功!','success'=>true));
 
- 		}
 
-     }
 
- 	//查找商品价格
 
- 	public function _price()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['data']))  
 
- 		{
 
-             $data = $this->input->post('data');
 
-             $data =  explode('-',$data);
 
- 			$number = '';$num = count($data);
 
-             //循环删除记录
 
-             for($i=0;$i<$num-1;$i++)
 
- 		    {
 
- 				if($data[$i] != 0)
 
- 				{
 
- 				    $number=$number.$data[$i];
 
- 					if($i == 2)
 
- 				    {
 
- 					    $number=$number.$data[$num-1];
 
- 				    }
 
- 				}
 
-             }
 
- 			$list = $this->productdescribe->get_number($number);
 
- 			if($list)
 
- 			{
 
- 				echo json_encode(array('msg'=>($list),'n'=>$data[$num-1],'number'=>$number,'success'=>true));
 
- 			}
 
- 			else
 
- 			{
 
- 				$list = array('purchase'=>0,'cost'=>0,'salesprice'=>0);
 
- 				//echo json_encode(array('msg'=>'此信息没有配置价格!','n'=>$data[$num-1],'success'=>false));exit;
 
- 				echo json_encode(array('msg'=>($list),'n'=>$data[$num-1],'number'=>$number,'success'=>true));exit;
 
- 			}
 
- 		}
 
-     }
 
- 	
 
- 	public function _customs()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['e']))  
 
- 		{
 
- 			$e = $this->input->post('e');//快递信息
 
- 			$c = $this->input->post('c');//国家信息
 
-             $data = $this->customs->find_all('express = "'.$e.'" and country = "'.$c.'"');
 
- 			$list = $this->productdescription->find_all('express = "'.$e.'" and country = "'.$c.'"');
 
- 			$rows = array();
 
- 			foreach ($data as $key=>$value) 
 
- 		    {
 
- 				$detailed = explode('|',trim($value['detailed'],'|'));
 
- 				//此处未对比重量选择价值,暂直接选择第一条海关价值
 
- 				$detailed = $this->detailed->read($detailed[0]);
 
- 				$money = $detailed['customsval'];//找到海关价值
 
- 			}
 
- 			foreach ($list as $key=>$value) 
 
- 		    {
 
- 				$description = $this->typeclass->read($value['description']);
 
- 				$list[$key]['title'] = $description['title'];//产品描述名称
 
- 				
 
- 			}
 
- 			if(!$data && !$list)
 
- 			{
 
- 				echo json_encode(array('msg'=>'无此快递配置信息!','success'=>false));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				//$list-title -description 取值
 
- 				echo json_encode(array('money'=>sprintf("%.2f",$money),'msg'=>$list,'success'=>true));
 
- 			}
 
- 		}
 
-     }
 
- 	public function _express()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['e']))  
 
- 		{
 
- 			$e = $this->input->post('e');//快递信息
 
- 			$c = $this->input->post('c');//国家信息
 
-             $data = $this->logistics->find_all('express = "'.$e.'" and country = "'.$c.'"');
 
- 			if(!$data)
 
- 			{
 
- 				echo json_encode(array('success'=>false));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				echo json_encode(array('money'=>sprintf("%.2f",$data[0]['firstmoney']),'success'=>true));
 
- 			}
 
- 		}
 
-     }
 
- 	public function _hl()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['cy']))  
 
- 		{
 
- 			$hl = 0;
 
- 			$cy = $this->input->post('cy');//币种ID
 
- 			$cy = $this->typeclass->read($cy);
 
- 			$gethl = $this->hl->get_hl();
 
- 			foreach ($gethl as $v) 
 
- 		    {
 
- 				$code = str_replace(" ","",$v['code']);
 
- 				if($code == $cy['title'])
 
- 				{
 
- 					$hl = $v['refePrice']/100;
 
- 				}
 
- 				
 
- 			}
 
- 			echo json_encode(array('msg'=>$hl,'success'=>true));
 
- 		}
 
-     }
 
- 	public function _operation()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['type']))  
 
- 		{
 
- 			$type = $this->input->post('type');
 
- 			$id = $this->input->post('id');
 
- 			$msg = $this->input->post('msg');
 
- 			if($type == 1)//禁止发货
 
- 			{
 
- 				$d = $this->fullordersmt->read($id);
 
- 				if($d['library'] != 1)
 
- 				{
 
- 					echo json_encode(array('msg'=>'操作失败,订单非未出库状态!','success'=>false));exit;
 
- 				}
 
- 				if($msg == "")
 
- 				{
 
- 					echo json_encode(array('msg'=>'必须填写禁止原因!','success'=>false));exit;
 
- 				}
 
- 				if($d['print'] < 3)
 
- 				{
 
- 					$a = "订单未打印,";
 
- 				}
 
- 				else
 
- 				{
 
- 					$a = "";
 
- 				}
 
- 				if($this->fullordersmt->save(array('libraryconfirm'=>1,'librarynot'=>$a.$msg),$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'操作成功','l'=>1,'d'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            	    	echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			if($type == 6)//允许发货
 
- 			{
 
- 				$d = $this->fullordersmt->read($id);
 
- 				if($d['library'] > 1)
 
- 				{
 
- 					echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
 
- 				}
 
- 				if($d['print'] < 3)
 
- 				{
 
- 					$a = "订单未打印,";
 
- 				}
 
- 				else
 
- 				{
 
- 					$a = "";
 
- 				}
 
- 				if($this->fullordersmt->save(array('libraryconfirm'=>2,'librarynot'=>$a.$msg),$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'操作成功','l'=>1,'d'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            	    	echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			if($type == 7)//禁止打印
 
- 			{
 
- 				$d = $this->fullordersmt->read($id);
 
- 				if($d['printtime'] != 0)
 
- 				{
 
- 					echo json_encode(array('msg'=>'订单已打印,操作失败','success'=>false));exit;
 
- 				}
 
- 				if($d['library'] > 1)
 
- 				{
 
- 					echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
 
- 				}
 
- 				if($d['print'] == 3)
 
- 				{
 
- 					echo json_encode(array('msg'=>'操作失败,订单已打印!','success'=>false));exit;
 
- 				}
 
- 				if($d['print'] < 3)
 
- 				{
 
- 					$a = "订单未打印,";
 
- 				}
 
- 				else
 
- 				{
 
- 					$a = "";
 
- 				}
 
- 				if($this->fullordersmt->save(array('print'=>1),$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            	    	echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			if($type == 8)//允许打印
 
- 			{
 
- 				$d = $this->fullordersmt->read($id);
 
- 				/**
 
- 				if($d['printtime'] != 0)
 
- 				{
 
- 					echo json_encode(array('msg'=>'订单已打印,操作失败','success'=>false));exit;
 
- 				}
 
- 				**/
 
- 				if($d['library'] > 1)
 
- 				{
 
- 					echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
 
- 				}
 
- 				if($d['print'] < 3)
 
- 				{
 
- 					$a = "订单未打印,";
 
- 				}
 
- 				else
 
- 				{
 
- 					$a = "";
 
- 				}
 
- 				if($d['printtime'] == '0')
 
- 				{
 
- 					$bcprint = 2;
 
- 				}
 
- 				else
 
- 				{
 
- 					$bcprint = 3;
 
- 				}
 
- 				if($this->fullordersmt->save(array('print'=>$bcprint,'failed'=>'','librarynot'=>$a.$d['librarynot']),$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            	    	echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			if($type == 9)//关闭
 
- 			{
 
- 				if($this->fullordersmt->save(array('failed'=>''),$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            	    	echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			if($type == 10)//允许出库
 
- 			{
 
- 				if($this->fullordersmt->save(array('failed'=>'','libraryconfirm'=>2),$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            	    	echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			if($type == 2)//填写运单、修改运单
 
- 			{
 
- 				$d = $this->fullordersmt->read($id);
 
- 				if($d['source'] == 1)
 
- 				{
 
- 					$this->fullordersmt->save(array('waybill'=>$msg,'state'=>216,'dlz'=>3),$id);
 
- 					echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
 
- 				}
 
- 				$ex = $this->express->read($d['express']);
 
- 				$shop = $this->shop->read($d['shop']);
 
- 				if($d['express'] == 0)
 
- 				{
 
- 					echo json_encode(array('msg'=>'操作失败,未选择物流方式!','success'=>false));exit;
 
- 				}
 
- 				if($d['library'] == 3 || ($d['print'] == 3 && $d['libraryconfirm'] == 1))
 
- 				{
 
- 					echo json_encode(array('msg'=>'操作失败,不允许填写运单号!','success'=>false));exit;
 
- 				}
 
- 				if($d['dlz'] == 1 || $d['dlz'] == 2)//如果已经声明过需要操作修改声明
 
- 				{
 
- 					$obtain = $this->apismt->get_obtain($d['orderinfo'],$shop['code']);//修改声明先查询之前物流信息
 
- 					if(isset($obtain['logistics_no']))
 
- 					{
 
- 					    $result = $this->apismt->get_editout($obtain['logistics_no'],$msg,'all',$d['orderinfo'],$obtain['service_name'],$ex['aecode'],$shop['code']);
 
- 					}
 
- 					if(isset($result['result_success']) && $result['result_success'] == 1)
 
- 					{
 
- 						$this->fullordersmt->save(array('waybill'=>$msg),$id);
 
- 						/** 合并信息处理开始-修改声明 **/
 
- 						if($d['merge'] != '0')
 
- 						{
 
- 							$hdata = $this->fullordersmt->find_all("merge = '".$d['merge']."' and id != '".$d['id']."' and dlz = '0' and source != 1");$i=0;
 
- 							foreach ($hdata as $v) 
 
- 							{
 
- 								$obtain = $this->apismt->get_obtain($v['orderinfo'],$shop['code']);//修改声明先查询之前物流信息
 
- 								if(isset($obtain['logistics_no']))
 
- 								{
 
- 					    			$result = $this->apismt->get_editout($obtain['logistics_no'],$msg,'all',$v['orderinfo'],$obtain['service_name'],$ex['aecode'],$shop['code']);
 
- 								}
 
- 					            if(isset($result['result_success']) && $result['result_success'] == 1)
 
- 					            {
 
- 									 $this->fullordersmt->save(array('waybill'=>$msg),$v['id']);
 
- 								}
 
- 								else
 
- 								{
 
- 									 $this->fullordersmt->save(array('waybill'=>$msg,'dlz'=>4),$v['id']);
 
- 								}
 
- 								$i++;
 
- 								if($i > 10)
 
- 								{
 
- 									break;
 
- 								}
 
- 							}
 
- 						}
 
- 						/** 合并信息处理结束开始 **/
 
- 						echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
 
- 					}
 
- 					else
 
- 					{
 
- 						$this->fullordersmt->save(array('waybill'=>$msg,'dlz'=>4),$id);
 
- 						echo json_encode(array('msg'=>'修改声明失败,请重试','xq'=>$obtain,'success'=>false));exit;
 
- 					}
 
- 				}
 
- 				else if($d['dlz'] == '0')//未发货声明状态
 
- 				{
 
- 					$result_t = $this->apismt->get_out($msg,'all',$d['orderinfo'],$ex['aecode'],$shop['code']);
 
- 					if(isset($result_t['result']))
 
- 					{
 
- 						$result = $result_t['result'];
 
- 						if(isset($result['success']) && $result['success'] == "true"){
 
- 							$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>1),$id);
 
- 							/** 合并信息处理开始-发货声明 **/
 
- 							if($d['merge'] != '0')
 
- 							{
 
- 								$hdata = $this->fullordersmt->find_all("merge = '".$d['merge']."' and id != '".$d['id']."' and dlz = '0' and source != 1");$i=0;
 
- 								foreach ($hdata as $v) 
 
- 								{
 
- 									$result_t = $this->apismt->get_out($msg,'all',$v['orderinfo'],$ex['aecode'],$shop['code']);
 
- 									if(isset($result_t['result'])){
 
- 										$result = $result_t['result'];
 
- 										if(isset($result['success']) && $result['success'] == "true")
 
- 										{
 
- 											$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>1),$v['id']);
 
- 										}
 
- 										else
 
- 										{
 
- 											$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>2),$v['id']);
 
- 										}
 
- 									}else{
 
- 										if(isset($d['result_success']) && $d['result_success'] == "true")
 
- 										{
 
- 											$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>1),$v['id']);
 
- 										}
 
- 										else
 
- 										{
 
- 											$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>2),$v['id']);
 
- 										}
 
- 									}
 
- 									
 
- 									
 
- 									$i++;
 
- 									if($i > 10)
 
- 									{
 
- 										break;
 
- 									}
 
- 								}
 
- 							}
 
- 							/** 合并信息处理结束开始 **/
 
- 							echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
 
- 						}
 
- 						
 
- 					}
 
- 					else
 
- 					{
 
- 						if(isset($result_t['result_success']) && $result_t['result_success'] == "true"){
 
- 							$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>1),$id);
 
- 							/** 合并信息处理开始-发货声明 **/
 
- 							if($d['merge'] != '0')
 
- 							{
 
- 								$hdata = $this->fullordersmt->find_all("merge = '".$d['merge']."' and id != '".$d['id']."' and dlz = '0' and source != 1");$i=0;
 
- 								foreach ($hdata as $v) 
 
- 								{
 
- 									$result_t = $this->apismt->get_out($msg,'all',$v['orderinfo'],$ex['aecode'],$shop['code']);
 
- 									
 
- 									if(isset($d['result_success']) && $d['result_success'] == "true")
 
- 									{
 
- 										$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>1),$v['id']);
 
- 									}
 
- 									else
 
- 									{
 
- 										$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>2),$v['id']);
 
- 									}
 
- 									
 
- 									
 
- 									
 
- 									$i++;
 
- 									if($i > 10)
 
- 									{
 
- 										break;
 
- 									}
 
- 								}
 
- 							}
 
- 							echo json_encode(array('msg'=>'操作成功','success'=>false));exit;
 
- 						}else{
 
- 							$this->fullordersmt->save(array('waybill'=>$msg,'state'=>209,'dlz'=>2),$id);
 
- 							echo json_encode(array('msg'=>'声明失败:'.$result['error_msg'],'success'=>false));exit;
 
- 						}
 
- 						
 
- 					}
 
- 				}
 
- 				else
 
- 				{
 
- 					if($this->fullordersmt->save(array('waybill'=>$msg),$id))
 
- 					{
 
- 						echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
 
- 					}
 
- 					else
 
- 					{
 
- 						echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
-     }
 
- 	public function _merge()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		if(!$user)
 
- 		{
 
- 			echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['s']))  
 
- 		{
 
-             $id_arr = $this->input->post('s');
 
-             $id_arr =  explode(',',trim( $id_arr,','));
 
- 			$id_arr = array_reverse($id_arr);
 
-             if(!$id_arr)
 
-             {
 
-                 echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
 
-             }
 
- 			if(count($id_arr) < 2)
 
- 			{
 
- 				echo json_encode(array('msg'=>'缺少可合并单!','success'=>false));exit;
 
- 			}
 
- 			$post = array();
 
- 			$u = $this->fullordersmt->read($id_arr[0]);
 
- 			unset($id_arr[0]);
 
- 				$this->db->trans_begin();
 
- 				$hd = $this->fullordersmthb->get_orderinfo($u['orderinfo']);
 
- 				if(!$hd)
 
- 				{
 
- 					$this->fullordersmthb->insert($u);
 
- 				}
 
- 				//相加
 
- 				$post['shouldmoney'] = $u['shouldmoney'];//购买应收金额
 
- 				$post['budget'] = $u['budget'];//预估到帐金额
 
- 				$post['expressmoney']= $u['expressmoney'];//物流金额
 
- 				//$post['refundy'] = $u['refundy'];//补/退原额
 
- 				//$post['refundj'] = $u['refundj'];//补/退净额
 
- 				$post['cost']  = $u['cost'];//成本金额
 
- 				//$post['zzl']  = $u['zzl'];//总重量
 
- 				//$post['zsbjz']  = $u['zsbjz'];//总申报价值
 
- 				$post['ts']  = $u['ts'];//条数
 
- 				$post['cost']  = $u['cost'];//成本金额
 
- 				//追加
 
- 				$post['rpaypal'] = $u['rpaypal'];//补/退交易号
 
- 				$post['rtext'] = $u['rtext'];//补/退原因
 
- 				$post['pay'] = $u['pay'];//付款方式
 
- 				$post['paypal'] = $u['paypal'];//交易号
 
- 				$post['clientremarks'] = $u['clientremarks'];//客户留言
 
- 				$post['product'] = $u['product'];//商品名称
 
- 				//$post['issku'] = $u['issku'];//sku
 
- 				//$post['orderremarks'] = $u['orderremarks'];//订单备注
 
- 				$post['shipremarks'] = $u['shipremarks'];//仓库品名
 
- 				//产品追加
 
- 				$post['fpdata'] = $u['fpdata'];//产品内容
 
- 				$post['whlabel'] = $u['whlabel'];//产品对应库存码
 
- 				
 
- 				$merge = $u['id'];
 
- 				$d = array($u['id']);$order = '';
 
- 				$zsl = 0;$zccsl = 0;
 
- 				foreach ($id_arr as $v) 
 
- 		        {
 
- 					$v = $this->fullordersmt->read($v);
 
- 					if($u['type'] != $v['type'])
 
- 					{
 
- 						echo json_encode(array('msg'=>'仓库不一致,无法合并!','success'=>false));exit;
 
- 					}
 
- 					if($v['shop'] = $u['shop'])
 
- 					{
 
- 						$hd = $this->fullordersmthb->get_orderinfo($v['orderinfo']);
 
- 						if(!$hd)
 
- 						{
 
- 							$this->fullordersmthb->insert($v);
 
- 						}
 
- 				        $post['shouldmoney'] += $v['shouldmoney'];//购买应收金额
 
- 				        $post['budget'] += $v['budget'];//预估到帐金额
 
- 				        $post['expressmoney'] += $v['expressmoney'];//物流金额
 
- 				        //$post['refundy'] += $v['refundy'];//补/退原额
 
- 				        //$post['refundj'] += $v['refundj'];//补/退净额
 
- 				        $post['cost'] += $v['cost'];//成本金额
 
- 				        //$post['zzl']  += $v['zzl'];//总重量
 
- 				        //$post['zsbjz']  += $v['zsbjz'];//总申报价值
 
- 				        $post['ts']  += $v['ts'];//条数
 
- 						
 
- 						//$post['rpaypal'] .= $v['rpaypal'];//补/退交易号
 
- 						//$post['rtext'] .= $v['rtext'];//补/退原因
 
- 						//$post['pay'] .= (stripos($post['pay'],$v['pay']) !== false)?'':';'.$v['pay'];//付款方式
 
- 						//$post['paypal'] .= $v['paypal'];//交易号
 
- 						$post['clientremarks'] .= $v['clientremarks'];//客户留言
 
- 						$post['product'] .= $v['product'];//商品名称
 
- 						//$post['issku'] .= $v['issku'];//sku
 
- 						//$post['orderremarks'] .= $v['orderremarks'];//订单备注
 
- 						$post['shipremarks'] .= $v['shipremarks'];//仓库品名
 
- 						
 
- 						$post['fpdata'] .= $v['fpdata'];//产品内容
 
- 						$post['whlabel'] .= ltrim($v['whlabel'],'|');//产品对应库存码
 
- 						
 
- 					    $d[] = $v['id'];
 
- 						$order .= $v['orderinfo'].'('.$v['number'].')、';
 
- 						
 
- 						$wl = $this->whlabel->find_all("zd = '".$v['number']."'");//查找是否有占用库存情况
 
- 						$i = 0;
 
- 						if($wl)//如果有那么清除所有占用
 
- 						{
 
- 							foreach ($wl as $val)
 
- 			   			    {
 
- 								if($val['sku'] == 'Preset' && $val['state'] == '9')
 
- 								{
 
- 									$this->whlabel->remove($val['id']);//删除预设
 
- 									$i++;
 
- 								}
 
- 								else
 
- 								{
 
- 					    			$this->whlabel->save(array('zd'=>''),$val['id']);//专属
 
- 									$i++;
 
- 								}
 
- 							}
 
- 						}
 
- 						$zsl += count($wl);
 
- 						$zccsl += $i;
 
- 					    $this->fullordersmt->save(array('merge'=>$u['id'],'mergeid'=>1,'orderremarks'=>' 《合并信息》:'.'已合并到'.$u['orderinfo'].'('.$u['number'].')中; '.$v['orderremarks'],'shouldmoney'=>0,'print'=>1,'libraryconfirm'=>1,'shouldmoney'=>0,'budget'=>0,'whlabel'=>'','fpdata'=>'','shipremarks'=>''),$v['id']);
 
- 					}
 
- 				}
 
- 				//计算出单条价值
 
- 				/**
 
- 				if($post['zsbjz'] < 1 || $post['ts'] < 1)
 
- 				{
 
- 					//$post['dtsbjz'] = 0;
 
- 				}
 
- 				else
 
- 				{
 
- 				    //$post['dtsbjz']  = $post['zsbjz']/$post['ts'];//单条申报价
 
- 				}
 
- 				**/
 
- 				$post['orderremarks'] = '  《合并信息》:由'.rtrim($order,'、').'合并而来; '.$u['orderremarks'];;
 
- 				
 
- 				$post['merge'] = $u['id'];
 
- 				
 
- 				//$post['mergeid'] = 1;
 
- 				
 
- 				//合并重复项
 
- 				$hbcfw = explode('|',trim($post['whlabel'],'|'));
 
- 				$hbcff = explode(';',trim($post['fpdata'],';'));
 
- 				$c = 0;
 
- 				$hbw = array();
 
- 				$hbf = array();
 
- 				for($i=0;$i<count($hbcfw);$i++)
 
- 				{
 
- 					$w = explode('-',$hbcfw[$i]);
 
- 					$f = explode('|',$hbcff[$i]);
 
- 					if(isset($w[2]))
 
- 					{
 
- 					   $w2 = ($w[2]==0)?0:'';
 
- 					}
 
- 					else
 
- 					{
 
- 						$w2 = '';
 
- 					}
 
- 					if(!isset($hbw[$w[0].$w2]))
 
- 					{
 
- 						$hbw[$w[0].$w2] = $hbcfw[$i];
 
- 						$hbf[$w[0].$w2] = $hbcff[$i];
 
- 					}
 
- 					else
 
- 					{
 
- 						$c++;
 
- 						$cw = explode('-',$hbw[$w[0].$w2]);
 
- 						$cf = explode('|',$hbf[$w[0].$w2]);
 
- 						if($cw[2] != 0 && $w[2] != 0)
 
- 						{
 
- 							$cf[2] += $f[2];
 
- 							$cf[9] .= '~'.$f[9];
 
- 						    $hbf[$w[0].$w2] = implode("|",$cf);
 
- 						    $cw[1] += $f[2];
 
- 							$cw[2] .= '~'.$f[9];
 
- 						    $hbw[$w[0].$w2] = implode("-",$cw);
 
- 						}
 
- 						else if($cw[2] == 0 && $w[2] == 0)
 
- 						{
 
- 						    $cf[2] += $f[2];
 
- 						    $hbf[$w[0].$w2] = implode("|",$cf);
 
- 						    $cw[1] += $f[2];
 
- 						    $hbw[$w[0].$w2] = implode("-",$cw);
 
- 						}
 
- 						else
 
- 						{
 
- 							$hbw[] = $hbcfw[$i];
 
- 						    $hbf[] = $hbcff[$i];
 
- 						}
 
- 					}
 
- 				}
 
- 				if($c > 0)
 
- 				{
 
- 					$post['fpdata'] = implode(";",$hbf).';';
 
- 					$post['whlabel'] = '|'.implode("|",$hbw).'|';
 
- 				}
 
- 				//合并重复项结束
 
- 							
 
- 				$this->fullordersmt->save($post,$u['id']);
 
- 				if ($this->db->trans_status() === FALSE)
 
- 				{
 
- 				    $this->db->trans_commit();
 
- 				     echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
- 				}
 
- 				else
 
- 				{
 
- 				    $this->db->trans_commit();
 
- 					echo json_encode(array('msg'=>'操作成功','d'=>($d),'b'=>$u['id'],'success'=>true));
 
- 				}
 
- 		}
 
- 		
 
- 	}
 
- 	
 
- 	public function _split()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		if($user)
 
- 		{
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))  
 
- 		{
 
- 			$id = $this->input->post('id');
 
- 		    $data = $this->fullordersmt->find_all("merge = '$id' and print !=3 and library =1 and (".rtrim($fgshop,'or').")");
 
- 			$datanum = $this->fullordersmt->find_count("merge = '$id' and (".rtrim($fgshop,'or').")");
 
- 			if($data && count($data) == $datanum)
 
- 			{
 
- 				foreach ($data as $k=>$v) 
 
- 		        {
 
- 					unset($data[$k]['id']);
 
- 					unset($data[$k]['express']);
 
- 					unset($data[$k]['printtype']);
 
- 					unset($data[$k]['review']);
 
- 					unset($data[$k]['reviewtime']);
 
- 					$t = $this->fullordersmt->get_orderinfo($v['orderinfo']);
 
- 					$this->fullordersmt->save($v,$t['id']);
 
- 				}
 
- 				echo json_encode(array('msg'=>'拆分成功!','success'=>true));
 
- 			}
 
- 			else
 
- 			{
 
- 				 echo json_encode(array('msg'=>'有订单不符合条件,请重试','success'=>false));exit;
 
- 			}
 
- 		}
 
- 	}
 
- 	//评价管理
 
- 	public function _evaluate()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		if($user)
 
- 		{
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))  
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$shop = $this->input->post('shop',true);
 
- 			$where = "1=1 and evaluate = 0 and (".rtrim($fgshop,'or').")";
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
-             //数据排序
 
-             $order_str = "id desc";
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             //取得信息列表
 
-             $info_list = $this->fullordersmt->find_all($where,'id,shop,orderinfo,number,operation',$order_str,$start,$perpage);
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				$info_list[$key]['operation'] = "评价";
 
-             }
 
- 		    $total = $this->fullordersmt->find_count($where);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$this->_Template('fullordersmt_evaluate',$this->data);
 
- 	}
 
- 	
 
- 	//订单消息
 
- 	public function _state()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		if($user)
 
- 		{
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))  
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$timetk = $this->input->post('timetk',true);
 
- 			$timetj = $this->input->post('timetj',true);
 
- 			$shop = $this->input->post('shop',true);
 
- 			$source = $this->input->post('source',true);
 
- 			$state = $this->input->post('state',true);
 
- 			$review = $this->input->post('review',true);
 
- 			$expressstate = $this->input->post('expressstate',true);
 
- 			$express = $this->input->post('express',true);
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$user = $this->input->post('user',true);
 
- 			$name = $this->input->post('name',true);
 
- 			$waybill = $this->input->post('waybill',true);
 
- 			$timetk = strtotime($timetk);
 
- 			$timetj = strtotime($timetj);
 
- 			$where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
 
- 			if($timetk && $timetj)
 
-             {
 
-                 $where  .= " and dtime > '$timetk' and dtime < '$timetj'";
 
-             }
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
- 			if($source)
 
-             {
 
-                 $where  .= " and source = '$source'";
 
-             }
 
- 			if($state)
 
-             {
 
- 				$where  .= " and state = '$state'";
 
-             }
 
- 			if($review)
 
-             {
 
-                 $where  .= " and review = '$review'";
 
-             }
 
- 			if($expressstate != "")
 
-             {
 
-                 $where  .= " and expressstate = '$expressstate'";
 
-             }
 
- 			if($express)
 
-             {
 
-                 $where  .= " and express = '$express'";
 
-             }
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($user)
 
-             {
 
-                 $where  .= " and user = '$user'";
 
-             }
 
- 			if($name)
 
-             {
 
-                 $where  .= " and name = '$name'";
 
-             }
 
- 			if($waybill)
 
-             {
 
-                 $where  .= " and waybill = '$waybill'";
 
-             }
 
-             //数据排序
 
-             $order_str = "id desc";
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             //取得信息列表
 
-             $info_list = $this->fullordersmt->find_all($where,'id,shop,user,orderinfo,number,country,state,library,librarytime,exstate,express,waybill,content,exstateerror',$order_str,$start,$perpage);
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value)
 
- 		    {
 
- 				$ud = $this->fullordersmt->read($value['id']);
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				$info_list[$key]['user'] = $shop['shopuser'];
 
- 				$country = $this->country->read($value['country']);
 
- 				$info_list[$key]['country'] = $country['name'];
 
- 				$state = $this->typeclass->read($value['state']);
 
- 				if($ud['source'] != '1')
 
- 				{
 
- 				    $info_list[$key]['state'] = "<a href='https://trade.aliexpress.com/order_detail.htm?orderId=".$value['orderinfo']."' target='_blank'>".$state['title']."</a>";
 
- 				}
 
- 				else
 
- 				{
 
- 					 $info_list[$key]['state'] = $state['title'];
 
- 				}
 
- 				if($value['library'] == 1)
 
- 				{
 
- 					$info_list[$key]['library'] = "未出库";
 
- 				}
 
- 				else if($value['library'] == 2)
 
- 				{
 
- 					$info_list[$key]['library'] = "已出库";
 
- 				}
 
- 				else if($value['library'] == 3)
 
- 				{
 
- 					$info_list[$key]['library'] = "已退库";
 
- 				}
 
- 				if($value['librarytime'] == '0')
 
- 				{
 
- 					$info_list[$key]['librarytime'] = '无';
 
- 				}
 
- 				else
 
- 				{
 
- 					$info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
 
- 				}
 
- 				if($value['exstate'] == 0)
 
- 				{
 
- 					$info_list[$key]['exstate'] = "未取件";
 
- 				}
 
- 				else if($value['exstate'] == 1)
 
- 				{
 
- 					$info_list[$key]['exstate'] = "已揽收";
 
- 				}
 
- 				else if($value['exstate'] == 2)
 
- 				{
 
- 					$info_list[$key]['exstate'] = "在途中";
 
- 				}
 
- 				else if($value['exstate'] == 3)
 
- 				{
 
- 					$info_list[$key]['exstate'] = "派送中";
 
- 				}
 
- 				else if($value['exstate'] == 4)
 
- 				{
 
- 					$info_list[$key]['exstate'] = "签收";
 
- 				}
 
- 				if($value['express'])
 
- 				{
 
- 				    $express = $this->express->read($value['express']);
 
- 				    $info_list[$key]['express'] = $express['servicename'];
 
- 				}
 
- 				else
 
- 				{
 
- 					$info_list[$key]['express'] = '';
 
- 				}
 
-             }
 
- 		    $total = $this->fullordersmt->find_count($where);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
 
- 		$this->data['wlshop'] = $wlshop;
 
- 		$this->data['express'] = $this->express->find_all();
 
- 		$this->_Template('fullordersmt_state',$this->data);
 
- 	}
 
- 	
 
- 	//审核订单
 
- 	public function _review()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		$fgshop = "";
 
- 		if($user)
 
- 		{
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 			}
 
- 			$fgshop = " and (".rtrim($fgshop,'or').")";
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))  
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$source = $this->input->post('source',true);
 
- 			$warehouse = $this->input->post('warehouse',true);
 
- 			$express = $this->input->post('express',true);
 
- 			$user = $this->input->post('user',true);
 
- 			$shop = $this->input->post('shop',true);
 
- 			$review = $this->input->post('review',true);
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$number = $this->input->post('number',true);
 
- 			$timetk = $this->input->post('timetk',true);
 
- 			$timetj = $this->input->post('timetj',true);
 
- 			$timetk = strtotime($timetk);
 
- 			$timetj = strtotime($timetj);
 
- 			$where = "mergeid = 0".$fgshop;
 
- 			if($timetk && $timetj)
 
-             {
 
-                 $where  .= " and dtime > '$timetk' and dtime < '$timetj'";
 
-             }
 
- 			if($source)
 
-             {
 
-                 $where  .= " and source = '$source'";
 
-             }
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
- 			if($warehouse)
 
-             {
 
-                 $where  .= " and type = '$warehouse'";
 
-             }
 
- 			if($express)
 
-             {
 
-                 $where  .= " and express = '$express'";
 
-             }
 
- 			if($user)
 
-             {
 
-                 $where  .= " and user = '$user'";
 
-             }
 
- 			if($review)
 
-             {
 
-                 $where  .= " and review = '$review'";
 
-             }
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($number)
 
-             {
 
-                 $where  .= " and number = '$number'";
 
-             }
 
-             //数据排序
 
-             $order_str = "id desc";
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             //取得信息列表
 
-              $info_list = $this->fullordersmt->find_all($where,'id,shop,user,type,orderinfo,number,client,express,buytime,shouldmoney,review,currencytitle,library');
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$lr = $this->fullordersmt->read($value['id']);
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				$info_list[$key]['user'] = $shop['shopuser'];
 
- 				$warehouse = $this->warehouse->read($value['type']);
 
- 				$info_list[$key]['type'] = $warehouse['title'];
 
- 				$express = $this->express->read($value['express']);
 
- 				$info_list[$key]['express'] = $express['servicename'];
 
- 				$info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']).'</p><p>'.date('H:i:s',$value['buytime']).'</p>';
 
- 				if($value['review'] == 1)
 
- 				{
 
- 					$info_list[$key]['review'] = "未送审";
 
- 				}
 
- 				else if($value['review'] == 2)
 
- 				{
 
- 					$info_list[$key]['review'] = "待审核";
 
- 				}
 
- 				else if($value['review'] == 3)
 
- 				{
 
- 					$info_list[$key]['review'] = "不通过";
 
- 				}
 
- 				else if($value['review'] == 4)
 
- 				{
 
- 					$info_list[$key]['review'] = "取消重审";
 
- 				}
 
- 				else if($value['review'] == 5)
 
- 				{
 
- 					$info_list[$key]['review'] = "审核通过";
 
- 				}
 
- 				else if($value['review'] == 6)
 
- 				{
 
- 					$info_list[$key]['review'] = "自动通过";
 
- 				}
 
- 				if($value['review'] == 2)
 
- 				{
 
- 					$info_list[$key]['library'] = "<p><b class='focz' data-type='5' data-id='".$value['id']."'>审核通过</b></p><p><b class='focz' data-type='3' data-id='".$value['id']."'>不通过</b></p>";
 
- 				}
 
- 				else if($value['review'] == 3)
 
- 				{
 
- 					$info_list[$key]['library'] = "<p><b class='fullorderreview' data-type='5' data-id='".$value['id']."'>审核通过</b></p>";
 
- 				}
 
- 				else if($value['review'] == 5)
 
- 				{
 
- 					$info_list[$key]['library'] = "<p><b class='fullorderreview' data-type='3' data-id='".$value['id']."'>不通过</b></p>";
 
- 				}
 
- 				else
 
- 				{
 
- 					$info_list[$key]['library'] = "";
 
- 				}
 
- 				$info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$lr['currencytitle'];
 
- 				$lr['hl'] = $lr['hl']==0?6.71:$lr['hl'];
 
- 				$cost = $lr['cost']/$lr['hl'];
 
- 				$currencytitle = $lr['budget']-$lr['refundj']-$cost-$lr['expressmoney'];
 
- 				$info_list[$key]['currencytitle'] = sprintf("%.2f",$currencytitle).' '.$lr['currencytitle'];
 
-             }
 
- 		    $total = $this->fullordersmt->find_count($where);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$this->_Template('fullordersmt_review',$this->data);
 
- 	}
 
- 	
 
- 	//导出资金统计excel
 
- 	public function _fmexcel()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		if($user)
 
- 		{
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		if(isset($_GET['excel']))  
 
- 		{
 
- 			$timetk = $this->input->get('timetk',true);
 
- 			$timetj = $this->input->get('timetj',true);
 
- 			$shop = $this->input->get('shop',true);
 
- 			$source = $this->input->get('source',true);
 
- 			$state = $this->input->get('state',true);
 
- 			$type = $this->input->get('type',true);
 
- 			$orderinfo = $this->input->get('orderinfo',true);
 
- 			$user = $this->input->get('user',true);
 
- 			$name = $this->input->get('name',true);
 
- 			$timetk = strtotime($timetk);
 
- 			$timetj = strtotime($timetj);
 
- 			$where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
 
- 			if($timetk && $timetj)
 
-             {
 
-                 $where  .= " and buytime > '$timetk' and buytime < '$timetj'";
 
-             }
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
- 			if($source)
 
-             {
 
-                 $where  .= " and source = '$source'";
 
-             }
 
- 			if($state)
 
-             {
 
- 				if($state == 1)
 
- 				{
 
-                     $where  .= " and state = '$state'";
 
- 				}
 
-             }
 
- 			if($type)
 
-             {
 
-                 $where  .= " and type = '$type'";
 
-             }
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($user)
 
-             {
 
-                 $where  .= " and user = '$user'";
 
-             }
 
- 			if($name)
 
-             {
 
-                 $where  .= " and name = '$name'";
 
-             }
 
-             //取得信息列表
 
-             $info_list = $this->fullordersmt->find_all($where,'id,shop,user,number,orderinfo,client,country,dtime,ftime,express,waybill,shouldmoney,refund,currency,budget,fpdata,hl,currencytitle');
 
- 			 //格式化数据
 
- 			 $i = 1;$shouldmoney = 0;$refund = 0;$budget = 0;$currency = 0;$hl=1;
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$info_list[$key]['id'] = $i;
 
- 				
 
- 				if($value['currencytitle'] != "CNY")
 
- 				{
 
- 					$hl=$value['hl'];
 
- 				}
 
- 				$shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
 
- 				$budget=$budget+($value['budget']*$hl);
 
- 				$currency=$currency+(($value['shouldmoney']-$value['budget'])*$hl);
 
- 				$refund=$refund+($value['refund']*$hl);
 
- 				
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				$info_list[$key]['user'] = $shop['shopuser'];
 
- 				$info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
 
- 				$info_list[$key]['ftime'] = date('Y-m-d H:i:s',$value['ftime']);
 
- 				$country = $this->country->read($value['country']);
 
- 				$info_list[$key]['country'] = $country['name'];
 
- 				$express = $this->express->read($value['express']);
 
- 				$info_list[$key]['express'] = $express['servicename'];
 
- 				$info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$value['currencytitle'];
 
- 				$info_list[$key]['refund'] = $value['refund'].' '.$value['currencytitle'];
 
- 				$info_list[$key]['budget'] = $value['budget'].' '.$value['currencytitle'];
 
- 				$info_list[$key]['currency'] = sprintf("%.2f",$value['shouldmoney']-$value['budget']).' '.$value['currencytitle'];
 
- 				$fpdata = array();
 
- 				if(stripos($value['fpdata'],';') !== false)
 
- 				{
 
- 		   		    $fpdata = explode(';',rtrim($value['fpdata'],';'));
 
- 		            foreach ($fpdata as $ke=>$va)
 
- 		            {
 
- 			            $v = explode('|',rtrim($va,'|'));
 
- 					    $fpdata[$ke] = array($v[4],$v[5],$v[6],$v[5]*$v[6]);//内容,条数,数量,总条数
 
-                     }
 
- 				}
 
- 				$info_list[$key]['fpdata'] = $fpdata;
 
- 				$i++;
 
-             }
 
- 			$data = array($shouldmoney.' CNY',$refund.' CNY',$currency.' CNY',$budget.' CNY');
 
-             $title = "订单资金信息"; 
 
-             $titlename = "<table border=1>
 
-             <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
 
-             <tr>
 
-             <td>NO.</td>
 
-             <td>店铺</td>
 
-             <td>负责人</td>
 
-             <td>编号</td>
 
-             <td>订单号</td>
 
-             <td>客户姓名</td>
 
-             <td>国家</td>
 
-             <td>订单日期</td>
 
- 			<td>发货日期</td>
 
-             <td>快递公司</td>
 
-             <td>运单号</td>
 
-             <td>订单金额</td>
 
-             <td>退款金额</td>
 
-             <td>手续费</td>
 
-             <td>预估金额</td>
 
-             <td>
 
-             <table border=1>
 
-             <tr><td colspan='3' align='center'>订单产品信息</td></tr>
 
-             <tr>
 
-             <td>产品</td>
 
-             <td>条数</td>
 
-             <td>数量</td>
 
-             </tr>
 
-             </table>
 
-             </td>
 
- 			<td>总条数</td>
 
-             </tr>
 
-             </table>"; 
 
-             $filename = $title.".xls"; 
 
- 			$tail = "<tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td>合计:</td><td>".$data[0]."</td><td>".$data[1]."</td><td>".$data[2]."</td><td>".$data[3]."</td></tr>\n"; 
 
-             $this->excel->get_fz($info_list,$titlename,$filename,$tail);
 
- 	    }
 
- 	}
 
- 	//导出订单excel
 
- 	public function _fdexcel()
 
- 	{
 
- 		if(isset($_GET['excel']))  
 
- 		{
 
- 			$page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$timetk = $this->input->post('timetk',true);
 
- 			$timetj = $this->input->post('timetj',true);
 
- 			$shop = $this->input->post('shop',true);
 
- 			$source = $this->input->post('source',true);
 
- 			$state = $this->input->post('state',true);
 
- 			$review = $this->input->post('review',true);
 
- 			$express = $this->input->post('express',true);
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$user = $this->input->post('user',true);
 
- 			$name = $this->input->post('name',true);
 
- 			$waybill = $this->input->post('waybill',true);
 
- 			$timetk = strtotime($timetk);
 
- 			$timetj = strtotime($timetj);
 
- 			$where = "1=1 and mergeid = 0";
 
- 			if($timetk && $timetj)
 
-             {
 
-                 $where  .= " and buytime > '$timetk' and buytime < '$timetj'";
 
-             }
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
- 			if($source)
 
-             {
 
-                 $where  .= " and source = '$source'";
 
-             }
 
- 			if($state)
 
-             {
 
- 				$where  .= " and state = '$state'";
 
-             }
 
- 			if($review)
 
-             {
 
-                 $where  .= " and review = '$review'";
 
-             }
 
- 			if($express)
 
-             {
 
-                 $where  .= " and express = '$express'";
 
-             }
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($user)
 
-             {
 
-                 $where  .= " and user = '$user'";
 
-             }
 
- 			if($name)
 
-             {
 
-                 $where  .= " and name = '$name'";
 
-             }
 
- 			if($waybill)
 
-             {
 
-                 $where  .= " and waybill = '$waybill'";
 
-             }
 
-             //取得信息列表
 
-             $info_list = $this->fullordersmt->find_all($where,'id,shop,number,orderinfo,source,client,name,address,city,zipcode,province,country,phone,dtime,ftime,state,shouldmoney,express,waybill,orderremarks,clientremarks,fpdata,hl,currencytitle');
 
- 			 //格式化数据
 
- 			 $i = 1;$shouldmoney = 0;$hl=1;
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$info_list[$key]['id'] = $i;
 
- 				if($value['source'] == 1)
 
- 				{
 
- 					$info_list[$key]['source'] = "线下订单";
 
- 				}
 
- 				else if($value['source'] == 2)
 
- 				{
 
- 					$info_list[$key]['source'] = "PC订单";
 
- 				}
 
- 				else if($value['source'] == 3)
 
- 				{
 
- 					$info_list[$key]['source'] = "手机订单";
 
- 				}
 
- 				
 
- 				if($value['currencytitle'] != "CNY")
 
- 				{
 
- 					$hl=$value['hl'];
 
- 				}
 
- 				$shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
 
- 				
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				$info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
 
- 				$info_list[$key]['ftime'] = date('Y-m-d H:i:s',$value['ftime']);
 
- 				$state = $this->typeclass->read($value['state']);
 
- 				$info_list[$key]['state'] = $state['title'];
 
- 				$country = $this->country->read($value['country']);
 
- 				$info_list[$key]['country'] = $country['name'];
 
- 				$express = $this->express->read($value['express']);
 
- 				$info_list[$key]['express'] = $express['servicename'];
 
- 				$info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$value['currencytitle'];
 
- 				$fpdata = array();
 
- 				if(stripos($value['fpdata'],';') !== false)
 
- 				{
 
- 		   		    $fpdata = explode(';',rtrim($value['fpdata'],';'));
 
- 		            foreach ($fpdata as $ke=>$va)
 
- 		            {
 
- 			            $v = explode('|',rtrim($va,'|'));
 
- 					    $fpdata[$ke] = array($v[4],$v[5],$v[6],$v[5]*$v[6]);//内容,条数,数量,总条数
 
-                     }
 
- 				}
 
- 				$info_list[$key]['fpdata'] = $fpdata;
 
- 				$i++;
 
-             }
 
- 			$data = array($shouldmoney.' CNY');
 
-             $title = "订单信息表"; 
 
-             $titlename = "<table border=1>
 
-             <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
 
-             <tr>
 
-             <td>NO.</td>
 
-             <td>店铺</td>
 
-             <td>编号</td>
 
-             <td>订单号</td>
 
- 			<td>订单类型</td>
 
-             <td>客户姓名</td>
 
-             <td>收件人名称</td>
 
-             <td>收货人地址</td>
 
- 			<td>城市</td>
 
-             <td>邮编</td>
 
-             <td>州</td>
 
-             <td>国家</td>
 
-             <td>收件电话</td>
 
-             <td>订单日期</td>
 
-             <td>发货日期</td>
 
- 			<td>订单状态</td>
 
- 			<td>订单金额</td>
 
- 			<td>快递公司</td>
 
- 			<td>运单号</td>
 
- 			<td>订单备注</td>
 
- 			<td>客户备注</td>
 
-             <td>
 
-             <table border=1>
 
-             <tr><td colspan='3' align='center'>订单产品信息</td></tr>
 
-             <tr>
 
-             <td>产品</td>
 
-             <td>条数</td>
 
-             <td>数量</td>
 
-             </tr>
 
-             </table>
 
-             </td>
 
- 			<td>总条数</td>
 
-             </tr>
 
-             </table>"; 
 
-             $filename = $title.".xls"; 
 
- 			$tail = "<tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td>合计:</td><td>".$data[0]."</td></tr>\n"; 
 
-             $this->excel->get_fz($info_list,$titlename,$filename,$tail);
 
- 	    }
 
- 	}
 
- 	public function _black()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['bd']))  
 
- 		{
 
- 			$bd = $this->input->post('bd',true);
 
- 			$rows = $this->fullordersmt->read($bd);
 
- 			$post['shop'] = $rows['shop'];
 
- 			$post['source'] = 1;
 
- 			$post['name'] = $rows['client'];
 
- 			$post['email'] = $rows['email'];
 
- 			$post['phone'] = $rows['phone'];
 
- 			$post['country'] = $rows['country'];
 
- 			$post['money'] = $rows['shouldmoney'];
 
- 			$post['num'] = 1;
 
- 			$post['time'] = $rows['dtime'];
 
- 			$post['province'] = $rows['province'];
 
- 			$post['city'] = $rows['city'];
 
- 			$post['street'] = $rows['street'];
 
- 			$post['address'] = $rows['address'];
 
- 			$post['address2'] = $rows['address2'];
 
- 			$post['zipcode'] = $rows['zipcode'];
 
- 			$post['type'] = 2;
 
- 			if($this->customer->insert($post))
 
-         	{
 
- 				$this->fullordersmt->save(array('black'=>1),$bd);
 
-          		echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
 
-        	 	}
 
-        		else
 
-         	{
 
-            	    echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	}
 
- 		}
 
- 	}
 
- 	public function _ryf()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['bd']))  
 
- 		{
 
- 			$bd = $this->input->post('bd',true);
 
- 			$d = $this->fullordersmt->read($bd);
 
- 			if($d['state'] == 207 || $d['state'] == 207)//订单状态为等待发货或等待部分发货才可更改为允许发货
 
- 			{
 
- 			    if($d['print'] < 3)//打印状态为未打印
 
- 			    {
 
- 				    $print = 1;//未打印
 
- 				    $libraryconfirm = 1;//不允许出库
 
- 				    $a = "订单未打印,";
 
- 			    }
 
- 			    else//已打印订单
 
- 			    {
 
- 				    $libraryconfirm = 2;//允许出库
 
- 				    $a = "";
 
- 			    }
 
- 				if($this->fullordersmt->save(array('librarynot'=>$a,'libraryconfirm'=>$libraryconfirm,'print'=>$print),$bd))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            	       echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			if($this->fullordersmt->save(array('librarynot'=>$a,'libraryconfirm'=>$libraryconfirm,'print'=>$print),$bd))
 
-         	{
 
-          		echo json_encode(array('msg'=>'操作失败!订单未非发货状态','success'=>false));exit;
 
-        	 	}
 
-        		else
 
-         	{
 
-            	   echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
 
-         	}
 
- 		}
 
- 	}
 
- 	public function _fsstate()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['s']))  
 
- 		{
 
-             $id_arr = $this->input->post('s');
 
-             $id_arr =  explode(',',$id_arr);
 
-             if(!$id_arr)
 
-             {
 
-                 echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
 
-             }
 
-             foreach ($id_arr as $v) 
 
- 		    {
 
- 				$data = $this->fullordersmt->read($v);
 
- 				$warehouse = $this->warehouse->read($data['type']);
 
- 				$fs = $this->notice->get_ordertatus($data['state']);
 
- 				if($fs)
 
- 				{
 
- 					$ck = $this->_email($fs['content'],$data,$warehouse['company']);
 
- 					if($ck == 1)
 
- 					{
 
- 						$this->fullordersmt->save(array('fscontent'=>date('Y-m-d H:i:s',time()).'已发送:'.$fs['title'].' - '),$v);
 
- 					}
 
- 				}
 
-             }
 
- 			echo json_encode(array('msg'=>'发送完成!','success'=>true));exit;
 
- 		}
 
- 	}
 
- 	public function _power()
 
- 	{
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))  
 
- 		{
 
- 		    $id = $this->input->post('id',true);
 
- 			$fullorder = $this->fullordersmt->read($id);
 
- 			$express = $this->express->read($fullorder['express']);
 
- 			$warehouse = $this->warehouse->read($fullorder['type']);
 
- 			if(($warehouse['zd'] == '1' || stripos($fullorder['whlabel'],'z|') !== false) && $fullorder['library'] == '2')
 
- 			{
 
- 				echo json_encode(array('msg'=>'需要先退库释放库存后才可重置!','success'=>false));exit;
 
- 			}
 
- 			/**
 
- 			if($fullorder['print'] == '3' && isset($express['iscode']) && ($express['iscode'] == 'ARAMEX' || $express['iscode'] == 'TOLL' || $express['iscode'] == 'FEDEX'))
 
- 			{
 
- 			    $lj = $this->ali->get_lj($fullorder['number'],2,'订单修改');
 
- 			    if($lj != '1' && $lj != '订单不存在')
 
- 			    {
 
- 				     echo json_encode(array('msg'=>$lj,'success'=>false));exit;
 
- 			    }
 
- 			}
 
- 			**/
 
- 			$this->db->trans_begin();
 
- 			$this->fullordersmt->save(array('library'=>1,'librarytime'=>0,'libraryconfirm'=>2,'print'=>1,'printtime'=>0,'printnumber'=>0,'retreattime'=>0,'librarynot'=>'订单未打印,未审核或未通过','review'=>1,'reviewtime'=>0,'state'=>207,'waybill'=>'','waybill2'=>'','oldwaybill'=>'-'.date('Ymd',$fullorder['printtime']).'/'.$fullorder['waybill']),$id);
 
- 			if($fullorder['merge'] != '0')
 
- 			{
 
- 				$hdata = $this->fullordersmt->find_all("merge = '".$fullorder['merge']."' and id != '".$id."'");
 
- 				foreach ($hdata as $v) 
 
- 				{
 
- 					$this->fullordersmt->save(array('library'=>1,'librarytime'=>0,'libraryconfirm'=>2,'print'=>1,'printtime'=>0,'printnumber'=>0,'retreattime'=>0,'librarynot'=>'订单未打印,未审核或未通过','review'=>1,'reviewtime'=>0,'state'=>207,'waybill'=>'','waybill2'=>'','waybillid'=>'','oldwaybill'=>'-'.date('Ymd',$fullorder['printtime']).'/'.$fullorder['waybill'],'yhs'=>0,'failed'=>''),$v['id']);
 
- 				}
 
- 			}
 
- 			
 
- 			$warehouse = $this->warehouse->read($fullorder['warehouse']);
 
- 			$typeclass = $this->typeclass->read($fullorder['state']);
 
- 			$express = $this->express->read($fullorder['express']);
 
- 			$printtype = array(1=>'运单',2=>'发货单',3=>'不打印单据');
 
- 			$teset['number']=$fullorder['number'];
 
-             $teset['orderinfo']=$fullorder['orderinfo'];
 
- 			$teset['shop']=$fullorder['shop'];
 
-             $teset['user']=$user['userid'];
 
-             $teset['ip']=$this->input->ip_address();
 
-             $teset['time']=time();
 
-             $teset['warehouse']=(isset($warehouse['title']))?$warehouse['title']:'未选择';
 
-             $teset['state']=(isset($typeclass['title']))?$typeclass['title']:'未选择';
 
-             $teset['express']=(isset($express['title']))?$express['servicename']:'未选择';
 
-             $teset['printtype']=(isset($printtype[$fullorder['printtype']]))?$printtype[$fullorder['printtype']]:'未选择';
 
-             $teset['reviewtime']=($fullorder['reviewtime'] > '0')?date('Y-m-d H:i:s',$fullorder['reviewtime']):'无';
 
-             $teset['printtime']=($fullorder['printtime'] > '0')?date('Y-m-d H:i:s',$fullorder['printtime']):'无';
 
-             $teset['librarytime']=($fullorder['librarytime'] > '0')?date('Y-m-d H:i:s',$fullorder['librarytime']):'无';
 
-             $teset['shipremarks']=$fullorder['shipremarks'];
 
-             $teset['fpdata']=$fullorder['fpdata'];
 
- 			if(!$this->fullreset->insert($teset))
 
-         	{
 
-          		echo json_encode(array('msg'=>'重置失败,请重试','success'=>true));exit;
 
-        	 	}
 
- 			
 
- 			if ($this->db->trans_status() === TRUE)
 
-             {
 
- 				$this->db->trans_commit();
 
- 			    echo json_encode(array('msg'=>'重置成功','success'=>true));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				$this->db->trans_rollback();
 
- 			    echo json_encode(array('msg'=>'重置失败,请重试','success'=>false));exit;
 
- 			}
 
- 		}
 
- 	}
 
- 	public function _expresstype()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))  
 
- 		{
 
-             $id = $this->input->post('id',true);
 
-             $data =  $this->express->read($id);
 
- 			echo json_encode(array('msg'=>$data['type'],'success'=>true));exit;
 
- 		}
 
- 	}
 
- 	public function _email($content,$data,$shopname)
 
- 	{
 
- 		$express = $this->express->read($data['express']);
 
- 		$t= array('$userName','$orderid','$trackingNumber','$expressCompany','$contactPerson','$mobileNo','$zip','$recipientAddress');//需要被替换的内容
 
- 		$h= array($data['client'],$data['orderinfo'],$data['waybill'],$express['servicename'],$data['name'],$data['phone'],$data['zipcode'],$data['address']);//替换的内容
 
- 		$content = str_replace($t,$h,$content);
 
- 		$this->load->library('email');		
 
- 		$config['protocol'] = 'smtp';
 
- 		$config['smtp_host'] = 'smtpdm-ap-southeast-1.aliyun.com';
 
- 		$config['smtp_port'] = 465; 
 
- 		$config['smtp_user'] = 'service@email.supernovahair.com';
 
- 		$config['smtp_pass'] = 'LONGyihair374';
 
- 		$config['smtp_crypto'] = 'ssl';
 
- 		$config['crlf'] = "\r\n"; 
 
- 		$config['newline'] = "\r\n";
 
- 		$this->email->initialize($config);
 
- 		$this->email->from('service@email.supernovahair.com',$shopname);
 
- 		$this->email->to($data['email']);//收件
 
- 		$this->email->subject('The product you purchased has a new progress');//标题
 
- 		$this->email->message($content);//内容
 
- 		if ( ! $this->email->send())
 
-         {
 
- 			return 2;
 
-         }
 
- 		else
 
- 		{
 
- 			return 1;
 
- 		}
 
- 	}
 
- 	public function _error()
 
- 	{
 
- 		if(isset($_SESSION['api']))
 
- 		{
 
- 			$user = $this->user->get_api($_SESSION['api']);
 
- 			$usp = $user;
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$waybill = $this->input->post('waybill',true);
 
- 			$number = $this->input->post('number',true);
 
- 			$timetk = $this->input->post('timetk',true);
 
- 			$timetj = $this->input->post('timetj',true);
 
- 			$timetk = strtotime($timetk);
 
- 			$timetj = strtotime($timetj);
 
- 			$where = "failed !='' and mergeid = 0 and (".rtrim($fgshop,'or').")";
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($waybill)
 
-             {
 
-                 $where  .= " and waybill = '$waybill'";
 
-             }
 
- 			if($number)
 
-             {
 
-                 $where  .= " and number = '$number'";
 
-             }
 
- 			if($timetk && $timetj)
 
-             {
 
- 				$timetj = $timetj+24*3600;
 
-                 $where  .= " and dtime > '$timetk' and dtime < '$timetj'";
 
-             }
 
-             //数据排序
 
-             $order_str = "dtime desc";
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             $info_list = $this->fullordersmt->find_all($where,'id,shop,type,orderinfo,number,express,failed,operation',$order_str,$start,$perpage);
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$ud = $this->fullordersmt->read($value['id']);
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				$info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullordersmt/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."'>".$value['orderinfo']."<p>";
 
- 				$warehouse = $this->warehouse->read($value['type']);
 
- 				$warehousetitle = $warehouse['title'];
 
- 				if($value['type'] != 1){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
 
- 				$info_list[$key]['type'] = $warehousetitle;
 
- 				if($value['express'] != 0)
 
- 				{
 
- 				    $express = $this->express->read($value['express']);
 
- 					$expressservicename = $express['servicename'];
 
- 				if($value['express'] != 1){$expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";}
 
- 				    $info_list[$key]['express'] = $expressservicename;
 
- 				}
 
- 				else
 
- 				{
 
- 					$info_list[$key]['express'] = "无";
 
- 				}
 
- 				$x = "";
 
- 				if($ud['review'] >4 && $ud['print'] == 1)
 
- 				{
 
- 				    $x = "<p class='ckn'><b class='fojzof' data-type='8' data-id='".$value['id']."'>允许打印</b></p>";
 
- 				}
 
- 				else if($ud['review'] >4 && $ud['print'] == 3 && $ud['libraryconfirm'] == 1)
 
- 				{
 
- 					$x = "<p class='ckn'><b class='fojzof' data-type='10' data-id='".$value['id']."'>清除错误</b></p>";
 
- 				}
 
- 				else
 
- 				{
 
- 					$x = "<p class='ckn'><b class='fojzof' data-type='9' data-id='".$value['id']."'>关闭</b></p>";
 
- 				}
 
- 				$info_list[$key]['operation'] = $x;
 
-             }
 
- 		    $total = $this->fullordersmt->find_count($where);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
 
- 		$this->data['wlshop'] = $wlshop;
 
- 		$this->data['express'] = $this->express->find_all();
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		$powerid = $this->power->read($user['power']);
 
- 		$powertext = explode('|',trim($powerid['excelid'],'|'));
 
- 		$pid = '';
 
- 		foreach ($powertext as $v) 
 
- 		{
 
- 			$pid .= " id = ".$v." or";
 
- 		}
 
- 		$fullorderexcel = $this->fullorderexcel->find_all("type = '100004' and (".rtrim($pid,'or').")",'*','idorder desc');//导出模板
 
- 		$this->data['fullorderexcel'] = $fullorderexcel;
 
- 		$this->_Template('fullordersmt_error',$this->data);
 
- 	}
 
- 	//关闭订单详情时保存备注
 
- 	public function _bcbz()
 
- 	{
 
- 	    $post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))
 
- 		{
 
- 			$fpcount = $this->input->post('fpcount',true);
 
- 			if(!$fpcount)
 
- 			{
 
- 				echo json_encode(array('msg'=>'未设置商品信息!','success'=>false));exit;
 
- 			}
 
- 			$post['edittime'] = time();
 
- 			$fpdata = $this->input->post('fpdata');
 
- 			$fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
 
- 			$post['fpdata'] = $fpdata;
 
- 			$post['state'] = $this->input->post('state');
 
- 			$post['type'] = $this->input->post('warehouse');
 
- 			$post['ioss'] = $this->input->post('ioss');
 
- 			$rtime = $this->input->post('rtime',true);
 
- 			if($rtime)
 
- 			{
 
- 			    $post['rtime'] = strtotime($rtime);
 
- 			}
 
- 			$id = $this->input->post('id',TRUE);
 
- 			$whlabel = $this->input->post('whlabel',true);
 
- 			$data = $this->fullordersmt->read($id);
 
- 			$editstate = $post['state'];
 
- 			if($data['library'] == 1)
 
- 			{
 
- 			    if($data['print'] != 3 && $data['review'] < 5)
 
- 			    {
 
- 				    $post['libraryconfirm'] = 1;
 
- 				    $post['librarynot'] = "订单未打印";
 
- 			    }
 
- 				else if($data['print'] != 3 && $data['review'] > 4)
 
- 			    {
 
- 					$post['print'] = 1;
 
- 				    $post['libraryconfirm'] = 1;
 
- 				    $post['librarynot'] = "订单未打印,订单审核后修改";
 
- 			    }
 
- 			    else
 
- 			    {
 
- 			    	$post['libraryconfirm'] = 1;
 
- 			    	$post['librarynot'] = "订单打印后修改";
 
- 			    }
 
- 			}
 
- 			if($data['yhs'] == 1)
 
- 			{
 
- 				 echo json_encode(array('msg'=>'仓库货物验证中,请稍后再试!','success'=>false));exit;
 
- 			}
 
- 			if((($post['express'] == 2 || $post['express'] == 63 || $post['express'] == 64) && $post['type'] != 5) || ($post['express'] != 2 && $post['express'] != 63 && $post['express'] != 64 && $post['type'] == 5))
 
- 			{
 
- 				echo json_encode(array('msg'=>'此快递方式必须选择美国仓!','success'=>false));exit;
 
- 			}
 
- 			if(($post['express'] == '5' || $post['express'] == '24' || $post['express'] == '31') && $data['country'] != 192)
 
- 			    {
 
- 				    echo json_encode(array('msg'=>'非美国无法选择Fedex!','success'=>false));exit;
 
- 			    }
 
- 				if(($post['express'] == '28' || $post['express'] == '7') && $data['country'] != 191)
 
- 			    {
 
- 				    echo json_encode(array('msg'=>'非英国无法选择CNE和GES!','success'=>false));exit;
 
- 			    }
 
- 			$express = $this->express->read($post['express']);
 
- 			if($express['ioss'] == 1 && $post['ioss'] == '')
 
- 			{
 
- 				 echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
 
- 			}
 
- 			if(isset($post['address']) && (strlen($post['address']) > $express['addresssize'] || strlen($post['address2']) > $express['addresssize']))
 
- 			{
 
- 				echo json_encode(array('msg'=>'此快递地址不可超出'.$express['addresssize'].'个字符','success'=>false));exit;
 
- 			}
 
- 			if($data['type'] != '5' && $post['type'] == '5' && $editstate != '207')
 
- 			{
 
- 				echo json_encode(array('msg'=>'等待发货状态才可选择美仓!','success'=>false));exit;
 
- 			}
 
- 			if($data['library'] == 2 && $data['print'] == 3 && $data['waybill'] != $post['waybill'])
 
- 			{
 
- 				echo json_encode(array('msg'=>'不允许修改运单号','success'=>true));exit;
 
- 			}
 
- 			//南非 限制邮箱
 
- 			if($post['country'] == 166){
 
- 				if(empty($post['email'])){
 
- 					echo json_encode(array('msg'=>'惠程安迈世发货需要有邮箱!','success'=>false));exit;
 
- 				}else{
 
- 					if(!$this->logic_order->checkEmail($post['email'])){
 
- 						echo json_encode(array('msg'=>'邮箱格式不正确!','success'=>false));exit;
 
- 					}
 
- 				}
 
- 			}
 
- 			if(empty($post['zsbjz']*1)){
 
- 				echo json_encode(array('msg'=>'申报金额不可为0!','success'=>false));exit;
 
- 			}
 
- 			if(empty($post['dtsbjz']*1)){
 
- 				echo json_encode(array('msg'=>'单条申报价值不能为0!','success'=>false));exit;
 
- 			}
 
- 			
 
- 			$thisdata =  $data;
 
- 			$warehouse = $this->warehouse->read($thisdata['type']);
 
- 			$warehousenew = $this->warehouse->read($post['type']);
 
- 			if(($warehouse['zd'] == '1' || stripos($thisdata['whlabel'],'z|') !== false) && $thisdata['library'] == '2' && $post['type'] != $thisdata['type'])//如果已出库并且开启库存模式仓库或者有特殊库存,禁止调整仓库
 
- 			{
 
- 				echo json_encode(array('msg'=>'此单已占用库存并出库,无法更改仓库!','success'=>false));exit;
 
- 			}
 
- 			/**
 
- 			if($warehouse['zd'] == '1' && $warehouse['ys'] != '1' && $thisdata['library'] == '2' && $post['fpdata'] != $thisdata['fpdata'])
 
- 			{
 
- 				echo json_encode(array('msg'=>'已扣减库存,无法更改产品!','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			if($data['shop'] == '9' && $post['type'] != '7' && $post['type'] != '8' && $post['type'] != '9')
 
- 			{
 
- 				echo json_encode(array('msg'=>'仓库选择错误!','success'=>false));exit;
 
- 			}
 
- 			//减少代码复用吧
 
- 			$lo_ret = $this->logic_order->checkEditExpress($post);
 
- 			if($lo_ret['code'] != 1){
 
- 				echo json_encode(array('msg'=>$lo_ret['msg'],'success'=>false));exit;
 
- 			}
 
- 			/**
 
- 			if($warehousenew['zd'] == '1' && $editstate != $thisdata['state'] && $thisdata['library'] == '1')//如果提交的仓库开启库存模式并且更改订单状态并且未出库,那么拒绝
 
- 			{
 
- 				echo json_encode(array('msg'=>'如需更改订单状态,请先把仓库选择为非开启库存模式仓库或等待订单出库!','success'=>false));exit;
 
- 			}
 
- 			if($warehousenew['zd'] == '1' && $editstate != '207' && $thisdata['library'] == '1')//如果提交的仓库开启库存模式并且更改订单状态并且未出库,那么拒绝
 
- 			{
 
- 				echo json_encode(array('msg'=>'非待发货状态,不允许修改为开启库存模式仓库','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			//开始注释 xyxg 
 
- 			/**
 
- 			$ft = array();
 
- 			$ftdata = explode('|',rtrim($fpcount,'|'));
 
- 			foreach ($ftdata as $va)
 
- 			{
 
- 				$ftitle = '';
 
- 				$va = explode('-',trim($va,'-'));
 
- 				foreach ($va as $v)
 
- 			    {
 
- 					$v = $this->typeclass->read($v);
 
- 					$ftitle .= $v['title'].' ';
 
- 				}
 
- 				$ft[] = rtrim($ftitle,' ');
 
- 			}
 
- 			if(stripos($whlabel,'z|') !== false || stripos($thisdata['whlabel'],'z|') !== false)
 
- 			{
 
- 			    $tskcyz = $this->specialstock->get_kc($thisdata['state'],$post['state'],$whlabel,$thisdata['whlabel'],$thisdata['number']);
 
- 				if($tskcyz['t'] > '0')
 
- 			    {
 
- 				    echo $tskcyz['m'];exit;
 
- 			    }
 
- 			}
 
- 			$kcyz = $this->whlabel->get_kc($thisdata['state'],$post['state'],$warehousenew['zd'],$warehousenew['ys'],$post['type'],$whlabel,$fpcount,$ft,$thisdata['number'],$thisdata['shop'],$thisdata['type'],$thisdata['whlabel']);//旧状态、新状态、仓库占单设置、仓库预设设置、新仓库、新产品简化数字、旧产品数字、旧产品名称、订单号、订单店铺、旧订单仓库、旧产品简化数字
 
- 			if($kcyz['t'] > '0')
 
- 			{
 
- 				echo $kcyz['m'];exit;
 
- 			}
 
- 			else
 
- 			{
 
- 			    if($this->fullordersmt->save($post,$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'保存成功','id'=>$id,'a'=>$kcyz,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            		    echo json_encode(array('msg'=>'保存失败,请重试','success'=>false));exit;
 
-         	    }
 
- 			}
 
- 			//结束注释 
 
- 			**/
 
- 			$warehouse = $this->warehouse->read($post['type']);
 
- 			if($data['library'] == 1 || ($data['library'] != 2 && ($post['state'] != '207' || $post['state'] == '209')))
 
- 			{
 
- 			    $kcyz = $this->ck->get_kc($post['state'],$warehouse,$thisdata['shop'],$thisdata['number'],$whlabel,$fpdata);
 
- 			    if($kcyz['t'] > '0')
 
- 			    {
 
- 				    echo $kcyz['m'];exit;
 
- 			    }
 
- 			    else if($kcyz['fpdata'] != '')
 
- 			    {
 
- 				    $post['whlabel'] = $kcyz['whlabel'];
 
- 				    $post['fpdata'] = $kcyz['fpdata'];
 
- 			    }
 
- 			}
 
- 			$fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
 
- 			$post['sfxh'] = $fl['sfxh'];
 
- 			$post['ckfl'] = $fl['ckfl'];
 
- 			$post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
 
- 			    if($this->fullordersmt->save($post,$id))
 
-         	    {
 
-          		    echo json_encode(array('msg'=>'保存成功','id'=>$id,'success'=>true));exit;
 
-        	 	    }
 
-        		    else
 
-         	    {
 
-            		    echo json_encode(array('msg'=>'保存失败,请重试','success'=>false));exit;
 
-         	    }
 
- 		
 
- 		}
 
- 	}
 
- 	//验证地址
 
- 	public function _yzaddress()
 
- 	{
 
- 	    $post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['address']))
 
- 		{
 
- 			$address = $this->input->post('address',true);
 
- 			$address2 = $this->input->post('address2',true);
 
- 			$city = $this->input->post('city',true);
 
- 			$province = $this->input->post('province',true);
 
- 			$zipcode = $this->input->post('zipcode',true);
 
- 			$barcode = $this->usps->get_address(array('address'=>$address,'address2'=>$address2,'city'=>$city,'province'=>$province,'zipcode'=>$zipcode));
 
- 			echo $barcode;
 
- 		}
 
- 	}
 
- 	//订单退货
 
- 	public function _return()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['orderinfo']))
 
- 		{
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$data = $this->fullordersmt->get_orderinfo($orderinfo);
 
- 			$fu = 'fullordersmt';
 
- 			$bctime = date('Ymd',time());
 
- 			if($data['returndata'] != "")
 
- 			{
 
- 				echo json_encode(array('msg'=>'请求失败,已有退货信息!','success'=>false));exit;
 
- 			}
 
- 			if($data['library'] != 2){
 
- 				echo json_encode(array('msg'=>'此单不是出库状态,不允许退货','success'=>false));exit;
 
- 			}
 
- 			$barcode = $this->usps->get_return($data);
 
- 			if(isset($barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription']))
 
- 			{
 
- 				echo json_encode(array('msg'=>$barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription'],'success'=>false));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				$pdf = $this->_pdf($barcode['ReturnLabel'],'t-'.$barcode['TrackingNumber'],$bctime);
 
- 				$read = 'PostalRouting:'.$barcode['PostalRouting'].' - TrackingNumber:<a href="/data/pdf/'.$bctime.'/'.'t-'.$barcode['TrackingNumber'].'.pdf" target="_blank">'.$barcode['TrackingNumber'].'</a>';
 
- 				$this->$fu->save(array('returndata'=>$read),$data['id']);
 
- 			 	echo json_encode(array('msg'=>'退货成功!','data'=>$read,'success'=>true));exit;
 
- 			}
 
- 		}
 
- 	}
 
- 	public function _pdf($pdf,$title,$bctime)
 
-     {
 
-     	$pdf_path = './data/pdf/'.$bctime.'/';
 
-         $file_base64 = $pdf; 
 
-         $file_base64 = preg_replace('/data:.*;base64,/i', '', $file_base64);  
 
-         $file_base64 = base64_decode($file_base64);
 
- 		if(!is_dir($pdf_path))mkdir($pdf_path,0777); //上传目录不存在则创建
 
-         file_put_contents($pdf_path.$title.'.pdf',$file_base64);
 
- 		return $bctime;
 
-     }
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	
 
- 	//管理
 
- 	public function _aaa()
 
- 	{
 
- 		$dt = 0;
 
- 		if(isset($_SESSION['api']))
 
- 		{
 
- 			$user = $this->user->get_api($_SESSION['api']);
 
- 			$usp = $user;
 
- 		    $fgshop = "";$sid = "";
 
- 		    $user = explode('|',trim($user['shop'],'|'));
 
- 			foreach ($user as $value) 
 
- 		    {
 
- 				$fgshop .= " shop = ".$value." or";
 
- 				$sid .= " id = ".$value." or";
 
- 			}
 
- 		}
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['page']))
 
- 		{
 
- 		    $page = $this->input->post('page',true);
 
- 		    $perpage = $this->input->post('perpage',true);
 
- 			$warehouse = $this->input->post('warehouse',true);
 
- 			$timetk = $this->input->post('timetkk',true);
 
- 			$timetj = $this->input->post('timetjj',true);
 
- 			$shop = $this->input->post('shop',true);
 
- 			$source = $this->input->post('source',true);
 
- 			$state = $this->input->post('state',true);
 
- 			$review = $this->input->post('review',true);
 
- 			$type = $this->input->post('type',true);
 
- 			$express = $this->input->post('express',true);
 
- 			$orderinfo = $this->input->post('orderinfo',true);
 
- 			$user = $this->input->post('user',true);
 
- 			$client = $this->input->post('name',true);
 
- 			$fullname = $this->input->post('fullname',true);
 
- 			$waybill = $this->input->post('waybill',true);
 
- 			$number = $this->input->post('number',true);
 
- 			$email = $this->input->post('email',true);
 
- 			$dlz = $this->input->post('dlz',true);
 
- 			$print = $this->input->post('print',true);
 
- 			$library = $this->input->post('library',true);
 
- 			$xztime = $this->input->post('xztime',true);
 
- 			$timetk = strtotime($timetk)-1;
 
- 			$timetj = strtotime($timetj);
 
- 			$px = $this->input->post('px',true);
 
- 			$where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
 
- 			if($warehouse)
 
-             {
 
-                 $where  .= " and type = '$warehouse'";
 
-             }
 
- 			if($timetk && $timetj)
 
-             {
 
-                 $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
 
-             }
 
- 			if($shop)
 
-             {
 
-                 $where  .= " and shop = '$shop'";
 
-             }
 
- 			if($source)
 
-             {
 
-                 $where  .= " and source = '$source'";
 
-             }
 
- 			if($state)
 
-             {
 
- 				$where  .= " and state = '$state'";
 
-             }
 
- 			if($review)
 
-             {
 
-                 $where  .= " and review = '$review'";
 
-             }
 
- 			if($type)
 
-             {
 
-                 $where  .= " and type = '$type'";
 
-             }
 
- 			if($express)
 
-             {
 
-                 $where  .= " and express = '$express'";
 
-             }
 
- 			if($orderinfo)
 
-             {
 
-                 $where  .= " and orderinfo = '$orderinfo'";
 
-             }
 
- 			if($user)
 
-             {
 
-                 $where  .= " and user = '$user'";
 
-             }
 
- 			if($client)
 
-             {
 
-                 $where  .= " and client like '%$client%'";
 
-             }
 
- 			if($waybill)
 
-             {
 
-                 $where  .= " and waybill = '$waybill'";
 
-             }
 
- 			if($number)
 
-             {
 
-                 $where  .= " and number = '$number'";
 
-             }
 
- 			if($email)
 
-             {
 
-                 $where  .= " and email = '$email'";
 
-             }
 
- 			if($library)
 
-             {
 
-                 $where  .= " and library = '$library'";
 
-             }
 
- 			if($print)
 
-             {
 
-                 $where  .= " and print = '$print'";
 
-             }
 
- 			if($dlz != '')
 
-             {
 
-                 $where  .= " and dlz = '$dlz'";
 
-             }
 
- 			if($fullname)
 
-             {
 
-                 $where  .= " and fullname = '$fullname'";
 
-             }
 
-             //数据排序
 
- 			if($px)
 
- 			{
 
-                 $order_str = $px." desc";
 
- 			}
 
- 			else
 
- 			{
 
- 				$order_str = "numberpx desc";
 
- 			}
 
-             if(empty($page))
 
- 		    {
 
-                 $start = 0;
 
- 		    	$perpage = 1;
 
-             }
 
- 		    else
 
- 		    {
 
-                 $start = ($page - 1)*$perpage;
 
-             }
 
-             //取得信息列表id,shop,type,source,user,orderinfo,number,name,state,buytime,clientremarks,review,print,library,libraryconfirm,express,waybill,orderremarks,black
 
-             $info_list = $this->fullordersmt1->find_all($where,'id,shop,type,orderinfo,number,fullname,state,buytime,review,libraryconfirm,express,waybill,orderremarks,library,black,clientremarks,waybillid',$order_str,$start,$perpage);
 
- 			 //格式化数据
 
-             foreach ($info_list as $key=>$value) 
 
- 		    {
 
- 				$ud = $this->fullordersmt1->read($value['id']);
 
- 				$ud['address'] = str_replace("'","’",$ud['address']);
 
- 				$ud['name'] = str_replace("'","’",$ud['name']);
 
- 				$customer = $ud['source'] != 1?$this->customersmt1->get_fullname($ud['fullname']):$this->customersmt1->get_shopdata($value['shop'],$ud['name'],$ud['address']);
 
- 				//$a = array_column($customer, 'email'); //三维找其中健的数组
 
- 			    //$a = array_flip($a); //键和值调换
 
- 				$currency = $this->country->read($ud['country']);
 
- 				$name = ($ud['source'] == 1)?$ud['name']:$value['fullname'];
 
- 				$lkh = "<p>".$name."</p><p style='color:#8f54fb'>".$currency['ename']."</p>";
 
- 				if($customer)
 
- 				{
 
- 					if($customer['type'] == 1 && $customer['num'] > 1)
 
- 					{
 
- 						$lkh .= "<p style='color:#FF3333'>老客户</p>";
 
- 					}
 
- 					else if($customer['type'] == 2)
 
- 					{
 
- 						$hmsp = $this->shop->read($customer[0]['shop']);
 
- 					    $lkh .= "<p style='color:#9900CC'>黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
 
- 					}
 
- 				}
 
- 				
 
- 				$info_list[$key]['fullname'] = $lkh;
 
- 				$shop = $this->shop->read($value['shop']);
 
- 				$info_list[$key]['shop'] = $shop['shopname'];
 
- 				//$info_list[$key]['user'] = $shop['shopuser'];
 
- 				$warehouse = $this->warehouse->read($value['type']);
 
- 				$warehousetitle = $warehouse['title'];
 
- 				if($value['type'] != 1){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
 
- 				$info_list[$key]['type'] = $warehousetitle;
 
- 				$typeclass = $this->typeclass->read($value['state']);
 
- 				if($ud['source'] != 1)
 
- 				{
 
- 				    $info_list[$key]['state'] = "<a href='https://trade.aliexpress.com/order_detail.htm?orderId=".$value['orderinfo']."' target='_blank'>".$typeclass['title']."</a>";
 
- 				}
 
- 				else
 
- 				{
 
- 					 $info_list[$key]['state'] = $typeclass['title'];
 
- 				}
 
- 				
 
- 				if(!$value['buytime'])
 
- 				{
 
- 					$info_list[$key]['buytime'] = '<p>无</p>';
 
- 				}
 
- 				else
 
- 				{
 
- 				    $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']-$dt).'</p><p>'.date('H:i:s',$value['buytime']-$dt).'</p>';
 
- 				}
 
- 				if($value['review'] == 1)
 
- 				{
 
- 					$info_list[$key]['review'] = "未送审";
 
- 				}
 
- 				else if($value['review'] == 2)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#555'>待审核</font>";
 
- 				}
 
- 				else if($value['review'] == 3)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#f90f4b'>不通过</font>";
 
- 				}
 
- 				else if($value['review'] == 4)
 
- 				{
 
- 					$info_list[$key]['review'] = "取消重审";
 
- 				}
 
- 				else if($value['review'] == 5)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#2f80f9'>审核通过</font>";
 
- 				}
 
- 				else if($value['review'] == 6)
 
- 				{
 
- 					$info_list[$key]['review'] = "<font style='color:#2f80f9'>自动通过</font>";
 
- 				}
 
- 				if($ud['dlz'] == 1)
 
- 				{
 
- 					$dlz = "<p>发货声明成功</p>";
 
- 				}
 
- 				else if($ud['dlz'] == 3)
 
- 				{
 
- 					$dlz = "<p>不需要发货声明</p>";
 
- 				}
 
- 				else if($ud['dlz'] == 2)
 
- 				{
 
- 					$dlz = "<p style='color:#C3C'>发货声明失败</p>";
 
- 				}
 
- 				else
 
- 				{
 
- 					$dlz = "";
 
- 				}
 
- 				if($value['waybill'] != "")
 
- 				{
 
- 					$info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz;
 
- 					if( !empty($value['waybillid'])){
 
- 						$info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz."<p>".$value['waybillid']."</p>";
 
- 				    }
 
- 				}
 
- 				if($value['express'] != 0)
 
- 				{
 
- 				    $express = $this->express->read($value['express']);
 
- 					$expressservicename = $express['servicename'];
 
- 				if($value['express'] != 1){$expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";}
 
- 				    $info_list[$key]['express'] = $expressservicename;
 
- 				}
 
- 				else
 
- 				{
 
- 					$info_list[$key]['express'] = "无";
 
- 				}
 
- 				$x = "";
 
- 				if($value['libraryconfirm'] == 2 && $value['review'] > 4 && $ud['library'] == 1)
 
- 				{
 
- 				    $x = "<p class='ckn'><b class='fojz' data-type='1'>禁止发货</b></p>";
 
- 				}
 
- 				else if(($value['review'] > 4) && $ud['print'] != 1 && $value['libraryconfirm'] == 1)
 
- 				{
 
- 					$x = "<p class='ckn'><b class='fojzof' data-type='6' data-id='".$value['id']."'>允许发货</b></p>";
 
- 				}
 
- 				if(($value['review'] > 4) && $ud['print'] == 2)
 
- 				{
 
- 				    $x = "<p class='ckn'><b class='fojzof' data-type='7' data-id='".$value['id']."'>禁止打印</b></p>";
 
- 				}
 
- 				else if($value['review'] >4 && $ud['print'] == 1)
 
- 				{
 
- 				    $x = "<p class='ckn'><b class='fojzof' data-type='8' data-id='".$value['id']."'>允许打印</b></p>";
 
- 				}
 
- 				if($value['waybill'] == "" && $value['review'] > 4)
 
- 				{
 
- 					$x .= "<p><b class='kn' data-type='2'>填写运单号</b></p>";
 
- 				}
 
- 				else if($value['waybill'] != "" && $value['review'] > 4)
 
- 				{
 
- 					$x .= "<p><b class='kn' data-type='2'>修改运单</b></p>";
 
- 				}
 
- 				if(($value['review'] == 1 || $value['review'] == 3) && $ud['express'] > 0 && $ud['dtsbjz'] != 0 && $ud['ts'] != 0 && $ud['zsbjz'] != 0 && $ud['zjs'] != 0 && $ud['ts'] != 0)
 
- 				{
 
- 					$x .= "<p><b class='focz' data-type='2' data-id='".$value['id']."'>提交审核</b></p>";
 
- 				}
 
- 				$x .= "<p><b class='window' data-h='/customersmt/edit/".$customer['id']."' data-t='客户信息 - 修改'>客户信息</b></p>";
 
- 				$info_list[$key]['black'] = $x;
 
- 				$tly = "";
 
- 				if($value['clientremarks'] != "")
 
- 				{
 
- 					$tly = "<p style='color:#FF3333'>有客户留言</p>";
 
- 				}
 
- 				if($value['review'] > 4 && $usp['vip'] != 1)
 
- 				{
 
- 					$info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullordersmt/readonly/".$value['id']."' data-t='订单号:".$value['orderinfo']."'><p>".$value['orderinfo']."</p>".$tly."</h9>";
 
- 				}
 
- 				else
 
- 				{
 
- 					$info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullordersmt/b/".$value['id']."' data-t='订单号:".$value['orderinfo']."'><p>".$value['orderinfo']."</p>".$tly."</h9>";
 
- 				}
 
- 				if($value['library'] == 1 && $ud['printtype'] == 3)
 
- 				{
 
- 					$info_list[$key]['library'] = "不需要";
 
- 				}
 
- 				else if($value['library'] == 1 && $ud['printtype'] != 3)
 
- 				{
 
- 					$info_list[$key]['library'] = "未出库";
 
- 				}
 
- 				else if($value['library'] == 2)
 
- 				{
 
- 					$info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['librarytime']).'</p><p>'.date('H:i:s',$ud['librarytime']).'出库</p>';
 
- 				}
 
- 				else if($value['library'] == 3)
 
- 				{
 
- 					$info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['retreattime']).'</p><p>'.date('H:i:s',$ud['retreattime']).'退库</p>';
 
- 				}
 
- 				unset($info_list[$key]['waybillid']);
 
-             }
 
- 		    $total = $this->fullordersmt1->find_count($where);
 
- 		    $pagenum = ceil($total/$perpage);
 
- 		    $over = $total-($start+$perpage);
 
- 		    $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
 
- 		    echo json_encode($rows);exit;
 
- 		}
 
- 		$wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
 
- 		$this->data['wlshop'] = $wlshop;
 
- 		$this->data['express'] = $this->express->find_all();
 
- 		$user = $this->user->get_api($_SESSION['api']);
 
- 		$powerid = $this->power->read($user['power']);
 
- 		$powertext = explode('|',trim($powerid['excelid'],'|'));
 
- 		$pid = '';
 
- 		foreach ($powertext as $v) 
 
- 		{
 
- 			$pid .= " id = ".$v." or";
 
- 		}
 
- 		$fullorderexcel = $this->fullorderexcel->find_all("type = '100004' and (".rtrim($pid,'or').")",'*','idorder desc');//导出模板
 
- 		$this->data['fullorderexcel'] = $fullorderexcel;
 
- 		$error = $this->fullordersmt1->find_count("print = 1 and failed !='' and mergeid = 0 and waybill = '' and (".rtrim($fgshop,'or').")");
 
- 		$this->data['error'] = $error;
 
- 		$this->_Template('fullordersmt_a',$this->data);
 
- 	}
 
- 	
 
- 	public function _bbb($arg_array)
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))
 
- 		{
 
- 			$id = $this->input->post('id',true);
 
- 			$data = $this->fullordersmt1->read($id);
 
- 			$post['type'] = $this->input->post('warehouse',true);
 
- 			$post['country'] = $this->input->post('country',true);
 
- 			$currency = $this->country->read($post['country']);
 
- 			$post['al'] = $currency['lb'];
 
- 			$post['freight'] = $this->input->post('freight',true);
 
- 			$post['expressmoney'] = $this->input->post('expressmoney',true);
 
- 			$post['shouldmoney'] = $this->input->post('shouldmoney',true);
 
- 			$post['orderremarks'] = $this->input->post('orderremarks',true);
 
- 			$shipremarks = $this->input->post('shipremarks');
 
- 			$shipremarks = str_replace(array('%26','%2B'),array('&','+'),$shipremarks);
 
- 			$post['shipremarks'] = preg_replace('/( | | |\s)/',' ',$shipremarks);
 
- 			$post['email'] = $this->input->post('email',true);
 
- 			$name = $this->input->post('name',true);
 
- 			$post['name'] = str_replace("'","’",$name);
 
- 			$post['phone'] = $this->input->post('phone',true);
 
- 			$post['country'] = $this->input->post('country',true);
 
- 			$post['province'] = $this->input->post('province',true);
 
- 			$post['city'] = $this->input->post('city',true);
 
- 			$post['zipcode'] = $this->input->post('zipcode',true);
 
- 			$post['street'] = $this->input->post('street',true);
 
- 			$address = $this->input->post('address',true);
 
- 			$post['address'] = str_replace("'","’",$address);
 
- 			$post['express'] = $this->input->post('express',true);
 
- 			$post['printtype'] = $this->input->post('printtype',true);
 
- 			$post['fpdata'] = $this->input->post('fpdata');
 
- 			$post['waybill'] = $this->input->post('waybill',true);
 
- 			$post['msg'] = $this->input->post('msg',true);
 
- 			$post['zsbjz'] = $this->input->post('zsbjz',true);
 
- 			$post['refundy'] = $this->input->post('refundy',true);
 
- 			$post['refundj'] = $this->input->post('refundj',true);
 
- 			$rtime = $this->input->post('rtime',true);
 
- 			$post['rtime'] = strtotime($rtime);
 
- 			$post['rpaypal'] = $this->input->post('rpaypal',true);
 
- 			$post['rtext'] = $this->input->post('rtext',true);
 
- 			$editstate = $this->input->post('state',true);
 
- 			$post['review'] = 1;
 
- 			if($post['zsbjz'] < '0.01')
 
- 			{
 
- 				echo json_encode(array('msg'=>'总申报价错误!','success'=>false));exit;
 
- 			}
 
- 			if($data['library'] == 1)
 
- 			{
 
- 			    if($data['print'] != 3 && $data['review'] < 5)
 
- 			    {
 
- 				    $post['libraryconfirm'] = 1;
 
- 				    $post['librarynot'] = "订单未打印";
 
- 			    }
 
- 				else if($data['print'] != 3 && $data['review'] > 4)
 
- 			    {
 
- 					$post['print'] = 1;
 
- 				    $post['libraryconfirm'] = 1;
 
- 				    $post['librarynot'] = "订单未打印,订单审核后修改";
 
- 			    }
 
- 			    else
 
- 			    {
 
- 			    	$post['libraryconfirm'] = 1;
 
- 			    	$post['librarynot'] = "订单打印后修改";
 
- 			    }
 
- 			}
 
- 			if($post['printtype'] == 1)//如果是运单
 
- 			{
 
- 				$post['productdescription'] = $this->input->post('productdescription',true);
 
- 			    $post['customs'] = $this->input->post('customs',true);
 
- 			}
 
- 			/**
 
- 			if($editstate == 216 && $data['state'] != 216)
 
- 			{
 
- 				echo json_encode(array('msg'=>'不可修改为完成状态','success'=>false));exit;
 
- 			}
 
- 			**/
 
- 			if($editstate == 216 && preg_match('/\d/is',$post['waybill']) != true)
 
- 			{
 
- 				echo json_encode(array('msg'=>'当前信息不可修改订单状态','success'=>false));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				if($data['review'] == 1 && $data['source'] != 1)
 
- 				{
 
- 					$review = 6;
 
- 				}
 
- 				else if($data['review'] == 3 || ($data['review'] == 1 && $data['source'] == 1))
 
- 				{
 
- 					$review = 2;
 
- 				}
 
- 				else
 
- 				{
 
- 					$review = $data['review'];
 
- 				}
 
- 				$post['review'] = $review;
 
- 				$post['state'] = $editstate;
 
- 				$post['reviewtime'] = time();
 
- 			}
 
- 			if($this->fullordersmt1->save($post,$id))
 
-         	{
 
-          		echo json_encode(array('msg'=>'修改成功','success'=>true));exit;
 
-        	 	}
 
-        		else
 
-         	{
 
-            		echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
 
-         	}
 
- 		}
 
- 		$arg_array = $arg_array[0];$fpdata = array();
 
- 		$fullordersmt = $this->fullordersmt1->read($arg_array);
 
- 		$fullordersmt['parameter'] = str_replace(",","---",$fullordersmt['parameter']);
 
- 		$country = $this->country->find_all('1=1','id,name','name asc');//所有国家信息
 
- 		$express = $this->express->find_all('1=1');//所有快递配置信息
 
- 		$this->data['fullordersmt'] = $fullordersmt;
 
- 		$this->data['country'] = $country;
 
- 		$this->data['express'] = $express;
 
- 		$this->data['dtime'] = date('Y-m-d H:i:s',$fullordersmt['dtime']);
 
- 		if(stripos($fullordersmt['fpdata'],';') !== false)
 
- 		{
 
- 		    $fpdata = explode(';',rtrim($fullordersmt['fpdata'],';'));
 
- 		    foreach ($fpdata as $k=>$v) 
 
- 		    {
 
- 			    $fpdata[$k] = explode('|',$v);
 
-             }
 
- 		}
 
- 		$this->data['fpdata'] = $fpdata;
 
- 		$shop = $this->shop->read($fullordersmt['shop']);
 
- 		$this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
 
- 		$is = 0;
 
- 		if($shop['type'] == 269)//判断是否独立站,269是独立站
 
- 		{
 
- 			$is = 1;
 
- 		}
 
- 		$this->data['is'] = $is;
 
- 		if(isset($_SESSION['api']))
 
- 		{
 
- 			$user = $this->user->get_api($_SESSION['api']);
 
- 			if($user['vip'] == 1)
 
- 			{
 
- 				$vip = 1;
 
- 			}
 
- 			else
 
- 			{
 
- 				$vip = 0;
 
- 			}
 
- 		}
 
- 		else
 
- 		{
 
- 			$vip = 0;
 
- 		}
 
- 		$this->data['power'] = $vip;
 
- 		/** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
 
- 		$downwaybill = '';
 
- 		if($fullordersmt['printtype'] == 1)
 
- 		{
 
- 			if($fullordersmt['waybill'] != '')
 
- 			{
 
- 		        $downwaybill .= '<a href="/data/pdf/'.date('Ymd',$fullordersmt['printtime']).'/y-'.$fullordersmt['waybill'].'.pdf" target="_blank">'.$fullordersmt['waybill'].'</a>、';
 
- 			}
 
- 		}
 
- 		$oldwaybill = explode('-',ltrim($fullordersmt['oldwaybill'],'-'));
 
- 		if(isset($oldwaybill[0][1]))
 
- 		{
 
- 			$oldwaybill = array_reverse($oldwaybill); //调整顺序
 
- 		    foreach ($oldwaybill as $v) 
 
- 		    {
 
- 				$dw = explode('/',$v);
 
- 				if(isset($dw[1]))
 
- 				{
 
- 			    	$downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
 
- 				}
 
-         	}
 
- 		}
 
- 		$this->data['downwaybill'] = rtrim($downwaybill,'、');
 
- 		/** 历史打印时间 **/
 
- 		$printtime = '';
 
- 		if($fullordersmt['oldprinttime'])
 
- 		{
 
- 			$pte = explode('-',rtrim($fullordersmt['oldprinttime'],'-'));
 
- 		    foreach ($pte as $v) 
 
- 		    {
 
- 				$printtime .= date('Y-m-d H:i:s',$v).'、';
 
-         	}
 
- 		}
 
- 		$this->data['printtime'] = rtrim($printtime,'、');
 
- 		$this->_Template('fullordersmt_b',$this->data);
 
- 	}
 
- 	
 
- 	public function _cf() //速卖通订单拆分
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['id']))
 
- 		{
 
- 			$id = $this->input->post('id',true);
 
- 		    $b = $this->fullordersmt->read($id);
 
- 			$order = array();
 
- 			if($b['merge'] == $b['id'])
 
- 			{
 
- 				$data = $this->fullordersmt->find_all("merge = '".$b['merge']."'");
 
- 			    foreach ($data as $v) 
 
- 			    {
 
- 				    $a = $this->fullordersmthb->get_orderinfo($v['orderinfo']);
 
- 					if($a)
 
- 					{
 
- 					    $this->fullordersmt->save($a,$v['id']);
 
- 					}
 
- 					$order[] = $v['id'];
 
- 			    }
 
- 				echo json_encode(array('msg'=>'拆分成功!','d'=>$order,'success'=>true));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				echo json_encode(array('msg'=>'拆分条件错误!','success'=>false));exit;
 
- 			}
 
- 		}
 
- 	}
 
- 	
 
- 	public function _epod()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['number']))  
 
- 		{
 
- 			$number = $this->input->post('number',true);
 
- 			$data = $this->fullordersmt->get_number($number);
 
- 			if(is_file('./data/epod/'.date('Y',time()).'/epod-'.$data['waybill'].'.pdf'))
 
- 			{
 
- 				 echo json_encode(array('msg'=>'http://'.$_SERVER['HTTP_HOST'].'/data/epod/'.date('Y',time()).'/epod-'.$data['waybill'].'.pdf','success'=>true));exit;
 
- 			}
 
- 	        else
 
- 			{
 
- 			    $epod = $this->dhl->get_epod($data);
 
- 			    if($epod['c'] == 1)
 
- 			    {
 
- 					echo json_encode(array('msg'=>'http://'.$_SERVER['HTTP_HOST'].$epod['d'],'success'=>true));exit;
 
- 			    }
 
- 			    else
 
- 			    {
 
- 					echo json_encode(array('msg'=>$epod['d'],'success'=>false));exit;
 
- 			    }
 
- 		    }
 
- 		}
 
- 	}
 
- 	public function _ddcf()
 
- 	{
 
- 		$post = $this->input->post(NULL, TRUE);
 
- 		if(isset($post['number']))
 
- 		{
 
- 			$number = $this->input->post('number',true);
 
- 			$data = $this->fullordersmt->get_number($number);
 
- 			if(!$data)
 
- 			{
 
- 				echo json_encode(array('msg'=>'没有找到此订单','success'=>false));exit;
 
- 			}
 
- 			if($data['review'] != 1 && $data['review'] != 2)
 
- 			{
 
- 				echo json_encode(array('msg'=>'必须是 待审核 状态才能拆分','success'=>false));exit;
 
- 			}
 
- 			$cfnum = explode('-',trim($number,'-'));
 
- 			if((count($cfnum)> 3 && stripos($pd[$x],'-PF-') !== false) || (count($cfnum)> 4 && stripos($pd[$x],'-PF-') === false))
 
- 			{
 
- 				echo json_encode(array('msg'=>'只能在原单操作拆分','success'=>false));exit;
 
- 			}
 
- 			$num = $this->fullordersmt->find_count("number like '".$number."%'");
 
- 			$data['number'] = $data['number'].'-'.$num;
 
- 			$data['orderinfo'] = $data['shop'].date('ymdHis',time()).rand(0,1);
 
- 			$data['shouldmoney'] = 0;
 
- 			$data['budget'] = 0;
 
- 			$data['shipremarks'] = '';
 
- 			$data['source'] = 1;
 
- 			unset($data['id']);
 
- 			unset($data['jweight']);
 
- 			unset($data['fpcount']);
 
- 			unset($data['returndata']);
 
- 			unset($data['waybill']);
 
- 			unset($data['oldwaybill']);
 
- 			unset($data['printtime']);
 
- 			if($this->fullordersmt->insert($data))
 
- 			{
 
- 				echo json_encode(array('msg'=>'拆分成功!新订单编号:'.$data['number'],'success'=>true));exit;
 
- 			}
 
- 			else
 
- 			{
 
- 				echo json_encode(array('msg'=>'拆分失败,请重试','success'=>false));exit;
 
- 			}
 
- 		}
 
- 	}
 
- }
 
 
  |